@import url('https://fonts.googleapis.com/css2?family=Alice&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
/* font-family: "Alice", serif;
font-family: "Josefin Sans", sans-serif; */

@font-face {
  font-family: 'ivy_modebold';
  src: url('../font/ivy-mode-bold.woff2') format('woff2'),
    url('../font/ivy-mode-bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'ivy_moderegular';
  src: url('../font/ivy-mode-regular.woff2') format('woff2'),
    url('../font/ivy-mode-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.my-container {
  width: 1200px;
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
  /* width: 75%; */
  /* background:#f29939; */
}

.my-container-fluid {
  width: 1400px;
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
  /* width: 75%; */
  /* background:#FFDCDC; */
}

@media (max-width:1214px) {
  .my-container {
    width: 90%;
  }

}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

:root {
  --testi-bg: #fee6c8;
  --white: #fff;
  --black: #000;
  --header-black: #1b1b1b;
  --orange: #ea5e20;
  --para: #272727;
  --testi-bg: #fee6c8;
  --video-bg: #f8f8f8;
  --image-box-bg: #FFF3EE;
  --image-box-border: #FFD4D4;
  --why-box-border: #C7C7C7;
  --work-bg: #f9f9f9;
  --footer-bg: #212027;
  --career-bg: #f7f8f8;
}

h2 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
  color: var(--black);
}

h3 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
  color: var(--black);
}

@media screen and (max-width:480px) {
  h2 {
    font-size: 22px;
    line-height: 30px;
  }

  h3 {
    font-size: 16px;
    line-height: 20px;
  }
}

.my-padding-bottom {
  padding-bottom: 20px;
}

@media screen and (max-width:480px) {
  .my-padding-bottom {
    padding-bottom: 15px;
  }
}

.my-border-radius {
  border-radius: 10px;
}

p {
  font-family: "Alice", serif;
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  color: var(--para);
  margin-top: 0;
  margin-bottom: 0;
}

body {
  font-family: "Alice", serif;
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  color: var(--black2);
  background: var(--white);
  overflow-x: hidden;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 0;
}

/* .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    } */


/*---------------header start----------------------*/

.logo {
  z-index: 9999;
}

#mainHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 30px;
  width: 100%;
  background-color: #000;
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#mainHeader.scrolled {
  width: 90%;
  margin: 20px auto;
  padding: 10px 30px;
  background: #020202;
  border-radius: 60px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
  font-size: 15px;
  font-family: "Josefin Sans", sans-serif;
}

.nav a:hover {
  color: #ef7e19;
  text-decoration: underline;
  text-underline-offset: 8px;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 26px;
  color: white;
  position: relative;
}

.menu-toggle .close-icon {
  display: none;
}

.menu-toggle.active .menu-icon {
  display: none;
}

.menu-toggle.active .close-icon {
  display: inline-block;
}

@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    display: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px 0;
    margin: 2px 0 0 0;
  }

  .nav.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.active .menu-icon {
    display: none;
  }

  .menu-toggle.active .close-icon {
    display: inline-block;
  }
  .logo img{
    width: 125px;
    height: 36px;
  }
}

/*---------------header end----------------------*/

/*-------------banner start--------------*/

    .mobile-banner {
      display: none;
    }

    .banner-btn {
      font-family: "Josefin Sans", sans-serif;
      font-size: 18px;
      line-height: 25px;
      font-weight: 400;
      background: var(--header-black) !important;
      color: var(--white) !important;
      border-radius: 60px;
      transition: all .6s ease;
      display: inline-block;
      padding: 13px 15px;
    }

    .banner-btn:hover {
      transform: translateY(-5px);
      border-radius: 5px;
      box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
      background: var(--orange) !important;
    }
    
    .banner {
      position: relative;
    }

    .home-banner {
      background-position: center !important;
      background-size: cover !important;
      background-repeat: no-repeat !important;
      height: 800px !important;
      background: #028891;
    }

    .banner-text-area {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80%;
      text-align: center;
    }

    .typing-container {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
    }

    .typing-container h1 {
      font-family: 'ivy_modebold';
      font-weight: 300;
      font-size: 80px !important;
      line-height: 120px;
      color: var(--orange);
      display: inline-block;
      white-space: normal;
      word-break: break-word;
      border-right: 3px solid #f2f2f2;
      padding-right: 5px;
    }

    .cursor {
      display: inline-block;
      width: 3px;
      margin-left: 3px;
      animation: blink 10s steps(1, end) infinite;
    }

    @media screen and (max-width:768px) {
      .banner {
        display: none;
      }

      .banner-text-area {
        transform: translate(-50%, -40%);
        width: 80%;
      }

      .banner-text-area h1 {
        margin: 0 0 20px 0;
      }

      .mobile-banner-height {
        height: 450px !important;
        background-size: cover !important;
      }

      .mobile-banner {
        display: block;
      }
      .banner-btn {
        font-size: 15px;
        line-height: 25px;
        padding: 8px 15px;
      }

      .mobile-banner .typing-container h1 {
        font-size: 30px !important;
        line-height:40px !important;
      }
    }

    @keyframes typing {
      0% {
        width: 0;
      }

      50% {
        width: 100%;
      }

      100% {
        width: 0;
      }
    }

    @keyframes blink {
      50% {
        border-color: transparent;
      }
    }

/*-------------banner end--------------*/
/*-------------video part starts--------------*/
.video-part {
  background: var(--video-bg, #000);
}

.video-part-area {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-part-area iframe {
  transition: width 0.2s ease, height 0.2s ease;
  max-width: 100%;
  border: 0;
}

/*-------------video part ends--------------*/

/*-------------why choose starts--------------*/

.mySwiper2 {
  padding-bottom: 50px !important;
}

.why-choose {
  padding: 80px 0;
}

.image-box {
  width: 113px;
  height: 113px;
  background: var(--image-box-bg);
  border: 1px solid var(--image-box-border);
  border-radius: 60px;
  display: table;
  margin: 0 auto;
}

.image-box:hover {
  transform: scale(1.2);
  transition: 0.5s;
}

.image-box img {
  padding: 30px 0 0 0;
}

.why-choose-box {
  border: 1px solid var(--why-box-border);
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 40px 20px;
  margin: 30px 0 0 0;
}

.why-choose-box:hover {
  transform: scale(1.1);
  transition: 0.5s;
}

.why-choose-box h3 {
  padding: 20px 0 10px 0;
}

.why-choose-box h3:hover {
  transform: scale(1.1);
  color: #ff6600;
  transition: 0.5s;
}

@media screen and (max-width:480px) {
  .why-choose-box {
    padding: 40px 10px;
  }
}

/*-------------why choose ends--------------*/
/*-------------result number start--------------*/
.result {
  background: var(--header-black);
  padding: 80px 0;
}

.result h2 {
  color: var(--white);
}

.result h3 {
  color: var(--white);
  padding: 20px 0;
}

.result-box span {
  font-family: 'ivy_moderegular';
  font-size: 30px;
  line-height: 35px;
  font-weight: 400 !important;
  color: var(--white);
}

.mySwiper3 {
  padding-bottom: 80px !important;
}

span.swiper-pagination-bullet {
  background: #ea5e20;
}

@media screen and (max-width:480px) {
  .result-box span {
    font-size: 25px;
    line-height: 30px;
  }
}

/*-------------result number end--------------*/

/*-------------client starts--------------*/
.client {
  padding: 80px 0;
}

.result h2 {
  color: var(--white);
  padding: 0 0 30px 0;
}

/*-------------service starts--------------*/

.service-pic {
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: transform 0.6s ease-in-out;
}
.service-pic:hover{
  transform: scale(1.1);
}

.view-more-btn {
  font-family: "Josefin Sans", sans-serif;
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  background: var(--header-black);
  color: var(--white);
  border-radius: 60px;
  padding: 10px 35px 8px;
  display: table;
  margin: 50px auto;
}

.view-more-btn:hover {
  background: var(--orange) !important;
}

.service h2 {
  transition: transform 0.5s ease, color 0.5s ease;
  display: inline-block;
}

.service h2:hover {
  transform: scale(1.1) translateY(-5px);
  color: #ff6600;
  transform-origin: bottom;
}

.service-page {
  margin-top: 70px;
}

.service-page ul {
  list-style-type: disc;
  margin-left: 20px;
}

.service-page ul li {
  color: #272727;
  margin: 10px 0 0 0;
  font-weight: 600;
}

.service-page h6 {
  margin: 10px 0 0 0;
}

.service-pic-wide img {
  aspect-ratio: 16/9;
}

.service-pic-vertical img {
  aspect-ratio: 9/16;
}

.ratio-box a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-position: center;
}

.service-odd .about-text {
  order: 2;
}

.service-odd .about-child,
.service-odd>div:first-child {
  order: 1;
}

.service-even .about-text {
  order: 1;
}

.service-even .about-child,
.service-even>div:first-child {
  order: 2;
}

@media (max-width: 991px) {

  .service-odd .about-text,
  .service-even .about-text,
  .service-odd>div:first-child,
  .service-even>div:first-child {
    order: unset;
  }
}

@media screen and (max-width:768px) {
  .about-child {
    margin-top: 30px;
  }
}

/*-------------service ends--------------*/
/*-------------work starts--------------*/
.work {
  padding: 80px 0;
  background: var(--work-bg);
}

.work-item {
  position: relative;
  overflow: hidden;
}

.work-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.work-item:hover img {
  transform: scale(1.1);
}

.overlay-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 102, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-transform: capitalize;
  font-family: "Josefin Sans", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: var(--white);
}

.work-item:hover .overlay-text {
  opacity: 1;
}

.overlay-text a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 5px 20px;
  position: relative;
  text-align: center;
}

.overlay-text a:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  right: 50%;
  position: absolute;
  background: #fff;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.overlay-text a:hover:after {
  width: 100%;
  left: 0;
}

@media screen and (max-width:768px) {
  .mobile-inactive {
    display: none;
  }
}

/*-------------work ends--------------*/
/*-------------testimonial starts--------------*/

.mySwiper9 {
  margin: 20px 0 0 0;
}

.testimonial {
  padding: 80px 0;
}

.testimonial h4 {
  font-family: "Alice", serif;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: var(--black);
  padding: 15px 0 0 0;
}

.testimonial h5 {
  font-family: "Alice", serif;
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  color: var(--black);
}


@media screen and (max-width:480px) {
  .testimonial {
    padding: 60px 0;
  }

  .testimonial h4 {
    font-size: 17px;
    line-height: 18px;
  }

}

.swiper-child-box1 {
  width: 250px !important;
}

.swiper-child-box2 {
  background: var(--testi-bg);
  width: 450px !important;
  height: 232px !important;
  padding: 50px 30px;
  text-align: left;
}

.swiper-box-pic {
  width: 100%;
  height: auto;
}


.testi-scroll {
  overflow-y: scroll;
  scrollbar-width: 3px;
  scrollbar-color: #888;
  scroll-behavior: smooth;
}

.testi-scroll::-webkit-scrollbar {
  width: 2px;
  -webkit-appearance: none;
}

.testi-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.testi-scroll::-webkit-scrollbar-thumb {
  background: #fee6c8;
  border-radius: 4px;
  background-clip: content-box;
}

.testi-scroll::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/*-------------testimonial ends--------------*/
/*-------------map starts--------------*/
.map-canvas {
  border: none;
}

.map-canvas iframe {
  width: 100%;
  height: 450px;
  border: none;
}

.map-tab {
  overflow: hidden;
  display: table;
  margin: 0 auto;
}

.map-tab button {
  border: 0;
  outline: none;
  cursor: pointer;
  padding: 10px 16px;
  transition: 0.3s;
  font-family: "Josefin Sans", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  background: var(--header-black);
  color: #fff;
  border-radius: 5px;
  margin: 0 5px;
}

.map-tab button.active {
  background: #ea5e20;
}

.map-tabcontent {
  display: none;
  padding: 6px 0px;
  border: 1px solid #ccc;
  border-top: none;
}

.map-tabcontent h3 {
  margin: 0 0 0 20px;
}

.map-tabcontent .child:hover {
  animation: stir 0.4s ease-in-out;
}

@keyframes stir {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(3deg);
  }

  50% {
    transform: rotate(-3deg);
  }

  75% {
    transform: rotate(2deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/*-------------map ends--------------*/

/*-------------download start--------------*/
.download-btn {
  background: var(--orange);
  display: table;
  margin: 80px auto;
  text-align: center;
}

/*-------------download ends--------------*/
/*-------------footer starts--------------*/

.footer {
  background: var(--footer-bg);
  padding: 80px 0 0;
}

.footer .centered-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer h3 {
  font-family: "Alice", serif;
  font-size: 25px;
  line-height: 30px;
  font-weight: 400;
  color: var(--white);
  padding: 20px 0 50px;
}

.footer h5 {
  font-family: "Alice", serif;
  font-size: 18px;
  line-height: 20px;
  font-weight: 300 !important;
  color: var(--white);
}

.footer ul li {
  font-family: "Alice", serif;
  font-size: 15px;
  line-height: 24px;
  font-weight: 300;
  color: var(--white);
}

.footer ul li a {
  color: var(--white);
}

.footer ul li a:hover {
  color: var(--banner-orange);
  transition: 0.6s;
  text-decoration: underline;
  text-underline-offset: 8px;
}

.copyright {
  margin: 25px 0 0 0;
}

.copyright p {
  font-family: "Alice", serif;
  font-size: 15px;
  line-height: 25px;
  font-weight: 300;
  color: var(--white);
  text-align: center;
  border-top: 1px solid var(--white);
  padding: 15px 0 10px;
}

.useful-links {
  display: flex;
  flex-direction: column;
  color: #fff;
  font-weight: 300;
}

.useful-links ul {
  display: inline-block;
  margin-right: 40px;
}

.useful-links-list ul {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 50px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.useful-links-list ul li {
  margin: 5px 0;
}

.useful-links-list ul li a {
  color: #fff;
  text-decoration: none;
}


@media screen and (max-width:1024px) {
  .footer-logo {
    width: 135px;
    height: 34px;
  }

}

@media screen and (max-width:768px) {
  .responsive-center {
    text-align: center;
    align-items: center;
  }

  .useful-links ul {
    margin-right: 0px;
  }

  .useful-links-list ul {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 60px 0 0;
  }

  .copy-area {
    flex-direction: column;
  }

  .copyright {
    margin: 30px 0 0 0;
  }

  .responsive-gap {
    padding: 25px 0;
  }

  .footer h3 {
    font-size: 18px;
    line-height: 25px;
  }
}

/*-------------footer ends--------------*/
/*------------modal start---------------------------------- */
.modal {
  --bs-modal-width: 25%;
  z-index: 9999;
}

.modal h6 {
  color: var(--black);
  font-family: "Josefin Sans", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0px;
}

.modal-submit-btn {
  display: table;
  margin: 20px auto;
  border: none;
}

.modal-form input {
  width: 100%;
  color: #393E46 !important;
  background: none;
  height: 45px;
  border-radius: 0px;
  border: none;
  border-bottom: 1px solid var(--form-border);
  font-family: "Josefin Sans", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  text-indent: 10px;
  outline: 0;
  margin: 15px 0 0 0;
  padding: 0;
}

.modal-form input::placeholder {
  color: #393E46 !important;
}

.modal-form input[type="text"]::placeholder {
  color: #393E46 !important;
}

.modal-form textarea {
  width: 100%;
  color: #393E46;
  background: none;
  height: 100px;
  border-radius: 0px;
  border: none;
  border-bottom: 1px solid var(--form-border);
  font-family: "Josefin Sans", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  text-indent: 10px;
  outline: 0;
  margin: 15px 0 0 0;
  padding: 0;
}

.modal-form textarea::placeholder {
  color: #393E46 !important;
}

.modal-form select {
  width: 100%;
  color: #393E46 !important;
  background: none;
  height: 45px;
  border-radius: 0px;
  border: none;
  border-bottom: 1px solid var(--form-border);
  font-family: "Josefin Sans", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  text-indent: 6px;
  outline: 0;
  margin: 15px 0 0 0;
  padding: 0;
}

.danger-message {
  color: #e60124;
  font-family: "Josefin Sans", sans-serif;
  font-family: "Josefin Sans", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}

/*--------modal end---------------------------------- */
/*--------inner banner start---------------------------------- */
.inner-banner {
  background: var(--innerbanner);
  background-size: cover !important;
  background-position: center;
  background-repeat: no-repeat;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-banner h1 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
  color: var(--white);
  text-align: left;
}

@media (max-width:480px) {
  .inner-banner {
    height: 180px !important;
  }

  .inner-banner h1 {
    font-size: 22px;
    line-height: 30px;
    margin: 50px 0 0 0;
  }
}

/*--------inner banner end---------------------------------- */
/* -------career page starts-------------------------------- */

.career {
  background: var(--team-bg);
  padding: 80px 0 0 0;
}

.career-con {
  width: 100%;
}

.career-con-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.career-img {
  width: 100%;
}

.career-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}

.career-con-inner {
  list-style: none;
  padding: 0;
}

.career-con-inner .box-con {
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 20px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 0.3s;
}

.career-con-inner .box-con:hover {
  transform: scale(1.03);
}


.profile-content {
  padding: 20px 0 0 0;
}

.profile-content h4 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 17px;
  line-height: 22px;
  font-weight: 600 !important;
  color: var(--black);
  margin-bottom: 20px;
}

.profile-b-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.exp-con {
  list-style: none;
  padding: 0;
  margin: 0;
}

.exp-con li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  padding: 0;
}

.profile-icon {
  margin-right: 10px;
}

.profile-icon img {
  margin-top: -2px;
}

.exp-con p {
  color: var(--black);
  font-size: 15px;
  line-height: 18px;
}

.viewmore-btn {
  background: var(--banner-orange);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  font-size: 15px;
  color: var(--white);
  text-decoration: none;
  padding: 10px 17px;
  transition: all 0.5s;
  cursor: pointer;
  border: none;
  outline: none;
}

.viewmore-btn:hover {
  background: var(--banner-green);
  transition: 0.9s;
  border-radius: 0 8px 0 8px;
}

.career-form h4 {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  text-align: center;
  margin: 80px 0 0 0;
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
}

.career-form-inner {
  width: 100%;
}

.career-form-inner .contact-form {
  margin: 30px auto 80px;
}

input[type=file] {
  color: #000 !important;
}

input[type=file]::file-selector-button {
  background: var(--orange);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  font-size: 15px;
  text-transform: capitalize;
  color: var(--white);
  text-decoration: none;
  padding: 10px 20px 8px;
  transition: all 0.5s;
  cursor: pointer;
  border: none;
  outline: none;
}

input[type=file]::file-selector-button:hover {
  background: var(--header-black);
  color: var(--white);
  cursor: pointer;
}

.career-btn {
  padding: 6px 15px 4px !important;
  font-size: 13px;
  line-height: 20px;
}

@media (max-width:767px) {

  input[type=file]::file-selector-button {
    font-size: 15px;
    padding: 10px 15px;
  }

}

.btn-group {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: flex-end;
}

.primary-btn {
  border: none;
  margin: 20px 0 0 0;
}

.contact-form {
  width: 60%;
  padding: 30px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  background: var(--career-bg);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.form-group input,
.form-group textarea {
  font-family: "Josefin Sans", sans-serif;
  padding: 15px 0 10px 0;
  font-size: 14px;
  line-height: 16px;
  color: 1px solid var(--black2);
  outline: none;
  width: 100%;
  text-align: left;
  border: none;
  border-bottom: 1px solid var(--header-black);
  background: none;
  border-radius: 0px;
  text-indent: 10px;
  margin: 10px 0 0 0;
}

.form-group textarea {
  min-height: 50px;
  resize: none;
}

.two-col {
  display: flex;
  gap: 10px;
}

.two-col .form-group {
  flex: 1;
}

@media(max-width:767px) {
  .career-con-inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }

  .career-form-inner .contact-form {
    width: 100%;
    padding: 15px;
  }

  .btn-group {
    justify-content: start;
    flex-wrap: wrap;
  }

  .two-col {
    flex-direction: column;
  }

  .two-col .form-group {
    flex: 0 0 100%;
    width: 100%;
  }

}

@media(max-width:990px) {
  .upload-btn label {
    padding: 8px 30px;
  }
}

@media(min-width:768px) and (max-width:990px) {
  .contact-form {
    width: 90%;
  }

  .career-con-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

}

@media(min-width:991px) and (max-width:1200px) {
  .career-con-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

}

@media (max-width: 480px) {
  .career {
    padding: 60px 0;
  }

  .career-form-inner .contact-form {
    margin: 20px auto 50px;
  }

  .career-form h4 {
    margin: 50px 0 0 0;
  }

  .career-form-inner {
    width: 100%;
  }

}

/* -------career page ends-------------------------------- */
/* ---------blog page start------------------------------------ */
.all-blog-con {
  width: 100%;
  margin: 80px 0;
}

.all-blog-con-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.career-img {
  width: 100%;
}

.career-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}

.all-blog-con-inner {
  list-style: none;
  padding: 0;
}

.all-blog-con-inner .box-con {
  background: #fcfcfc;
  padding: 20px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  border: 1px solid #acacac;
  transition: all 0.3s;
}

.all-blog-con-inner .box-con:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transform: scale(1.01);
}

.blog-page-text {
  padding: 15px 0;
}

.blog-page-text ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style-type: none;
  padding: 18px 0;
}

.blog-page-text ul li {
  font-family: "Josefin Sans", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  color: #000;
  align-items: center;
}

.blog-page-text p {
  padding: 0px 0 15px 0;
  color: var(--black);
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
}

.blog-page-text h4 {
  color: var(--subheading);
  font-weight: 600;
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  line-height: 25px;
}

.blog-learnbtn {
  font-family: "Josefin Sans", sans-serif;
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  background: var(--header-black);
  color: var(--white);
  border-radius: 60px;
  padding: 10px 35px 8px;
  transition: all .6s ease;
  display: inline-block;
}

.blog-learnbtn:hover {
  transform: translateY(-5px);
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: 0.5s;
  background: var(--orange);
}

@media(max-width:767px) {
  .all-blog-con-inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }

  .all-blog-con {
    margin: 60px 0;
  }

  .career-form-inner .contact-form {
    width: 90%;
    padding: 15px;
  }

  .btn-group {
    justify-content: start;
    flex-wrap: wrap;
  }

}

@media(max-width:990px) {
  .upload-btn label {
    padding: 8px 30px;
  }
}

@media(min-width:768px) and (max-width:990px) {
  .contact-form {
    width: 90%;
  }

  .all-blog-con-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

}

@media(min-width:991px) and (max-width:1200px) {
  .all-blog-con-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

}

/* ---------blog page end------------------------------------ */

/*-------------blog details page starts---------------*/

.black-dot-blogdetails {
  width: 8px;
  height: 8px;
  margin-right: 8px;
}

.blog-details {
  margin: 80px 0;
}

.blog-details-area {
  display: flex;
  justify-content: space-between;
}

.blog-details-area .blog-details-comment {
  width: 72%;
}

.blog-details-area .blog-details-filter {
  width: 25%;
}

.blog-details-category {
  border: 1px solid var(--grey-border);
  border-radius: 10px;
  background: var(--white);
  padding: 30px 20px;
  margin: 20px 0 0 0;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.blog-details-category ul li a {
  font-family: "Jost", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  color: var(--black2);
  margin: 15px 0 0 0;
}

.blog-details-category ul li {
  margin: 15px 0 0 0;
}

.blog-details-category input[type="checkbox"] {
  width: 15px;
  height: 15px;
  border: 1px solid var(--grey-border);
  border-radius: 4px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 4px 0px;
  margin: 20px 0 0 0;
}

.blog-details-category label {
  font-family: "Lexend Deca", sans-serif;
  font-size: 17px;
  line-height: 10px;
  font-weight: 300;
  color: var(--recent-course-para);
  margin: 0 0 0 5px;
}

.blog-details-comment .blog-details-pic {
  width: 100%;
  border-radius: 8px;
  margin: 20px 0 0 0;
}

.blog-details-comment h2 {
  padding: 30px 0 15px;
}

.blog-details-comment ul {

  list-style-type: square;
  padding: 0 0 0 20px;
}

.blog-details-comment ul li {
  color: var(--black);
  margin: 15px 0 0 0;
}


.blog-details-comment p {
  font-family: "Alice", serif;
  font-size: 15px;
  line-height: 28px;
  font-weight: 400;
  color: var(--paragraph);
  margin: 10px 0 0 0;
}

.blog-details-comment h6 {
  font-family: "Jost", sans-serif;
  font-size: 15px;
  line-height: 28px;
  font-weight: 600;
  color: #000;
  margin: 10px 0 0px 0;
}

.bullet-listing ul {
  list-style-type: none;
  display: flex;
  padding: 0 0 0 0;
}

.bullet-listing ul li {
  padding: 0 30px 0 0;
}

@media only screen and (max-width:480px) {
  .blog-details-comment .blog-list-4 {
    padding: 0 0 0 30px;
  }

  .blog-details-comment .blog-list-3 ol {
    padding: 10px 0 0 10px;
  }

  .blog-details-comment .blog-list {
    padding: 0 0 0 30px;
  }

  .blog-details-comment .blog-list-2 {
    padding: 0 0 0 30px;
  }
}

.blog-details-comment .social-icon {
  border-top: 1px solid var(--grey-border2);
  border-bottom: 1px solid var(--grey-border2);
  padding: 10px 0;
  margin: 25px 0;
  display: flex;
}

.blog-details-comment .social-icon h3 {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  color: var(--benefit-heading);
  margin: 0 0 0 0 !important;
}

.blog-details-comment .social-icon a {
  margin: 0 4px;
}


@media only screen and (max-width:1180px) {
  .blog-details-area .blog-details-filter {
    width: 28%;
  }

  .blog-details-area .blog-details-comment {
    width: 69%;
  }

}

@media only screen and (max-width:1024px) {
  .blog-details {
    margin: 50px 0;
  }

  .blog-details-area .blog-details-comment {
    width: 68%;
  }

  .blog-details-area .blog-details-filter {
    width: 28%;
  }

  .blog-details-comment h2 {
    font-size: 30px;
    line-height: 35px;
    width: 100%;
  }

  .post-comment form .post-comment-btn {
    font-size: 14px;
    line-height: 16px;
    padding: 11px 15px;
    margin: 30px 0 0 0;
  }

}

@media only screen and (max-width:932px) {

  .blog-details-area .blog-details-comment {
    width: 60% !important;
  }

  .blog-details-area .blog-details-filter {
    width: 35% !important;
  }

}

@media only screen and (max-width:768px) {

  .blog-details-filter .recent-post .recent-post-area {
    flex-direction: column;
  }

  .blog-details-filter .recent-post .recent-post-pic {
    border-radius: 4px;
    margin: 0 0px 0 0;
    width: 200px;
    height: 200px;
  }

  .blog-details-filter .recent-post .recent-post-area h4 {
    padding: 15px 0 12px 0;
  }

}

@media only screen and (max-width:736px) {
  .blog-details-area {
    flex-direction: column;
    /* padding: 0 15px; */
  }

  .blog-details-area .blog-details-comment {
    width: 100% !important;
  }

  .blog-details-area .blog-details-filter {
    width: 100% !important;
  }

  .blog-details-filter .recent-post .recent-post-pic {
    width: 100%;
    height: 100%;
  }

}

@media only screen and (max-width:480px) {


  .blog-details-comment h2 {
    font-size: 22px;
    line-height: 28px;
  }

  .blog-details-category h3 {
    font-size: 18px;
    line-height: 30px;
  }

  .blog-details-category label {
    font-size: 16px;
    line-height: 22px;
  }

  .post-comment form .post-comment-btn {
    font-size: 15px;
    line-height: 17px;
    margin: 30px 0 0 0;
  }

}

@media only screen and (max-width:375px) {

  .blog-details-comment .user {
    flex-direction: column;
  }

  .user-box {
    margin: 25px 0 0 0;
  }

}

/* ---------blog details page end------------------------------------ */

/* -------about us page start-------------------------------- */
.about-sid-area {
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-sid {
  width: 80%;
}

.about-sid h2 {
  padding-bottom: 20px;
}

.about-text h2 {
  padding-bottom: 20px;
}

.about-director {
  margin-bottom: 80px;
}

.about-enrichment {
  height: 450px;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.about-enrichment h2 {
  color: var(--white);
  padding-bottom: 30px;
}

.about-enrichment p {
  color: var(--white);
}

.about-enrichment-area {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 450px;
}

.about-enrichment-box {
  width: 80%;
}

.our-mission {
  padding: 80px 0;
}

.about-mission {
  display: flex;
  justify-content: space-between;
}

.about-mission>div {
  width: 49%;
}

.about-mission>div img {
  width: 100%;
}

.about-mission .mission-1 {
  display: flex;
  justify-content: space-between;
}

.about-mission .mission-1>div {
  width: 35%;
}

.about-mission .mission-1>div img {
  width: 100%;
  height: 100%;
}

.about-mission .mission-1>div+div {
  width: 65%;
  background-size: cover;
  padding: 80px 40px 40px 40px;
  justify-content: center;
  align-items: center;
}

.about-mission .mission-1>div+div h2 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 30px;
  line-height: 35px;
  font-weight: 500;
  color: var(--white);
}

.about-mission .mission-1>div+div p {
  font-family: "Alice", serif;
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  padding: 25px 0 0 0;
  color: var(--white);
}


.about-mission .mission-2 {
  display: flex;
  justify-content: space-between;
}

.about-mission .mission-2>div {
  width: 35%;
}

.about-mission .mission-2>div img {
  width: 100%;
  height: 100%;
}

.about-mission .mission-2>div+div {
  width: 65%;
  background-size: cover;
  padding: 80px 40px 40px 40px;
  justify-content: center;
  align-items: center;
}

.about-mission .mission-2>div+div h2 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 30px;
  line-height: 35px;
  font-weight: 500;
  color: var(--white);
}

.about-mission .mission-2>div+div p {
  font-family: "Alice", serif;
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  padding: 25px 0 0 0;
  color: var(--white);
}

@media only screen and (max-width:1024px) {
  .about-mission .mission-1 {
    flex-direction: column;
  }

  .about-mission .mission-1>div {
    width: 100%;
  }

  .about-mission .mission-1>div+div {
    width: 100%;
    padding: 30px 20px 20px 20px;
    min-height: 200px;
  }

  .about-mission .mission-1>div+div h2 {
    font-size: 25px;
    line-height: 30px;
  }

  .about-mission .mission-1>div+div p {
    font-size: 15px;
    line-height: 25px;
    padding: 15px 0 0 0;
  }

  .about-mission .mission-2 {
    flex-direction: column;
  }

  .about-mission .mission-2>div {
    width: 100%;
  }

  .about-mission .mission-2>div+div {
    width: 100%;
    padding: 30px 20px 20px 20px;
    min-height: 200px;
  }

  .about-mission .mission-2>div+div h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .about-mission .mission-2>div+div p {
    font-size: 15px;
    line-height: 25px;
    padding: 15px 0 0 0;
  }

}

@media only screen and (max-width:540px) {
  .about-mission {
    padding: 0 15px;
  }

}

@media only screen and (max-width:480px) {

  .about-sid-area {
    padding: 60px 0;
  }

  .about-sid h2 {
    padding-bottom: 15px;
  }

  .about-sid {
    width: 96%;
  }

  .about-text {
    margin: 30px 0 0 0;
  }

  .about-text h2 {
    padding-bottom: 15px;
  }

  .about-director {
    margin-bottom: 60px;
  }

  .about-enrichment h2 {
    padding-bottom: 15px;
  }

  .our-mission {
    padding: 60px 0;
  }

  .about-mission {
    padding: 0 15px;
  }

  .about-mission .mission-1>div+div h2 {
    font-size: 22px;
    line-height: 30px;
  }

  .about-mission .mission-2>div+div h2 {
    font-size: 22px;
    line-height: 30px;
  }

  .about-mission .mission-1>div+div p {
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    padding: 15px 0 0 0;
  }

  .about-mission .mission-2>div+div p {
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    padding: 15px 0 0 0;
  }

  .about-mission .mission-2>div+div {
    min-height: 247px;
  }

  .about-mission .mission-1>div+div {
    min-height: 247px;
    background-size: cover !important;
  }

  .about-mission {
    flex-direction: column;
  }

  .about-mission>div {
    width: 100%;
  }

  .about-mission>div img {
    width: 100%;
  }

  .about-mission .mission-1 {
    flex-direction: column;
  }

  .about-mission .mission-1>div {
    width: 100%;
  }

  .about-mission .mission-1>div img {
    width: 100%;
    height: 100%;
  }


  .about-mission .mission-2 {
    flex-direction: column;
    margin: 20px 0 0 0;
  }

  .about-mission .mission-2>div {
    width: 100%;
  }

  .about-mission .mission-2>div img {
    width: 100%;
    height: 100%;
  }

  .about-mission .mission-2>div+div {
    min-height: 169px !important;
    background-size: cover !important;
  }

  .about-mission .mission-1>div+div {
    min-height: 200px !important;
  }

}

/* -------about us page end-------------------------------- */
/* -------contact page start-------------------------------- */
.get-in-touch {
  padding: 80px 0;
}

.get-in-touch h2 {
  padding-bottom: 30px;
}

.contact-page-form {
  padding: 0 0 0 50px;
}

.contact-page-form input {
  width: 100%;
  height: 50px;
  border-radius: 4px;
  background: #eef3f7;
  border: none;
  color: #000;
  font-size: 14px;
  line-height: 20px;
  font-family: "Josefin Sans", sans-serif;
  text-indent: 10px;
  outline: none;
  margin-bottom:20px;
}

.contact-page-form input::placeholder {
  color: #7b79a0;
}

.contact-page-form textarea {
  width: 100%;
  height: 100px;
  border-radius: 4px;
  background: #eef3f7;
  border: none;
  color: #000;
  font-size: 14px;
  line-height: 20px;
  font-family: "Josefin Sans", sans-serif;
  text-indent: 10px;
  padding: 20px 0 0 0;
  outline: none;
}

.child {
  background: var(--white);
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  text-align: center;
  padding: min(4em, 15%);
}

.child:hover {
  cursor: pointer;
  transition: 0.6s;
  box-shadow: rgba(234, 94, 32, 1) 0px 3px 8px;
}

.child-column {
  margin: 0 0 15px 0;
}

.contact-page-map h4 {
  color: #000;
  font-size: 18px;
  line-height: 20px;
  font-family: "Josefin Sans", sans-serif;
  padding: 20px 0 0 0;
}


@media only screen and (max-width:480px) {
  .contact-page-form {
    padding: 30px 0 0 0px;
  }

  .get-in-touch {
    padding: 60px 0;
  }

  .get-in-touch h2 {
    padding-bottom: 15px;
  }

}

/* -------contact page end-------------------------------- */

/* -------career details page starts-------------------------------- */
.job-details b,
.job-details strong {
  font-size: 17px;
  line-height: 22px;
  font-weight: 400;
  color: var(--black2);
  padding-bottom: 12px;
  display: inline-block;
}

.job-details p {
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  color: var(--black2);
  padding: 10px 0 10px 0;
}

.job-details ul {
  list-style: disc;
  padding: 0 0 0 15px;
  margin: 0;
}

.job-details ul li {
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  color: var(--black2);
  padding-bottom: 15px;
}

.mt-40 {
  margin-top: 40px;
}

@media(max-width:990px) {
  .job-details ul h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

/* -------career details page ends-------------------------------- */

/* -------client details page starts-------------------------------- */

.gallery-page-image {
  border-radius: 10px;
  border: 1px solid #d4d4d4;
}

.gallery-page-image:hover {
  border: none;
  transform: rotateY(8deg) rotateX(4deg) scale(1.02);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}

.client-deliver {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 80px 0 0 0;
}

.client-deliver h2 {
  color: var(--white);
}

.client-deliver p {
  color: var(--white);
  margin: 20px 0;
}

.client-deliver-area {
  width: 50%;
}

.deliver-btn {
  margin: 0px auto !important;
  background: var(--orange) !important;
}

@media(max-width:768px) {
  .client-deliver-area {
    width: 96%;
  }

  .client-deliver {
    margin: 60px 0 0 0;
  }
}

/* -------client details page ends-------------------------------- */

/* .blog-details-task h1,h2,h3,h4,h5, h6 {
  font-family: "Jost", sans-serif;
  font-size: 15px;
  line-height: 28px;
  font-weight: 600;
  color: #000;
  margin: 10px 0 0px 0;
} */

.blog-details-task h1 {
   font-family: "Josefin Sans", sans-serif;
  font-size: 15px;
  line-height: 28px;
  font-weight: 600;
  color: #000;
  margin: 10px 0 0px 0;
}

.blog-details-task h2 {
   font-family: "Josefin Sans", sans-serif;
  font-size: 15px;
  line-height: 28px;
  font-weight: 600;
  color: #000;
  margin: 10px 0 0px 0;
}

.blog-details-task h3 {
   font-family: "Josefin Sans", sans-serif;
  font-size: 15px;
  line-height: 28px;
  font-weight: 600;
  color: #000;
  margin: 10px 0 0px 0;
}

.blog-details-task h4 {
   font-family: "Josefin Sans", sans-serif;
  font-size: 15px;
  line-height: 28px;
  font-weight: 600;
  color: #000;
  margin: 10px 0 0px 0;
}

.blog-details-task h5 {
   font-family: "Josefin Sans", sans-serif;
  font-size: 15px;
  line-height: 28px;
  font-weight: 600;
  color: #000;
  margin: 10px 0 0px 0;
}

.blog-details-task h6 {
   font-family: "Josefin Sans", sans-serif;
  font-size: 15px;
  line-height: 28px;
  font-weight: 600;
  color: #000;
  margin: 10px 0 0px 0;
}

.blog-details-task ol {
  list-style-type: decimal-leading-zero;
  padding: 0 0 0 20px;
}

.blog-details-comment ol li {
  color: var(--black);
  margin: 15px 0px 0px 0px;
}

.services-list{
  padding: 0 50px;
}

@media(max-width:768px) {
    .services-list{
  padding: 0px;
}
}

































