/********** Template CSS **********/
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Oswald:wght@200..700&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap");

:root {
  --primary: #13c5dd;
  --secondary: #354f8e;
  --light: #eff5f9;
  --dark: #1d2a4d;
}

.btn {
  font-weight: 700;
  transition: 0.5s;
}

.btn:hover {
  -webkit-box-shadow: 0 8px 6px -6px #555555;
  -moz-box-shadow: 0 8px 6px -6px #555555;
  box-shadow: 0 8px 6px -6px #555555;
}

.btn-primary {
  color: #ffffff;
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 28px;
  height: 28px;
}

.btn-lg-square {
  width: 46px;
  height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 0;
  border-radius: 50% 50% 0 0;
  z-index: 99;
}

.navbar-light .navbar-nav .nav-link {
  font-family: "Jost", sans-serif;
  position: relative;
  margin-left: 30px;
  padding: 30px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  outline: none;
  transition: 0.5s;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (min-width: 992px) {
  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 5px;
    bottom: 0;
    left: 50%;
    background: var(--primary);
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }
}

.hero-header {
  background: url(../img/hero.jpg) top right no-repeat;
  background-size: cover;
}

.service-item {
  position: relative;
  height: 350px;
  padding: 0 30px;
  transition: 0.5s;
}

.service-item .service-icon {
  width: 150px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.service-item .service-icon i {
  transform: rotate(15deg);
}

.service-item a.btn {
  position: absolute;
  width: 60px;
  bottom: -30px;
  left: 50%;
  margin-left: -30px;
  opacity: 1;
}

.service-item:hover a.btn {
  bottom: -24px;
  opacity: 1;
}

.price-carousel::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  background: var(--primary);
  border-radius: 8px 8px 50% 50%;
  z-index: -1;
}

.price-carousel .owl-nav {
  margin-top: 35px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
}

.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next {
  position: relative;
  margin: 0 5px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: #ffffff;
  font-size: 22px;
  border-radius: 45px;
  transition: 0.5s;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}

@media (min-width: 576px) {
  .team-item .row {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .navbar-brand img {
    height: 50px !important;
  }
  .navbar-brand span {
    font-size: 15px !important;
  }
  .navbar-toggler {
    padding: 5px !important;
    font-size: 1rem !important;
  }
  .navbar {
    padding: 0 !important;
  }
  .topBar .text-body-w {
    font-size: 14px !important;
  }
  .second-hero {
    margin-bottom: 10px !important;
  }
  .second-hero .card-body {
    padding: 10px !important;
  }
  .second-hero p {
    font-size: 9px !important;
  }
  .second-hero .fa {
    font-size: 20px !important;
  }
  .display-4 {
    font-size: 28px !important;
  }
  .why-we-text {
    font-size: 15px !important;
  }
  .testimonial-item p {
    font-size: 15px !important;
  }
  .mob-hide {
    display: none;
  }
}
.display-4 {
  font-size: 34px;
}

.team-carousel .owl-nav {
  position: absolute;
  padding: 0 45px;
  width: 100%;
  height: 45px;
  top: calc(50% - 22.5px);
  left: 0;
  display: flex;
  justify-content: space-between;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
  position: relative;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 45px;
  font-size: 22px;
  transition: 0.5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
  background: var(--dark);
}

.testimonial-carousel .owl-dots {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 8px;
  height: 8px;
  background: var(--light);
  border: 2px solid var(--primary);
  border-radius: 20px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  width: 15px;
  height: 15px;
  background: var(--primary);
}

.testimonial-carousel .owl-item img {
  width: 80px;
  height: 80px;
}
.second-hero {
  text-align: center;
}
.second-hero .fa {
  color: #ff533d;
  font-size: 38px;
}
.navbar-brand img {
  height: 60px;
  margin-right: 10px;
}
.navbar-brand span {
  font-weight: 700;
}
.topBar {
  background-color: #13c5de;
  color: #fff;
}
.text-body-w {
  color: #fff;
}
ul {
  list-style: none;
}
.drpdwn-menu ul {
  display: none;
  position: absolute;
  top: 60px;
}
.drpdwn-menu:hover > ul {
  display: inherit;
}
.drpdwn-menu ul li {
  width: 170px;
  float: none;
  display: list-item;
  position: relative;
}
.service-sect {
  display: flex;
  /* background-color: #c4c4c4; */
  padding: 10px;
}
.service-sect img {
  width: 100px;
}
.service-sect h4 {
  margin-left: 15px;
  font-size: 20px;
  color: #06a0b4;
  padding: 5px 0 0 0;
}
.process {
  position: relative;
}
.process-1::after {
  content: "1";
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  background: #7c1a88;
  color: #eff5f9;
  font-size: 14px;
  border-radius: 50%;
}
.process-2::after {
  content: "2";
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  background: #7c1a88;
  color: #eff5f9;
  font-size: 14px;
  border-radius: 50%;
}
.process-3::after {
  content: "3";
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  background: #7c1a88;
  color: #eff5f9;
  font-size: 14px;
  border-radius: 50%;
}
.process-4::after {
  content: "4";
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  background: #7c1a88;
  color: #eff5f9;
  font-size: 14px;
  border-radius: 50%;
}
.process-5::after {
  content: "5";
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  background: #7c1a88;
  color: #eff5f9;
  font-size: 14px;
  border-radius: 50%;
}
.process-6::after {
  content: "6";
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  background: #7c1a88;
  color: #eff5f9;
  font-size: 14px;
  border-radius: 50%;
}
.process-7::after {
  content: "7";
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  background: #7c1a88;
  color: #eff5f9;
  font-size: 14px;
  border-radius: 50%;
}

.vision-mission {
  background-color: #f5f5f5;
  padding: 30px;
}
.vision-mission h2 {
  font-size: 22px;
}
.vision-mission ul {
  list-style-type: disc;
}

/* about team */
.team .card {
  margin: 40px 0;
  border: none;
}
.team .card .card-body {
  padding: 0;
}
.home-team .box {
  border-radius: 0 !important;
  text-align: left !important;
  padding: 15px 20px;
    border-radius: 10px;
    height: 280px;
    width: 350px;
    min-height: 200px;
}
.home-team .box:before {
  border-radius: 0 !important;
}
.home-team .box p {
  text-align: justify;
}
.home-team .card {
  background: transparent !important;
}

.team .box {
  border-radius: 80px;
  background: #fbfbfb;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.team .box:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 0px;
  height: 100%;
  border-radius: 80px;
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  background-image: linear-gradient(to right, #3c70a4 0%, #64b2cd 100%);
}
.team .box:hover:before {
  width: 100%;
}
.team .box:hover .image-wrapper {
  padding: 0;
}
.team .box:hover .box-desc {
  color: #fff;
}
.team .box:hover .social li a {
  background: #fff;
  background-image: none;
  color: #000;
}
.team .box:hover .social li a:hover {
  background: #1d1d1d;
  color: #fff;
}
.team .image-wrapper {
  position: relative;
  max-width: 210px;
  max-height: 210px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
  /* padding: 15px; */
  transition: all 0.5s ease;
  box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.2);
}
.team .image-wrapper img {
  /* border-radius: 50%; */
  transition: all 500ms ease;
}
.team .box-desc {
  position: relative;
}
.team ul.social {
  padding: 0;
}
.team ul.social li {
  display: inline-block;
  list-style-type: none;
}
.team ul.social li a {
  position: relative;
  width: 36px;
  height: 36px;
  background-image: linear-gradient(to right, #3c70a4 0%, #64b2cd 100%);
  display: inline-block;
  line-height: 36px;
  border-radius: 50%;
  color: #fff;
  transition: all 0.5s ease;
}
/* end about team */

.breadcrumb {
  background: #e7e7e7;
  padding: 30px;
  text-align: center;
}
.dropdown-item {
  font-weight: 700;
  font-family: "Red Hat Display", sans-serif;
  font-size: 19px;
  color: #606366;
}

/*  */
/* timeline */
ol.timeline {
  margin: 0;
  list-style: none;
  padding: 0;
  --hue: 1;
  --unit: 1rem;
}
.timeline h2 {
  font-size: 16px;
}
.timeline li {
  --height: 7rem;
  position: relative;
  display: flex;
  background-color: hsl(calc(var(--hue)*360/20),90%,65%);
  border-color: hsl(calc(var(--hue)*360/20),90%,65%);
  padding: 1rem;
  margin: 2rem 0;
  text-align: center;
  align-items: center;
    justify-content: center;
}
.timeline li::before {
  content: "";
  background-color: inherit;
  position: absolute;
  display: block;
  width: var(--unit);
  height: var(--unit);
  top: 100%;
  left: calc(50% - (var(--unit)/2));
}
.timeline li::after {
  content: "";
  position: absolute;
  display: block;
  top: calc(100% + var(--unit));
  left: calc(50% - (var(--unit)));
  border: var(--unit) solid transparent;
  border-top-color: inherit;
}
.timeline li:last-child::before,
.timeline li:last-child::after {
  content: none;
}
.timeline li:nth-child(20n+1){
  --hue: 1;
}
.timeline li:nth-child(20n+2){
  --hue: 2;
}
.timeline li:nth-child(20n+3){
  --hue: 3;
}
.timeline li:nth-child(20n+4){
  --hue: 4;
}
.timeline li:nth-child(20n+5){
  --hue: 5;
}
.timeline li:nth-child(20n+6){
  --hue: 6;
}
.timeline li:nth-child(20n+7){
  --hue: 7;
}
.timeline li {
  cursor: pointer;
}
.timeline .content {
  position: absolute;
  background: #242424;
  color: #ffffff;
  padding: 5px 10px;
  top: -70px;
  width: 200px;
  border-radius: 20px;
  border: 1px solid #bbbbbb;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  font-size: 14px;
  transition: all 0.5s ease-out;
}
.timeline .content::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 45%;
  clip-path: polygon(100% 0, 0 0, 48% 100%);
  z-index: 1;
  width: 20px;
  height: 20px;
  background: #242424;
}

.timeline li:hover .content {
  opacity: 1;
  visibility: visible;
}
 
@media (min-width: 550px) and (max-width: 899px){
  .timeline li {
    margin: 1rem;
    width: calc(50% - 2rem);
    float: left;
    min-height: var(--height);
  }
  .timeline li:nth-child(4n+3),
  .timeline li:nth-child(4n+4) {
    float: right;
  }
  .timeline li:nth-child(4n+1)::before {
    top: calc(var(--height)/2 + var(--unit)/2);
    left: 100%;
  }
  .timeline li:nth-child(4n+1)::after {
    top: calc(var(--height)/2);
    left: calc(100% + (var(--unit)));
    border: var(--unit) solid transparent;
    border-left-color: inherit;
  }
  .timeline li:nth-child(4n+3)::before {
    top: calc(var(--height)/2 + var(--unit)/2);
    left: -1rem;
  }
  .timeline li:nth-child(4n+3)::after {
    top: calc(var(--height)/2);
    left: -3rem;
    border: var(--unit) solid transparent;
    border-right-color: inherit;
  }
}
@media (min-width: 900px) and (max-width: 1199px){
  .timeline li {
    margin: 1rem;
    width: calc(33.33% - 2rem);
    float: left;
    min-height: 7rem;
  }
  .timeline li:nth-child(6n+4),
  .timeline li:nth-child(6n+5),
  .timeline li:nth-child(6n+6) {
    float: right;
  }
  .timeline li:nth-child(6n+1)::before,
  .timeline li:nth-child(6n+2)::before {
    top: calc(var(--height)/2 + var(--unit)/2);
    left: 100%;
  }
  .timeline li:nth-child(6n+1)::after,
  .timeline li:nth-child(6n+2)::after {
    top: 3.5rem;
    left: calc(100% + (var(--unit)));
    border: var(--unit) solid transparent;
    border-left-color: inherit;
  }
  .timeline li:nth-child(6n+4)::before,
  .timeline li:nth-child(6n+5)::before{
    top: calc(var(--height)/2 + var(--unit)/2);
    left: -1rem;
  }
  .timeline li:nth-child(6n+4)::after,
  .timeline li:nth-child(6n+5)::after{
    top: calc(var(--height)/2);
    left: -3rem;
    border: var(--unit) solid transparent;
    border-right-color: inherit;
  }
}
@media (min-width: 1200px){
  ol.timeline  {
    max-width: 1600px;
    margin: 0 auto;
  }
  .timeline li {
    margin: 1rem;
    width: calc(25% - 2rem);
    float: left;
    min-height: 7rem;
  }
  .timeline li:nth-child(8n+5),
  .timeline li:nth-child(8n+6),
  .timeline li:nth-child(8n+7),
  .timeline li:nth-child(8n+8){
    float: right;
  }
  .timeline li:nth-child(8n+1)::before,
  .timeline li:nth-child(8n+2)::before,
  .timeline li:nth-child(8n+3)::before{
    top: calc(var(--height)/2 + var(--unit)/2);
    left: 100%;
  }
  .timeline li:nth-child(8n+1)::after,
  .timeline li:nth-child(8n+2)::after,
  .timeline li:nth-child(8n+3)::after{
    top: calc(var(--height)/2);
    left: calc(100% + (var(--unit)));
    border: var(--unit) solid transparent;
    border-left-color: inherit;
  }
  li:nth-child(8n+5)::before,
  li:nth-child(8n+6)::before,
  li:nth-child(8n+7)::before {
    top: calc(var(--height)/2 + var(--unit)/2);
    left: -1rem;
  }
  li:nth-child(8n+5)::after,
  li:nth-child(8n+6)::after,
  li:nth-child(8n+7)::after {
    top: calc(var(--height)/2);
    left: -3rem;
    border: var(--unit) solid transparent;
    border-right-color: inherit;
  }
}
/* timeline end */

.about-sect {
  justify-content: center;
  gap: 20px;
  align-items: center;
  margin: 60px 0;
  flex-wrap: wrap;
}

.about-sect .about-card {
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  height: 280px;
  width: 350px;
  min-height: 200px;

  p {
    text-align: justify;
  }
}
@media screen and (max-width:680px) {
  .about-sect .about-card {
    min-height: max-content;
  }
  .about-sect {
    margin: 20px 0;
  }
  .footer-widget-3 {
    visibility: visible;
    display: none;
  }
  div:has(.footer-widget-3) {
    margin-top: 0;
  }
}
.fs-15 {
  font-size: 15px;
}

.footer-widget-3 {
  visibility: hidden;
}
/* google translate */
body > .skiptranslate,.goog-logo-link,.gskiptranslate,.goog-te-gadget span,.goog-te-banner-frame,#goog-gt-tt, .goog-te-balloon-frame,div#goog-gt-{
  display: none!important;
}
.goog-te-gadget {
  color: transparent!important;
  font-size:0px;
}
.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}
#google_translate_element select{
  background:#2b1a12;
  color:#fff4e4;
  border: none;
  font-weight:bold;
  border-radius:3px;
  padding:8px 12px
}
/* google translate */

.ul-lists {
  list-style: none;
}
.ul-lists li {
  list-style: disc;
  text-align: left;
}
.text-align-left {
  text-align: left;
}
/* flags */
.flags-owl .item {
  height: 150px;
  width: 250px;
  margin: 0 auto;
}
.flags-owl .item img {
  height: 100%;
  width: 100%;
  border: 1px solid #ddd;
}
@media  (max-width: 767px) {
  .flags-owl .item {
    height: 100px;
    width: 150px;
  }
  .flags-owl .item img {
    height: 100%;
    width: 100%;
  }
  
}
.gap-20 {
  gap: 20px;
}
.top-socials a {
  color: #fff;
  margin-right: 10px;
}
.top-socials a:hover {
  opacity: 0.8;
}
.top-socials {
  margin-bottom: 0;
}