/* Updated with Bootstrap v5.3.2 */

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #f8f8f8;
  color: #444;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #2c8998;
  text-decoration: none;
  transition: 0.3s;
}

a:hover,
a:active,
a:focus {
  color: #5c5c5c;
  outline: none;
  text-decoration: underline;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #2c8998;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.2s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #39adbe;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 110px;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: rgba(255, 255, 255, 0.96);
  height: 76px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

#header .logo img {
  max-height: 50px;
}

#header .social-links {
  margin: 0 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#header .social-links a {
  color: #2c8998;
  transition: 0.2s;
  line-height: 0;
  margin-left: 15px;
  font-size: 18px;
}

#header .social-links a i {
  line-height: 0;
}

#header .social-links a:hover {
  color: #39adbe;
}

@media (max-width: 992px) {
  #header .social-links {
    margin: 0 15px 0 0;
  }
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 24px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  color: #2f2f2f;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #2c8998;
  text-decoration: none;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #2f2f2f;
  font-size: 30px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.4s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(93, 93, 93, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #f4f4f4;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #2f2f2f;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #2c8998;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  position: relative;
  background: #f5f8fd url("../img/hero/hero-background.webp") center top no-repeat;
  background-size: cover;
  padding-top: 50px;
}

@media (max-width: 991px) {
  #hero {
    height: auto;
    padding: 100px 0 60px 0;
  }

  #hero .container {
    height: auto !important;
  }

  #hero .intro-img {
    width: 80%;
  }
}

@media (min-width: 992px) {
  #hero .intro-info {
    padding-top: 0px;
  }
}

@media (max-width: 991px) {
  #hero .intro-info {
    text-align: center;
    padding-top: 20px;
  }
}

#hero .intro-info h2 {
  color: #2f2f2f;
  margin-bottom: 40px;
  font-size: 58px;
  font-weight: 700;
  text-align: center;
}

#hero .intro-info h2 span {
  color: #2c8998;
}

#hero .intro-info p {
  color: #646263;
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 991px) {
  #hero .intro-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }
}

#hero .intro-info .btn-get-started,
#hero .intro-info .btn-services {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 22px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  border: 2px solid #2f2f2f;
  background: transparent;
  color: #2f2f2f;
}

#hero .intro-info .btn-get-started:hover,
#hero .intro-info .btn-services:hover {
  background: #2f2f2f;
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

section {
  overflow: hidden;
}


/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 36px;
  color: #2f2f2f;
  text-align: center;
  font-weight: 700;
  position: relative;
  font-family: "Montserrat", sans-serif;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #828282;
  width: 50%;
}

@media (max-width: 767px) {
  .section-header p {
    width: 100%;
  }
}


/* Section with background
--------------------------------*/
.section-bg {
  background: #f8f8f8;
}


/* About Us Section
--------------------------------*/
#about {
  padding: 40px 0;
}

#about .about-content {
  padding-top: 40px;
}

#about .about-content h2 {
  color: #2f2f2f;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

#about .about-content h3 {
  color: #868686;
  font-weight: 400;
  font-size: 19px;
  font-style: italic;
}

#about .about-img {
  position: relative;
  margin: 30px 30px 30px 30px;
  border-radius: 6px;
}

#about .about-img img {
  width: 100%;
  border: 8px solid #fff;
  border-radius: 6px;
}

#about .about-img::before {
  position: absolute;
  left: -31px;
  top: -30px;
  width: 90%;
  height: 92%;
  z-index: -1;
  content: "";
  background-color: #e7eeef;
  border-radius: 6px;
}

#about .about-img::after {
  position: absolute;
  right: -31px;
  bottom: -30px;
  width: 90%;
  height: 92%;
  z-index: -1;
  content: "";
  background-color: #e7eeef;
  border-radius: 6px;
}

#about .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 22px;
  border-radius: 4px;
  transition: 0.2s;
  color: #fff;
  border: 2px solid #2c8998;
  background: transparent;
  color: #2c8998;
}

#about .btn-get-started:hover {
  background: #2c8998;
  color: #fff;
  text-decoration: none;
}


/* Counters Section
--------------------------------*/
#counters {
  padding: 0;
}

@media (max-width: 991px) {
  #counters .counters-content {
    padding-top: 30px;
  }
}

#counters .counters {
  padding-top: 40px;
}

#counters .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 36px;
  display: block;
  color: #2c8998;
}

#counters .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #4e4e4e;
}


/* Advantages Section
--------------------------------*/
#advantages {
  padding: 60px 0 60px 0;
  width: 100%;
  position: relative;
  background: #f5f8fd url("../img/advantages/advantages.webp") center top no-repeat;
  background-size: cover;
}

#advantages .box:hover .title h4 {
  color: #2f2f2f;
}

#advantages .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: rgb(255, 255, 255, 0.8);
  box-shadow: 0 10px 29px 0 rgba(135, 135, 135, 0.2);
  text-align: center;
  height: 100%;
}

#advantages .icon {
  display: inline-block;
  text-align: center;
}

#advantages .icon i {
  font-size: 46px;
  line-height: 0;
  color: #2c8998;
}

#advantages .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 19px;
}

#advantages .box:hover .title h4 {
  color: #2f2f2f;
}

#advantages .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
  text-align: left;
}


/* Services Section
--------------------------------*/
#services {
  padding: 80px 0;
}

#services h4 {
  font-weight: 600;
  font-size: 24px;
  text-align: center;
}

#services img {
  border-radius: 6px;
}


/* Team Section
--------------------------------*/
#team {
  padding: 60px 0;
  background-color: #f0f0f0;
}

#team .member {
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

#team .member .member-info {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 10px 16px 10px;
  background: rgb(255, 255, 255, 0.94);
  border-radius: 0px 0px 6px 6px;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 22px;
  color: #2f2f2f;
}

#team .member span {
  display: block;
  font-size: 17px;
  font-weight: 400;
  color: #505050;
}

#team img {
  border-radius: 6px;
}


/* Price Section
--------------------------------*/
#price {
  padding: 60px 0;
  overflow: hidden;
}

#price .section-header p {
  width: 100%;
}

#price .price-list {
  padding: 0;
  list-style: none;
}

#price .price-list li {
  border-bottom: 1px solid #edecf4;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

#price .price-list .question {
  display: block;
  position: relative;
  font-family: #1bb1dc;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: black;
  transition: 0.1s;
}

#price .price-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

#price .price-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

#price .price-list .icon-show {
  display: none;
}

#price .price-list .collapsed {
  color: black;
}

#price .price-list .collapsed:hover {
  color: #2c8998;
  text-decoration: underline;
}

#price .price-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.1s;
}

#price .price-list .collapsed .icon-close {
  display: none;
  transition: 0.1s;
}

/* Highlight the clicked element */
#price .price-list .question:not(.collapsed):hover {
  color: #2c8998;
  text-decoration: underline;
}

#price .price-list .question:not(.collapsed) {
  color: #2c8998;
}

/* Make collapsible elements independently expandable/collapsible */
.collapse.show {
  display: block;
}

.collapse {
  display: none;
}

.collapse:not(.show) {
  display: none;
}

.collapse.show {
  display: block;
}



/* Call To Action Section
--------------------------------*/
#call-to-action {
  background: #2c8998;
  background-size: cover;
  padding: 40px 0;
}

#call-to-action .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .cta-text {
  color: #fff;
}

#call-to-action .cta-btn-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 26px;
  border-radius: 4px;
  transition: 0.2s;
  margin: 10px;
  border: 3px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #ffffff;
  color: #2c8998;
  text-decoration: none;
}


/* Testimonials Section
--------------------------------*/
#testimonials {
  padding: 60px 0;
}

#testimonials .section-header {
  margin-bottom: 40px;
}

#testimonials .testimonials-carousel,
#testimonials .testimonials-slider {
  overflow: hidden;
}

@media (max-width: 767px) {
  #testimonials .testimonial-item {
    text-align: center;
  }
}

#testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  float: left;
}

@media (max-width: 767px) {
  #testimonials .testimonial-item .testimonial-img {
    float: none;
    margin: auto;
  }
}

#testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
  margin-left: 140px;
}

#testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
  margin-left: 140px;
}

#testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 140px;
}

@media (min-width: 992px) {
  #testimonials .testimonial-item p {
    width: 80%;
  }
}

@media (max-width: 767px) {

  #testimonials .testimonial-item h3,
  #testimonials .testimonial-item h4,
  #testimonials .testimonial-item p {
    margin-left: 0;
  }
}

#testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

#testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #2c8998;
}

#testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #2c8998;
}


/* Portfolio Section
--------------------------------*/
#portfolio {
  padding: 60px 0;
  background-color: #f0f0f0;
}

#portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

#portfolio .portfolio-item .portfolio-wrap {
  overflow: hidden;
  position: relative;
  margin: 0;
}

#portfolio .portfolio-item .portfolio-wrap a {
  display: block;
}

#portfolio .portfolio-item .portfolio-wrap img {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#portfolio .portfolio-item .portfolio-wrap:hover img {
  transform: scale(1.02);
  opacity: 0.6;
}

#portfolio .portfolio-item .portfolio-wrap:hover {
  background: rgb(255, 255, 255);
}


/* Contact Us Section
--------------------------------*/
#contact {
  padding: 80px 0;
}

#contact .contact-content {
  padding-top: 40px;
}

#contact .contact-content h2 {
  color: #2f2f2f;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

#contact .contact-img {
  position: relative;
}

#contact .contact-img img {
  width: 100%;
  border-radius: 6px;
}

#contact .contact-form input,
#contact .contact-form textarea {
  border-radius: 4px;
  box-shadow: none;
  border: 1px solid #e1edef;
  font-size: 14px;
}

#contact .contact-form input:focus,
#contact .contact-form textarea:focus {
  border-color: #39adbe;
}

#contact .contact-form input {
  padding: 10px 15px;
}

#contact .contact-form textarea {
  padding: 12px 15px;
}

#contact .contact-form button[type=submit] {
  background: #2c8998;
  border: 0;
  border-radius: 4px;
  padding: 8px 30px;
  color: #fff;
  transition: 0.2s;
}

#contact .contact-form button[type=submit]:hover {
  background: #39adbe;
  cursor: pointer;
}

#contact .calendar {
  margin-top: 70px;
}

#contact .calendar .cta-btn-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#contact .calendar .cta-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 26px;
  border-radius: 4px;
  transition: 0.2s;
  margin: 0px;
  border: 2px solid #2c8998;
  color: #2c8998;
}

#contact .calendar .cta-btn:hover {
  background: #2c8998;
  border: 2px solid #2c8998;
  color: white;
  text-decoration: none;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 0 0 30px 0;
  font-size: 14px;
  background: #fff;
}

#footer .footer-top {
  padding: 0 0 40px 0;
  background: #f9f9f9;
}

#footer .footer-top .footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

#footer .footer-top .icon {
  margin: 0 0 15px 0;
  padding-top: 12px;
  text-align: center;
}

#footer .footer-top .icon i {
  font-size: 36px;
  line-height: 0;
  color: #2c8998;
}

#footer .footer-top .footer-info p, 
#footer .footer-top .footer-info a {
  text-align: center;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #2f2f2f;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: #2f2f2f;
  font-size: 15px;
}

#footer .credits {
  text-align: center;
  font-size: 14px;
  padding-top: 4px;
  color: #707070;
}

#footer .credits a {
  color: #2f2f2f;
}

#footer .credits a:hover {
  color: #2c8998;
}