@charset "UTF-8";
/* ============================================================
    [ Master Stylesheets ]

    Theme Name: Maxbee - Cleaning HTML Template
    Author: Bmkxcode
    Description: Maxbee - Cleaning HTML Template
    Version: 1.0.0

============================================================== */


/*========================================

*********** TABLE OF CONTENTS **********

    01. Global / Reset / Normalize Styles CSS
    02. Header Section CSS
        02.1 Header Top CSS
        02.2 Header Navbar CSS
        02.3 Search Popup CSS
    03. Hero Section CSS
    04. About Us Section CSS
    05. Feature Section CSS
    06. Services Section CSS
    07. Why Choose Section CSS
    08. Portfolio Section CSS
    09. Consulting Section CSS
    10. Partners Section CSS
    11. Pricing Section CSS
    12. Testimonials Section CSS
    13. News Section CSS
    14. Foooter Section CSS
        14.1 Footer Top CSS
        14.2 Footer Area CSS
        14.3 Copyright CSS
    15. About Us Page CSS
        15.1 Breadcrumb CSS
        15.2 About Area CSS
        15.3 Work Process CSS
        15.4 CTA Banner CSS
        15.5 History CSS
        15.6 Our Teams CSS
    16. Services Page CSS
        16.1 Services Listing CSS
        16.2 Process CSS
        16.3 Faqs CSS
    17. Services Single Page CSS
        17.1 Services Single CSS
    18. News Grid Page CSS
        18.1 News Grid CSS
    19. News Standard Page CSS
        19.1 News Standard CSS
    20. News Single Page CSS
        20.1. News Single CSS
        20.2 Related News & Updates CSS
    21. Contact Us Page CSS
        21.1 Contact Info CSS
        21.2 Contact Form CSS
        21.3 Google Map CSS
    22. Team Single Page CSS
        22.1 Team Single CSS
    23. Faqs Page CSS
        23.1 Faqs CSS
    24. Review Page CSS
        24.1 Review CSS
    25. Portfolio Page CSS
        25.1 Work CSS
    26. Portfolio Single Page CSS
        26.1 Work Single CSS
        26.2 Before After Image CSS
    27. Online Booking Page CSS
        27.1 Online Booking Form CSS
    28.  Pricing Plan Page CSS
        28.1 Pricing Plan Style 2 CSS
    29. 404 Page CSS
        29.1 404 Error CSS

*********** TABLE OF CONTENTS **********

========================================*/

/* ==============================
   01. Global / Reset / Normalize Styles CSS
============================== */

:root{
  --theme-color: #02154E;
  --theme-color10: rgba(2, 21, 78, 0.1);
  --theme-color20: rgba(2, 21, 78, 0.2);
  --theme-color30: rgba(2, 21, 78, 0.3);
  --theme-color60: rgba(2, 21, 78, 0.6);
  --theme-color70: rgba(2, 21, 78, 0.7);
  --theme-color80: rgba(2, 21, 78, 0.8);
  --secondary-color: #22D3EE;
  --secondary-color10: rgba(34, 211, 238, 0.1);
  --secondary-color20: rgba(34, 211, 238, 0.2);
  --secondary-color30: rgba(34, 211, 238, 0.3);
  --secondary-color50: rgba(34, 211, 238, 0.5);
  --white-color: #FFFFFF;
  --white-color80: rgba(255, 255, 255, 0.8);
  --white-color90: rgba(255, 255, 255, 0.9);
  --black: #000000;
  --black15: rgba(0, 0, 0, 0.15);
  --light-blue: #ECF1F5;
  --antique-Silver: #676E6E; 
  --yellow: #FFC107;
  --theme-font: 'Dosis', sans-serif;
  --body-font: 'Raleway', sans-serif;
  --theme-icon-font: 'icomoon';
}

html, body {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body{
  background-color: var(--white-color);
  color: var(--antique-Silver);
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  display: block;
  object-fit: cover;
  max-width: 100%;
}
a{
  text-decoration: none;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
a:focus,
a:hover {
  text-decoration: none;
}
button {
  font-family: var(--theme-font);
  border: none;
  outline: none;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
button:hover,
button:focus{
  box-shadow: none;
}
h1, h2, h3, h4, h5, h6{
  margin: 0;
}
ul{
  margin: 0px;
  padding: 0px;
}
ul li{
  list-style: none;
}
p{
  margin: 0;
}
section{
  display: inline-block;
  margin: 40px 0;
  width: 100%;
}
@media (max-width:767px){
  section{
    margin: 30px 0;
  }
}
input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=url],
textarea,
textarea.form-control {
  background-color: var(--white-color);
  border: 1px solid var(--theme-color30);
  color: var(--theme-color70);
  outline: none;
  font-family: var(--theme-font);
  font-size: 16px;
  line-height: 1;
  height: 50px;
  padding: 6px 16px;
  width: 100%;
}
textarea.form-control {
  height: 120px;
}
@media (max-width:575px){
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=number],
  input[type=password],
  input[type=url],
  textarea,
  textarea.form-control {
    height: 42px;
  }
}
input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder
textarea.form-control::-webkit-input-placeholder {
  color: var(--theme-color70);
}
input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=url]::-moz-placeholder,
textarea::-moz-placeholder,
textarea.form-control::-moz-placeholder {
  color: var(--theme-color70);
}
input[type=text]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=url]:-moz-placeholder,
textarea.form-control:-moz-placeholder {
  color: var(--theme-color70);
}
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
textarea.form-control:-ms-input-placeholder {
  color: var(--theme-color70);
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=url]::placeholder,
textarea::placeholder,
textarea.form-control::placeholder {
  color: var(--theme-color70);
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=url]:focus,
textarea:focus,
textarea.form-control:focus,
.form-control:focus {
  border-color: var(--theme-color30);
  box-shadow: none;
  color: var(--theme-color70);
}
.nice-select:after{
  border-bottom: 2px solid var(--theme-color);
  border-right: 2px solid var(--theme-color);
  height: 10px;
  width: 10px;
  margin: -8px 0 auto 0;
}
.form-select{
  background-image: none;
}
::-moz-selection {
  background-color: var(--theme-color);
  color: var(--secondary-color);
  text-shadow: none;
}
::selection {
  background-color: var(--theme-color);
  color: var(--secondary-color);
  text-shadow: none;
}
@media (min-width:1400px){
  .auto-container {
    max-width: 1392px;
    margin: 0 auto;
  }
}
.mb-40{
  margin-bottom: 40px;
}
.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}
.g-24,
.gy-24 {
  --bs-gutter-y: 24px;
}
.g-48,
.gy-48 {
  --bs-gutter-y: 48px;
}
.theme-btn{
  background-color: var(--theme-color);
  border-radius: 6px;
  color: var(--white-color);
  font-family: var(--theme-font);
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: max-content;
  width: 100%;
  padding: 2px 12px 2px 2px;
  position: relative;
  z-index: 1;
}
.theme-btn::after{
  background-color: var(--secondary-color);
  border-radius: 4px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 2px;
  content: "";
  margin: auto 0;
  height: calc(100% - 4px);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 40px;
  z-index: -1;
}
.theme-btn i{
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  height: 40px;
  width: 40px;
}
.theme-btn:hover{
  color: var(--theme-color);
}
.theme-btn:hover::after{
  width: calc(100% - 4px);
}

.title{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.subheading{
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: max-content;
  width: 100%;
}
.subheading-square{
  background-color: var(--secondary-color30);
  border-radius: 2px;
  height: 16px;
  position: relative;
  width: 16px;
}
.subheading-square::after{
  background-color: var(--secondary-color);
  border-radius: 2px;
  content: "";
  height: 8px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 8px;
}
.subheading-text{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}
.heading{
  font-family: var(--theme-font);
  font-size: 48px;
  font-weight: 600;
  line-height: normal;
  color: var(--theme-color);
}
@media (max-width:1399px){
  .heading{
    font-size: 40px;
  }
}
@media (max-width:575px){
  .heading{
    font-size: 28px;
  }
}
.title p{
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.nice-select,
.nice-select .list{
  width: 100%;
}

/* Preloader CSS */

#preloader{
  background: var(--white-color);
  height: 100vh;
  margin-top: 0px;
  overflow: hidden;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 999;
}
.preloader-inner{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.loader-icon{
  position: relative;
}
.loader{
  width: 48px;
  height: 48px;
  border: 5px solid;
  border-color: var(--theme-color) transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  -webkit-animation: rotation 1s linear infinite;
  -moz-animation: rotation 1s linear infinite;
  -ms-animation: rotation 1s linear infinite;
  -o-animation: rotation 1s linear infinite;
  animation: rotation 1s linear infinite;
}
@-moz-keyframes rotation {
  0% { 
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}
@-ms-keyframes rotation {
  0% { 
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}
@-webkit-keyframes rotation {
  0% { 
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}
@keyframes rotation {
  0% { 
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}

/* Back To Top CSS */

#backtotop{
  background-color: var(--secondary-color);
  border-radius: 4px;
  box-shadow: 0 0px 10px 5px var(--black15);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  opacity: 0;
  position: fixed;
  bottom: 30px;
  right: 30px;
  text-align: center;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  visibility: hidden;
  width: 46px;
  z-index: 97;
}
@media (max-width:575px){
  #backtotop{
    bottom: 12px;
    right: 12px;
  }
}
#backtotop.show {
  opacity: 1;
  visibility: visible;
}
#backtotop i{
  color: var(--theme-color);
  display: block;
  font-size: 24px;
  font-weight: normal;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}

/* ==============================
   02. Header CSS
============================== */

header{
  border-radius: 10px;
  padding: 0 40px;
  position: sticky;
  top: 10px;
  z-index: 98;
}
@media (max-width:991px){
  header{
    padding: 0 20px;
  }
}
@media (max-width:575px){
  header{
    padding: 0 12px;
  }
}

/* =========   02.1 Header Top CSS   ========= */

.header-top{
  background-color: var(--theme-color);
  border-radius: 10px 10px 0 0;
  padding: 8px 4px;
}
.header-contact ul{
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.header-contact ul li{
  color: var(--white-color);
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
}
@media (max-width:991px){
  .header-contact ul li{
    display: none;
  }
  .header-contact ul li:first-child{
    display: flex;
  }
}
.header-contact ul li i{
  color: var(--secondary-color);
  font-size: 20px;
}
.header-contact ul li a{
  color: var(--white-color);
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}
.header-social ul{
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.header-social ul li{
  list-style: none;
}
.header-social ul li a{
  color: var(--secondary-color);
  display: flex;
  font-size: 22px;
}

/* =========   02.2 Header Navbar CSS   ========= */

.header-navbar{
  backdrop-filter: blur(10px);
  background-color: var(--white-color90);
  border-radius: 0 0 10px 10px;
}
.header-navbar .container-fluid{
  padding: 0;
}
.header-navbar-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.header-logo{
  padding: 0 0 0 16px;
}
.header-logo a img{
  max-height: 54px;
  max-width: 186px;
}
@media (max-width:767px){
  .header-logo a img{
    max-height: 40px;
  }
}
@media (max-width:575px){
  .header-logo a img{
    max-width: 120px;
  }
}
.header-navbar .main-menu{
  display: block;
}
.main-menu > ul{
  display: flex;
  gap: 30px;
}
@media (max-width:1399px){
  .main-menu > ul{
    gap: 20px;
  }
}
.main-menu > ul > li{
  position: relative;
}
.main-menu > ul > li > a{
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
  color: var(--theme-color);
  display: block;
  padding: 33px 0;
}
@media (max-width:1399px){
  .main-menu > ul > li > a{
    font-size: 16px;
  }
}
.main-menu > ul > li > a.active,
.main-menu > ul > li > a:hover{
  color: var(--secondary-color);
}
.main-menu > ul > li.dropdown > a{
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-menu > ul > li.dropdown > a::after{
  font-family: var(--theme-icon-font);
  content: "\e91b";
  font-size: 14px;
  font-weight: bold;
}
.main-menu > ul > li > .submenu{
  background-color: var(--white-color);
  border: 1px solid var(--theme-color30);
  border-radius: 6px;
  position: absolute;
  top: calc(100% + 30px);
  left: 0;
  min-width: 240px;
  opacity: 0;
  padding: 5px 10px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  visibility: hidden;
}
@media (max-width:1199px){
  .main-menu > ul > li > .submenu{
    border: 0;
    display: none;
    opacity: 1;
    position: unset;
    top: unset;
    left: unset;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
    visibility: visible;
  }
}
.main-menu > ul > li:hover .submenu{
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.main-menu > ul > li > .submenu li a{
  border-radius: 6px;
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 6px 0;
  padding: 10px 15px;
}
@media (max-width:1399px){
  .main-menu > ul > li > .submenu li a{
    font-size: 14px;
    padding: 8px 12px;
  }
}
.main-menu > ul > li > .submenu li a.active,
.main-menu > ul > li > .submenu li a:hover{
  background-color: var(--theme-color);
  color: var(--white-color);
}
.header-right{
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (max-width:767px){
  .header-right{
    gap: 20px;
  }
}
@media (max-width:767px){
  .header-right .theme-btn{
    display: none;
  }
}
.btn-search{
  background-color: var(--secondary-color);
  border-radius: 0 0 10px 0;
  color: var(--theme-color);
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 86px;
  width: 86px;
}
@media (max-width:767px){
  .btn-search{
    font-size: 32px;
    height: 60px;
    width: 60px;
  }
}
.menu-close {
  background-color: var(--theme-color);
  border-radius: 6px;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 40px;
  z-index: 1;
}
.menu-toggle{
  background-color: var(--theme-color);
  border: 0;
  border-radius: 6px;
  display: none;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  padding: 0;
  position: relative;
}
@media (max-width:1199px){
  .menu-toggle{
    display: flex;
  }
}
.menu-toggle .menu-line{
  background-color: var(--white-color);
  height: 2px;
  position: relative;
  width: 24px;
}
.menu-toggle .menu-line::after{
  background-color: var(--white-color);
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  content: "";
  margin: 0 auto;
  height: 2px;
  width: 24px;
}
.menu-toggle .menu-line::before{
  background-color: var(--white-color);
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  content: "";
  margin: 0 auto;
  height: 2px;
  width: 24px;
}
.sidebar-wp{
  overflow: hidden;
}
.sidebar-inner{
  background-color: var(--white-color);
  border-radius: 16px;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 10px;
  height: calc(100% - 20px);
  margin: auto 0;
  max-width: 400px;
  overflow-y: auto;
  scrollbar-width: none;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  transform: translateX(calc(100% + 80px));
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  padding: 20px;
  width: 100%;
  z-index: 99;
}
@media (max-width:575px){
  .sidebar-inner{
    max-width: calc(100% - 20px);
  }
}
.sidebar-inner.sidebar-open{
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}
.sidebar-overlay{
  background-color: var(--theme-color70);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  width: 100%;
  z-index: 98;
}
.sidebar-overlay.sidebar-open{
  opacity: 1;
  visibility: visible;
}
.sidebar-close-btn{
  background-color: var(--white-color);
  border: 2px solid var(--theme-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: normal;
  height: 40px;
  margin: 0 0 0 auto;
  padding: 0;
  width: 40px;
}
.sidebar-close-btn:hover{
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: var(--white-color);
}
.sidebar-close-btn i{
  font-size: 20px;
  font-weight: normal;
}
.mobile-menu{
  display: none;
}
@media (max-width:1199px){
  .mobile-menu{
    display: block;
  }
}
.mobile-menu ul li .submenu{
  display: none;
  padding: 0 0 0 20px;
}
.mobile-menu nav > ul > li:not(:last-child){
  margin: 0 0 10px;
}
.mobile-menu nav > ul > li > a,
.mobile-menu nav > ul > li a{
  color: var(--theme-color);
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  padding: 8px 0;
}
.mobile-menu nav > ul > li.active > a,
.mobile-menu nav > ul > li a.active{
  color: var(--secondary-color);
}
.menu-close {
  background-color: var(--theme-color);
  border-radius: 6px;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 40px;
  z-index: 1;
}
.menu-close i{
  font-weight: normal;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.mobile-menu nav > ul > li.active > .menu-close i{
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* =========   02.3 Search Popup CSS   ========= */

.search-popup{
  overflow: hidden;
}
.search-popup-inner{
  background-color: var(--white-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  min-height: 400px;
  max-height: calc(100% - 20px);
  overflow-y: auto;
  padding: 100px 0 40px;
  scrollbar-width: none;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  transform: translateY(calc(-100%));
  -webkit-transform: translateY(calc(-100%));
  -moz-transform: translateY(calc(-100%));
  -ms-transform: translateY(calc(-100%));
  -o-transform: translateY(calc(-100%));
  width: calc(100% - 20px);
  z-index: 99;
}
@media (max-width:575px){
  .search-popup-inner{
    min-height: 260px;
    padding: 80px 0 40px;
  }
}
.search-popup-inner.search-open{
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
}
.popup-close{
  position: absolute;
  top: 40px;
  right: 40px;
}
@media (max-width:575px){
  .popup-close{
    top: 20px;
    right: 20px;
  }
}
.search-popup-close-btn{
  background-color: var(--secondary-color);
  border: 2px solid var(--theme-color);
  border-radius: 6px;
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 40px;
}
.search-popup-close-btn:hover{
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: var(--secondary-color);
}
.search-popup-close-btn i{
  color: var(--theme-color);
  font-size: 20px;
  font-weight: normal;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.search-popup-close-btn:hover i{
  color: var(--secondary-color);
}
.search-popup-content .input-group input{
  border: 0;
  border-bottom: 1px solid var(--theme-color70);
  border-radius: 0;
  font-size: 30px;
  font-weight: 400;
  color: var(--theme-color70);
  height: 70px;
  padding: 8px 80px 8px 20px;
}
@media (max-width:575px){
  .search-popup-content .input-group input{
    font-size: 18px;
    height: 50px;
    padding: 8px 60px 8px 10px;
  }
}
.search-popup-content .input-group input::placeholder{
  color: var(--theme-color70);
}
.search-popup-btn{
  background-color: var(--white-color);
  border: 0;
  color: var(--theme-color);
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  height: calc(100% - 1px);
  width: 70px;
  z-index: 8;
}
@media (max-width:575px){
  .search-popup-btn{
    width: 50px;
  }
}
.search-popup-btn:hover{
  color: var(--secondary-color);
}
.search-popup-btn i{
  font-size: 36px;
  font-weight: normal;
}
@media (max-width:575px){
  .search-popup-btn i{
    font-size: 26px;
  }
}
.search-popup-overlay{
  background-color: var(--theme-color70);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  width: 100%;
  z-index: 98;
}
.search-popup-overlay.search-open{
  opacity: 1;
  visibility: visible;
}

/* ==============================
   03. Hero Section CSS
============================== */

.hero{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: -124px 0 40px;
  padding: 242px 0 110px;
  position: relative;
  z-index: 1;
}
@media (max-width:991px){
  .hero{
    padding: 200px 0 80px;
  }
}
@media (max-width:767px){
  .hero{
    padding: 200px 0 60px;
  }
}
.hero::after{
  background: linear-gradient(90deg, var(--theme-color80) 50%, transparent 100%);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 100%;
  width: 100%;
  z-index: -1;
}
.hero-content{
  display: flex;
  flex-direction: column;
}
@media (max-width:991px){
  .hero-content{
    margin: 0 0 60px;
  }
}
.hero-subheading{
  color: var(--secondary-color);
  font-family: var(--theme-font);
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1px;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.hero-heading{
  color: var(--white-color);
  font-family: var(--theme-font);
  font-size: 90px;
  font-weight: 500;
  line-height: 1;
  margin: 0 0 40px 0;
}
@media (max-width:1399px){
  .hero-heading{
    font-size: 80px;
  }
}
@media (max-width:1199px){
  .hero-heading{
    font-size: 60px;
  }
}
@media (max-width:767px){
  .hero-heading{
    font-size: 40px;
  }
}
@media (max-width:575px){
  .hero-heading{
    font-size: 38px;
  }
}
.hero-heading span{
  font-size: 110px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width:1399px){
  .hero-heading span{
    font-size: 100px;
  }
}
@media (max-width:1199px){
  .hero-heading span{
    font-size: 80px;
  }
}
@media (max-width:767px){
  .hero-heading span{
    font-size: 60px;
  }
}
@media (max-width:575px){
  .hero-heading span{
    font-size: 48px;
  }
}
.hero-heading b{
  color: var(--secondary-color);
  font-weight: 500;
  text-decoration: underline;
}
.hero-description{
  color: var(--white-color);
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  margin: 0 0 30px;
  max-width: 670px;
}
@media (max-width:767px){
  .hero-description{
    font-size: 18px;
  }
}
@media (max-width:575px){
  .hero-description{
    font-size: 16px;
  }
}
.hero-btn-group{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width:575px){
  .hero-btn-group{
    gap: 10px;
  }
}
.hero-btn-group .theme-btn{
  background-color: var(--white-color);
  color: var(--theme-color);
}
.hero-contact{
  color: var(--white-color);
  font-family: var(--theme-font);
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: max-content;
  width: 100%;
}
@media (max-width:575px){
  .hero-contact{
    font-size: 20px;
  }
}
.hero-contact:hover{
  color: var(--white-color);
}
.hero-contact i{
  background-color: var(--secondary-color);
  border-radius: 4px;
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  height: 40px;
  width: 40px;
}
.hero-form{
  background-color: var(--white-color);
  border-radius: 10px;
  padding: 40px 30px;
}
@media (max-width:1199px){
  .hero-form{
    padding: 30px 20px;
  }
}
.hero-form-heading{
  color: var(--theme-color);
  font-size: 30px;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 40px;
  text-align: center;
  text-transform: capitalize;
  width: 100%;
}
@media (max-width:1199px){
  .hero-form-heading{
    font-size: 26px;
    margin: 0 0 30px;
  }
}
.hero-form .form-group{
  display: inline-block;
  margin: 0 0 20px;
  width: 100%;
}
.hero-form .form-control{
  background-color: var(--secondary-color10);
  border: 0;
  border-radius: 6px;
  color: var(--theme-color60);
  height: 50px;
  font-family: var(--theme-font);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  padding: 6px 15px;
}
@media (max-width:1199px){
  .hero-form .form-control{
    font-size: 16px;
  }
}
.hero-form .form-select{
  background-color: var(--secondary-color10);
  border: 0;
  border-radius: 6px;
  color: var(--theme-color60);
  height: 50px;
  font-family: var(--theme-font);
  font-size: 20px;
  font-weight: 500;
  line-height: 36px;
  padding: 6px 15px;
}
@media (max-width:1199px){
  .hero-form .form-select{
    font-size: 16px;
  }
}
.hero-form .form-control::placeholder{
  color: var(--theme-color60);
}
.hero-form .form-select:focus{
  box-shadow: none;
}
.hero-form textarea.form-control{
  height: 120px;
  resize: none;
}

/* ==============================
   04. About Us Section CSS
============================== */

.about-us-title .heading{
  max-width: 672px;
}
.about-thumb{
  display: flex;
  gap: 24px;
  height: 100%;
  position: relative;
}
@media (max-width:991px){
  .about-thumb{
    height: auto;
    margin: 0 0 40px 0;
  }
}
@media (max-width:575px){
  .about-thumb{
    flex-direction: column;
  }
}
.about-thumb-img{
  width: 100%;
}
.about-thumb-img img{
  border-radius: 10px;
  height: 100%;
  width: 100%;
}
.about-thumb-counter{
  background-color: var(--white-color);
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0 var(--black15);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  min-width: 278px;
  padding: 20px;
  position: absolute;
  bottom: 40px;
  right: 0;
}
@media (max-width:1399px){
  .about-thumb-counter{
    bottom: 20px;
  }
}
@media (max-width:575px){
  .about-thumb-counter{
    min-width: unset;
    position: unset;
  }
}
.about-experience-number{
  display: flex;
  align-items: start;
}
.year-number{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width:1399px){
  .year-number{
    font-size: 86px;
  }
}
.about-experience-number span{
  color: var(--theme-color);
  font-size: 96px;
  font-weight: 400;
  line-height: 50px;
}
@media (max-width:1399px){
  .about-experience-number span{
    font-size: 86px;
  }
}
.about-thumb-counter p{
  color: var(--theme-color);
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
}
.about-thumb-small-img{
  max-width: 208px;
  width: 100%;
}
@media (max-width:575px){
  .about-thumb-small-img{
    max-width: 100%;
  }
}
.about-thumb-small-img img{
  border-radius: 10px;
  width: 100%;
}
.about-us-conent{
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.about-us-conent p{
  font-weight: 500;
}
.about-us-conent ul li{
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin: 0 0 10px;
  padding: 0 0 0 34px;
  position: relative;
}
.about-us-conent ul li::before {
  background-color: var(--secondary-color);
  border-radius: 4px;
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--theme-icon-font);
  font-size: 14px;
  font-weight: normal;
  content: "\e91d";
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
}

/* ==============================
   05. Feature Section CSS
============================== */

.feature-boxs{
  background-color: var(--white-color);
  border: 1px solid var(--theme-color10);
  border-radius: 20px 0 20px 0;
  box-shadow: 0px 0px 10px 0 var(--black15);
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
  isolation: isolate;
  padding: 50px 26px;
  position: relative;
  z-index: 1;
}
.feature-boxs::after{
  background: transparent;
  border-top: 2px solid var(--secondary-color);
  border-left: 2px solid var(--secondary-color);
  border-top-left-radius: 20px;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 100px;
  z-index: -1;
}
.feature-boxs::before{
  background: transparent;
  border-bottom: 2px solid var(--secondary-color);
  border-right: 2px solid var(--secondary-color);
  border-bottom-right-radius: 20px;
  height: 100px;
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 100px;
  z-index: -1;
}
.feature-boxs:hover::after,
.feature-boxs:hover::before{
  height: 100%;
  width: 100%;
}
.feature-icon{
  background-color: var(--secondary-color10);
  border-radius: 8px;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  height: 90px;
  width: 90px;
}
.feature-content{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-box-heading{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}
.feature-content p{
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

/* ==============================
   06. Services Section CSS
============================== */

.services{
  background-color: var(--theme-color);
  padding: 80px 0;
}
@media (max-width:767px){
  .services{
    padding: 60px 0;
  }
}
.services-title{
  align-items: center;
}
.services-title .subheading-text{
  color: var(--white-color);
}
.services-title .heading{
  color: var(--white-color);
  max-width: 672px;
  text-align: center;
}
.services-slider-img{
  border-radius: 10px;
  isolation: isolate;
  overflow: hidden;
  position: relative;
}
.services-slider-img::after{
  background-color: var(--secondary-color20);
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 100%;
  width: 100%;
}
.services-slider-img img{
  border-radius: 10px;
  max-height: 300px;
  min-height: 300px;
  height: 100%;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (max-width:991px){
  .services-slider-img img{
    max-height: 250px;
    min-height: 250px;
  }
}
.services-slider-img:hover img{
  transform: scale(1.03);
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  -ms-transform: scale(1.03);
  -o-transform: scale(1.03);
}
.services-slider-title{
  background-color: var(--white-color90);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--theme-font);
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  padding: 16px;
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: calc(100% - 60px);
  z-index: 1;
}
@media (max-width:991px){
  .services-slider-title{
    bottom: 20px;
    font-size: 20px;
    padding: 10px 16px;
    width: calc(100% - 40px);
  }
}
.services-slider-title:hover{
  color: var(--theme-color);
}
.services-slider-arrow{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 30px 0 0;
}
.services-slider .swiper-button-prev{
  background-color: var(--secondary-color);
  border-radius: 8px;
  color: var(--theme-color);
  height: 40px;
  margin: 0;
  position: unset;
  left: unset;
  width: 40px;
}
.services-slider .swiper-button-prev::after{
  font-family: var(--theme-icon-font);
  font-size: 26px;
  font-weight: normal;
  content: "\e91a";
}
.services-slider .swiper-button-next{
  background-color: var(--secondary-color);
  border-radius: 8px;
  color: var(--theme-color);
  height: 40px;
  margin: 0;
  position: unset;
  right: unset;
  width: 40px;
}
.services-slider .swiper-button-next::after{
  font-family: var(--theme-icon-font);
  font-size: 26px;
  font-weight: normal;
  content: "\e91d";
}
.services-bottom{
  margin: 40px 0 0;
  text-align: center;
}
.services-bottom p{
  color: var(--white-color);
  font-family: var(--theme-font);
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  margin: 0;
  text-align: center;
}
.services-booknow{
  color: var(--secondary-color);
  text-transform: uppercase;
}
.services-booknow:hover{
  color: var(--secondary-color);
}

/* ==============================
   07. Why Choose Section CSS
============================== */

.why-choose-list{
  overflow: hidden;
}
@media (max-width:991px){
  .why-choose-list{
    margin: 0 0 40px;
  }
}
.why-choose-list-inner{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}
.why-choose-box{
  margin: 0 0 24px;
  padding: 0 12px;
  width: 50%;
}
@media (max-width:767px){
  .why-choose-box{
    width: 100%;
  }
}
.why-choose-box:last-child{
  width: 100%;
  margin: 0;
}
.why-choose-box-inner{
  background-color: var(--secondary-color10);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
  padding: 40px 30px;
}
@media (max-width:575px){
  .why-choose-box-inner{
    padding: 30px 20px;
  }
}
.why-choose-icon{
  color: var(--secondary-color);
  font-size: 60px;
  display: flex;
}
.why-choose-content{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-choose-box-heading{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 28px;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.why-choose-content p{
  margin: 0;
}
.why-choose-right{
  background-color: var(--theme-color);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
  height: 100%;
  padding: 40px 30px;
}
@media (max-width:767px){
  .why-choose-right{
    height: auto;
  }
}
@media (max-width:575px){
  .why-choose-right{
    padding: 30px 20px;
  }
}
.why-choose-boxs-top{
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.why-choose-right-content{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-choose-right-heading{
  color: var(--white-color);
  font-family: var(--theme-font);
  font-size: 28px;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.why-choose-right-content p{
  color: var(--white-color);
}
.why-choose-btn .theme-btn{
  background-color: var(--white-color);
  color: var(--theme-color);
}

/* ==============================
   08. Portfolio Section CSS
============================== */

.portfolio-viewmore-btn{
  display: flex;
  align-items: end;
  justify-content: end;
  height: 100%;
}
@media (max-width:991px){
  .portfolio-viewmore-btn{
    justify-content: center;
    height: auto;
  }
}
.portfolio-box{
  border: 1px solid var(--theme-color20);
  border-radius: 80px 80px 10px 10px;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 0 60px;
  padding: 0 30px;
}
@media (max-width:1199px){
  .portfolio-box{
    border-radius: 60px 60px 10px 10px;
    padding: 0 20px;
  }
}
.portfolio-box-content{
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
.portfolio-box-icon{
  background-color: var(--secondary-color);
  border-radius: 0 0 10px 10px;
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: normal;
  height: 60px;
  width: 60px;
}
.portfolio-box:hover .portfolio-box-icon{
  background-color: var(--theme-color);
  color: var(--white-color);
}
.portfolio-box-icon:hover{
  color: var(--theme-color);
}
.portfolio-box-icon i{
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
.portfolio-box-copy{
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.portfolio-box-heading{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 28px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
}
.portfolio-box-copy p{
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}
@media (max-width:1199px){
  .portfolio-box-copy p{
    font-size: 16px;
  }
}
.portfolio-box-img{
  border-radius: 10px;
  isolation: isolate;
  margin: 0 0 -60px;
  overflow: hidden;
}
.portfolio-box-img img{
  border-radius: 10px;
  max-height: 260px;
  height: 100%;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 100%;
}
.portfolio-box:hover .portfolio-box-img img{
  transform: scale(1.03);
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  -ms-transform: scale(1.03);
  -o-transform: scale(1.03);
}

/* ==============================
   09. Consulting Section CSS
============================== */

.consulting{
  background-color: var(--theme-color);
  margin: 40px 0 90px;
  padding: 80px 0 2px;
}
@media (max-width:767px){
  .consulting{
    margin: 30px 0 90px;
    padding: 60px 0 2px;
  }
}
.consulting-title{
  align-items: center;
}
.consulting-title .subheading-text{
  color: var(--white-color);
}
.consulting-title .heading{
  color: var(--white-color);
  max-width: 672px;
  text-align: center;
}
.consulting-title p{
  color: var(--white-color);
  max-width: 490px;
  text-align: center;
}
@media (max-width:991px){
  .consulting-box{
    margin: 80px 0 0;
  }
}
.consulting-box:nth-child(odd) .consulting-counter{
  background-color: var(--secondary-color);
}
@media (max-width:991px){
  .consulting-box:nth-child(1),
  .consulting-box:nth-child(2){
    margin: 0;
  }
}
@media (max-width:575px){
  .consulting-box:nth-child(2){
    margin: 80px 0 0;
  }
}
.consulting-counter{
  background-color: var(--white-color);
  border-radius: 150px 150px 0 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 40px;
  padding: 40px 16px 0;
}
.consulting-counter-copy{
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.consulting-counter-number{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
}
.consulting-counter-copy h3{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  margin: 0;
  text-align: center;
}
.consulting-counter-icon{
  background-color: var(--theme-color);
  border-radius: 50%;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  font-weight: normal;
  height: 100px;
  margin: 0 0 -50px;
  width: 100px;
}

/* ==============================
   10. Partners Section CSS
============================== */

.partners-copy{
  display: flex;
  align-items: end;
  justify-content: end;
  height: 100%;
}
.partners-logo{
  background-color: var(--light-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 150px;
  max-height: 150px;
  padding: 10px;
}
.partners-logo{
  max-height: 100%;
}
.partners-bottom{
  border-top: 1px solid var(--theme-color20);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0 0;
  padding: 40px 0 0;
}
@media (max-width:767px){
  .partners-bottom{
    margin: 20px 0 0;
    padding: 20px 0 0;
  }
}
.partners-bottom p{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  margin: 0;
  text-align: center;
}
@media (max-width:575px){
  .partners-bottom p{
    font-size: 20px;
    line-height: 1.2;
  }
}
.partners-booknow {
  color: var(--secondary-color);
  text-transform: uppercase;
}
.partners-booknow:hover{
  color: var(--secondary-color);
}

/* ==============================
   11. Pricing Section CSS
============================== */

@media (max-width:991px){
  .pricing{
    margin-bottom: 0;
  }
}
@media (max-width:991px){
  .pricing{
    margin-bottom: 10px;
  }
}
.pricing-title{
  align-items: center;
}
.pricing-title .heading{
  max-width: 672px;
}
.pricing-nav{
  margin: 0 0 40px;
}
.pricing-nav .nav{
  background-color: var(--secondary-color20);
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 auto;
  padding: 6px;
  max-width: max-content;
  width: 100%;
}
.pricing-nav .nav-link{
  background-color: var(--theme-color);
  border: 0;
  border-radius: 6px;
  color: var(--white-color);
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  padding: 8px 16px;
  text-transform: uppercase;
}
.pricing-nav .nav-link.active{
  background-color: var(--secondary-color);
  color: var(--theme-color);
}
.pricing-plan-box{
  border: 1px solid var(--theme-color20);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
@media (max-width:991px){
  .pricing-plan-box{
    height: auto;
    margin: 0 0 40px;
  }
}
@media (max-width:767px){
  .pricing-plan-box{
    height: auto;
    margin: 0 0 20px;
  }
}
.pricing-plan-top{
  background-color: var(--light-blue);
  display: flex;
  flex-direction: column;
  padding: 30px;
}
@media (max-width:575px){
  .pricing-plan-top{
    padding: 20px;
  }
}
.pricing-plan-heading{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 22px;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 6px;
  text-transform: uppercase;
}
.pricing-plan-time{
  color: var(--theme-color);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 20px;
}
.pricing-plan-top p{
  font-weight: 500;
}
.pricing-plan-price{
  background-color: var(--theme-color);
  padding: 10px 20px;
}
.plan-price{
  color: var(--white-color);
  font-family: var(--theme-font);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.pricing-plan-point{
  padding: 30px 30px 50px;
}
@media (max-width:575px){
  .pricing-plan-point{
    padding: 20px 20px 40px;
  }
}
.pricing-plan-point ul{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}
.pricing-plan-point ul li{
  display: flex;
  align-items: start;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}
.pricing-plan-point ul li i{
  color: var(--secondary-color);
  margin: 2px 0 0;
}
.get-plan-btn{
  margin: auto 0 0;
  padding: 0 30px 30px;
}
@media (max-width:575px){
  .get-plan-btn{
    padding: 0 20px 20px;
  }
}
.pricing-plan-box.plan-active{
  border: 1px solid var(--secondary-color);
}
.pricing-plan-box.plan-active .pricing-plan-heading{
  color: var(--secondary-color);
}
.pricing-plan-box.plan-active .pricing-plan-price{
  background-color: var(--secondary-color);
}

/* ==============================
   12. Testimonials Section CSS
============================== */

.testimonials{
  background-color: var(--light-blue);
  padding: 80px 0;
}
@media (max-width:767px){
  .testimonials{
    padding: 60px 0;
  }
}
.testimonials-slide{
  display: flex;
  gap: 24px;
}
@media (max-width:991px){
  .testimonials-slide{
    column-gap: 0;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.testimonials-after-img{
  isolation: isolate;
  position: relative;
  width: 25%;
}
@media (max-width:991px){
  .testimonials-after-img{
    order: 1;
    width: calc(50% - 10px);
  }
}
.testimonials-after-img img{
  border-radius: 10px;
  height: 320px;
  width: 100%;
}
@media (max-width:767px){
  .testimonials-after-img img{
    height: 250px;
  }
}
@media (max-width:575px){
  .testimonials-after-img img{
    height: 200px;
  }
}
.testimonials-after-img::after{
  background-color: var(--theme-color10);
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 100%;
  width: 100%;
}
.testimonials-tags{
  background-color: var(--secondary-color);
  border-radius: 4px;
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 5px 10px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  text-transform: uppercase;
  z-index: 1;
}
.testimonials-content{
  background-color: var(--white-color);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: 30px;
  width: 50%;
}
@media (max-width:991px){
  .testimonials-content{
    order: 3;
    width: 100%;
  }
}
@media (max-width:575px){
  .testimonials-content{
    padding: 20px;
  }
}
.testimonials-heading{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  margin: 0 0 10px;
}
.testimonials-copy ul{
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 30px;
  padding: 0;
}
.testimonials-copy ul li{
  color: var(--yellow);
  display: flex;
  font-size: 24px;
  list-style: none;
}
.testimonials-copy p{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}
@media (max-width:575px){
  .testimonials-copy p{
    font-size: 16px;
  }
}
.testimonials-auther{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.testimonials-auther-name{
  color: var(--secondary-color);
  font-family: var(--theme-font);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 6px;
  text-transform: capitalize;
}
.testimonials-auther-post{
  color: var(--theme-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  margin: 0;
}
.testimonials-quote{
  color: var(--secondary-color);
  font-size: 40px;
}
.testimonials-slider .swiper-button-prev{
  background-color: var(--secondary-color);
  border-radius: 8px;
  color: var(--theme-color);
  height: 40px;
  margin: auto 0;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 40px;
}
@media (max-width:991px){
  .testimonials-slider .swiper-button-prev{
    margin: 0;
    top: 20px;
  }
}
.testimonials-slider .swiper-button-prev::after {
  font-family: var(--theme-icon-font);
  font-size: 26px;
  font-weight: normal;
  content: "\e91a";
}
.testimonials-slider .swiper-button-next{
  background-color: var(--secondary-color);
  border-radius: 8px;
  color: var(--theme-color);
  height: 40px;
  margin: auto 0;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 40px;
}
@media (max-width:991px){
  .testimonials-slider .swiper-button-next{
    margin: 0;
    top: 20px;
  }
}
.testimonials-slider .swiper-button-next::after {
  font-family: var(--theme-icon-font);
  font-size: 26px;
  font-weight: normal;
  content: "\e91d";
}
.testimonials-before-img{
  isolation: isolate;
  position: relative;
  width: 25%;
}
@media (max-width:991px){
  .testimonials-before-img{
    order: 2;
    width: calc(50% - 10px);
  }
}
.testimonials-before-img img{
  border-radius: 10px;
  height: 320px;
  width: 100%;
}
@media (max-width:767px){
  .testimonials-before-img img{
    height: 250px;
  }
}
@media (max-width:575px){
  .testimonials-before-img img{
    height: 200px;
  }
}
.testimonials-before-img .testimonials-tags{
  left: auto;
  right: 20px;
}
.testimonials-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0 0;
  text-align: center;
}

/* ==============================
   13. News Section CSS
============================== */

.news-btn{
  display: flex;
  align-items: end;
  justify-content: end;
  height: 100%;
}
@media (max-width:991px){
  .news-btn{
    justify-content: center;
  }
}
.news-boxs{
  background-color: var(--light-blue);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  padding: 20px;
}
@media (max-width:1199px){
  .news-boxs{
    padding: 16px;
  }
}
.news-img{
  isolation: isolate;
  padding: 0 0 18px 0;
  position: relative;
}
.news-img img{
  border-radius: 10px;
  max-height: 250px;
  height: 100%;
  width: 100%;
}
@media (max-width:991px){
  .news-img img{
    max-height: unset;
  }
}
.news-category{
  background-color: var(--secondary-color);
  border-radius: 4px;
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 13px;
  padding: 5px 12px;
  position: absolute;
  top: 12px;
  left: 12px;
  text-transform: uppercase;
}
.news-info ul{
  background-color: var(--secondary-color);
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: -18px auto 0;
  max-width: max-content;
  padding: 8px 20px;
  position: relative;
  width: 100%;
  z-index: 1;
}
@media (max-width:1199px){
  .news-info ul{
    gap: 14px;
  }
}
.news-info ul li{
  color: var(--theme-color);
  display: flex;
  align-items: center;
  gap: 10px;
}
.news-info ul li i{
  font-size: 20px;
}
.news-content{
  background-color: var(--white-color);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  height: 100%;
  isolation: isolate;
  overflow: hidden;
  padding: 20px;
  position: relative;
  z-index: 1;
}
@media (max-width:1199px){
  .news-content{
    padding: 16px;
  }
}
.news-content::after{
  background-color: var(--secondary-color);
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 100%;
  z-index: -1;
}
.news-boxs:hover .news-content::after{
  height: 100%;
}
.news-boxs-heading{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 26px;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 10px;
}
@media (max-width:1199px){
  .news-boxs-heading{
    font-size: 24px;
  }
}
.news-content p{
  font-size: 16px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0 0 30px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.news-boxs:hover .news-content p{
  color: var(--theme-color);
}
.news-read-more{
  color: var(--theme-color);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  margin: auto 0 0;
  max-width: max-content;
  width: 100%;
}
.news-read-more:hover{
  color: var(--theme-color);
}
.news-read-more i{
  font-size: 20px;
}

/* ==============================
   14. Foooter Section CSS
============================== */

footer{
  background-color: var(--theme-color);
  margin: 40px 0 0;
  padding: 60px 0;
}
@media (max-width:767px){
  footer{
    margin: 30px 0 0;
  }
}
@media (max-width:575px){
  footer{
    padding: 60px 0 20px;
  }
}

/* =========   14.1 Footer Top CSS   ========= */

.footer-top{
  padding: 0 0 60px;
}
@media (max-width:767px){
  .footer-top{
    padding: 0 0 30px;
  }
}
.footer-subscribe-heading{
  color: var(--white-color);
  font-family: var(--theme-font);
  font-size: 42px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}
@media (max-width:991px){
  .footer-subscribe-heading{
    margin: 0 0 20px;
  }
}
@media (max-width:575px){
  .footer-subscribe-heading{
    font-size: 28px;
  }
}
.footer-subscribe-form .form-group{
  position: relative;
}
.footer-subscribe-form .form-control,
.footer-subscribe-form input[type=email]{
  background-color: transparent;
  border: 1px solid var(--white-color);
  border-radius: 6px;
  color: var(--white-color);
  font-family: var(--theme-font);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  height: 50px;
  padding: 10px 52px 10px 15px;
}
.footer-subscribe-form .form-control:focus{
  border-color: var(--white-color);
}
.footer-subscribe-form .form-control::placeholder{
  color: var(--white-color);
}
.subscribe-form-btn{
  background-color: var(--secondary-color);
  border-radius: 4px;
  border: 0;
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  height: 36px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 7px;
  margin: auto 0;
  width: 36px;
}

/* =========   14.2 Footer Area CSS   ========= */

.footer-area{
  padding: 0 0 30px;
}
.footer-wrapper{
  display: flex;
  padding: 1px 0;
  position: relative;
}
@media (max-width:1199px){
  .footer-wrapper{
    flex-direction: column;
  }
}
.footer-wrapper::after{
  background: linear-gradient(90deg, transparent 0%, var(--white-color) 50%, transparent 100%);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 1px;
  width: 100%;
  z-index: 1;
}
.footer-wrapper::before{
  background: linear-gradient(90deg, transparent 0%, var(--white-color) 50%, transparent 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  width: 100%;
  z-index: 1;
}
@media (max-width:767px){
  .footer-wrapper::after{
    display: none;
  }
}
.about-footer{
  border-right: 1px solid var(--white-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 20px 40px 0;
  width: 32%;
}
@media (max-width:1199px){
  .about-footer{
    border-right: 0;
    gap: 40px;
    padding: 40px 0;
    width: 100%;
  }
}
@media (max-width:767px){
  .about-footer{
    padding: 0 0 30px 0;
  }
}
@media (max-width:1199px){
  .footer-logo{
    text-align: center;
  }
  .footer-logo a{
    display: inline-block;
    margin: 0 auto;
  }
}
@media (max-width:767px){
  
}
.footer-logo img{
  max-height: 54px;
}
.footer-social{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-social ul{
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
}
@media (max-width:1199px){
  .footer-social ul{
    justify-content: center;
  }
}
.footer-social ul li{
  list-style: none;
}
.footer-social ul li a{
  color: var(--secondary-color);
  font-size: 30px;
}
.footer-social p{
  color: var(--white-color);
}
.footer-right{
  display: flex;
  flex-direction: column;
  width: 68%;
}
@media (max-width:1199px){
  .footer-right{
    width: 100%;
  }
}
.footer-list{
  display: flex;
  padding: 0 0 1px;
  position: relative;
}
@media (max-width:767px){
  .footer-list{
    flex-direction: column;
  }
}
.footer-list::after{
  background: linear-gradient(90deg, var(--white-color) 50%, transparent 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  width: 100%;
  z-index: 1;
}
@media (max-width:1199px){
  .footer-list::after{
    background: linear-gradient(90deg, transparent 0%, var(--white-color) 50%, transparent 100%);
  }
  .footer-list::before{
    background: linear-gradient(90deg, transparent 0%, var(--white-color) 50%, transparent 100%);
    position: absolute;
    top: -1px;
    left: 0;
    content: "";
    height: 1px;
    width: 100%;
    z-index: 1;
  }
}
.footer-menu{
  border-right: 1px solid var(--white-color);
  padding: 40px 20px;
  position: relative;
  width: 33.33%;
}
@media (max-width:767px){
  .footer-menu{
    border-right: 0;
    padding: 30px 20px;
    width: 100%;
  }
}
@media (max-width:575px){
  .footer-menu{
    padding: 30px 0;
  }
}
@media (max-width:767px){
  .footer-menu::before {
    background: linear-gradient(90deg, transparent 0%, var(--white-color) 50%, transparent 100%);
    position: absolute;
    bottom: -1px;
    left: 0;
    content: "";
    height: 1px;
    width: 100%;
    z-index: 1;
  }
}
.footer-heading{
  color: var(--white-color);
  font-family: var(--theme-font);
  font-size: 26px;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.footer-menu ul{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
}
.footer-menu ul li{
  list-style: none;
}
.footer-menu ul li a{
  color: var(--white-color);
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
}
@media (max-width:1399px){
  .footer-menu ul li a{
    font-size: 16px;
  }
}
.footer-menu ul li a:hover{
  color: var(--secondary-color);
}
.footer-contact{
  padding: 40px 20px;
  width: 33.33%;
}
@media (max-width:767px){
  .footer-contact{
    padding: 30px 20px;
    width: 100%;
  }
}
@media (max-width:575px){
  .footer-contact{
    padding: 30px 0;
  }
}
.footer-contact ul{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.footer-contact ul li{
  color: var(--white-color);
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  list-style: none;
}
@media (max-width:1399px){
  .footer-contact ul li{
    font-size: 16px;
  }
}
.footer-contact ul li a{
  color: var(--white-color);
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
}
@media (max-width:1399px){
  .footer-contact ul li a{
    font-size: 16px;
  }
}
.footer-contact ul li a:hover{
  color: var(--secondary-color);
}
.footer-time{
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 40px 20px;
}
@media (max-width:767px){
  .footer-time{
    padding: 20px;
  }
}
@media (max-width:575px){
  .footer-time{
    flex-direction: column;
    align-items: start;
    padding: 20px 0;
  }
}
.footer-time-icon i{
  color: var(--secondary-color);
  font-size: 40px;
}
.footer-time ul{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width:575px){
  .footer-time ul{
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }
}
.footer-time ul li{
  border-right: 2px solid var(--white-color);
  color: var(--white-color);
  font-family: var(--theme-font);
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
  padding: 0 20px 0 0;
}
@media (max-width:1399px){
  .footer-time ul li{
    font-size: 20px;
  }
}
@media (max-width:767px){
  .footer-time ul li{
    font-size: 16px;
  }
}
@media (max-width:575px){
  .footer-time ul li{
    border: 0;
    padding: 0;
  }
}
.footer-time ul li:last-child{
  border: 0;
  padding: 0;
}

/* =========   14.3 Copyright CSS   ========= */

.copyright-text{
  color: var(--white-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  margin: 0 0 10px;
}
.copyright-content p{
  color: var(--white-color);
}
@media (max-width:575px){
  .copyright-content p{
    font-size: 14px;
  }
}
.copyright-terms-privacy{
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.copyright-terms-privacy li,
.copyright-terms-privacy li a{
  color: var(--white-color);
  font-family: var(--theme-font);
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}
.copyright-terms-privacy li a:hover{
  color: var(--secondary-color);
}

/* ==============================
   15. About Us Page CSS
============================== */

/* =========   15.1 Breadcrumb CSS   ========= */

.breadcrumb-wrapper {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin: -124px 0 40px;
  position: relative;
  z-index: 1;
}
@media (max-width:767px){
  .breadcrumb-wrapper {
    margin: -100px 0 30px;
  }
}
.breadcrumb-wrapper::before {
  background: linear-gradient(90deg, var(--theme-color80) 50%, transparent 100%);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 100%;
  width: 100%;
  z-index: -1;
}
.breadcrumb{
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  margin: 0;
  padding: 288px 0 156px;
}
@media (max-width:767px){
  .breadcrumb{
    padding: 190px 0 80px;
  }
}
.breadcrumb-heading {
  border-bottom: 1px solid var(--secondary-color50);
  color: var(--white-color);
  display: inline-block;
  font-family: var(--theme-font);
  font-size: 70px;
  line-height: 1;
  padding: 0 0 20px;
  margin: 0 0 20px;
  position: relative;
}
@media (max-width:991px){
  .breadcrumb-heading {
    font-size: 60px;
  }
}
@media (max-width:767px){
  .breadcrumb-heading {
    font-size: 46px;
    margin: 0 0 16px;
    padding: 0 0 16px;
  }
}
@media (max-width:575px){
  .breadcrumb-heading {
    font-size: 36px;
  }
}
.breadcrumb ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width:575px){
  .breadcrumb ul {
    gap: 12px;
  }
}
.breadcrumb ul li{
  color: var(--white-color);
  font-family: var(--theme-font);
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  padding: 0 32px 0 0;
  text-transform: uppercase;
  position: relative;
}
@media (max-width:767px){
  .breadcrumb ul li{
    font-size: 18px;
  }
}
@media (max-width:575px){
  .breadcrumb ul li{
    font-size: 16px;
    padding: 0 28px 0 0;
  }
}
.breadcrumb ul li::after{
  background-color: var(--secondary-color30);
  border-radius: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
  content: "";
  height: 16px;
  width: 16px;
  z-index: 1;
}
.breadcrumb ul li::before{
  background-color: var(--secondary-color);
  border-radius: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 4px;
  margin: auto 0;
  content: "";
  height: 8px;
  width: 8px;
  z-index: 2;
}
.breadcrumb ul li:last-child{
  padding: 0;
}
.breadcrumb ul li:last-child::after,
.breadcrumb ul li:last-child::before{
  display: none;
}
.breadcrumb ul li a{
  color: var(--white-color);
  font-family: var(--theme-font);
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width:767px){
  .breadcrumb ul li a{
    font-size: 18px;
  }
}
@media (max-width:575px){
  .breadcrumb ul li a{
    font-size: 16px;
  }
}
.breadcrumb ul li a:hover{
  color: var(--secondary-color);
}

/* =========   15.2 About Area CSS   ========= */

.about-area-counter{
  display: flex;
  align-items: end;
  justify-content: end;
  gap: 24px;
  height: 100%;
}
@media (max-width:575px){
  .about-area-counter{
    flex-direction: column;
  }
}
.about-area-single{
  background-color: var(--theme-color);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 26px 20px;
  text-align: center;
  width: 50%;
}
@media (max-width:1199px){
  .about-area-single{
    padding: 20px 14px;
  }
}
@media (max-width:575px){
  .about-area-single{
    width: 100%;
  }
}
.about-area-number{
  color: var(--white-color);
  font-size: 60px;
  font-weight: 600;
  line-height: 76px;
  display: flex;
}
.about-year-number{
  color: var(--white-color);
  font-family: var(--theme-font);
  font-size: 60px;
  font-weight: 600;
  line-height: 76px;
}
.about-area-single p{
  color: var(--white-color);
  font-family: var(--theme-font);
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
}
@media (max-width:1199px){
  .about-area-single p{
    font-size: 16px;
  }
}
.ceo-quote{
  background-color: var(--theme-color);
  border-radius: 10px 0 0 10px;
  height: 100%;
  padding: 50px 30px;
}
@media (max-width:1199px){
  .ceo-quote{
    padding: 30px;
  }
}
@media (max-width:991px){
  .ceo-quote{
    border-radius: 10px 10px 0 0;
  }
}
@media (max-width:575px){
  .ceo-quote{
    padding: 20px;
  }
}
.ceo-quote-icon{
  margin: 0 0 20px;
}
.ceo-quote-icon i{
  color: var(--secondary-color);
  font-size: 50px;
}
.ceo-quote p{
  color: var(--white-color);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  margin: 0;
}
@media (max-width:1199px){
  .ceo-quote p{
    font-size: 18px;
    line-height: 1.2;
  }
}
@media (max-width:575px){
  .ceo-quote p{
    font-size: 16px;
  }
}
.ceo-quote-name-post{
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 30px 0 0;
}
.ceo-quote-name{
  color: var(--secondary-color);
  font-family: var(--theme-font);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  margin: 0;
}
.ceo-quote-name-post span{
  color: var(--white-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
}
.ceo-img{
  height: 100%;
}
.ceo-img img{
  height: 100%;
  width: 100%;
}

.statements{
  background-color: var(--secondary-color);
  border-radius: 0 10px 10px 0;
  height: 100%;
  padding: 50px 30px;
}
@media (max-width:1199px){
  .statements{
    padding: 30px;
  }
}
@media (max-width:991px){
  .statements{
    border-radius: 0 0 10px 10px;
  }
}
@media (max-width:575px){
  .statements{
    padding: 20px;
  }
}
.statements-heading{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 28px;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 20px;
}
.statements p{
  color: var(--theme-color);
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}
@media (max-width:575px){
  .statements p{
    font-size: 16px;
  }
}
.statements ul{
  margin: 30px 0 0;
  padding: 0;
}
.statements ul li{
  color: var(--theme-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin: 0 0 10px;
  padding: 0 0 0 34px;
  position: relative;
}
.statements ul li::before{
  background-color: var(--theme-color);
  border-radius: 4px;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--theme-icon-font);
  font-size: 14px;
  font-weight: normal;
  content: "\e91d";
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
}

/* =========   15.3 Work Process CSS   ========= */

.work-process-item{
  height: 100%;
  position: relative;
}
.work-process-item::after{
  background-color: var(--secondary-color);
  border-radius: 10px 10px 99px 99px;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  content: "";
  margin: 0 auto;
  height: 100px;
  width: 100px;
  z-index: -9;
}
.work-process-item-inner{
  background-color: var(--white-color80);
  backdrop-filter: blur(10px);
  border: 1px solid var(--light-blue);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
  margin: 20px 0 0;
  padding: 0 30px 30px;
}
@media (max-width:1399px){
  .work-process-item-inner{
    padding: 0 20px 20px;
  }
}
.work-process-number{
  text-align: center;
}
.work-process-number span{
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--theme-font);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  margin: 0 auto;
  height: 80px;
  width: 80px;
}
.work-process-content{
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.work-process-icon i{
  background-color: var(--secondary-color10);
  border-radius: 8px;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  margin: 0 auto;
  height: 90px;
  width: 90px;
}
.work-process-copy{
  text-align: center;
}
.work-process-heading{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 20px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.work-process-item:hover .work-process-heading{
  color: var(--secondary-color);
}
.work-process-copy p{
  font-weight: 500;
}

/* =========   15.4 CTA Banner CSS   ========= */

.cta-banner-row{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  isolation: isolate;
  overflow: hidden;
  padding: 110px 60px;
  position: relative;
  z-index: 1;
}
@media (max-width:1199px){
  .cta-banner-row{
    padding: 80px 20px;
  }
}
@media (max-width:991px){
  .cta-banner-row{
    flex-direction: column;
    padding: 60px 20px;
  }
}
@media (max-width:575px){
  .cta-banner-row{
    padding: 30px 20px;
  }
}
.cta-banner-row::before {
  background-color: var(--theme-color70);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 100%;
  width: 100%;
  z-index: -1;
}
.cta-banner-left {
  width: 58.33333333%;
}
@media (max-width:991px){
  .cta-banner-left {
    width: 100%;
  }
}
.cta-banner-heading {
  color: var(--white-color);
  font-family: var(--theme-font);
  font-size: 50px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}
@media (max-width:1399px){
  .cta-banner-heading {
    font-size: 42px;
  }
}
@media (max-width:1199px){
  .cta-banner-heading {
    font-size: 38px;
  }
}
@media (max-width:991px){
  .cta-banner-heading {
    text-align: center;
  }
}
@media (max-width:767px){
  .cta-banner-heading {
    font-size: 36px;
  }
}
@media (max-width:575px){
  .cta-banner-heading {
    font-size: 28px;
  }
}
.cta-banner-heading span{
  color: var(--secondary-color);
}
.cta-banner-right {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 41.66666667%;
}
@media (max-width:991px){
  .cta-banner-right {
    justify-content: center;
    width: 100%;
  }
}
.theme-btn.services-btn{
  background-color: var(--secondary-color);
  color: var(--theme-color);
}
.theme-btn.services-btn:hover{
  color: var(--white-color);
}
.theme-btn.services-btn::after{
  background-color: var(--theme-color);
}
.theme-btn.services-btn i{
  color: var(--white-color);
}
.theme-btn.book-btn{
  background-color: var(--white-color);
  color: var(--theme-color);
}

/* =========   15.5 History CSS   ========= */

.history-title{
  position: sticky;
  top: 150px;
}
@media (max-width:991px){
  .history-title{
    position: unset;
  }
}
.history-listing{
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
}
@media (max-width:767px){
  .history-listing{
    gap: 40px;
    padding: 0 0 0 13px;
  }
}
.history-listing::after{
  border-right: 2px dashed var(--theme-color);
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  margin: 0 auto;
  height: calc(100% - 11px);
  width: 2px;
}
@media (max-width:767px){
  .history-listing::after{
    margin: 0;
  }
}
.history-single{
  display: flex;
  flex-direction: row;
  gap: 24px;
}
@media (max-width:767px){
  .history-single{
    flex-direction: column;
  }
}
.history-single:nth-child(even){
  flex-direction: row-reverse;
}
@media (max-width:767px){
  .history-single:nth-child(even){
    flex-direction: column;
  }
}
.history-img{
  width: 50%;
}
@media (max-width:767px){
  .history-img{
    width: 100%;
  }
}
.history-img img{
  border-radius: 10px;
  height: 100%;
  min-height: 200px;
  max-height: 200px;
  width: 100%;
}
@media (max-width:767px){
  .history-img img{
    max-height: unset;
  }
}
.history-copy{
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  width: 50%;
}
@media (max-width:767px){
  .history-copy{
    width: 100%;
  }
}
.history-copy::after{
  background-color: var(--theme-color);
  border-radius: 10px;
  position: absolute;
  top: 11px;
  left: -17px;
  content: "";
  margin: 0 auto;
  height: 10px;
  width: 10px;
}
.history-single:nth-child(even) .history-copy::after{
  left: auto;
  right: -17px;
}
@media (max-width:767px){
  .history-single:nth-child(even) .history-copy::after{
    left: -17px;
    right: auto;
  }
}
.history-single-heading{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}
.history-copy p{
  font-weight: 500;
}

/* =========   15.6 Our Teams CSS   ========= */

.teams-btn{
  display: flex;
  align-items: end;
  justify-content: end;
  height: 100%;
}
@media (max-width:991px){
  .teams-btn{
    justify-content: center;
  }
}
.team-item{
  background-color: var(--light-blue);
  border-radius: 10px;
  padding: 10px 10px 20px;
}
.team-img{
  border-radius: 10px;
  isolation: isolate;
  overflow: hidden;
  position: relative;
}
.team-img::after{
  background-color: var(--theme-color20);
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 100%;
}
.team-item:hover .team-img::after{
  height: 100%;
}
.team-link{
  background-color: var(--secondary-color);
  border-radius: 5px;
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: absolute;
  bottom: 40px;
  right: 10px;
  height: 40px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  transform: translateX(100px);
  -webkit-transform: translateX(100px);
  -moz-transform: translateX(100px);
  -ms-transform: translateX(100px);
  -o-transform: translateX(100px);
  width: 40px;
  z-index: 1;
}
.team-item:hover .team-link{
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}
.team-link:hover{
  color: var(--theme-color);
}
.team-img img{
  border-radius: 10px;
  max-height: 304px;
  height: 100%;
  width: 100%;
}
.team-copy{
  background-color: var(--white-color80);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  margin: -40px auto 0 auto;
  padding: 20px 10px;
  position: relative;
  width: calc(100% - 20px);
  z-index: 2;
}
.team-copy ul{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 30px;
  padding: 0;
}
.team-copy ul li a{
  background-color: var(--theme-color);
  border-radius: 4px;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  height: 40px;
  width: 40px;
}
.team-name,
.team-name a{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 10px;
  text-align: center;
  text-transform: capitalize;
}
.team-item:hover .team-name a{
  color: var(--secondary-color);
}
.team-post{
  font-weight: 500;
  text-align: center;
}

/* ==============================
   16. Services Page CSS
============================== */

/* =========   16.1 Services Listing CSS   ========= */

.services-area-item{
  border: 1px solid var(--light-blue);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 0 30px 30px;
  width: calc(100% - 30px);
}
@media (max-width:575px){
  .services-area-item{
    padding: 20px 0 20px 20px;
    width: calc(100% - 20px);
  }
}
.services-area-heading,
.services-area-heading a{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}
.services-area-img{
  isolation: isolate;
  position: relative;
  width: calc(100% + 30px);
}
@media (max-width:575px){
  .services-area-img{
    width: calc(100% + 20px);
  }
}
.services-area-img img{
  border-radius: 20px;
  min-height: 300px;
  max-height: 300px;
  height: 100%;
  width: 100%;
}
.services-area-link{
  background-color: var(--secondary-color);
  border-radius: 0 6px 6px 0;
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  height: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30px;
  margin: auto 0;
  width: 50px;
}
@media (max-width:575px){
  .services-area-link{
    left: -20px;
  }
}
.services-area-link:hover{
  color: var(--theme-color);
}
.services-area-copy p{
  font-weight: 500;
}

/* =========   16.2 Process CSS   ========= */

.process-item{
  border: 1px solid var(--light-blue);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
  padding: 30px;
  position: relative;
}
@media (max-width:575px){
  .process-item{
    padding: 20px;
  }
}
.process-item::after{
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--theme-icon-font);
  font-size: 22px;
  height: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -25px;
  content: "\e91d";
  margin: auto 0;
  width: 24px;
}
@media (max-width:767px){
  .process-item::after{
    top: auto;
    bottom: -25px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
  }
}
@media (max-width:1199px){
  .process-boxs:nth-child(even) .process-item::after{
    display: none;
  }
}
@media (max-width:767px){
  .process-boxs:nth-child(even) .process-item::after{
    display: block;
  }
}
.process-boxs:last-child .process-item::after{
  display: none;
}
.process-item-top{
  border-bottom: 1px solid var(--light-blue);
  display: flex;
  gap: 30px;
  justify-content: space-between;
  padding: 0 0 20px;
  position: relative;
}
.process-item-top::after{
  background-color: var(--secondary-color);
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  content: "";
  margin: 0 auto;
  height: 1px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 0;
}
.process-item:hover .process-item-top::after{
  width: 100%;
}
.process-item-icon i{
  color: var(--secondary-color);
  font-size: 50px;
}
.process-item-number{
  display: flex;
  align-items: center;
}
.process-item-step{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin: 0 -10px 0 0;
  text-transform: uppercase;
}
.process-item-step-number{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  opacity: 0.2;
}
.process-item-copy{
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.process-item-heading{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}
.process-item-copy p{
  font-weight: 500;
}

/* =========   16.3 Faqs CSS   ========= */

.faqs{
  background-color: var(--light-blue);
  padding: 80px 0;
}
@media (max-width:767px){
  .faqs{
    padding: 60px 0;
  }
}
.faqs-title{
  align-items: center;
  text-align: center;
}
.faq-list{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-list .accordion-item{
  background: transparent;
  border: none;
}
.faq-list .accordion-item .accordion-button{
  background-color: var(--white-color);
  border-radius: 8px;
  border: none;
  box-shadow: none;
  color: var(--theme-color);
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  gap: 10px;
}
@media (max-width:575px){
  .faq-list .accordion-item .accordion-button{
    font-size: 18px;
  }
}
.faq-list .accordion-item .accordion-button::after{
  background-image: none;
  content: "\e903";
  font-family: var(--theme-icon-font);
  font-size: 24px;
  font-weight: normal;
  color: var(--theme-color);
  height: 24px;
  transform: unset;
  width: 24px;
}
.faq-list .accordion-item .accordion-button.collapsed::after{
  content: "\e902";
}
.faq-list .accordion-item .accordion-body{
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  padding: 24px 24px 15px;
}

/* ==============================
   17. Services Single Page CSS
============================== */

/* =========   17.1 Services Single CSS   ========= */

.services-single-left{
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.services-single-img img{
  border-radius: 10px;
  min-height: 500px;
}
@media (max-width:1199px){
  .services-single-img img{
    min-height: 400px;
  }
}
@media (max-width:575px){
  .services-single-img img{
    min-height: 250px;
  }
}
.services-single-heading{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 30px;
}
@media (max-width:1199px){
  .services-single-heading{
    font-size: 36px;
  }
}
@media (max-width:575px){
  .services-single-heading{
    font-size: 28px;
  }
}
.services-single-copy{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.services-single-copy p{
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
}
.services-single-copy ul li{
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin: 0 0 10px;
  padding: 0 0 0 34px;
  position: relative;
}
.services-single-copy ul li::before {
  background-color: var(--secondary-color);
  border-radius: 4px;
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--theme-icon-font);
  font-size: 14px;
  font-weight: normal;
  content: "\e91d";
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
}
.services-single-copy strong,
.services-single-copy b{
  font-weight: 700;
}
.services-single-copy p a,
.services-single-copy a{
  color: var(--secondary-color);
}
.services-single-copy h1{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 36px;
  font-weight: 600;
}
.services-single-copy h2{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 28px;
  font-weight: 600;
}
.services-single-copy h3{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 24px;
  font-weight: 600;
}
.services-single-copy h4{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 20px;
  font-weight: 600;
}
.services-single-copy h5{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 18px;
  font-weight: 600;
}
.services-single-copy h6{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 16px;
  font-weight: 600;
}

.service-single-sidebar{
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: sticky;
  top: 150px;
}
.service-single-list{
  background-color: var(--light-blue);
  border-radius: 10px;
  padding: 20px;
}
@media (max-width:1199px){
  .service-single-list{
    padding: 16px;
  }
}
.service-single-list ul{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
}
.service-single-list ul li{
  list-style: none;
}
.service-single-list ul li a{
  background-color: var(--white-color);
  border: 1px solid var(--theme-color20);
  border-radius: 6px;
  color: var(--antique-Silver);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--theme-font);
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  padding: 14px 18px;
  position: relative;
}
@media (max-width:1199px){
  .service-single-list ul li a{
    padding: 10px 12px;
  }
}
.service-single-list ul li a:hover,
.service-single-list ul li.active a{
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--theme-color);
}

.sidebar-cta{
  background-color: var(--theme-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 40px;
  padding: 40px 30px;
  text-align: center;
}
@media (max-width:1199px){
  .sidebar-cta{
    gap: 26px;
    padding: 30px 20px;
  }
}
.sidebar-cta-heading{
  color: var(--white-color);
  font-family: var(--theme-font);
  font-size: 36px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}
@media (max-width:1199px){
  .sidebar-cta-heading{
    font-size: 28px;
  }
}
.sidebar-cta-icon i{
  color: var(--secondary-color);
  font-size: 80px;
}
@media (max-width:1199px){
  .sidebar-cta-icon i{
    font-size: 60px;
  }
}
.sidebar-cta-copy{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-cta-call{
  color: var(--secondary-color);
  font-family: var(--theme-font);
  font-size: 36px;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 20px;
}
@media (max-width:1199px){
  .sidebar-cta-call{
    font-size: 28px;
    margin: 0 0 10px;
  }
}
.sidebar-cta-call:hover{
  color: var(--secondary-color);
}
.sidebar-cta-copy p{
  color: var(--white-color);
  font-weight: 500;
}

/* ==============================
   18. News Grid Page CSS
============================== */

/* =========   18.1 News Grid CSS   ========= */

.news-page{
  display: inline-block;
  margin: 40px 0;
  width: 100%;
}
@media (max-width:767px){
  .news-page{
    margin: 30px 0;
  }
}
.news-pagination{
  margin: 40px 0 0;
}
.pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-wrapper .pagination {
  display: flex;
  gap: 10px;
}
.pagination-wrapper .page-item .page-link {
  background-color: var(--light-blue);
  border: none;
  border-radius: 8px;
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 40px;
}
.pagination-wrapper .page-item .page-link:hover,
.pagination-wrapper .page-item.active .page-link{
  background-color: var(--secondary-color);
}

/* ==============================
   19. News Standard Page CSS
============================== */

/* =========   19.1 News Standard CSS   ========= */

.news-standard-list{
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.news-standard-boxs{
  background-color: var(--light-blue);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
}
@media (max-width:1199px){
  .news-standard-boxs{
    padding: 20px;
  }
}
@media (max-width:575px){
  .news-standard-boxs{
    padding: 16px;
  }
}
.news-standard-img {
  isolation: isolate;
  position: relative;
}
.news-standard-img img{
  border-radius: 10px;
  max-height: 500px;
  height: 100%;
  width: 100%;
}
.news-standard-category{
  background-color: var(--secondary-color);
  border-radius: 4px;
  color: var(--theme-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 13px;
  padding: 6px 12px;
  position: absolute;
  top: 12px;
  left: 12px;
  text-transform: uppercase;
}
.news-standard-info ul{
  background-color: var(--secondary-color);
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 6px;
  max-width: max-content;
  padding: 8px 20px;
  position: relative;
  width: 100%;
  z-index: 1;
}
@media (max-width:575px){
  .news-standard-info ul{
    gap: 12px;
  }
}
.news-standard-info ul li {
  color: var(--theme-color);
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width:575px){
  .news-standard-info ul li {
    font-size: 14px;
    gap: 8px;
  }
}
.news-standard-info ul li i {
  font-size: 20px;
}
@media (max-width:575px){
  .news-standard-info ul li i{
    font-size: 16px;
  }
}
.news-standard-content {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.news-standard-boxs-heading {
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 10px;
}
@media (max-width:575px){
  .news-standard-boxs-heading {
    font-size: 24px;
  }
}
.news-standard-content p {
  font-size: 18px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media (max-width:575px){
  .news-standard-content p{
    font-size: 16px;
  }
}
.news-standard-read-more {
  color: var(--theme-color);
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  margin: 20px 0 10px;
  max-width: max-content;
  width: 100%;
}
.news-standard-read-more:hover {
  color: var(--theme-color);
}
.news-standard-read-more i {
  font-size: 20px;
}

.news-standard-sidebar{
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 155px;
}
.news-standard-search-form .form-group {
  position: relative;
}
.news-standard-search-form .form-group .form-control {
  background-color: var(--light-blue);
  border: 0;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  height: 60px;
  padding: 10px 60px 10px 16px;
  width: 100%;
}
.news-standard-search-btn {
  background-color: var(--secondary-color);
  border: 0;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 22px;
  font-weight: normal;
  line-height: 1;
  height: 40px;
  margin: auto 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  width: 40px;
}
.news-standard-sidebar-title{
  margin: 0 0 30px;
}
.news-standard-sidebar-heading{
  background-color: var(--theme-color);
  border-radius: 10px;
  color: var(--white-color);
  font-family: var(--theme-font);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  padding: 18px 18px 18px 44px;
  position: relative;
  text-transform: uppercase;
}
@media (max-width:1199px){
  .news-standard-sidebar-heading{
    font-size: 20px;
    padding: 16px 16px 16px 44px;
  }
}
.news-standard-sidebar-heading::after{
  background-color: var(--secondary-color);
  border-radius: 2px;
  content: "";
  height: 8px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 8px;
}
.news-standard-sidebar-heading::before{
  background-color: var(--secondary-color30);
  border-radius: 2px;
  content: "";
  height: 16px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  width: 16px;
}
.news-standard-category-list {
  background-color: var(--light-blue);
  border-radius: 10px;
  padding: 20px;
}
@media (max-width:1199px){
  .news-standard-category-list {
    padding: 16px;
  }
}
.news-standard-category-list ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-standard-category-list ul li a {
  background-color: var(--white-color);
  border: 1px solid var(--theme-color20);
  border-radius: 6px;
  color: var(--antique-Silver);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--theme-font);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  padding: 10px 16px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (max-width:1199px){
  .news-standard-category-list ul li a {
    font-size: 16px;
    padding: 8px 12px;
  }
}
.news-standard-category-list ul li a:hover{
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--theme-color);
}
.news-standard-tags{
  background-color: var(--light-blue);
  border-radius: 10px;
  padding: 20px;
}
@media (max-width:1199px){
  .news-standard-tags{
    padding: 16px;
  }
}
.news-standard-tags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.news-standard-tags ul li a {
  background-color: var(--white-color);
  border: 1px solid var(--theme-color30);
  border-radius: 50px;
  color: var(--theme-color);
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  padding: 4px 16px;
}
.news-standard-tags ul li a:hover{
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* ==============================
   20. News Single Page CSS
============================== */

/* =========   20.1 News Single CSS   ========= */

.news-single-detail{
  margin: 0 0 60px;
}
@media (max-width:767px){
  .news-single-detail{
    margin: 0 0 40px;
  }
}
.news-single-img{
  isolation: isolate;
  margin: 0 0 30px;
  position: relative;
}
.news-single-img img{
  border-radius: 10px;
}
.news-single-info{
  margin: 0 0 30px;
}
.news-single-title{
  border-bottom: 1px solid var(--theme-color30);
  margin: 0 0 30px;
  padding: 20px 0;
}
.news-single-heading{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 48px;
  font-weight: 600;
  line-height: 54px;
}
@media (max-width:1399px){
  .news-single-heading{
    font-size: 40px;
    line-height: 1.2;
  }
}
@media (max-width:767px){
  .news-single-heading{
    font-size: 36px;
  }
}
@media (max-width:575px){
  .news-single-heading{
    font-size: 28px;
  }
}
.news-single-content{
  color: var(--antique-Silver);
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 0 30px;
}
.news-single-content p{
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.news-single-content p a,
.news-single-content a{
  color: var(--secondary-color);
}
.news-single-content strong{
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}
.news-single-content h1{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 36px;
  font-weight: 600;
  line-height: normal;
}
.news-single-content h2{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 28px;
  font-weight: 600;
  line-height: normal;
}
.news-single-content h3{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}
.news-single-content h4{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
}
.news-single-content h5{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
}
.news-single-content h6{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}
.news-single-content ul li {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin: 0 0 10px;
  padding: 0 0 0 34px;
  position: relative;
}
.news-single-content ul li::before {
  background-color: var(--secondary-color);
  border-radius: 4px;
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--theme-icon-font);
  font-size: 14px;
  font-weight: normal;
  content: "\e91d";
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
}
.news-single-content blockquote{
  background-color: var(--light-blue);
  border-left: 4px solid var(--secondary-color);
  border-radius: 8px;
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 26px;
  font-weight: 500;
  line-height: normal;
  margin: 0;
  padding: 90px 40px 40px;
  position: relative;
}
@media (max-width:767px){
  .news-single-content blockquote{
    font-size: 22px;
    padding: 60px 20px 20px;
  }
}
.news-single-content blockquote::after{
  color: var(--secondary-color);
  font-family: var(--theme-icon-font);
  font-size: 40px;
  font-weight: normal;
  position: absolute;
  top: 40px;
  left: 40px;
  content: "\e90a";
  margin: auto 0;
  height: 40px;
  opacity: 0.5;
  width: 40px;
}
@media (max-width:767px){
  .news-single-content blockquote::after{
    font-size: 28px;
    top: 20px;
    left: 20px;
  }
}

.news-single-arrow{
  border-top: 1px solid var(--theme-color30);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 0;
  padding: 16px 0;
}
.news-single-arrow a {
  color: var(--theme-color);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  text-transform: capitalize;
}
@media (max-width:575px){
  .news-single-arrow a {
    gap: 10px;
    font-size: 16px;
  }
}
.news-single-arrow a i {
  background-color: var(--secondary-color);
  border-radius: 8px;
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: normal;
  line-height: 1;
  height: 40px;
  width: 40px;
}
@media (max-width:575px){
  .news-single-arrow a i {
    border-radius: 4px;
    font-size: 22px;
    height: 30px;
    width: 30px;
  }
}

.news-single-auther{
  background-color: var(--theme-color);
  border-radius: 10px;
  display: inline-block;
  margin: 50px 0 80px;
  padding: 0 40px 40px;
  width: 100%;
}
@media (max-width:767px){
  .news-single-auther{
    padding: 0 20px 30px;
    margin: 50px 0 40px;
  }
}
.news-single-auther-info{
  text-align: center;
  margin: 0 0 30px;
}
.news-single-auther-img{
  isolation: isolate;
  display: flex;
  justify-content: center;
  margin: 0 0 30px;
}
.news-single-auther-img img{
  border-radius: 10px;
  margin: -50px 0 0;
  height: 100px;
  width: 100px;
}
.news-single-auther-name{
  color: var(--secondary-color);
  font-family: var(--theme-font);
  font-size: 26px;
  font-weight: 600;
  line-height: 30px;
  margin: 0 0 5px;
}
.news-single-auther-post{
  color: var(--white-color);
  font-family: var(--theme-font);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}
.news-single-auther-quotes,
.news-single-auther-quotes p{
  color: var(--white-color);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  margin: 0;
  text-align: center;
}

.news-single-comment{
  margin: 0 0 80px;
}
@media (max-width:767px){
  .news-single-comment{
    margin: 0 0 40px;
  }
}
.news-single-comment-heading{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 30px;
}
.news-comment-list li{
  border-bottom: 1px solid var(--theme-color20);
  padding: 0 0 30px;
  margin: 0 0 30px;
}
.news-comment-box{
  display: flex;
  align-items: start;
}
.news-comment-user{
  isolation: isolate;
  padding: 0 20px 0 0;
  min-width: 70px;
}
@media (max-width:575px){
  .news-comment-user{
    padding: 0 10px 0 0;
    min-width: 46px;
  }
}
.news-comment-user img{
  border-radius: 4px;
  height: 50px;
  width: 50px;
}
@media (max-width:575px){
  .news-comment-user img{
    height: 36px;
    width: 36px;
  }
}
.news-comment-info{
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.comment-username{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 6px;
}
.comment-date{
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  margin: 0;
}
.news-comment-info p{
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
}
.comment-reply-btn{
  background-color: var(--secondary-color);
  border-radius: 6px;
  color: var(--theme-color);
  display: inline-block;
  font-family: var(--theme-font);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  padding: 8px 16px;
}
.comment-reply-btn:hover,
.comment-reply-btn:focus{
  background-color: var(--theme-color);
  color: var(--white-color);
}
.news-comment-list .news-comment-child{
  padding: 0 0 30px 80px;
}
@media (max-width:767px){
  .news-comment-list .news-comment-child{
    padding: 0 0 30px 60px;
  }
}
@media (max-width: 575px) {
  .news-comment-list .news-comment-child {
    padding: 0 0 30px 30px;
  }
}

.news-single-form-title{
  margin: 0 0 30px;
}
.news-single-form-heading{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 10px;
}
.news-single-form-title p{
  font-weight: 500;
}
.news-single-form .form-group-row {
  display: flex;
  gap: 24px;
}
@media (max-width:575px){
  .news-single-form .form-group-row {
    flex-direction: column;
    gap: 0;
  }
}
.news-single-form .form-group {
  margin: 0 0 24px;
  width: 100%;
}
.news-single-form .form-control {
  border: 1px solid var(--theme-color30);
  color: var(--theme-color70);
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  height: 50px;
  padding: 14px 20px;
}
.news-single-form textarea.form-control {
  height: 120px;
  resize: none;
}
.news-single-form .form-group.form-group-check {
  display: flex;
  align-items: center;
}
.news-single-form .form-check-input {
  min-height: 30px;
  margin: 0 8px 0 0;
  min-width: 30px;
}
.news-single-form .form-check-input:focus {
  border-color: var(--theme-color);
  outline: 0;
  box-shadow: none;
}
.news-single-form .form-check-input:checked {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}
.news-single-form .form-group.form-group-check label {
  font-weight: 500;
  color: var(--theme-color);
}

/* =========   20.2 Related News & Updates CSS   ========= */

.related-news-slider .swiper-slide{
  height: auto;
}

/* ==============================
   21. Contact Us Page CSS
============================== */

/* =========   21.1 Contact Info CSS   ========= */

.contact-info{
  background: linear-gradient(180deg,var(--white-color) 0%, var(--light-blue) 100%);
  border-radius: 0 0 50px 50px;
  padding: 0 0 80px;
}
@media (max-width:767px){
  .contact-info{
    padding: 0 0 60px;
  }
}
@media (max-width:575px){
  .contact-info{
    border-radius: 0 0 24px 24px;
  }
}
.contact-info-title{
  align-items: center;
}
.contact-info-title .heading{
  text-align: center;
}
.contact-info-title p{
  max-width: 672px;
  text-align: center;
}
.contact-box{
  background-color: var(--white-color);
  border-radius: 10px;
  box-shadow: 0 0 8px 0px var(--theme-color10);
  height: 100%;
  padding: 30px 20px;
}
.contact-box-heading{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 26px;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 20px;
}
.contact-box-bottom{
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width:1199px){
  .contact-box-bottom{
    flex-direction: column;
    align-items: start;
  }
}
.contact-icon-box{
  background-color: var(--secondary-color10);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  min-height: 60px;
  min-width: 60px;
  width: 60px;
}
.contact-icon-box i{
  color: var(--secondary-color);
  font-size: 30px;
  font-weight: normal;
}
.contact-info-heading{
  color: var(--secondary-color);
  font-family: var(--theme-font);
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  margin: 0 0 6px;
}
.contact-box-copy a{
  color: var(--antique-Silver);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

/* =========   21.2 Contact Form CSS   ========= */

.contact-form-box{
  background-color: var(--light-blue);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
  padding: 30px;
}
@media (max-width:575px){
  .contact-form-box{
    padding: 20px;
  }
}
.contact-form-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-form-title h3 {
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}
.contact-form-title p{
  font-weight: 500;
}
.contact-form .form-group-row {
  display: flex;
  gap: 24px;
}
@media (max-width:767px){
  .contact-form .form-group-row {
    flex-direction: column;
    gap: 0;
  }
}
.contact-form .form-group-row .form-group {
  width: 50%;
}
@media (max-width:767px){
  .contact-form .form-group-row .form-group {
    width: 100%;
  }
}
.contact-form .form-group {
  display: inline-block;
  margin: 0 0 20px;
  width: 100%;
}
.contact-form .form-group .form-control{
  font-family: var(--theme-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--theme-color70);
  height: 50px;
  padding: 14px 20px;
}
.contact-form .form-group textarea.form-control{
  height: 120px;
  resize: none;
}
.contact-form .form-label{
  font-family: var(--theme-font);
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: var(--theme-color);
}
.contact-form .form-check-input {
  height: 30px;
  margin: 0 8px 0 0;
  min-width: 30px;
  width: 30px;
}
.contact-form .form-check-input:focus{
  border-color: var(--theme-color);
  box-shadow: none;
}
.contact-form .form-check-label {
  color: var(--theme-color);
  font-weight: 500;
  margin: 0;
}
.contact-form .form-check-input:checked {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}
.contact-form .form-group.form-group-check{
  display: flex;
  align-items: center;
}
.contact-form-img{
  isolation: isolate;
  overflow: hidden;
  position: relative;
  height: 100%;
}
.contact-form-img::after{
  background-color: var(--theme-color10);
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 100%;
  width: 100%;
  z-index: 1;
}
.contact-form-img img{
  border-radius: 10px;
  height: 100%;
  width: 100%;
}
.contact-form-social{
  background-color: var(--white-color80);
  backdrop-filter: blur(10px);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 6px;
  z-index: 2;
}
.contact-form-social ul {
  display: flex;
  align-items: center;
  gap: 6px;
}
.contact-form-social ul li a {
  background-color: var(--secondary-color);
  border-radius: 6px;
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
}
.contact-form-social ul li a i {
  font-size: 26px;
  font-weight: normal;
}

/* =========   21.3 Google Map CSS   ========= */

.google-map{
  display: inline-block;
  margin: 40px 0;
  width: 100%;
}
@media (max-width:767px){
  .google-map{
    margin: 30px 0;
  }
}
.maps iframe{
  border: 0;
  border-radius: 20px;
  width: 100%;
}
@media (max-width:575px){
  .maps iframe{
    border-radius: 20px;
    height: 400px;
  }
}

/* ==============================
   22. Team Single Page CSS
============================== */

/* =========   22.1 Team Single CSS   ========= */

.team-member-img{
  border: 1px solid var(--light-blue);
  border-radius: 20px;
  padding: 30px;
}
@media (max-width:1199px){
  .team-member-img{
    padding: 20px;
  }
}
@media (max-width:575px){
  .team-member-img{
    padding: 10px;
  }
}
.team-member-img img{
  border-radius: 10px;
  width: 100%;
}
.team-member-info{
  margin: 0 0 30px;
}
.team-member-title{
  margin: 0 0 40px;
}
.team-member-heading{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 30px;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 10px;
}
.team-member-post{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}
.team-member-info p{
  font-weight: 500;
}
.team-member-contact{
  margin: 0 0 30px;
}
.team-member-contact ul li{
  margin: 0 0 10px;
}
.team-member-contact ul li:last-child{
  margin: 0;
}
.team-member-contact-label{
  color: var(--theme-color);
  display: inline-block;
  font-family: var(--theme-font);
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  min-width: 130px;
}
.team-member-contact-value{
  color: var(--antique-Silver);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
a.team-member-contact-value:hover{
  color: var(--theme-color);
}
.team-member-social-heading{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 28px;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 20px;
}
.team-member-social ul{
  display: flex;
  gap: 10px;
}
.team-member-social ul a{
  background-color: var(--theme-color);
  border-radius: 4px;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  height: 40px;
  width: 40px;
}
.team-member-skills{
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0 0;
}
.team-member-skills p{
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
}
.team-member-skills ul li{
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin: 0 0 10px;
  padding: 0 0 0 34px;
  position: relative;
}
.team-member-skills ul li::before {
  background-color: var(--secondary-color);
  border-radius: 4px;
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--theme-icon-font);
  font-size: 14px;
  font-weight: normal;
  content: "\e91d";
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
}
.team-member-skills strong,
.team-member-skills b{
  font-weight: 700;
}
.team-member-skills p a,
.team-member-skills a{
  color: var(--secondary-color);
}
.team-member-skills h1{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 36px;
  font-weight: 600;
}
.team-member-skills h2{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 28px;
  font-weight: 600;
}
.team-member-skills h3{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 24px;
  font-weight: 600;
}
.team-member-skills h4{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 20px;
  font-weight: 600;
}
.team-member-skills h5{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 18px;
  font-weight: 600;
}
.team-member-skills h6{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 16px;
  font-weight: 600;
}

/* ==============================
   23. Faqs Page CSS
============================== */

/* =========   23.1 Faqs CSS   ========= */

.faq-page{
  background-color: var(--white-color);
  padding: 0;
}
.faq-page .faqs-title{
  align-items: start;
  text-align: left;
}
.faq-page .faq-list .accordion-item .accordion-button{
  background-color: var(--light-blue);
}

/* ==============================
   24. Review Page CSS
============================== */

/* =========   24.1 Review CSS   ========= */

.review-box:nth-child(even) .review-box-inner{
  flex-direction: column-reverse;
}
@media (max-width:991px){
  .review-box:nth-child(even) .review-box-inner{
    flex-direction: column;
  }
}
.review-box-inner{
  background-color: var(--light-blue);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  padding: 10px;
}
.review-box-img{
  display: flex;
  gap: 24px;
}
@media (max-width:575px){
  .review-box-img{
    gap: 10px;
  }
}
.review-after-before-img{
  isolation: isolate;
  position: relative;
  width: 50%;
}
.review-after-before-img::after{
  background-color: var(--theme-color10);
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 100%;
  width: 100%;
  z-index: 1;
}
.review-after-before-img img{
  border-radius: 10px;
  width: 100%;
}
.review-box-tags{
  background-color: var(--secondary-color);
  border-radius: 4px;
  color: var(--theme-color);
  font-size: 14px;
  font-weight: 600;
  line-height: 15px;
  padding: 5px 12px;
  position: absolute;
  bottom: 10px;
  left: 10px;
  text-transform: uppercase;
  z-index: 2;
}
@media (max-width:575px){
  .review-box-tags{
    font-size: 12px;
    padding: 4px 8px;
  }
}
.review-box-img-right .review-box-tags{
  left: auto;
  right: 10px;
}
.review-box-content{
  background-color: var(--white-color);
  border-radius: 10px;
  height: 100%;
  padding: 30px;
}
@media (max-width:575px){
  .review-box-content{
    padding: 20px;
  }
}
.review-box-top ul{
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 6px;
  margin: 0 0 10px;
}
.review-box-top ul li i{
  color: var(--yellow);
  font-size: 24px;
}
.review-box-heading{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  margin: 0 0 30px;
}
.review-box-top p{
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  margin: 0 0 30px;
}
@media (max-width:575px){
  .review-box-top p{
    font-size: 16px;
  }
}
.review-box-auther{
  color: var(--secondary-color);
  font-family: var(--theme-font);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 10px;
}
.review-box-auther-post{
  color: var(--theme-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  margin: 0;
}

/* ==============================
   25. Portfolio Page CSS
============================== */

/* =========   25.1 Work CSS   ========= */

.work-box{
  border: 1px solid var(--theme-color10);
  border-radius: 10px;
  padding: 20px 20px 40px;
}
@media (max-width:575px){
  .work-box{
    padding: 16px 16px 30px;
  }
}
.work-img{
  isolation: isolate;
}
.work-img img{
  border-radius: 10px;
  height: 100%;
  min-height: 250px;
  max-height: 250px;
  width: 100%;
}
.work-box-content{
  position: relative;
  overflow: hidden;
  margin: -90px auto 0;
  width: calc(100% - 40px);
}
@media (max-width:575px){
  .work-box-content{
    width: calc(100% - 30px);
  }
}
.work-box-btn{
  display: flex;
  justify-content: end;
}
.work-box-btn a{
  background-color: var(--secondary-color);
  border-radius: 6px 6px 0 0;
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  height: 50px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  transform: translateX(100px);
  -webkit-transform: translateX(100px);
  -moz-transform: translateX(100px);
  -ms-transform: translateX(100px);
  -o-transform: translateX(100px);
  width: 50px;
}
.work-box:hover .work-box-btn a{
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}
.work-box-copy{
  background-color: var(--light-blue);
  border-radius: 10px 0 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  text-align: center;
}
.work-box-heading,
.work-box-heading a{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 28px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}
@media (max-width:1399px){
  .work-box-heading,
  .work-box-heading a{
    font-size: 24px;
  }
}
.work-box:hover .work-box-heading a{
  color: var(--secondary-color);
}
.work-box-copy p{
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* ==============================
   26. Portfolio Single Page CSS
============================== */

/* =========   26.1 Work single CSS   ========= */

.work-single-img-box{
  border: 1px solid var(--theme-color20);
  border-radius: 20px;
  padding: 20px;
}
@media (max-width:991px){
  .work-single-img-box{
    border-radius: 16px;
    padding: 10px;
  }
}
.work-single-img img{
  border-radius: 10px;
  min-height: 450px;
  width: 100%;
}
@media (max-width:1399px){
  .work-single-img img{
    min-height: 400px;
  }
}
@media (max-width:1199px){
  .work-single-img img{
    min-height: 350px;
  }
}
@media (max-width:991px){
  .work-single-img img{
    min-height: 250px;
  }
}
.work-single-sidebar{
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.work-single-info{
  border: 1px solid var(--theme-color20);
  border-radius: 10px;
  padding: 30px;
}
@media (max-width:1199px){
  .work-single-info{
    padding: 16px;
  }
}
.work-single-info-row{
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 16px;
}
.work-single-info-name{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  min-width: 130px;
}
@media (max-width:1199px){
  .work-single-info-name{
    font-size: 18px;
    min-width: 110px;
  }
}
.work-single-info-value{
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.work-single-team{
  background-color: var(--light-blue);
  border-radius: 10px;
  padding: 20px;
}
.work-single-team-heading{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 10px;
}
.work-single-team ul li{
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  margin: 0 0 6px;
}
.work-single-team ul li:last-child{
  margin: 0;
}
.work-single-heading{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 42px;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 20px;
}
@media (max-width:767px){
  .work-single-heading{
    font-size: 36px;
  }
}
@media (max-width:575px){
  .work-single-heading{
    font-size: 28px;
  }
}
.work-single-copy{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.work-single-copy p{
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.work-single-copy p a,
.work-single-copy a{
  color: var(--secondary-color);
}
.work-single-copy strong{
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}
.work-single-copy h1{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 36px;
  font-weight: 600;
  line-height: normal;
}
.work-single-copy h2{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 28px;
  font-weight: 600;
  line-height: normal;
}
.work-single-copy h3{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}
.work-single-copy h4{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
}
.work-single-copy h5{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
}
.work-single-copy h6{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}
.work-single-copy ul li {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin: 0 0 10px;
  padding: 0 0 0 34px;
  position: relative;
}
.work-single-copy ul li::before {
  background-color: var(--secondary-color);
  border-radius: 4px;
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--theme-icon-font);
  font-size: 14px;
  font-weight: normal;
  content: "\e91d";
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
}
.work-single-copy blockquote{
  background-color: var(--light-blue);
  border-left: 4px solid var(--secondary-color);
  border-radius: 8px;
  color: var(--theme-color);
  font-size: 26px;
  font-weight: 500;
  line-height: normal;
  margin: 0;
  padding: 90px 40px 40px;
  position: relative;
}
.work-single-copy blockquote::after{
  color: var(--secondary-color);
  font-family: var(--theme-icon-font);
  font-size: 40px;
  font-weight: normal;
  position: absolute;
  top: 40px;
  left: 40px;
  content: "\e90a";
  margin: auto 0;
  height: 40px;
  opacity: 0.5;
  width: 40px;
}

/* =========   26.2 Before After Image CSS   ========= */

.before-after-images{
  background-color: var(--light-blue);
  border-radius: 20px;
  padding: 20px;
}
@media (max-width:1199px){
  .before-after-images{
    border-radius: 16px;
    padding: 16px;
  }
}
@media (max-width:767px){
  .before-after-images{
    border-radius: 10px;
    padding: 10px;
  }
}
.beforeAfter{
  border-radius: 16px;
}
@media (max-width:767px){
  .beforeAfter{
    border-radius: 8px;
  }
}
@media (max-width:767px){
  .beforeAfter img{
    min-height: 250px;
  }
}

/* ==============================
   27. Online Booking Page CSS
============================== */

/* =========   27.1 Online Booking Form CSS   ========= */

.online-booking-form{
  display: inline-block;
  margin: 40px 0;
  width: 100%;
}
@media (max-width:767px){
  .online-booking-form{
    margin: 30px 0;
  }
}
.booking-form{
  background-color: var(--light-blue);
  border-radius: 10px;
  padding: 30px;
}
@media (max-width:575px){
  .booking-form{
    padding: 20px;
  }
}
.booking-form .nice-select,
.booking-form .nice-select:active, 
.booking-form .nice-select.open,
.booking-form .nice-select:focus{
  border-color: var(--theme-color30);
}
.booking-form .nice-select:after{
  border-bottom: 3px solid var(--theme-color);
  border-right: 3px solid var(--theme-color);
  height: 12px;
  width: 12px;
  margin: -8px 0 auto 0;
}

/* ==============================
   28. Pricing Plan Page CSS
============================== */

/* =========   28.1 Pricing Plan Style 2 CSS   ========= */

.pricing-two .pricing-plan-box{
  border-radius: 10px;
  padding: 20px;
}
@media (max-width:575px){
  .pricing-two .pricing-plan-box{
    padding: 16px;
  }
}
.pricing-two .pricing-plan-top{
  border-radius: 10px;
  align-items: center;
  padding: 30px 30px 80px;
}
@media (max-width:1199px){
  .pricing-two .pricing-plan-top{
    padding: 20px 20px 80px;
  }
}
@media (max-width:575px){
  .pricing-two .pricing-plan-top{
    padding: 20px 12px 80px;
  }
}
.pricing-two .pricing-plan-heading,
.pricing-two .pricing-plan-time,
.pricing-two .pricing-plan-top p{
  text-align: center;
}
.pricing-two .pricing-plan-price{
  border-radius: 10px;
  margin: -50px auto 0;
  padding: 30px;
}
.pricing-two .pricing-plan-point {
  padding: 30px 10px 40px;
}
.pricing-two .get-plan-btn{
  padding: 0 10px 10px;
}

/* ==============================
   29. 404 Page CSS
============================== */

/* =========   29.1 404 Error CSS   ========= */

.error-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0 120px;
}
@media (max-width:575px){
  .error-inner{
    padding: 40px 0 60px;
  }
}
.error-heading{
  color: var(--theme-color);
  display: block;
  font-family: var(--theme-font);
  font-size: 250px;
  line-height: 1;
  font-weight: 600;
  margin: 0;
}
@media (max-width:767px){
  .error-heading{
    font-size: 200px;
  }
}
@media (max-width:575px){
  .error-heading{
    font-size: 120px;
  }
}
.error-subheading{
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-size: 28px;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 16px;
}
.error-inner p{
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  margin: 0 auto 30px;
  max-width: 408px;
  text-align: center;
}