
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {

  --headingFontFamily: 'Work Sans', sans-serif;
  --mainColor-1: #E51938;
  --optionalColor-1: #666666;
  --whiteColor-1: #FFFFFF;
  --blackColor-1: #000000;
  --background-gradient-1: linear-gradient(to right bottom, #fffefe, #ffe6e8, #ffc2ca, #f77c88, #E51938);
 

  --mainColor-2: #2D76F9;         
  --optionalColor-2: #5D6D7E;     
  --whiteColor-2: #FDFEFE;        
  --blackColor-2: #1A1A1A;
  --background-gradient-2: linear-gradient(to right bottom, #fdfefe, #dce9fb, #b0cbfa, #6d9bf7, #2D76F9);

  --mainColor-3: #28A745;         
  --optionalColor-3: #6C757D;     
  --whiteColor-3: #F8F9FA;        
  --blackColor-3: #212529;
  --background-gradient-3: linear-gradient(to right bottom, #f8f9fa, #d9f3e1, #aeeec6, #6ddf9f, #28A745);

  --fontSize: 16px;
  --transition: .5s;

  --mainColor: var(--mainColor-3);
  --optionalColor: var(--optionalColor-3);
  --whiteColor: var(--whiteColor-3);
  --blackColor: var(--blackColor-3);
  --background-gradient: var(--background-gradient-3);
}

body {
  font-family: 'Work Sans', sans-serif;
  direction: ltr;
  margin: 0;
  padding: 0;
  color: var(--blackColor); 
}

.container {
  max-width: 1230px;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: var(--blackColor);
  font-weight: 700;
  font-family: var(--headingFontFamily);
}

a {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: var(--blackColor);
  text-decoration: none;
  outline: 0 !important;
}

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

:focus {
  outline: 0 !important;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

.ri-twitter-fill::before {
  position: relative;
  bottom: 2px;
  font-size: 17px;
  content: "𝕏" !important;
}

@media only screen and (min-width: 1600px) {
  .container {
    max-width: 1520px;
  }
}

img {
  max-width: 100%;
  height: auto;
}

p {
  color: var(--optionalColor);
  font-size: var(--fontSize);
  margin-bottom: 15px;
  line-height: 1.8;
}

p:last-child {
  margin-bottom: 0;
}

.bg-F9F5F2 {
  background-color: #F9F5F2;
}

.bg-f9f9f9 {
  background-color: #f9f9f9;
}

.bg-black-color {
  background-color: var(--blackColor);
}

.bg-black-color .section-title .sub-title {
  color: var(--mainColor);
}

.bg-black-color .section-title h2 {
  color: var(--whiteColor);
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-60 {
  padding-bottom: 60px;
}

/*section-title*/
.section-title {
  text-align: center;
  max-width: 610px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

.section-title .sub-title {
  display: block;
  margin-bottom: 8px;
  color: var(--mainColor);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
}

.section-title h2 {
  margin-bottom: 0;
  font-size: 34px;
}

.section-title.text-start {
  margin-left: 0;
  margin-right: 0;
}

/*default-btn*/
.default-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: none;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  position: relative;
  z-index: 1;
  color: var(--mainColor);
  background-color: transparent;
  border-radius: 5px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  padding: 11px 30px 11px 30px;
  font-family: var(--headingFontFamily);
  font-size: var(--fontSize);
  font-weight: 600;
  min-height: 55px;
}

.phone-btn{
  margin-top: 30px;
}

.default-btn::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  bottom: 0;
  z-index: -1;
  background-color: var(--mainColor);
  border-radius: 5px;
  opacity: .15;
}

.default-btn i {
  font-size: 20px;
  font-weight: normal;
}

.default-btn:hover {
  background-color: transparent;
  color: var(--whiteColor);
}

.default-btn:hover::before {
  opacity: 1;
}

/*form-control*/
.form-control {
  height: 50px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  border-radius: 0;
  border: 1px solid #eeeeee;
  background-color: var(--whiteColor);
  font-size: var(--fontSize);
  padding-left: 15px;
  color: var(--blackColor);
}

.form-control::-webkit-input-placeholder {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: #999999;
}

.form-control:-ms-input-placeholder {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: #999999;
}

.form-control::-ms-input-placeholder {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: #999999;
}

.form-control::placeholder {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: #999999;
}

.form-control:focus {
  border-color: var(--mainColor);
}

.form-control:focus::-webkit-input-placeholder {
  color: transparent;
}

.form-control:focus:-ms-input-placeholder {
  color: transparent;
}

.form-control:focus::-ms-input-placeholder {
  color: transparent;
}

.form-control:focus::placeholder {
  color: transparent;
}

textarea.form-control {
  height: auto !important;
  padding-top: 15px;
}

/*================================================
Navbar Area CSS
=================================================*/
.navbar-area {
  position: absolute;
  z-index: 999;
  height: auto;
  right: 0;
  left: 0;
  top: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  direction: ltr;
}

.navbar-area.is-sticky {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  position: fixed;
  background-color: var(--whiteColor) !important;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  padding-top: 0;
  padding-bottom: 0;
}

.yango-responsive-nav {
  display: none;
}

.yango-nav .container-fluid {
  padding-left: 50px;
  padding-right: 50px;
}

.yango-nav .navbar {
  padding: 0;
  position: inherit;
}

.logo a,
.logo,
.yango-nav .navbar .navbar-brand {
  font-size: inherit;
  line-height: 1;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  flex-wrap: wrap;
  transition: 0.3s ease;

  h1{
    margin: 0 !important;
    font-size: clamp(18px, 4vw, 23px);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--mainColor);
  }

  &:hover{
    opacity: 0.9;
    transform: scale(0.98);
  }
}


.navbar-brand img{
  height: 36px;
}

.logo img{
  height: 36px;
}

.yango-nav .navbar ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.yango-nav .navbar .navbar-nav {
  margin-left: auto;
}

.yango-nav .navbar .navbar-nav .nav-item {
  position: relative;
  margin-left: 15px;
  margin-right: 15px;
}

.yango-nav .navbar .navbar-nav .nav-item a {
  position: relative;
  color: var(--blackColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-weight: 700;
  font-size: 17px;
  padding-left: 0;
  padding-right: 0;
  padding-top: 25px;
  padding-bottom: 25px;
}

.yango-nav .navbar .navbar-nav .nav-item a:hover, .yango-nav .navbar .navbar-nav .nav-item a:focus, .yango-nav .navbar .navbar-nav .nav-item a.active {
  color: var(--mainColor);
}

.yango-nav .navbar .navbar-nav .nav-item .dropdown-toggle {
  padding-right: 14px;
}

.yango-nav .navbar .navbar-nav .nav-item .dropdown-toggle::after {
  display: none;
}

.yango-nav .navbar .navbar-nav .nav-item .dropdown-toggle::before {
  position: absolute;
  content: "\EA4E";
  line-height: 1;
  right: -2px;
  top: 31px;
  font-family: remixicon;
  font-size: 15px;
}

.yango-nav .navbar .navbar-nav .nav-item:last-child {
  margin-right: 0;
}

.yango-nav .navbar .navbar-nav .nav-item:first-child {
  margin-left: 0;
}

.yango-nav .navbar .navbar-nav .nav-item:hover a, .yango-nav .navbar .navbar-nav .nav-item.active a {
  color: var(--mainColor);
}

.yango-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  left: 0;
  top: 75px;
  opacity: 0;
  z-index: 99;
  border: none;
  width: 265px;
  margin-top: 0;
  display: block;
  padding: 10px 0;
  border-radius: 0;
  position: absolute;
  visibility: hidden;
  background: var(--whiteColor);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

.yango-nav .navbar .navbar-nav .nav-item .dropdown-menu li {
  margin: 0;
}

.yango-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  display: block;
  padding: 8px 20px;
  position: relative;
  color: var(--blackColor);
  font-size: var(--fontSize);
  font-weight: 700;
}

.yango-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .yango-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus {
  color: var(--mainColor);
  padding-left: 25px;
}

.yango-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: var(--mainColor);
}

.yango-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: auto;
  right: 250px;
  margin-top: 0;
  visibility: hidden;
}

.yango-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: var(--blackColor);
  padding-left: 20px;
}

.yango-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover, .yango-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus {
  color: var(--mainColor);
  padding-left: 25px;
}

.yango-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: var(--mainColor);
}

.yango-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  right: 250px;
  visibility: hidden;
}

.yango-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--blackColor);
  padding-left: 20px;
}

.yango-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .yango-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus {
  padding-left: 25px;
  color: var(--mainColor);
}

.yango-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--mainColor);
}

.yango-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  right: 250px;
  visibility: hidden;
}

.yango-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  padding-left: 20px;
  color: var(--blackColor);
}

.yango-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .yango-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus {
  color: var(--mainColor);
  padding-left: 25px;
}

.yango-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--mainColor);
}

.yango-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--mainColor);
}

.yango-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.yango-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--mainColor);
}

.yango-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.yango-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a {
  color: var(--mainColor);
}

.yango-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.yango-nav .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: var(--mainColor);
}

.yango-nav .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  margin-top: 0;
  visibility: visible;
}

.yango-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.yango-nav .navbar .others-option {
  margin-left: 30px;
}

@media only screen and (max-width: 991px) {
  .navbar-area {
    position: relative;
    background-color: var(--whiteColor);
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .logo a{
        justify-content: flex-start;
  }
  .navbar-area.is-sticky {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .yango-responsive-nav {
    display: block;
  }
  .yango-responsive-nav .yango-responsive-menu {
    position: relative;
    direction: initial;
   
  }
  .yango-responsive-nav .yango-responsive-menu.mean-container .mean-nav {
    margin-top: 85px;
    background-color: var(--whiteColor);
  }
  .yango-responsive-nav .yango-responsive-menu.mean-container .mean-nav ul {
    font-size: 15px;
    border: none !important;
  }
  .yango-responsive-nav .yango-responsive-menu.mean-container .mean-nav ul li a {
    border-top-color: #DBEEFD;
    color: var(--blackColor);
    text-transform: unset;
    font-weight: 600;
  }
  .yango-responsive-nav .yango-responsive-menu.mean-container .mean-nav ul li a i {
    display: none;
  }
  .yango-responsive-nav .yango-responsive-menu.mean-container .mean-nav ul li a.mean-expand {
    width: 50%;
    height: 28px;
    text-align: right;
    padding: 11px !important;
    background: transparent !important;
    border-left: none !important;
    border-bottom: none !important;
  }
  .yango-responsive-nav .yango-responsive-menu.mean-container .mean-nav ul li a.active {
    color: var(--mainColor);
  }
  .yango-responsive-nav .yango-responsive-menu.mean-container .mean-nav ul li li a {
    font-size: 15px;
  }
  .yango-responsive-nav .yango-responsive-menu.mean-container .navbar-nav {   
    overflow-y: scroll;
    -webkit-box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
  }
  .yango-responsive-nav .mean-container a.meanmenu-reveal {
    top: 0;
    padding: 0;
    width: 35px;
    height: 30px;
    padding-top: 8px;
    color: var(--blackColor);
    font-family: var(--fontFamily);
  }
  .yango-responsive-nav .mean-container a.meanmenu-reveal span {
    top: 8px;
    height: 4px;
    margin-top: -6px;
    border-radius: 3px;
    position: relative;
    background: var(--blackColor);
  }
  .yango-responsive-nav .mean-container .mean-bar {
    background: transparent;
    position: absolute;
    z-index: 999;
    padding: 0;
  }
  .yango-responsive-nav .dropdown-toggle::after {
    display: none !important;
  }
  .yango-responsive-nav .others-option {
    position: absolute;
    z-index: 999;
    right: 52px;
    top: 0px;
  }
  .yango-responsive-nav .others-option .default-btn {
    font-size: 12px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 9px;
    padding-bottom: 9px;
  }
  .yango-responsive-nav .others-option .default-btn i {
    display: none;
  }
  .yango-responsive-nav .logo {
    position: relative;
    width: 60%; 
    z-index: 999;
  }
  .yango-nav {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .yango-responsive-nav .logo img {
    max-width: 115px;
    height: 36px;
  }
  .yango-responsive-nav .others-option {
    right: 44px;
    top: 3px;
  }
  .yango-responsive-nav .others-option .default-btn {
    padding-left: 10px;
    padding-right: 10px;
  }
  .yango-responsive-nav .mean-container a.meanmenu-reveal {
    padding-top: 8px;
  }
  .yango-responsive-nav .yango-responsive-menu.mean-container .mean-nav {
    margin-top: 98px;
  }
}

/*================================================
Main Banner Area CSS
=================================================*/
.main-banner-area {
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url(#/wp-content/uploads/2023/11/bg1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.main-banner-area .container-fluid {
  padding-left: 50px;
  padding-right: 50px;
}

.main-banner-content {
  padding-right: 40px;
}

.main-banner-content h1 {
  font-size: 60px;
  margin-bottom: 15px;
}

.main-banner-content p {
  font-size: 17px;
  color: #222222;
}

.main-banner-content .btn-box {
  margin-top: 35px;
}

.main-banner-content .btn-box .default-btn {
  color: var(--whiteColor);
  padding-top: 12.5px;
  padding-bottom: 12.5px;
}

.main-banner-content .btn-box .default-btn::before {
  opacity: 1;
}

.main-banner-content .btn-box .default-btn:hover {
  color: var(--mainColor);
}

.main-banner-content .btn-box .default-btn:hover::before {
  background-color: #F8CCDE;
}

.main-banner-content .btn-box .default-btn:nth-child(2) {
  margin-left: 15px;
  background-color: var(--whiteColor);
  color: var(--blackColor);
}

.main-banner-content .btn-box .default-btn:nth-child(2)::before {
  display: none;
}

.main-banner-content .btn-box .default-btn:nth-child(2):hover {
  background-color: var(--blackColor);
  color: var(--whiteColor);
}

.main-banner-image {
  text-align: center;
}

.banner-area {
  padding-top: 150px;
  padding-bottom: 100px;
}

.banner-area .container-fluid {
  padding-left: 50px;
  padding-right: 50px;
}

.banner-content {
  padding-right: 40px;
}

.banner-content h1 {
  font-size: 60px;
  margin-bottom: 15px;
}

.banner-content p {
  font-size: 17px;
  color: #222222;
}

.banner-content .btn-box {
  margin-top: 35px;
}

.banner-content .btn-box .default-btn {
  color: var(--whiteColor);
  padding-top: 12.5px;
  padding-bottom: 12.5px;
}

.banner-content .btn-box .default-btn::before {
  opacity: 1;
}

.banner-content .btn-box .default-btn:hover {
  color: var(--mainColor);
}

.banner-content .btn-box .default-btn:hover::before {
  background-color: #F8CCDE;
}

.banner-content .btn-box .default-btn:nth-child(2) {
  margin-left: 15px;
  color: var(--blackColor);
  background-color: var(--whiteColor);
}

.banner-content .btn-box .default-btn:nth-child(2)::before {
  opacity: .15;
  background-color: transparent;
  border: 2px solid var(--mainColor);
}

.banner-content .btn-box .default-btn:nth-child(2):hover {
  background-color: var(--blackColor);
  color: var(--whiteColor);
}

.banner-content .btn-box .default-btn:nth-child(2):hover::before {
  opacity: 1;
  border-color: var(--blackColor);
}

.banner-image {
  text-align: center;
}

.banner-wrapper-area {
  padding-top: 150px;
  position: relative;
  z-index: 1;
}

.banner-wrapper-area::before {
  right: 0;
  bottom: 0;
  width: 65%;
  z-index: -1;
  content: '';
  height: 100px;
  position: absolute;
  border-radius: 150px 0 0 0;
  background-color: #F9F5F2;
}

.banner-wrapper-content {
  position: relative;
}

.banner-wrapper-content h1 {
  font-size: 60px;
  margin-bottom: 15px;
}

.banner-wrapper-content p {
  font-size: 17px;
  color: #222222;
}

.btn-box{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.banner-wrapper-content .btn-box .default-btn {
  color: var(--whiteColor);
  padding-top: 12.5px;
  padding-bottom: 12.5px;
}

.banner-wrapper-content .btn-box .default-btn::before {
  opacity: 1;
}

.banner-wrapper-content .btn-box .default-btn:hover {
  color: var(--mainColor);
}

.banner-wrapper-content .btn-box .default-btn:hover::before {
  background-color: #F8CCDE;
}

.banner-wrapper-content .btn-box .default-btn:nth-child(2) {
  color: var(--blackColor);
  background-color: var(--whiteColor);
}

.banner-wrapper-content .btn-box .default-btn:nth-child(2)::before {
  opacity: .15;
  background-color: transparent;
  border: 2px solid var(--mainColor);
}

.banner-wrapper-content .btn-box .default-btn:nth-child(2):hover {
  background-color: var(--blackColor);
  color: var(--whiteColor);
}

.banner-wrapper-content .btn-box .default-btn:nth-child(2):hover::before {
  opacity: 1;
  border-color: var(--blackColor);
}

.banner-wrapper-image {
  background-color: #e5e5e5;
  border-radius: 30px;
  text-align: center;
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
}

/*================================================
Features Area CSS
=================================================*/
.features-area.bg-F9F5F2 {
  background-color: transparent;
  position: relative;
  z-index: 1;
}

.features-area.bg-F9F5F2::before {
  top: 0;
  right: 0;
  bottom: 0;
  width: 65%;
  z-index: -1;
  content: '';
  position: absolute;
  background-color: #F9F5F2;
}

.features-image {
  padding-right: 15px;
  text-align: center;
}

.features-image img {
  border-radius: 5px;
}

.features-content {
  padding-left: 15px;
}

.features-content .sub-title {
  display: block;
  margin-bottom: 8px;
  color: var(--mainColor);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
}

.features-content h2 {
  margin-bottom: 15px;
  font-size: 34px;
}

.features-content .single-features-box {
  margin-bottom: 0;
  margin-top: 30px;
}

.single-features-box {
  padding: 30px 25px;
  border-radius: 5px;
  margin-bottom: 30px;
  background-color: #F8F8F8;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  height: 100%;
}

.single-features-box .icon {
  z-index: 1;
  position: relative;
  margin-bottom: 12px;
  display: inline-block;
  color: var(--blackColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-features-box .icon i {
  font-size: 55px;
  line-height: 1;
}

.single-features-box .icon::before {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -7px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: -2px;
  background-color: #FF6174;
  z-index: -1;
  opacity: .70;
}

.single-features-box .icon.bg-51EDF7::before {
  background-color: #51EDF7;
}

.single-features-box .icon.bg-AD6EDD::before {
  background-color: #AD6EDD;
}

.single-features-box .icon.bg-FFCD43::before {
  background-color: #FFCD43;
}

.single-features-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-features-box p {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-features-box:hover {
  background-color: var(--mainColor);
}

.single-features-box:hover .icon {
  color: var(--whiteColor);
}

.single-features-box:hover h3 {
  color: var(--whiteColor);
}

.single-features-box:hover p {
  color: var(--whiteColor);
}

.features-box {
  padding: 30px 25px;
  border-radius: 5px;
  margin-bottom: 30px;
  position: relative;
  background-color: #F8F8F8;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  height: 100%;
}

.features-box .icon {
  z-index: 1;
  position: relative;
  margin-bottom: 12px;
  display: inline-block;
  color: var(--blackColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.features-box .icon i {
  font-size: 55px;
  line-height: 1;
}

.features-box .icon::before {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -7px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: -2px;
  background-color: #FF6174;
  z-index: -1;
  opacity: .70;
}

.features-box .icon.bg-51EDF7::before {
  background-color: #51EDF7;
}

.features-box .icon.bg-AD6EDD::before {
  background-color: #AD6EDD;
}

.features-box .icon.bg-FFCD43::before {
  background-color: #FFCD43;
}

.features-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.features-box p {
  margin-bottom: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.features-box .link-btn {
  font-weight: 700;
  display: inline-block;
  color: var(--whiteColor);
  position: absolute;
  left: 25px;
  bottom: 30px;
  opacity: 0;
  visibility: hidden;
}

.features-box .link-btn:hover {
  color: var(--whiteColor);
}

.features-box.box-shadow {
  background-color: var(--whiteColor);
  height: 100%;
  -webkit-box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.08);
}

.features-box:hover {
  background-color: var(--mainColor);
}

.features-box:hover .icon {
  opacity: 0;
  visibility: hidden;
}

.features-box:hover h3 {
  color: var(--whiteColor);
  -webkit-transform: translateY(-52px);
          transform: translateY(-52px);
}

.features-box:hover p {
  color: var(--whiteColor);
  -webkit-transform: translateY(-52px);
          transform: translateY(-52px);
}

.features-box:hover .link-btn {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(-14px);
          transform: translateY(-14px);
}

/*================================================
About Area CSS
=================================================*/
.about-area.bg-color {
  position: relative;
  z-index: 1;
}
.about-area .row {
  flex-direction: row;
}

.about-area.bg-color::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  background-color: #F9F5F2;
  border-radius: 400px 0 0 0;
}

.about-area.bg-F9F5F2 {
  background-color: transparent;
  position: relative;
  z-index: 1;
}

.about-area.bg-F9F5F2::before {
  top: 0;
  right: 0;
  bottom: 0;
  width: 65%;
  z-index: -1;
  content: '';
  position: absolute;
  background-color: #F9F5F2;
}

.about-content .sub-title {
  display: block;
  margin-bottom: 8px;
  color: var(--mainColor);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
}

.about-content h2 {
  margin-bottom: 15px;
  font-size: 34px;
}

.about-content .default-btn {
  margin-top: 10px;
}

.about-image {
  background-color: var(--whiteColor);
  border-radius: 5px;
  padding: 50px 30px;
  margin-left: 30px;
}

.about-img {
  text-align: right;
  padding-right: 15px;
}

.about-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.about-img.pr-100 {
  text-align: left;
}

.about-img.pr-100 img {
  border-radius: 20px;
}

.about-text {
  padding-left: 15px;
  max-width: 595px;
}

.about-text .sub-title {
  display: block;
  margin-bottom: 8px;
  color: var(--mainColor);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
}

.about-text h2 {
  margin-bottom: 15px;
  font-size: 34px;
}

.about-text .default-btn {
  margin-top: 10px;
}

.about-text.m-100 {
  max-width: 100%;
  padding-left: 0;
}



.cta-image {
  position: relative;
  overflow: hidden;
}

.cta-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: relative;
  z-index: 0;
}



/*================================================
Services Area CSS
=================================================*/
.single-services-box {
  text-align: center;
  margin-bottom: 40px;
  padding-left: 15px;
  padding-right: 15px;
}

.single-services-box .icon {
  margin-bottom: 20px;
}

.single-services-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.single-services-box h3 a {
  display: inline-block;
}

.services-box {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: #f9f9f9;
  margin-bottom: 30px;
  position: relative;
  border-radius: 5px;
  margin-left: 75px;
  padding-top: 60px;
  padding-right: 30px;
  padding-bottom: 60px;
  padding-left: 110px;
}

.services-box .icon {
  left: -75px;
  top: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--whiteColor);
  border-radius: 5px;
  -webkit-box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);
  width: 150px;
  height: 150px;
  text-align: center;
}

.services-box .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  left: 0;
  right: 0;
  top: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
}

.services-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.services-box p {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.services-box .link-btn {
  font-weight: 700;
  display: inline-block;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.services-box .link-btn:hover {
  color: var(--whiteColor);
}

.services-box:hover {
  background-color: var(--mainColor);
}

.services-box:hover h3 {
  color: var(--whiteColor);
}

.services-box:hover h3 a {
  color: var(--whiteColor);
}

.services-box:hover p {
  color: var(--whiteColor);
}

.services-box:hover .link-btn {
  color: var(--whiteColor);
}

.single-services-box .icon img {
  display: initial;
  width: 100%;
  height: 287px;
  object-fit: cover;
}

.services-details-desc h3 {
  font-size: 24px;
  margin-bottom: 15px;
  margin-top: 30px;
}

.service-slides{
  direction: initial;
}

.services-details-desc h3:first-child {
  margin-top: 0;
}

.services-details-desc ul li {
  color: var(--optionalColor);
  margin-bottom: 12px;
  font-weight: 500;
}

.services-details-desc ul li:last-child {
  margin-bottom: 0;
}

.services-details-desc p strong {
  color: var(--blackColor);
}

.services-details-desc p a {
  color: var(--mainColor);
}

.services-details-desc p a:hover {
  text-decoration: underline;
}

.services-details-desc img {
  margin-top: 10px;
  margin-bottom: 25px;
}

/*================================================
Top Rated Area CSS
=================================================*/
.top-rated-area.bg-color {
  position: relative;
  z-index: 1;
}

.top-rated-area.bg-color::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  background-color: #F2FDFE;
  border-radius: 0 300px 0 0;
}

.single-top-rated-box {
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-bottom: 25px;
  padding-right: 25px;
  padding-left: 25px;
  height: 100%;
}

.single-top-rated-box img {
  margin-bottom: 25px;
}

.single-top-rated-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.single-top-rated-box::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 85%;
  z-index: -1;
  background-color: var(--whiteColor);
}

.top-rated-box {
  text-align: center;
  padding: 30px 25px;
  margin-bottom: 30px;
  border-radius: 10px;
  background-color: var(--whiteColor);
}

.top-rated-box {
  height: calc(100% - 30px);
}

.top-rated-box img {
  margin-bottom: 25px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.top-rated-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.top-rated-box:hover img {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

/*================================================
Team Area CSS
=================================================*/
.single-team-member {
  background-color: #f9f9f9;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding: 60px 30px;
  overflow: hidden;
}

.team-slides{
  direction: initial;
}

.single-team-member .image {
  z-index: 1;
  width: 200px;
  height: 200px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.single-team-member .image img {
  border-radius: 50%;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.9s ease 0s;
  transition: all 0.9s ease 0s;
}

.single-team-member .image::before {
  left: 0;
  right: 0;
  height: 0;
  content: "";
  width: 100%;
  opacity: 0.9;
  bottom: 135%;
  border-radius: 50%;
  position: absolute;
  -webkit-transform: scale(3);
          transform: scale(3);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--mainColor);
}

.single-team-member .content {
  margin-top: 25px;
}

.single-team-member .content h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.single-team-member .content span {
  display: block;
  color: var(--mainColor);
  font-size: 15px;
  font-weight: 700;
}

.single-team-member .social-links {
  left: 0;
  right: 0;
  bottom: -35px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  position: absolute;
  padding-left: 0;
  margin-bottom: 0;
  opacity: 0;
  visibility: hidden;
  list-style-type: none;
  background-color: var(--mainColor);
}

.single-team-member .social-links li {
  display: inline-block;
  margin-bottom: -7px;
}

.single-team-member .social-links li a {
  display: block;
  width: 40px;
  font-size: 18px;
  height: 40px;
  position: relative;
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.single-team-member .social-links li a i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.single-team-member .social-links li a:hover {
  background-color: var(--whiteColor);
  color: var(--blackColor);
}

.single-team-member:hover .image::before {
  height: 100%;
}

.single-team-member:hover .social-links {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}

/*================================================
Pricing Area CSS
=================================================*/
/* Toggle Switch */
#billingToggle {
    display: none;
}

.billing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
}

.simple-toggle {
    position: relative;
    background: #e2e8f0;
    border-radius: 25px;
    padding: 4px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    direction: ltr;
}

.toggle-option {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;          
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
    cursor: pointer;
    user-select: none;
}

.toggle-option.active {
    color: var(--mainColor);
    font-weight: bold;
}

.toggle-slider {
    position: absolute;
    top: 7px;
    left: 7px;
    width: auto;
    height: 32px;
    background: var(--mainColor);
    border-radius: 20px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-slider.yearly {
    transform: translateX(84px);
}

.single-pricing-box {
  overflow: hidden;
  margin-bottom: 30px;
  text-align: center;
  border-radius: 5px;
  position: relative;
}

.single-pricing-box .pricing-header {
 
  background: -webkit-gradient(linear, left top, right top, from(#bc4e9c), to(#f80759));
  background: linear-gradient(to right, #bc4e9c, #f80759);
  border-radius: 5px 5px 0 0;
  color: var(--whiteColor);
  padding: 30px;
}

.single-pricing-box .pricing-header h3 {
  font-size: 22px;
  color: var(--whiteColor);
  margin-bottom: 15px;
}

.single-pricing-box .pricing-header .price {
  line-height: 1;
  position: relative;
  font-size: 60px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
}


.single-pricing-box .pricing-header .price sup {
  top: 0;
  position: absolute;
  margin-left: -30px;
  font-size: var(--fontSize);
  font-weight: 500;
}

.single-pricing-box .pricing-header .price span {
  display: inline-block;
  margin-left: -18px;
  font-size: var(--fontSize);
  font-weight: 500;
}

.single-pricing-box .pricing-header .price span.price-amount {
  font-size: 30px;
  font-weight: 600;
}

.single-pricing-box .pricing-features {
  padding: 30px;
  margin-bottom: 0;
  text-align: left;
  list-style-type: none;
  border-left: 1px solid #eeeeee;
  border-right: 1px solid #eeeeee;
}

.single-pricing-box .pricing-features li {
  position: relative;
  margin-bottom: 14px;
  font-weight: 600;
}

.single-pricing-box .pricing-features li i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 20px;
  right: 0;
  color: green;
}

.single-pricing-box .pricing-features li i.ri-close-line {
  color: red;
}

.single-pricing-box .pricing-features li:last-child {
  margin-bottom: 0;
}

.single-pricing-box .pricing-footer {
  background-color: #f9f9f9;
  border-radius: 0 0 5px 5px;
  padding: 30px;
}

.single-pricing-box .ribbon {
  top: -20px;
  left: -30px;
  width: 150px;
  height: 150px;
  position: absolute;
}

.single-pricing-box .ribbon span {
  top: 35px;
  right: -25px;
  width: 225px;
  display: block;
  text-align: center;
  position: absolute;
  color: var(--whiteColor);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #45DC9A;
  font-size: 14px;
  font-weight: 700;
  padding-top: 7px;
  padding-bottom: 7px;
}

.single-pricing-box.active .pricing-footer .default-btn {
  color: var(--whiteColor);
}

.single-pricing-box.active .pricing-footer .default-btn::before {
  opacity: 1;
}

.col-lg-4:nth-child(2) .single-pricing-box .pricing-header {
  background: -webkit-gradient(linear, left top, right top, from(#8e2de2), to(#4a00e0));
  background: linear-gradient(to right, #8e2de2, #4a00e0);
}

.col-lg-4:nth-child(3) .single-pricing-box .pricing-header {
  background: -webkit-gradient(linear, left top, right top, from(#f953c6), to(#b91d73));
  background: linear-gradient(to right, #f953c6, #b91d73);
}

/*================================================
Modal form Styles Area CSS
=================================================*/
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
  overflow: hidden;
    background: white;
    border-radius: 1rem;
    width: 90%;
    max-width: 600px;
    /* max-height: 90vh; */
    /* overflow-y: auto; */
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
  direction: ltr;
    display: unset;
    padding: 16px 32px 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
    padding: 0 16px;
}

.modal-subtitle {
    color: #718096;
    font-size: 1rem;
}

.plan-info {
    background: var(--background-gradient);
    color: #000000;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    text-align: center;
}

.plan-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 13px;
    font-weight: bold;
    color: #a0aec0;
    cursor: pointer;
    transition: color 0.3s ease;
}
#cookie-banner button{
      bottom: 15px;
    top: unset;
}

.close:hover {
    color: #2d3748;
}

.modal-body {
    padding: 2rem;
}

/* Modal Form Styles */
.contact-form {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.contact__form .row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact__form .col-lg-6,
.contact__form .col-md-6,
.contact__form .col-sm-6 {
    flex: 1;
    min-width: 250px;
}

.contact__form .col-lg-12,
.contact__form .col-md-12,
.contact__form .col-sm-12 {
    flex: 1 1 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f7fafc;
}

.form-control:focus {
    outline: none;
    border-color:var(--mainColor);
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-control::placeholder {
    color: #a0aec0;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 1.5rem;
}

.form-check-input {
    margin-top: 0.25rem;
    accent-color: #667eea;
}

.form-check-label {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.4;
}

.form-check-label a {
    color: #667eea;
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.help-block {
    color: #e53e3e;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: none;
}

.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.alert-success {
    background-color: #f0fff4;
    border: 1px solid #9ae6b4;
    color: #276749;
}

.hidden {
    display: none;
}

/* Success Message Styles */
.contact__msg {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    box-shadow: 0 10px 25px rgba(72, 187, 120, 0.3);
    animation: successSlideIn 0.5s ease-out;
    position: relative;
}

@keyframes successSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact__msg::before {
    content: '✓';
    display: inline-block;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    line-height: 30px;
    margin-right: 10px;
    font-size: 1.2rem;
    font-weight: bold;
}

.form-control.error {
    border-color: #e53e3e !important;
    background-color: #fed7d7 !important;
}

.help-block {
    color: #e53e3e;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.mission-area.bg-F9F5F2 {
  background-color: transparent;
  position: relative;
  z-index: 1;
}

.mission-area.row {
  flex-direction: row;
}

.mission-area.bg-F9F5F2::before {
  top: 0;
  right: 0;
  width: 65%;
  z-index: -1;
  content: '';
  height: 52%;
  position: absolute;
  border-radius: 0 0 0 150px;
  background-color: #F9F5F2;
}

.mission-content .sub-title {
  display: block;
  margin-bottom: 8px;
  color: var(--mainColor);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
}

.mission-content h2 {
  margin-bottom: 15px;
  font-size: 34px;
}

.mission-content p {
  max-width: 500px;
}

.mission-content .default-btn {
  margin-top: 10px;
}

.mission-image {
  text-align: right;
  position: relative;
  padding-left: 150px;
}

.mission-image img:nth-child(2) {
  left: 0;
  bottom: -40px;
  width: 250px;
  position: absolute;
  border: 10px solid #fff;
}

.mission-text .sub-title {
  display: block;
  margin-bottom: 8px;
  color: var(--mainColor);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
}

.mission-text h2 {
  margin-bottom: 15px;
  font-size: 34px;
}

.mission-text .default-btn {
  margin-top: 10px;
}

.mission-img {
  text-align: right;
  padding-left: 100px;
}

.mission-img img {
  height: 350px;
    width: 100%;
    object-fit: cover;
  border-radius: 20px;
}

/*================================================
Feedback Area CSS
=================================================*/
.feedback-area {
  position: relative;
  z-index: 1;
}

.feedback-area.row {
  flex-direction: row;
}

.feedback-area .container-fluid {
  padding-left: 50px;
}

.feedback-area.bg-image::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  content: '';
  position: absolute;
  border-radius: 300px 0 0 0;
  background-image: url(#/wp-content/uploads/2023/11/bg2.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.feedback-image {
  text-align: center;
  padding-right: 15px;
}

.feedback-content {
  z-index: 1;
  max-width: 670px;
  position: relative;
}

.feedback-content p {
  color: var(--blackColor);
  line-height: 1.4;
  font-size: 30px;
  font-weight: 600;
  font-style: italic;
}

.feedback-content .client-info {
  margin-top: 25px;
}

.feedback-content .client-info img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}

.feedback-content .client-info .title {
  margin-left: 12px;
}

.feedback-content .client-info .title h4 {
  margin-bottom: 5px;
  color: var(--mainColor);
  font-size: 16.2px;
  font-weight: 600;
}

.feedback-content .client-info .title span {
  display: block;
  font-size: 15px;
  color: var(--optionalColor);
}

.feedback-content::before {
  content: "\EC52";
  position: absolute;
  right: 0;
  bottom: 15px;
  line-height: 1;
  color: var(--blackColor);
  opacity: .06;
  font-family: remixicon;
  font-size: 200px;
}

.feedback-slides.owl-theme {
  max-width: 670px;
  direction: initial;
}

.feedback-slides.owl-theme .feedback-content {
  max-width: 100%;
}

.feedback-slides.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0;
  line-height: .01;
}

.feedback-slides.owl-theme .owl-dots {
  right: 0;
  z-index: 2;
  bottom: 15px;
  position: absolute;
}

.feedback-slides.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  margin: 0 5px;
  border-radius: 50%;
  background: #D6D6D6;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.feedback-slides.owl-theme .owl-dots .owl-dot:hover span, .feedback-slides.owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--mainColor);
}

.testimonials-content {
  position: relative;
  padding-bottom: 70px;
  z-index: 1;
}

.testimonials-content p {
  color: var(--blackColor);
  line-height: 1.6;
  font-size: 30px;
  font-weight: 600;
  font-style: italic;
}

.testimonials-content::before {
  content: "\EC52";
  position: absolute;
  right: 150px;
  bottom: -35px;
  line-height: 1;
  z-index: -1;
  color: var(--blackColor);
  opacity: .06;
  font-family: remixicon;
  font-size: 180px;
}

.testimonials-clients-info {
  text-align: center;
}

.testimonials-clients-info img {
  margin-bottom: 20px;
  border-radius: 50%;
  width: 190px;
}

.testimonials-clients-info h4 {
  margin-bottom: 5px;
  color: var(--mainColor);
  font-size: 16.2px;
  font-weight: 600;
}

.testimonials-clients-info span {
  display: block;
  font-size: 15px;
  color: var(--optionalColor);
}


.single-funfacts-box {
  z-index: 1;
  position: relative;
  margin-bottom: 30px;
  padding: 40px 20px 40px 100px;
  background-color: var(--whiteColor);
  -webkit-box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.07);
  height: 100%;
}

.single-funfacts-box i {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: var(--mainColor);
  position: absolute;
  font-size: 65px;
  line-height: 1;
  left: 20px;
  top: 50%;
}

.single-funfacts-box h3 {
  line-height: 1;
  font-size: 35px;
  margin-bottom: 10px;
}

.single-funfacts-box h3 .sign {
  position: relative;
  top: 2px;
}

.single-funfacts-box p {
  line-height: initial;
  font-weight: 700;
  font-size: 14px;
}

.single-funfacts-box .shape {
  right: 0;
  top: 50%;
  z-index: -1;
  opacity: .10;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*================================================
Partner Area CSS
=================================================*/
.single-partner-item {
  text-align: center;
  margin-bottom: 30px;
}

.single-partner-item img {
  width: auto !important;
  display: inline-block !important;
}

/*================================================
Blog Area CSS
=================================================*/
.single-blog-post {
  margin-bottom: 30px;
}

.blog-slides{
  direction: initial;
}

.single-blog-post .post-image {
  border-radius: 5px;
}

.single-blog-post .post-image a {
  border-radius: 5px;
}

.single-blog-post .post-image a img {
  border-radius: 5px;
  width: 100%;
  height: 267px;
  object-fit: cover;
}

.single-blog-post .post-content {
  position: relative;
  margin-top: 20px;
}

.single-blog-post .post-content .meta {
  padding-left: 0;
  margin-bottom: 12px;
  list-style-type: none;
}

.single-blog-post .post-content .meta li {
  display: inline-block;
  color: var(--mainColor);
  font-weight: 600;
  position: relative;
  margin-right: 10px;
}

.single-blog-post .post-content .meta li a {
  display: inline-block;
  color: var(--mainColor);
}

.single-blog-post .post-content .meta li a:hover {
  color: var(--blackColor);
}

.single-blog-post .post-content .meta li::before {
  content: '';
  width: 1px;
  height: 12px;
  background-color: var(--mainColor);
  position: absolute;
  right: -7px;
  top: 6px;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}

.single-blog-post .post-content .meta li:last-child {
  margin-right: 0;
}

.single-blog-post .post-content .meta li:last-child::before {
  display: none;
}

.single-blog-post .post-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.single-blog-post .post-content h3 a {
  color: var(--blackColor);
}

.single-blog-post .post-content p {
  margin-bottom: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-blog-post .post-content .link-btn {
  font-weight: 700;
  display: inline-block;
  color: var(--mainColor);
  position: absolute;
  bottom: 25px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-blog-post .post-content .link-btn:hover {
  color: var(--blackColor);
}

.single-blog-post:hover .post-content p {
  opacity: 0;
  visibility: hidden;
}

.single-blog-post:hover .post-content .link-btn {
  opacity: 1;
  visibility: visible;
}

/*================================================
Blog Details Area CSS
=================================================*/
.blog-details-desc .article-content {
  margin-top: 30px;
}

.blog-details-desc .article-content .entry-meta {
  margin-bottom: 15px;
}

.blog-details-desc .article-content .entry-meta ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.blog-details-desc .article-content .entry-meta ul li {
  color: var(--optionalColor);
  display: inline-block;
  margin-right: 20px;
  position: relative;
  padding-left: 22px;
  font-weight: 500;
}

.blog-details-desc .article-content .entry-meta ul li i {
  top: 0;
  left: 0;
  position: absolute;
  color: var(--mainColor);
}

.blog-details-desc .article-content .entry-meta ul li:last-child {
  margin-right: 0;
}

.blog-details-desc .article-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  margin-top: 20px;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 {
  padding-left: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
  margin-bottom: 30px;
  margin-top: 30px;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333%;
          flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding-right: 10px;
  padding-left: 10px;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 li figure {
  margin-bottom: 0;
}

.blog-details-desc .article-content .features-list {
  margin-top: 25px;
  margin-bottom: 30px;
}

.blog-details-desc .article-content .features-list li {
  color: var(--optionalColor);
  margin-bottom: 15px;
}

.blog-details-desc .article-content .features-list li:last-child {
  margin-bottom: 0;
}

.blog-details-desc .article-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eeeeee;
}

.blog-details-desc .article-footer .article-tags {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.blog-details-desc .article-footer .article-tags p {
  line-height: 1;
  margin-bottom: 0;
  font-weight: 700;
  color: var(--blackColor);
}

.teg-category{
  flex-wrap: wrap;
}

.blog-details-desc .article-footer .article-tags a {
  margin-left: 10px;
  padding: 7px 20px;
  border-radius: 30px;
  display: inline-block;
  color: var(--blackColor);
  background-color: #f9f9f9;
  font-size: 15px;
  font-weight: 600;
}

.blog-details-desc .article-footer .article-tags a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.blog-details-desc .article-footer .article-share {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.blog-details-desc .article-footer .article-share .social {
  padding-left: 0;
  margin-bottom: 0;
  text-align: right;
  list-style-type: none;
}

.blog-details-desc .article-footer .article-share .social li {
  display: inline-block;
}

.blog-details-desc .article-footer .article-share .social li span {
  display: inline-block;
  margin-right: 3px;
  font-weight: 600;
  position: relative;
  top: -3px;
}

.blog-details-desc .article-footer .article-share .social li a {
  display: block;
  width: 35px;
  height: 35px;
  line-height: 33px;
  border-radius: 50%;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  border: 1px solid var(--mainColor);
  text-align: center;
  font-size: 17px;
  margin-left: 2px;
}

.blog-details-desc .article-footer .article-share .social li a:hover, .blog-details-desc .article-footer .article-share .social li a:focus {
  color: var(--mainColor);
  background-color: transparent;
}

.blog-details-desc .article-footer .article-share .social li a.facebook {
  background-color: #3b5998;
  border-color: #3b5998;
  color: var(--whiteColor);
}

.blog-details-desc .article-footer .article-share .social li a.facebook:hover, .blog-details-desc .article-footer .article-share .social li a.facebook:focus {
  color: #3b5998;
  background-color: transparent;
}

.blog-details-desc .article-footer .article-share .social li a.twitter {
  background-color: #1da1f2;
  border-color: #1da1f2;
  color: var(--whiteColor);
}

.blog-details-desc .article-footer .article-share .social li a.twitter:hover, .blog-details-desc .article-footer .article-share .social li a.twitter:focus {
  color: #1da1f2;
  background-color: transparent;
}

.blog-details-desc .article-footer .article-share .social li a.linkedin {
  background-color: #007bb5;
  border-color: #007bb5;
  color: var(--whiteColor);
}

.blog-details-desc .article-footer .article-share .social li a.linkedin:hover, .blog-details-desc .article-footer .article-share .social li a.linkedin:focus {
  color: #007bb5;
  background-color: transparent;
}

.blog-details-desc .article-footer .article-share .social li a.instagram {
  background-color: #c13584;
  border-color: #c13584;
  color: var(--whiteColor);
}

.blog-details-desc .article-footer .article-share .social li a.instagram:hover, .blog-details-desc .article-footer .article-share .social li a.instagram:focus {
  color: #c13584;
  background-color: transparent;
}

blockquote, .blockquote {
  z-index: 1;
  overflow: hidden;
  position: relative;
  background-color: #fafafa;
  padding: 40px 50px !important;
  margin-bottom: 20px;
  margin-top: 20px;
}

blockquote p, .blockquote p {
  line-height: 1.7;
  margin-bottom: 0;
  color: var(--blackColor);
  font-weight: 700;
  font-style: italic;
  font-size: 17px !important;
}

blockquote cite, .blockquote cite {
  display: none;
}

blockquote::after, .blockquote::after {
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  content: '';
  position: absolute;
  background-color: var(--mainColor);
  margin-top: 20px;
  margin-bottom: 20px;
}

.comments-area {
  margin-top: 30px;
}

.comments-area .comments-title {
  font-size: 22px;
  margin-bottom: 30px;
  line-height: initial;
}

.comments-area ol, .comments-area ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.comments-area .comment-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.comments-area .children {
  margin-left: 20px;
}

.comments-area .comment-body {
  border-bottom: 1px dashed #eeeeee;
  padding-left: 70px;
  color: var(--blackColor);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.comments-area .comment-body .reply {
  margin-top: 15px;
}

.comments-area .comment-body .reply a {
  border: 1px dashed #ded9d9;
  color: var(--blackColor);
  display: inline-block;
  padding: 5.5px 20px 5px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
}

.comments-area .comment-body .reply a:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}

.comments-area .comment-author {
  font-size: 17px;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
}

.comments-area .comment-author .avatar {
  height: 50px;
  left: -65px;
  position: absolute;
  width: 50px;
  top: 4px;
}

.comments-area .comment-author .says {
  display: none;
}

.comments-area .comment-metadata {
  margin-bottom: .7em;
  color: var(--optionalColor);
  letter-spacing: 0.01em;
  font-size: 14px;
  font-weight: 500;
}

 .comment-success-box {
    background-color: var(--mainColor);    
    padding: 20px;
    border: 1px solid var(--optionalColor);
    border-radius: 6px;
    font-size: 20px;
    margin-top: 30px;
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.comments-area .comment-respond {
  margin-top: 30px;
}

.comments-area .comment-respond .comment-reply-title {
  margin-bottom: 0;
  font-size: 22px;
}

.comments-area .comment-respond .comment-reply-title #cancel-comment-reply-link {
  display: inline-block;
}

.comments-area .comment-respond .comment-form {
  overflow: hidden;
}

.comments-area .comment-respond .comment-notes {
  margin-bottom: 20px;
  margin-top: 10px;
}

.comments-area .comment-respond .comment-notes .required {
  color: red;
}

.comments-area .comment-respond .comment-form-comment {
  float: left;
  width: 100%;
}

.comments-area .comment-respond label {
  display: none;
}

.comments-area .comment-respond input[type="date"], .comments-area .comment-respond input[type="time"], .comments-area .comment-respond input[type="datetime-local"], .comments-area .comment-respond input[type="week"], .comments-area .comment-respond input[type="month"], .comments-area .comment-respond input[type="text"], .comments-area .comment-respond input[type="email"], .comments-area .comment-respond input[type="url"], .comments-area .comment-respond input[type="password"], .comments-area .comment-respond input[type="search"], .comments-area .comment-respond input[type="tel"], .comments-area .comment-respond input[type="number"], .comments-area .comment-respond textarea {
  outline: 0;
  width: 100%;
  border: none;
  height: 50px;
  display: block;
  font-size: var(--fontSize);
  border-radius: 3px;
  padding: 15px;
  color: var(--blackColor);
  background-color: #f9f9f9;
}

.comments-area .comment-respond input[type="date"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="time"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="datetime-local"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="week"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="month"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="text"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="email"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="url"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="password"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="search"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="tel"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="number"]::-webkit-input-placeholder, .comments-area .comment-respond textarea::-webkit-input-placeholder {
  color: var(--optionalColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.comments-area .comment-respond input[type="date"]:-ms-input-placeholder, .comments-area .comment-respond input[type="time"]:-ms-input-placeholder, .comments-area .comment-respond input[type="datetime-local"]:-ms-input-placeholder, .comments-area .comment-respond input[type="week"]:-ms-input-placeholder, .comments-area .comment-respond input[type="month"]:-ms-input-placeholder, .comments-area .comment-respond input[type="text"]:-ms-input-placeholder, .comments-area .comment-respond input[type="email"]:-ms-input-placeholder, .comments-area .comment-respond input[type="url"]:-ms-input-placeholder, .comments-area .comment-respond input[type="password"]:-ms-input-placeholder, .comments-area .comment-respond input[type="search"]:-ms-input-placeholder, .comments-area .comment-respond input[type="tel"]:-ms-input-placeholder, .comments-area .comment-respond input[type="number"]:-ms-input-placeholder, .comments-area .comment-respond textarea:-ms-input-placeholder {
  color: var(--optionalColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.comments-area .comment-respond input[type="date"]::-ms-input-placeholder, .comments-area .comment-respond input[type="time"]::-ms-input-placeholder, .comments-area .comment-respond input[type="datetime-local"]::-ms-input-placeholder, .comments-area .comment-respond input[type="week"]::-ms-input-placeholder, .comments-area .comment-respond input[type="month"]::-ms-input-placeholder, .comments-area .comment-respond input[type="text"]::-ms-input-placeholder, .comments-area .comment-respond input[type="email"]::-ms-input-placeholder, .comments-area .comment-respond input[type="url"]::-ms-input-placeholder, .comments-area .comment-respond input[type="password"]::-ms-input-placeholder, .comments-area .comment-respond input[type="search"]::-ms-input-placeholder, .comments-area .comment-respond input[type="tel"]::-ms-input-placeholder, .comments-area .comment-respond input[type="number"]::-ms-input-placeholder, .comments-area .comment-respond textarea::-ms-input-placeholder {
  color: var(--optionalColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.comments-area .comment-respond input[type="date"]::placeholder, .comments-area .comment-respond input[type="time"]::placeholder, .comments-area .comment-respond input[type="datetime-local"]::placeholder, .comments-area .comment-respond input[type="week"]::placeholder, .comments-area .comment-respond input[type="month"]::placeholder, .comments-area .comment-respond input[type="text"]::placeholder, .comments-area .comment-respond input[type="email"]::placeholder, .comments-area .comment-respond input[type="url"]::placeholder, .comments-area .comment-respond input[type="password"]::placeholder, .comments-area .comment-respond input[type="search"]::placeholder, .comments-area .comment-respond input[type="tel"]::placeholder, .comments-area .comment-respond input[type="number"]::placeholder, .comments-area .comment-respond textarea::placeholder {
  color: var(--optionalColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.comments-area .comment-respond input[type="date"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="time"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="datetime-local"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="week"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="month"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="text"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="email"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="url"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="password"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="search"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="tel"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="number"]:focus::-webkit-input-placeholder, .comments-area .comment-respond textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

.comments-area .comment-respond input[type="date"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="time"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="datetime-local"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="week"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="month"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="text"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="email"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="url"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="password"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="search"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="tel"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="number"]:focus:-ms-input-placeholder, .comments-area .comment-respond textarea:focus:-ms-input-placeholder {
  color: transparent;
}

.comments-area .comment-respond input[type="date"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="time"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="datetime-local"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="week"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="month"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="text"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="email"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="url"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="password"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="search"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="tel"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="number"]:focus::-ms-input-placeholder, .comments-area .comment-respond textarea:focus::-ms-input-placeholder {
  color: transparent;
}

.comments-area .comment-respond input[type="date"]:focus::placeholder, .comments-area .comment-respond input[type="time"]:focus::placeholder, .comments-area .comment-respond input[type="datetime-local"]:focus::placeholder, .comments-area .comment-respond input[type="week"]:focus::placeholder, .comments-area .comment-respond input[type="month"]:focus::placeholder, .comments-area .comment-respond input[type="text"]:focus::placeholder, .comments-area .comment-respond input[type="email"]:focus::placeholder, .comments-area .comment-respond input[type="url"]:focus::placeholder, .comments-area .comment-respond input[type="password"]:focus::placeholder, .comments-area .comment-respond input[type="search"]:focus::placeholder, .comments-area .comment-respond input[type="tel"]:focus::placeholder, .comments-area .comment-respond input[type="number"]:focus::placeholder, .comments-area .comment-respond textarea:focus::placeholder {
  color: transparent;
}

.comments-area .comment-respond textarea {
  height: auto !important;
  padding-top: 15px;
}

.comments-area .comment-respond .comment-form-author {
  float: left;
  width: 50%;
  padding-right: 10px;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-email {
  float: left;
  width: 50%;
  padding-left: 12px;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-url {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-cookies-consent {
  width: 100%;
  float: left;
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
  margin-top: 15px;
}

.comments-area .comment-respond .comment-form-cookies-consent input {
  position: absolute;
  left: 0;
  top: 0;
}

.comments-area .comment-respond .comment-form-cookies-consent label {
  margin: 0;
  display: inline-block;
  color: var(--optionalColor);
  font-weight: normal;
  font-size: var(--fontSize);
}

.comments-area .comment-respond .form-submit {
  float: left;
  width: 100%;
}

.comments-area .comment-respond .form-submit input {
  border: none;
  cursor: pointer;
  padding: 10px 30px;
  display: inline-block;
  color: var(--whiteColor);
  background: var(--mainColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-weight: 700;
  font-size: var(--fontSize);
}

.comments-area .comment-respond .form-submit input:hover, .comments-area .comment-respond .form-submit input:focus {
  color: var(--whiteColor);
  background-color: var(--blackColor);
}

.cta-area {
  overflow: hidden;
  padding-top: 125px;
}

.cta-inner {
  background-color: var(--mainColor);
  border-radius: 10px;
  position: relative;
}

.cta-inner .cta-image {
  padding: 15px;
}

.cta-inner .cta-content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-right: 30px;
}

.cta-inner .cta-content .sub-title {
  display: block;
  margin-bottom: 8px;
  color: var(--whiteColor);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
}

.cta-inner .cta-content h2 {
  font-size: 34px;
  margin-bottom: 12px;
  color: var(--whiteColor);
}

.cta-inner .cta-content p {
  color: var(--whiteColor);
  max-width: 500px;
}

.cta-inner .cta-content .default-btn {
  margin-top: 8px;
  background-color: var(--whiteColor);
  color: var(--blackColor);
}

.cta-inner .cta-content .default-btn::before {
  display: none;
}

.cta-inner .cta-content .default-btn:hover {
  background-color: var(--blackColor);
  color: var(--whiteColor);
}

/*================================================
FAQ Area CSS
=================================================*/
.faq-accordion {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-accordion .accordion-item {
  margin-bottom: 15px;
  border: 1px solid #eeeeee;
}

.faq-accordion .accordion-item .accordion-button {
  border: none;
  padding: 20px 20px 20px 45px;
  position: relative;
  border: none;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  text-align: left;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.faq-accordion .accordion-item .accordion-button:not(.collapsed) {
  color: var(--blackColor);
  background-color: transparent;
}

.faq-accordion .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-item .accordion-button::after {
  position: absolute;
  left: 20px;
  top: 25px;
  width: 15px;
  height: 15px;
  background-size: 15px;
}

.faq-accordion .accordion-item .accordion-collapse {
  border: none;
}

.faq-accordion .accordion-item .accordion-body {
  padding: 0 20px 20px 45px;
}

.faq-accordion .accordion-item .accordion-body p strong {
  color: var(--blackColor);
}

.faq-accordion .accordion-item .accordion-body ul {
  margin-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-body ul li {
  margin-bottom: 12px;
  color: var(--optionalColor);
}

.faq-accordion .accordion-item .accordion-body ul li:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion-item .accordion-body ul:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/*================================================
Get Started Area CSS
=================================================*/
.get-started-area.bg-main-color {
  position: relative;
  z-index: 1;
}

.get-started-area.bg-main-color::before {
  top: 0;
  left: 0;
  bottom: 0;
  width: 63%;
  content: '';
  z-index: -1;
  position: absolute;
  background-color: #F9F5F2;
  border-radius: 0 150px 150px 0;
}
.get-started-area img {
  height: 350px;
  width: 100%;
  object-fit: cover;
}
.get-started-image {
  text-align: center;
}

.get-started-image img {
  width: 110%;
}

.get-started-content .sub-title {
  display: block;
  margin-bottom: 8px;
  color: var(--mainColor);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
}
.get-started-content {
  margin: 0 20px;
}
.get-started-content h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

.get-started-content .default-btn {
  margin-top: 10px;
  color: var(--whiteColor);
  background-color: var(--mainColor);
}

.get-started-content .default-btn::before {
  display: none;
}

.get-started-content .default-btn:hover {
  background-color: var(--blackColor);
  color: var(--whiteColor);
}

/*================================================
Subscribe Area CSS
=================================================*/
.subscribe-area {
  background-color: #E5F3FE;
  position: relative;
  padding: 90px 0;
  z-index: 1;
  direction: ltr;
}

.subscribe-area::before {
  background-color: #F9F5F2;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 45px;
}

.subscribe-content {
  text-align: center;
  position: relative;
}

.subscribe-content .sub-title {
  display: block;
  margin-bottom: 8px;
  color: var(--mainColor);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
}

.subscribe-content h2 {
  margin-bottom: 0;
  font-size: 34px;
}

.subscribe-content .newsletter-form {
  margin-top: 30px;
  position: relative;
}

.subscribe-content .newsletter-form .input-newsletter {
  height: 50px;
  display: block;
  width: 100%;
  background-color: var(--whiteColor);
  border: none;
  font-size: var(--fontSize);
  padding-left: 15px;
  color: var(--blackColor);
  border-radius: 5px;
}

.subscribe-content .newsletter-form .input-newsletter::-webkit-input-placeholder {
  color: #999999;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.subscribe-content .newsletter-form .input-newsletter:-ms-input-placeholder {
  color: #999999;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.subscribe-content .newsletter-form .input-newsletter::-ms-input-placeholder {
  color: #999999;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.subscribe-content .newsletter-form .input-newsletter::placeholder {
  color: #999999;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.subscribe-content .newsletter-form .input-newsletter:focus::-webkit-input-placeholder {
  color: transparent;
}

.subscribe-content .newsletter-form .input-newsletter:focus:-ms-input-placeholder {
  color: transparent;
}

.subscribe-content .newsletter-form .input-newsletter:focus::-ms-input-placeholder {
  color: transparent;
}

.subscribe-content .newsletter-form .input-newsletter:focus::placeholder {
  color: transparent;
}

.subscribe-content .newsletter-form button {
  top: 0;
  right: 0;
  height: 50px;
  border-radius: 5px;
  position: absolute;
  color: var(--whiteColor);
  border: none;
  padding: 0 30px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--mainColor);
  font-size: var(--fontSize);
  font-weight: 700;
}

.subscribe-content .newsletter-form button:hover {
  background-color: var(--blackColor);
  color: var(--whiteColor);
}


.page-title-area {
  background: -webkit-gradient(linear, left top, right bottom, from(#fffefe), color-stop(#fffbf6), color-stop(#fcfbee), color-stop(#eafeef), to(#d7fffe));
  background: var(--background-gradient);
  padding-bottom: 100px;
  padding-top: 180px;
}

.page-title-content {
  text-align: center;
}

.page-title-content h1 {
  margin-bottom: 12px;
  font-size: 50px;
}

.page-title-content p {
  color: #000000;
  font-size: 17px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/*================================================
Pagination Area CSS
=================================================*/
.pagination-area {
  margin-top: 20px;
}

.pagination-area .page-numbers {
  width: 40px;
  height: 40px;
  line-height: 39.5px;
  position: relative;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  color: var(--optionalColor);
  border: 1px solid #eeeeee;
  background-color: transparent;
  font-size: 16px;
  font-weight: 700;
  margin-left: 3px;
  margin-right: 3px;
}

.pagination-area .page-numbers.next {
  top: 3px;
}

.pagination-area .page-numbers:hover, .pagination-area .page-numbers.current {
  color: var(--whiteColor);
  border-color: var(--mainColor);
  background-color: var(--mainColor);
}

/*================================================
Widget Area CSS
=================================================*/
.widget-area {
  padding-left: 15px;
}

.widget-area .widget {
  margin-bottom: 35px;
}

.widget-area .widget .widget-title {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 12px;
  margin-bottom: 30px;
  position: relative;
  font-size: 21px;
}

.widget-area .widget .widget-title::before {
  left: 0;
  width: 70px;
  height: 1px;
  content: '';
  bottom: -1px;
  position: absolute;
  background-color: var(--mainColor);
}

.widget-area .widget:last-child {
  margin-bottom: 0;
}

.widget-area .widget_search {
  -webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
          box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  background-color: var(--whiteColor);
  padding: 15px;
}

.widget-area .widget_search form {
  position: relative;
}

.widget-area .widget_search form label {
  display: block;
  margin-bottom: 0;
}

.widget-area .widget_search form .screen-reader-text {
  display: none;
}

.widget-area .widget_search form .search-field {
  outline: 0;
  width: 100%;
  height: 50px;
  display: block;
  padding: 0 0 0 15px;
  font-size: var(--fontSize);
  border: 1px solid #eeeeee;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: transparent;
}

.widget-area .widget_search form .search-field:focus {
  border-color: var(--mainColor);
}

.widget-area .widget_search form button {
  right: 0;
  bottom: 0;
  outline: 0;
  width: 50px;
  height: 50px;
  border: none;
  position: absolute;
  color: var(--whiteColor);
  font-size: var(--fontSize);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--mainColor);
}

.widget-area .widget_search form button:hover {
  color: var(--whiteColor);
  background-color: var(--blackColor);
}

.widget-area .widget_yango_posts_thumb {
  position: relative;
}

.widget-area .widget_yango_posts_thumb .item {
  margin-bottom: 20px;
  position: relative;
  padding-left: 115px;
  min-height: 100px;
}

.widget-area .widget_yango_posts_thumb .item .thumb {
  top: 0;
  left: 0;
  width: 100px;
  float: unset;
  height: 100%;
  display: block;
  position: absolute;
}

.widget-area .widget_yango_posts_thumb .item .thumb .fullimage {
  width: 100px;
  height: 100%;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: cover !important;
  background-position: center center !important;
}

.popular-img img{
  width: 100px;
  height: 100px;
  object-fit: cover;
}


.widget-area .widget_yango_posts_thumb .item .thumb::before, .widget-area .widget_yango_posts_thumb .item .thumb::after {
  content: '';
  z-index: 1;
  top: 50%;
  left: 50%;
  opacity: 0;
  position: absolute;
  background-color: var(--whiteColor);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.8s cubic-bezier(0.2, 1, 0.22, 1);
  transition: all 0.8s cubic-bezier(0.2, 1, 0.22, 1);
}

.widget-area .widget_yango_posts_thumb .item .thumb::before {
  width: 40px;
  height: 1px;
  left: 100%;
}

.widget-area .widget_yango_posts_thumb .item .thumb::after {
  height: 40px;
  width: 1px;
  top: 0;
}

.widget-area .widget_yango_posts_thumb .item .info .title {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 7px;
}

.widget-area .widget_yango_posts_thumb .item .info .title a {
  display: inline-block;
}

.widget-area .widget_yango_posts_thumb .item .info .date {
  padding-left: 20px;
  position: relative;
  color: var(--optionalColor);
}

.widget-area .widget_yango_posts_thumb .item .info .date i {
  left: 0;
  top: -1px;
  position: absolute;
  color: var(--mainColor);
}

.widget-area .widget_yango_posts_thumb .item:last-child {
  margin-bottom: 0;
}

.widget-area .widget_yango_posts_thumb .item:hover .thumb::before, .widget-area .widget_yango_posts_thumb .item:hover .thumb::after {
  opacity: 1;
  top: 50%;
  left: 50%;
}

.widget-area .widget_categories ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.widget-area .widget_categories ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

.widget-area .widget_categories ul li::before {
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  content: '';
  position: absolute;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--mainColor);
}

.widget-area .widget_categories ul li a {
  font-weight: 600;
  display: inline-block;
  color: var(--blackColor);
}

.widget-area .widget_categories ul li a:hover {
  color: var(--mainColor);
}

.widget-area .widget_categories ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_newsletter {
  background-color: #f9f9f9;
  text-align: center;
  padding: 30px;
}

.widget-area .widget_newsletter h4 {
  font-size: 21px;
  margin-bottom: 8px;
}

.widget-area .widget_newsletter .newsletter-form {
  margin-top: 20px;
}

.widget-area .widget_newsletter .newsletter-form .input-newsletter {
  width: 100%;
  height: 50px;
  display: block;
  padding-left: 15px;
  color: var(--blackColor);
  border: 1px solid #eeeeee;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--whiteColor);
}

.widget-area .widget_newsletter .newsletter-form .input-newsletter:focus {
  border-color: var(--blackColor);
}

.widget-area .widget_newsletter .newsletter-form button {
  width: 100%;
  border: none;
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  padding: 13px 30px;
  text-align: center;
  color: var(--whiteColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--blackColor);
  font-size: var(--fontSize);
  font-weight: 700;
}

.widget-area .widget_newsletter .newsletter-form button:hover {
  background-color: var(--optionalColor);
}

.widget-area .widget_tag_cloud .tagcloud {
  margin-bottom: -8px;
}

.widget-area .widget_tag_cloud .tagcloud a {
  padding: 6px 13px;
  display: inline-block;
  color: var(--blackColor);
  border: 1px solid #eeeeee;
  margin-right: 8px;
  margin-bottom: 8px;
  font-size: 14.5px !important;
  font-weight: 600;
}

.widget-area .widget_tag_cloud .tagcloud a:hover {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
  color: var(--whiteColor);
}

.widget-area .widget_archive ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.widget-area .widget_archive ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

.widget-area .widget_archive ul li::before {
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  content: '';
  position: absolute;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--mainColor);
}

.widget-area .widget_archive ul li a {
  font-weight: 600;
  display: inline-block;
  color: var(--blackColor);
}

.widget-area .widget_archive ul li a:hover {
  color: var(--mainColor);
}

.widget-area .widget_archive ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_service_categories ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.widget-area .widget_service_categories ul li {
  font-weight: 600;
  overflow: hidden;
  margin-bottom: 13px;
  padding-bottom: 13px;
  color: var(--blackColor);
  border-bottom: 1px dashed #eeeeee;
}

.widget-area .widget_service_categories ul li a {
  display: block;
  position: relative;
  color: var(--blackColor);
}

.widget-area .widget_service_categories ul li a i {
  top: 50%;
  right: 5px;
  position: absolute;
  font-size: var(--fontSize);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: var(--optionalColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.widget-area .widget_service_categories ul li a:hover {
  color: var(--mainColor);
}

.widget-area .widget_service_categories ul li a:hover i {
  right: 0;
  color: var(--mainColor);
}

.widget-area .widget_service_categories ul li:last-child {
  margin-bottom: 0;
}

/*================================================
404 Error Area CSS
=================================================*/
.error-area {
  padding-bottom: 100px;
  padding-top: 160px;
}

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

.error-content h3 {
  font-size: 30px;
  margin-bottom: 20px;
  margin-top: 45px;
}

.error-content p {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.error-content .default-btn {
  margin-top: 30px;
}

/*================================================
Contact Area CSS
=================================================*/
.contact-info {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  padding-right: 5px;
}

.contact-info li {
  margin-bottom: 30px;
  position: relative;
  padding-left: 90px;
  color: var(--optionalColor);
  font-size: var(--fontSize);
  font-weight: 600;
}

.contact-info li h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.contact-info li .icon {
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  font-size: 30px;
  position: absolute;
  border-radius: 50%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--mainColor);
  color: var(--whiteColor);
  text-align: center;
  -webkit-box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.15);
}

.contact-info li .icon i {
  position: absolute;
  left: 0;
  right: 0;
  font-weight: normal;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.contact-info li p {
  margin-bottom: 5px;
  color: var(--optionalColor);
}

.contact-info li p a {
  color: var(--optionalColor);
}

.contact-info li p a:hover {
  color: var(--mainColor);
}

.contact-info li:last-child {
  margin-bottom: 0;
}

.contact-info li:hover .icon {
  background-color: var(--blackColor);
  color: var(--whiteColor);
}

.contact-social-links {
  margin-bottom: 0;
  padding-left: 90px;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 30px;
}

.contact-social-links li {
  display: inline-block;
  margin-right: 7px;
}

.contact-social-links li a {
  display: block;
  line-height: 1;
  font-size: 20px;
  color: var(--optionalColor);
}

.contact-social-links li a:hover {
  color: var(--mainColor);
}

.contact-social-links li:last-child {
  margin-right: 0;
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form .form-group select.form-control {
  color: #999999;
  background-image: url(../img/select-icon.png);
  background-position: 100%;
  background-repeat: no-repeat;
}

.contact-form .form-check .form-check-label {
  color: var(--optionalColor);
  position: relative;
  top: 1px;
}

.contact-form .form-check .form-check-label a {
  color: var(--mainColor);
}

.contact-form .default-btn {
  width: 100%;
  display: block;
  margin-top: 20px;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 30px;
  padding-right: 30px;
}

.contact-form .help-block.with-errors {
  color: red;
  margin-bottom: 0;
  margin-top: 15px;
}

.contact-form #msgSubmit {
  margin: 0;
}

.contact-form #msgSubmit.text-danger {
  margin-top: 15px;
}

.contact-form #msgSubmit.text-success {
  margin-top: 15px;
}

.contact-form #msgSubmit {
  text-align: center;
  margin-top: 20px;
}

#maps iframe {
  margin-bottom: -7px;
  height: 500px;
  border: none;
  width: 100%;
}

/*================================================
Login Area 
=================================================*/
.overlay-wrapper{
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.overlay {
  align-content: center;
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3); /* чорний прозорий */
  z-index: 0;
}

.login-container {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 40px;
  width: 100%;
  max-width: 400px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  justify-self: center;
}

.login-form {
  display: flex;
  flex-direction: column;
}

.form-label {
  display: block;
  font-weight: 500;
  color: var(--blackColor);
  margin-bottom: 8px;
  font-size:var(--fontSize);
}

.form-input {
  width: 100%;
  padding: 12px 30px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;           
  transition: all 0.3s ease;      
}

.form-input:focus {
  outline: none;
  border-color: var(--mainColor);
  background: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-input:hover {
  border-color: #cbd5e0;
}

.password-container {
  position: relative;
}

.password-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #718096;
    font-size: var(--fontSize);
    padding: 4px;
    border-radius: 4px;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #4a5568;
}
.footerBoxFlex{
      display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 15px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;           
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;           
}

.remember-me input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #667eea;
}

.forgot-password {
  color: var(--mainColor);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: var(--mainColor);
  text-decoration: underline;
}
        
.divider {
  display: flex;
  align-items: center;
  margin: 24px 0;
  color: #a0aec0;
  font-size: 14px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.divider span {
  padding: 0 16px;
}

.social-login {
  display: flex;
  gap: 16px;
}

.social-button {
  flex: 1;
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  background: white;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  color: #4a5568;
}

.social-button:hover {
  border-color: #cbd5e0;
  background: #f7fafc;
  transform: translateY(-1px);
}

.signup-link {
  text-align: center;
  margin-top: 32px;
  color: #718096;
  font-size: 14px;
}

.signup-link a {
  color: var(--mainColor);
  text-decoration: none;
  font-weight: 600;
}

.signup-link a:hover {
  text-decoration: underline;
}

.error-message {
  color: #e53e3e;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: none;
}

.form-group.error .form-input {
  border-color: #e53e3e;
  background: #fed7d7;
}

.form-group.error .error-message {
  display: block;
}

@media (max-width: 480px) {
  .login-container {
      padding: 32px 24px;
      margin: 16px;
  }          

  .social-login {
      flex-direction: column;
  }
}
/*================================================
Thank Area CSS
=================================================*/
.bg-decoration {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}
.bg-decoration:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.bg-decoration:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 10%;
  animation-delay: 2s;
}

.bg-decoration:nth-child(3) {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.bg-decoration:nth-child(4) {
  width: 100px;
  height: 100px;
  bottom: 10%;
  right: 20%;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.thank-you-container {
  background: white;
  border-radius: 2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  padding: 3rem;
  width: 100%;
  max-width: 600px;
  text-align: center;
  position: relative;
  z-index: 10;
  animation: slideUp 0.8s ease-out;
  justify-self: center;
}

@keyframes slideUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.success-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #48bb78, #38a169);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(72, 187, 120, 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(72, 187, 120, 0); }
  100% { box-shadow: 0 0 0 0 rgba(72, 187, 120, 0); }
}

.checkmark {
  width: 60px;
  height: 60px;
  position: relative;
}

.checkmark::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 40px;
  border: 4px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  top: 8px;
  left: 18px;
  animation: checkmark 0.6s ease-in-out 0.3s both;
}

@keyframes checkmark {
  0% {
      height: 0;
      width: 0;
      opacity: 1;
  }
  20% {
      height: 0;
      width: 20px;
      opacity: 1;
  }
  40% {
      height: 40px;
      width: 20px;
      opacity: 1;
  }
  100% {
      height: 40px;
      width: 20px;
      opacity: 1;
  }
}


/*================================================
Footer Area CSS
=================================================*/
.footer-area {
  background-color: #F9F5F2;
  position: relative;
  padding-top: 100px;
  z-index: 1;
}

.single-footer-widget {
  margin-bottom: 30px;
}

.single-footer-widget .logo {
  margin-bottom: 15px;
}

.single-footer-widget h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.single-footer-widget .newsletter-form {
  display: flex;
  margin-bottom: 20px;
  position: relative;
  flex-direction: column;
}

.single-footer-widget .newsletter-form .input-newsletter {
  height: 50px;
  display: block;
  width: 100%;
  background-color: var(--whiteColor);
  border: none;
  padding-left: 15px;
  color: var(--blackColor);
  border-radius: 5px;
}

.single-footer-widget .newsletter-form .input-newsletter .::-webkit-input-placeholder {
  color: #999999;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-footer-widget .newsletter-form .input-newsletter .:-ms-input-placeholder {
  color: #999999;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-footer-widget .newsletter-form .input-newsletter .::-ms-input-placeholder {
  color: #999999;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-footer-widget .newsletter-form .input-newsletter .::placeholder {
  color: #999999;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-footer-widget .newsletter-form .input-newsletter .:focus::-webkit-input-placeholder {
  color: transparent;
}

.single-footer-widget .newsletter-form .input-newsletter .:focus:-ms-input-placeholder {
  color: transparent;
}

.single-footer-widget .newsletter-form .input-newsletter .:focus::-ms-input-placeholder {
  color: transparent;
}

.single-footer-widget .newsletter-form .input-newsletter .:focus::placeholder {
  color: transparent;
}

.single-footer-widget .newsletter-form button {
  top: 0;
  right: 0;
  height: 50px;
  border-radius: 5px;
  color: var(--whiteColor);
  border: none;
  padding: 0 30px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--mainColor);
  font-size: var(--fontSize);
  font-weight: 700;
}

.single-footer-widget .newsletter-form button:hover {
  background-color: var(--blackColor);
  color: var(--whiteColor);
}

.single-footer-widget .newsletter-form .validation-danger {
  color: red;
  margin-top: 15px;
}

.single-footer-widget .newsletter-form .validation-success {
  margin-top: 15px;
  color: #198754;
}

.single-footer-widget .social-links {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .social-links li {
  display: inline-block;
  margin-right: 7px;
}

.single-footer-widget .social-links li a {
  display: block;
  line-height: 1;
  font-size: 18px;
  color: var(--optionalColor);
}

.single-footer-widget .social-links li a:hover {
  color: var(--mainColor);
}

.single-footer-widget .social-links li:last-child {
  margin-right: 0;
}

.single-footer-widget .links-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .links-list li {
  color: var(--optionalColor);
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
}

.single-footer-widget .links-list li a {
  display: inline-block;
  color: var(--optionalColor);
}

.single-footer-widget .links-list li a:hover {
  color: var(--mainColor);
}

.single-footer-widget .links-list li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .footer-contact-info {
  padding-left: 0;
  margin-bottom: 15px;
  list-style-type: none;
}

.single-footer-widget .footer-contact-info li {
  margin-bottom: 12px;
  color: var(--optionalColor);
  font-size: 15px;
  font-weight: 600;
}

.single-footer-widget .footer-contact-info li span {
  font-weight: 700;
  color: var(--blackColor);
}

.single-footer-widget .footer-contact-info li a {
  color: var(--optionalColor);
}

.single-footer-widget .footer-contact-info li a:hover {
  color: var(--mainColor);
}

.single-footer-widget .footer-contact-info li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .payment-types {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .payment-types li {
  display: inline-block;
}

.single-footer-widget .payment-types li:last-child {
  margin-bottom: 0;
}

.single-footer-widget.pr-5 {
  padding-right: 5rem;
}

.copyright-area {
  background-color: var(--whiteColor);
  position: relative;
  margin-top: 70px;
  z-index: 1;
  padding-top: 20px;
  padding-bottom: 20px;
}

.copyright-area p {
  font-weight: 600;
}

.copyright-area p a {
  color: var(--mainColor);
}

.copyright-area p a:hover {
  color: var(--blackColor);
  text-decoration: underline;
}
.text-center{
  text-align: center;
}
.copyright-area ul {
  padding-left: 0;
  margin-bottom: 0;
 
  list-style-type: none;
}

.copyright-area ul li {
  display: inline-block;
  color: var(--optionalColor);
  font-weight: 600;
  position: relative;
  margin-left: 10px;
  margin-right: 10px;
}

.copyright-area ul li a {
  display: block;
  color: var(--optionalColor);
}

.copyright-area ul li a:hover {
  color: var(--mainColor);
}

.copyright-area ul li::before {
  top: 50%;
  width: 8px;
  height: 1px;
  content: '';
  right: -16px;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--optionalColor);
}

.copyright-area ul li:last-child {
  margin-right: 0;
}

.copyright-area ul li:last-child::before {
  display: none;
}

.copyright-area ul li:first-child {
  margin-left: 0;
}

.shape1 {
  right: 27%;
  z-index: -1;
  bottom: 85px;
  position: absolute;
}

.shape2 {
  right: 35%;
  z-index: -1;
  bottom: 85px;
  position: absolute;
}

/*================================================
Go Top CSS
=================================================*/
.go-top {
  z-index: 4;
  opacity: 0;
  right: 20px;
  width: 43px;
  height: 45px;
  bottom: 20px;
  position: fixed;
  cursor: pointer;
  font-size: 30px;
  visibility: hidden;
  text-align: center;
  color: var(--whiteColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--mainColor);
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

.go-top i {
  left: 0;
  top: 50%;
  right: 0;
  text-align: center;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
}

.go-top.active {
  opacity: 1;
  bottom: 20px;
  visibility: visible;
}

.go-top:hover {
  color: var(--whiteColor);
  background-color: var(--blackColor);
}
.animate__slow img {
  height: auto;
  width: 100%;
  object-fit: contain;
}
.animate__fast img{
  height: auto;
  width: 100%;
  object-fit: cover;
  max-height: 600px;
}

.subscribe-area{
  .animate__slow img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}
}

@media (max-width: 991px){
  .shape3{
    display: none;
  }

  .animate__fast img{
    max-height: 300px;
  }
}

.footer-area{
  .row{
    .col-md-6{
      flex-grow: 1;
    }
  }
}

.contact-area{
  .row{
    .col-lg-8.col-md-12{
      flex-grow: 1;
    }
  }
}

.pop-blog-cat{
  .item{
    padding-left: 0 !important;
  }
}
#cookie-banner p{
  color: #fff !important;
}