/*
@media (min-width: 1400px){
  
}
@media (min-width: 1200px) and (max-width: 1399.98px){
  
}
@media (min-width: 992px) and (max-width: 1199.98px){
  
}
@media (min-width: 768px) and (max-width: 991.98px){
  
}
@media (min-width: 576px) and (max-width: 767.98px){
  
}
@media (max-width: 575.98px) {

}



/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
  --primarycolor: #4881a8;
  --secondarycolor: #2a2e30;
  --highlightcolor1: #81c3c9;
  --highlightcolor2: #8fac6a;
}


@font-face {
  font-family: 'Glacial Indifference';
  src: url('../vendor/font/GlacialIndifference-Regular.woff2') format('woff2'),
       url('../vendor/font/GlacialIndifference-Regular.woff') format('woff'),
       url('../vendor/font/glacial-indifference/GlacialIndifference-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}



@font-face {
  font-family: 'HolidayFree';
  src: url('../vendor/font/HolidayFree.woff2') format('woff2'),
       url('../vendor//font/HolidayFree.woff') format('woff'),
       url('../vendor/font/FontsFree-Net-HolidayFree.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


main {
  background-color: white;
}


body {
  font-family: "Glacial Indifference", sans-serif;
  color: #444444;
  
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--primarycolor);
  text-decoration: none;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Open Sans", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--primarycolor);
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primarycolor);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #3284f1;
  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;
  }
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: var(--primarycolor);
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}
#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}
#topbar .contact-info i a, #topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}
#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}
#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}
#topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}
#topbar .social-links a:hover {
  color: white;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 86px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  display: flex;
}
#header.fixed-top {
  height: 70px;
}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
}
#header .logo a {
  color: #444;
}
#header .logo a span {
  color: var(--primarycolor);
}
#header .logo img {
  max-height: 60px;
  max-width: calc(160px + 10vw);
}

#header .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 7px 18px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: var(--primarycolor);
  margin-left: 2.4vw;
}

.scrolled-offset {
  margin-top: 70px;
}

@media (min-width: 1400px){
  #header {
    justify-content: space-between;
    padding: 0 7vw;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px){
  #header {
    justify-content: space-evenly;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px){
  #header {
    justify-content: space-between;
    padding: 0 2.8vw;
  }
}
@media (min-width: 768px) and (max-width: 991.98px){
  #header {
    justify-content: space-between;
    padding: 0 60px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px){
  #header {
    justify-content: space-between;
    padding: 0 40px;
  }
}
@media (max-width: 575.98px) {
  #header {
    justify-content: space-between;
    padding: 0 30px;
  }
}


/*--------------------------------------------------------------
# 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 > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 1.8vw;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: calc(9px + 0.5vw);
  font-weight: 600;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: var(--primarycolor);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: var(--primarycolor);
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: var(--primarycolor);
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.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(9, 9, 9, 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: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}
.navbar-mobile > ul > li {
  padding: 0;
}
.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--primarycolor);
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: var(--primarycolor);
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

.navbar-mobile .btn-get-started {
  margin-top: 20px;
}

.navbar-mobile a {
  justify-content: flex-start;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90vh;
  display: flex;
  align-items: center;          /* centers vertically */
  background-image: url('../img/Home page.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
  justify-content: flex-start;   /* changed from center */
  padding-left: calc(22% - 100px);             /* added — pushes content into left third */
}

#hero .spacer {
  text-align: center;
}



/* Headings inside Hero */
#hero h1 {
  margin: 0 0 1rem 0;
  font-weight: 700;
  line-height: 1.1;
  color: white;
  font-family: "Glacial Indifference", sans-serif;
}

#hero h1 span {
  text-decoration: underline;
}

#hero h2 {
  color: white;
  margin: 5px 0 20px 0;
  font-weight: 400;
}

/* Button */
#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: var(--primarycolor);
  border: 1px solid white;
}

/* Fixed background on desktop */
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

/* Responsive Text Sizes */
@media (min-width: 1400px) {
  #hero h1 {
    font-size: calc(21px + 2.4vw);
  }

  /* Headings and Fonts */
.font1 {
  font-size: 40px;
  color: black;
  font-weight: 100;
  letter-spacing: 12px;
}

.font2 {
  font-size: 60px;
  color: black;
  font-weight: 500;
  padding: 16px 0 32px 0;
  letter-spacing: 6px;
}

.font3 {
  font-size: 80px;
  color: white;
  padding: 52px 0 32px 0;
  font-weight: 800;
  font-family: "HolidayFree";
}
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  #hero h1 {
    font-size: calc(21px + 2.2vw);
  }

  #hero h2 {
    font-size: calc(12px + 0.7vw);
  }

  /* Headings and Fonts */
  .font1 {
    font-size: 40px;
    color: black;
    font-weight: 100;
    letter-spacing: 12px;
  }
  
  .font2 {
    font-size: 60px;
    color: black;
    font-weight: 500;
    padding: 16px 0 48px 0;
  }

.font3 {
  font-size: 80px;
  color: white;
  padding-bottom: 32px;
  font-weight: 800;
  font-family: "HolidayFree";
}
}

@media (min-width: 992px) and (max-width: 1199.98px) and (max-height: 1000px) {
  #hero h1 {
    font-size: calc(30px + 1.5vw);
  }

  #hero h2 {
    font-size: 21px;
  }

    /* Headings and Fonts */
    .font1 {
      font-size: 36px;
      color: black;
      font-weight: 100;
      letter-spacing: 10px;
    }
    
    .font2 {
      font-size: 54px;
      color: black;
      font-weight: 500;
      padding: 16px 0 48px 0;
    }

.font3 {
  font-size: 55px;
  color: white;
  padding-bottom: 12px;
  font-weight: 800;
  font-family: "HolidayFree";
}
}


@media (min-width: 992px) and (max-width: 1199.98px) and (min-height: 1001px) {
  #hero h1 {
    font-size: calc(30px + 1.5vw);
  }

  #hero h2 {
    font-size: 21px;
  }

    /* Headings and Fonts */
    .font1 {
      font-size: 36px;
      color: black;
      font-weight: 100;
      letter-spacing: 10px;
    }
    
    .font2 {
      font-size: 54px;
      color: black;
      font-weight: 500;
      padding: 16px 0 48px 0;
    }

.font3 {
  font-size: 75px;
  color: white;
  padding-bottom: 20px;
  font-weight: 800;
  font-family: "HolidayFree";
}
}

@media (min-width: 767px) and (max-width: 991.98px) and (max-height: 1000px) {

  #hero h1 {
    font-size: calc(30px + 2vw);
  }

  #hero h2 {
    font-size: 22px;
  }

  /* Headings and Fonts */
  .font1 {
    font-size: 24px;
    color: black;
    font-weight: 100;
    letter-spacing: 6px;
    margin-top: 20%;
  }
  
  .font2 {
    font-size: 40px;
    color: black;
    font-weight: 500;
    padding: 16px 0 48px 0;
  }

.font3 {
  font-size: 50px;
  color: white;
  padding-bottom: 12px;
  font-weight: 800;
  font-family: "HolidayFree";
}
}

@media (min-width: 767px) and (max-width: 991.98px) and (min-height: 1000px) {

  #hero h1 {
    font-size: calc(30px + 2vw);
  }

  #hero h2 {
    font-size: 22px;
  }

  /* Headings and Fonts */
  .font1 {
    font-size: 34px;
    color: black;
    font-weight: 100;
    letter-spacing: 8px;
  }
  
  .font2 {
    font-size: 54px;
    color: black;
    font-weight: 500;
    padding: 16px 0 48px 0;
  }

.font3 {
  font-size: 50px;
  color: white;
  padding-bottom: 12px;
  font-weight: 800;
  font-family: "HolidayFree";
}
}


@media (min-width: 576px) and (max-width: 766.98px) {
  #hero h1 {
    font-size: 28px;
  }

  #hero h2 {
    font-size: 16px;
  }

  /* Headings and Fonts */
  .font1 {
    font-size: 24px;
    color: black;
    font-weight: 100;
    letter-spacing: 4px;
    margin-top: 20%;
  }
  
  .font2 {
    font-size: 34px;
    color: black;
    font-weight: 500;
    padding: 16px 0 48px 0;
  }

.font3 {
  font-size: 50px;
  color: white;
  padding-bottom: 16px;
  font-weight: 800;
  font-family: "HolidayFree";
}
}

@media (max-width: 575.98px) {
  #hero {
    background-position: 56% 50% !important;
  }

  #hero h1 {
    font-size: 33px;
    padding: 8% 5% 0 6%;
  }

  #hero h2 {
    font-size: 15px;
    padding: 0 8%;
  }

  #hero .btn-get-started {
    margin-top: 1%;
    margin-left: 8%;
  }

  /* Headings and Fonts */
  .font1 {
    font-size: 20px;
    color: black;
    font-weight: 100;
    letter-spacing: 2px;
    margin-top: 20%;
  }
  
  .font2 {
    font-size: 30px;
    color: black;
    font-weight: 500;
    padding: 16px 0 48px 0;
  }

.font3 {
  font-size: 48px;
  color: white;
  padding-bottom: 24px;
  font-weight: 800;
  font-family: "HolidayFree";
}
}






/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: calc(1.3vw + 60px) 20px 100px;
  overflow: hidden;
}

.section-bg {
  background-color: white;
}

.section-title {
  text-align: center;
}
.section-title h2 {
  font-size: calc(20px + 1.5vw);
  letter-spacing: 1px;
  font-weight: 900;
  margin: 0 0 0.9vw 0;
  display: inline-block;
  border-radius: 50px;
  font-family: "Glacial Indifference";
  line-height: 1.2;
  text-transform: uppercase;
}

.section-title h3 {
  margin: 5px 0 15px 0;
  font-size: calc(22px + 0.6vw);
  font-weight: 700;
}
.section-title h3 span {
  color: var(--primarycolor);
}
.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f1f6fe;
  min-height: 40px;
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services {
  background-color: white;
}

.featured-services .fsboxes {
  display: grid;
  gap: 0px;
  justify-content: space-evenly;
}

.featured-services .icon-box {
  padding: 30px 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  text-align: center;
  align-items: center;
  margin: 0 0.5vw;
  color: #444;
}

.featured-services .icon-box img {
  border-radius: 50%;
  object-fit: cover;
  align-content: center;
  margin: 0 auto;
  width: 264px;
  height: auto;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.featured-services h4 {
  font-size: calc(15px + 0.2vw);
  font-weight: 700;
}

.featured-services .section-title h2 {
  color: #444;
}

.featured-services .icon-box::before {
  content: "";
  position: absolute;
  background: white;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}
.featured-services .icon-box:hover::before {
  cursor: pointer;
  background: var(--primarycolor);
  top: 0;
  border-radius: 0px;
}

.featured-services .icon-box:hover{
  cursor: pointer;
}

.featured-services i {
  font-size: calc(17px + 0.5px);
  font-weight: 600;
  line-height: 1;
  color: #444444;
  transition: all 0.3s ease-in-out;
  padding-right: 4px;
}

.featured-services a {
  color: #444;
}

.featured-services h5 {
  font-family: "HolidayFree";
  font-weight: 100;
  font-size: calc(20px + 0.45vw);
  text-align: center;
}

.featured-services .description {
  font-size: calc(15px + 0.3vw);
  line-height: 1.1;
  margin-bottom: 0;
}
.featured-services .icon-box:hover .title a, .featured-services .icon-box:hover .description {
  color: #444;
}


@media (min-width: 1400px){
  
.featured-services .fsboxes {
  grid-template-columns: 25% 25% 25%;
}
}
@media (min-width: 1200px) and (max-width: 1399.98px){
  .featured-services .fsboxes {
    grid-template-columns: 25% 25% 25%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px){
  .featured-services .fsboxes {
    grid-template-columns: 25% 25% 25%;
  }
}
@media (min-width: 768px) and (max-width: 991.98px){
  .featured-services .fsboxes {
    grid-template-columns: 25% 25% 25%;
  }
}
@media (min-width: 576px) and (max-width: 767.98px){
  .featured-services .fsboxes {
    grid-template-columns: 25% 25% 25%;
  }
}
@media (max-width: 575.98px) {
  .featured-services .fsboxes {
    grid-template-columns: 40% 40%;
  }
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about p {
  font-size: calc(18px + 1vw);
  text-align: center;
  line-height: 1.3;
  font-weight: 100;
}

.about .categories p{
  font-weight: 100;
  font-size: calc(18px + 0.5vw);
  text-align: center;
}

.about .section-title h3 {
  color: #333333;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: #333333;
}
.about .content ul {
  list-style: none;
  padding: 0;
  color: #333333;
}
.about .content ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.about .content ul li:first-child {
  margin-top: 10px;
}
.about .content ul i {
  font-size: 40px;
  margin-right: 12px;
  color: #333333;
}
.about .content ul h5 {
  font-size: 20px;
  font-weight: 400;
  color: #333333;
  
}
.about .content ul p {
  font-size: 15px;
}
.about .content p:last-child {
  margin-bottom: 0;
}

.about .wheel {
  background-image: url(../img/EF\ Wheel\ Screen\ shot.png);
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  min-height: 380px;
  margin-top: 40px;
}

.blue1 {
  color: var(--primarycolor);
}

.blue2 {
  color: var(--highlightcolor1);
}

.green1 {
  color: var(--highlightcolor2);
}


/*--------------------------------------------------------------
# me
--------------------------------------------------------------*/

.me {
  background-color: #2a2e30;
  padding: 0 !important;
  color: white;
}

.me .container {
  margin-right: 0 !important;
}

.me p {
  font-size: calc(16px + 0.5vw);
  text-align: center;
  line-height: 1.3;
}

.me .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--primarycolor);
  background: white;
  margin-right: 20px;
  margin-top: 20px;
  border: 1px solid white;
}

.me h3 {
  font-weight: 400;
  font-size: calc(17px + 0.4vw);
  text-align: center;
  margin-bottom: calc(8px + 1vw);
}

.me .content {
  text-align: center;
}


.me .nadine {
  background-image: url(../img/meetnadine.png);
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
}


@media (min-width: 1400px){
  .me .content {
    margin: 4.5vw 0;
  }
  .me h3 {
    letter-spacing: 6px;
  }
}

@media (min-width: 1200px) and (max-width: 1399.98px){
  .me .content {
    margin: 4.5vw 0;
  }
  .me h3 {
    letter-spacing: 5px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px){
  .me .content {
    margin: 4.5vw 0;
  }
  .me h3 {
    letter-spacing: 4px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px){
  .me .content {
    margin: 7vw 0;
  }
  .me h3 {
    letter-spacing: 2px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px){
  .me .content {
    margin: 4vw 0;
  }
  .me h3 {
    letter-spacing: 1px;
  }
}
@media (max-width: 575.98px) {
  .me .content {
    margin: 10vw 0;
    padding: 0 7vw !important;
  }
  .me h3 {
    letter-spacing: 0px;
  }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}
.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #222222;
}
.skills .progress .skill .val {
  float: right;
  font-style: normal;
}
.skills .progress-bar-wrap {
  background: #e2eefd;
  height: 10px;
}
.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--primarycolor);
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
}
.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #f1f6fe;
}
.counts .count-box i {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: var(--primarycolor);
  color: #fff;
  width: 56px;
  height: 56px;
  line-height: 0;
  border-radius: 50px;
  border: 5px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #062b5b;
}
.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}
.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}
.clients img:hover {
  transform: scale(1.15);
}
@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  background-color: white;
  margin-bottom: 20px;
}

.services h3 {
  color: #444;
}

.services .icon-box {
  text-align: center;
  border: 1px solid #e2eefd;
  padding: 40px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  border-radius: 12px;
  margin: 10px;
  width: 100%;
}

.services .dark-blue {
  color: var(--primarycolor);
}

.services .light-blue {
  color: var(--highlightcolor1);
}

.services .green {
  color: var(--highlightcolor2);
}

.services .black {
  color: var(--secondarycolor);
}



.services .icon-box img {
  margin: 0 auto;
  width: auto;
  height: 128px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.services .icon-box .icon i {
  color: #3b8af2;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}
.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: calc(20px + 0.6vw);
  margin-top: 10px;
}

.services .dark-blue h4 {
  color: var(--primarycolor);
}

.services .light-blue h4 {
  color: var(--highlightcolor1);
}

.services .green h4 {
  color: var(--highlightcolor2);
}

.services .black h4 {
  color: var(--secondarycolor);
}




.services .icon-box .crazy {
  font-size: 50px;
  margin-bottom: 16px;
}

.services .icon-box p {
  line-height: 1.1;
  font-size: calc(15px + 0.5vw);
  padding: 1vw;
}
.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
}
.services .icon-box:hover h4 a, .services .icon-box:hover .icon i {
  color: var(--primarycolor);
}
.services .icon-box:hover .icon {
  border-color: var(--primarycolor);
}



@media (min-width: 768px) {
  .services .icon-box {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Plan
--------------------------------------------------------------*/
.Plan {
  background-color: #2a2e30;
}

.Plan h3 {
  color: white;
}

.Plan h4 {
  margin-bottom: 0;
}

.Plan .icon-box {
  text-align: center;
  justify-content: center;
  align-items: center;
  border: 1px solid #e2eefd;
  transition: all ease-in-out 0.3s;
  background: #fff;
  border-radius: 50%;
  display: flex;
}

.Plan .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #f1f6fe;
  border-radius: 4px;
  border: 1px solid #deebfd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}
.Plan .icon-box .icon i {
  color: #3b8af2;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}
.Plan .icon-box h4 {
  font-weight: 700;
  font-size: calc(13px + 0.4vw);
}
.Plan .icon-box h4 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}
.Plan .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.Plan .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
}
.Plan .icon-box:hover h4 a, .Plan .icon-box:hover .icon i {
  color: var(--primarycolor);
}
.Plan .icon-box:hover .icon {
  border-color: var(--primarycolor);
}


@media (min-width: 1400px){
.Plan .icon-box {
  width: 180px;
  height: 180px;
}
}
@media (min-width: 1200px) and (max-width: 1399.98px){
  .Plan .icon-box {
    width: 12vw;
    height: 12vw;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px){
  .Plan .icon-box {
    width: 136px;
    height: 136px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px){
  .Plan .icon-box {
    width: 141.6px;
    height: 141.6px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px){
  .Plan .icon-box {
    width: 157px;
    height: 157px;
  }
}
@media (max-width: 575.98px) {
    .Plan .icon-box {
      width: 141.6px;
      height: 141.6px;
    }
}



/*--------------------------------------------------------------
# me2
--------------------------------------------------------------*/

.me2 {
  background-color: white;
  padding: 0;
}

.me2 .container {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.me2 .section-title h2{
  font-size: 50px;
}

.me2 p {
  font-size: 18px;
  text-align: center;
  line-height: 1.5;
}

.me2 h3 {
  font-weight: 600;
  font-size: 26px;
  text-align: center;
}
.me2 .content ul {
  list-style: none;
  padding: 0;
}
.me2 .content ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.me2 .content ul li:first-child {
  margin-top: 10px;
}
.me2 .content ul i {
  font-size: 40px;
  margin-right: 12px;
  color: var(--primarycolor)
}
.me2 .content ul h5 {
  font-size: 20px;
  font-weight: 400;
  color: #555555;
}
.me2 .content ul p {
  font-size: 15px;
}
.me2 .content p:last-child {
  margin-bottom: 0;
}

.me2 .nadine2 {
  background-image: url(../img/Meet\ Me.png);
  background-position: right top;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/


.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
}

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

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

.testimonials .testimonial-item {
  text-align: center;
  color: #333333;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid #333333;
  margin: 0 auto;
}

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

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

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: yellow;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #333333;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #333333;
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #333333;
  opacity: 1;
}

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

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    font-size: calc(12px + 1vw) !important;
  }
}

@media (max-width: 992px) {
  .testimonials .testimonial-item p {
    font-size: calc(15px + 1vw) !important;
  }
}



@media (min-width: 1400px){
  .testimonials {
  background: linear-gradient(#ffffffb5, #ffffffb5), url("../img/TestimonialsBack.png") no-repeat;
  padding: 90px 15px;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
}
}
@media (min-width: 1200px) and (max-width: 1399.98px){
  .testimonials {
    background: linear-gradient(#ffffffb5, #ffffffb5), url("../img/TestimonialsBack.png") no-repeat;
    padding: 90px 15px;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px){
  .testimonials {
    background: linear-gradient(#ffffffb5, #ffffffb5), url("../img/TestimonialsBack.png") no-repeat;
    padding: 90px 15px;
    background-position: top center;
    background-attachment: scroll;
    background-size: cover;
    position: relative;
  }
}
@media (min-width: 768px) and (max-width: 991.98px){
  .testimonials {
    background: linear-gradient(#ffffffb5, #ffffffb5), url("../img/TestimonialsBack.png") no-repeat;
    padding: 90px 15px;
    background-position: top center;
    background-attachment: scroll;
    background-size: cover;
    position: relative;
  }
}
@media (min-width: 576px) and (max-width: 767.98px){
  .testimonials {
    background: linear-gradient(#ffffffb5, #ffffffb5), url("../img/TestimonialsBack.png") no-repeat;
    padding: 90px 15px;
    background-position: top center;
    background-attachment: scroll;
    background-size: cover;
    position: relative;
  }
}
@media (max-width: 575.98px) {
.testimonials {
  background: linear-gradient(#ffffffb5, #ffffffb5), url("../img/TestimonialsBack.png") no-repeat;
  padding: 90px 15px;
  background-position: top center;
  background-attachment: scroll;
  background-size: cover;
  position: relative;
}
}




/* Call to Action Section Styles */
#call-to-action {
  padding: 40px; /* Adds more space inside the section */
  text-align: center; /* Centers the text */
  margin: 30px 9vw ; /* Adds more space outside the section for better separation */
  line-height: 1.2;
}

#call-to-action .section-title {
  padding-bottom: 10px;
}

#call-to-action p {
  margin: 0 1vw 30px;
  font-size: calc(20px + 0.5vw);
  text-align: center;
}

.cta-button {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 9px 24px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: var(--primarycolor);
  border: 1px solid white;
}

.cta-button:hover, .cta-button:focus {
  color: #ffffff; /* Ensures text color remains white on hover/focus */
  text-decoration: none; /* Maintains no underline on hover/focus */
}




/*--------------------------------------------------------------
# Quote
--------------------------------------------------------------*/
#quote {
  background-color: #2a2e30;
  padding: 10vw 15% 5vw;
}

.quote p {
  text-align: center;
  color: white;
  font-size: calc(14px + 1vw);
}

.source {
  padding-top: 30px;
  text-align: right !important;
  font-family: HolidayFree;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: linear-gradient(#ffffffd5, #ffffffd5), url(../img/logodesign.png) no-repeat;
  background-color: white;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 10px 0 10px 0;
  margin: 4% 1%;
  color: #444444;
  font-size: 14px;
  max-height: 100vw;
}

#footer h4 {
  font-family: HolidayFree;
  font-size: calc(1.4vw + 22px);
}

#footer p {
  font-size: calc(0.6vw + 24px);
}

#footer .footer-top {
  text-align: center;
  padding: calc(7vw + 28px) 0 6vw;
}

#footer .email {
  padding-top: 16px;
  font-size: 19px;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--primarycolor);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #3b8af2;
  color: #fff;
  text-decoration: none;
}
#footer .copyright {
  text-align: center;
}

@media (max-width: 768px) {
  #footer .copyright, #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}