/*
Version: 1.0
Author: Symlink Technology
Author URI: https://www.symlinktech.com/.
*/

:root {
  --primaryColor: #7ac145;
  --bluePrimary: #0e4595;
  --blueSecondary: #1f5673;
  --blueFade: #698ea1;
  --subprimaryColor: #ed9121;
  /* --bodyBg: #0C0C0C; */
  --socialBg: #7e20c8;
  --textColor: #030303;
  --subTextColor: #333d3e;
  --bgDark:#d6eaf2;
  --bgLight:#f6fafd;
  --blue:#022559;
  --green:#2e6935;
  /* --subTextColor:#6A6A6C; */
  --shades01: #ffffff;
  --veiwWidth: calc(100vw - 17px);
  --padding: calc(var(--veiwWidth) / 2 - 785px);
}

/* @import url("https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400;500&display=swap"); */
/* @import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap"); */
/* @import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap"); */


@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');


/* ********|| INITIALIZATION STARTS ||******** */
body,
html {
  width: 100%;
  line-height: 18px;
  margin: 0 auto !important;
  padding: 0 !important;
  /* font-family: "Poppins", sans-serif; */
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  /* -webkit-font-smoothing: subpixel-antialiased; */
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  font-size: 14px;
  color: var(--color01);
  background: var(--shades01);
  position: relative;
  z-index: 0;
  scroll-behavior: smooth;
  background-image: url(../images/fullbody-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

*:focus {
  outline: none !important;
  outline-offset: none !important;
  outline-offset: 0 !important;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:focus {
  outline: none;
  text-decoration: none;
}
input:focus,
label:focus {
  outline: none !important;
  outline-offset: none !important;
  outline-offset: 0 !important;
}
/* ********|| INITIALIZATION ENDS ||******** */

/* ********|| PSEUDO ELEMENTS STARTS ||******** */
::selection {
  background-color: var(--primaryColor);
  color: #fff;
}
::-moz-selection {
  background-color: var(--primaryColor);
  color: #fff;
}
::-webkit-selection {
  background-color: var(--primaryColor);
  color: #fff;
}

:-webkit-focus {
  outline: none !important;
}
:-moz-focus {
  outline: none !important;
}
:focus {
  outline: none !important;
}

select:-webkit-focusring {
  color: var(--primaryColor) !important;
  text-shadow: 0 0 0 var(--textMedColor);
}
select:-moz-focusring {
  color: var(--primaryColor) !important;
  text-shadow: 0 0 0 var(--textMedColor);
}
select:focusring {
  color: var(--primaryColor) !important;
  text-shadow: 0 0 0 var(--textMedColor);
}

::input-placeholder {
  color: var(--textColor) !important;
}
::-moz-input-placeholder {
  color: var(--textColor) !important;
}
::-webkit-input-placeholder {
  color: var(--textColor) !important;
}

/*::-webkit-scrollbar-track{	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);box-shadow: inset 0 0 6px rgba(0,0,0,0.1);background-color: var(--textMedColor);}
::-webkit-scrollbar{width: 5px;height: 5px;background-color: var(--textMedColor);}
::-webkit-scrollbar-thumb{background-color: var(--secondaryColorAltLight);}*/
/* ********|| PSEUDO ELEMENTS ENDS ||******** */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/* ********|| ADJUSTMENT CLASSES STARTS ||******** */
*,
::after,
::before {
  box-sizing: border-box;
}
a {
  color: var(--primaryColor);
  transition: all 0.3s ease;
}
a:hover,
a:focus {
  color: var(--secondaryColor);
}
p {
  margin: 0 0 10px;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid var(--c4dee4);
}

.required:after {
  content: "*";
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  position: absolute;
  margin: 0 0 0 3px;
}
.separator_dashed {
  border-bottom: var(--textMedColor) 1px dashed;
}
.separator_dotted {
  border-bottom: var(--textMedColor) 1px dotted;
}
.separator_solid {
  border-bottom: var(--textMedColor) 1px solid;
}
/* ********|| ADJUSTMENT CLASSES ENDS ||******** */

section {
  position: relative;
}
.form-group {
  position: relative;
  margin: 0 0 20px;
}
.control-label {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 2px;
  color: #212121;
  display: block;
}
.font-16 {
  font-size: 16px;
  line-height: 24px;
}

.form-control {
  border-radius: 4px;
  box-shadow: none;
  border: 1px solid #ddd;
  color: var(--textColor);
  background: #fff;
  min-width: 50px;
  min-height: 38px;
  width: 100%;
  padding: 6px 12px;
  font-family: inherit;
  font-size: 16px;
  line-height: 24px;
}
.form-control:focus {
  border-color: var(--primaryColor);
  box-shadow: none;
}
.form-control::-webkit-input-placeholder {
  color: var(--textColor) !important;
}
.form-control:-moz-placeholder {
  color: var(--textColor) !important;
  opacity: 1 !important;
}
.form-control::-moz-placeholder {
  color: var(--textColor) !important;
  opacity: 1 !important;
}
.form-control:-ms-input-placeholder {
  color: var(--textColor) !important;
}
.form-control::-ms-input-placeholder {
  color: var(--textColor) !important;
}
textarea.form-control {
  resize: none;
  min-height: 100px;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #fff;
  opacity: 0.7;
  cursor: not-allowed;
}

.custom-checkbox {
  position: relative;
  padding-left: 24px;
  margin: 3px 0;
  display: inline-block;
}
.custom-checkbox .custom-checkbox-input {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.custom-checkbox .custom-checkbox-label {
  position: relative;
  margin: 0;
  line-height: 16px;
  font-size: 14px;
}
.custom-checkbox .custom-checkbox-label:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid #ddd;
  top: 50%;
  left: -24px;
  transform: translateY(-50%);
  border-radius: 2px;
}
.custom-checkbox .custom-checkbox-label:after {
  content: "\f00c";
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  width: 16px;
  height: 16px;
  top: 50%;
  left: -24px;
  transform: translateY(-50%);
  font-weight: 500;
  font-size: 10px;
  display: none;
  color: #fff;
  text-align: center;
}
.custom-checkbox .custom-checkbox-input:checked ~ .custom-checkbox-label:after {
  display: block;
}
.custom-checkbox
  .custom-checkbox-input:checked
  ~ .custom-checkbox-label:before {
  background: var(--primaryColor);
  border: 1px solid var(--primaryColor);
}

.custom-radio {
  position: relative;
  padding-left: 24px;
  margin: 3px 0;
  display: inline-block;
}
.custom-radio .custom-radio-input {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.custom-radio .custom-radio-label {
  position: relative;
  margin: 0;
  line-height: 16px;
  font-size: 14px;
}
.custom-radio .custom-radio-label:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid #ddd;
  top: 50%;
  left: -24px;
  transform: translateY(-50%);
  border-radius: 50%;
}
.custom-radio .custom-radio-label:after {
  content: "\f111";
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  width: 16px;
  height: 16px;
  top: 50%;
  left: -24px;
  transform: translateY(-50%);
  font-weight: 600;
  font-size: 8px;
  display: none;
  color: #fff;
  text-align: center;
}
.custom-radio .custom-radio-input:checked ~ .custom-radio-label:after {
  display: block;
}
.custom-radio .custom-radio-input:checked ~ .custom-radio-label:before {
  background: var(--primaryColor);
  border: 1px solid var(--primaryColor);
}

.custom-tab {
}
.custom-tab .custom-tab-navigation {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 10px;
}
.custom-tab .custom-tab-navigation > li {
  width: auto;
  margin: 5px;
  position: relative;
}
.custom-tab .custom-tab-navigation > li > a {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 10px 20px;
  display: block;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  position: relative;
  border-radius: 4px;
  max-width: 300px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.custom-tab .custom-tab-navigation > li.active > a,
.custom-tab .custom-tab-navigation > li > a:hover {
  background-color: var(--primaryColor);
}
.custom-tab .custom-tab-content {
}
.custom-tab .custom-tab-content .custom-tab-wrap {
  display: none;
  background: transparent;
  padding: 20px 0;
}
.custom-tab .custom-tab-content .custom-tab-wrap.active {
  display: block;
}
.custom-tab .custom-tab-content .custom-tab-navigation > li > a {
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 600;
}
.custom-tab .custom-tab {
  margin-top: -20px;
}
.custom-tab .custom-tab .custom-tab-navigation {
  margin-bottom: 0;
}
@media (min-width: 576px) {
  .custom-tab .custom-tab-navigation {
    max-width: 620px;
  }
}
@media (min-width: 768px) {
  .custom-tab .custom-tab-navigation {
    max-width: 740px;
  }
}
@media (min-width: 992px) {
  .custom-tab .custom-tab-navigation {
    max-width: 1140px;
  }
}
@media (min-width: 1200px) {
  .custom-tab .custom-tab-navigation {
    max-width: 1200px;
  }
}

/* /////////////////////////////////////////////////////////////// */
/*             			   	 	BOOTSTRAP FIX            			   				 */
/* /////////////////////////////////////////////////////////////// */
@media (min-width: 576px) {
  :root {
    --padding: 15px;
  }
  .container {
    max-width: none;
  }
  .modal-dialog {
    max-width: 700px;
  }
  .modal-sm {
    max-width: 400px;
  }
}
@media (min-width: 768px) {
  :root {
    --padding: calc(calc(var(--veiwWidth) - 710px) / 2);
  }
  .container {
    max-width: 740px;
  }
}
@media (min-width: 992px) {
  :root {
    --padding: calc(calc(var(--veiwWidth) - 930px) / 2);
  }
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  :root {
    --padding: calc(calc(var(--veiwWidth) - 1140px) / 2);
  }
  .container {
    max-width: 1170px;
  }
}
@media (min-width: 1440px) {
  :root {
    --padding: calc(calc(var(--veiwWidth) - 1310px) / 2);
  }
  .container {
    max-width: 1170px;
  }
}
@media (min-width: 1471px) {
  :root {
    --padding: calc(calc(var(--veiwWidth) - 1310px) / 2);
  }
  .container {
    max-width: 1340px;
  }
}
@media (min-width: 1600px) {
  :root {
    --padding: calc(calc(var(--veiwWidth) - 1370px) / 2);
  }
  .container {
    max-width: 1400px;
  }
}
@media (min-width: 1900px) {
  :root {
    --padding: calc(calc(var(--veiwWidth) - 1470px) / 2);
  }
  .container {
    max-width: 1400px;
  }
}

.modal-open {
  overflow: auto;
}
.modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.overflow-hidden {
  overflow: hidden !important;
}
.dropdown .dropdown-toggle {
  padding-right: 16px !important;
  position: relative;
}
.dropdown .dropdown-toggle::after {
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  font-size: 14px;
  font-weight: 500;
  display: block;
  position: absolute;
  margin: 0;
  vertical-align: unset;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border: 0;
  color: var(--primaryColor);
  opacity: 1;
  margin-top: 2px;
  transition: all 0.3s ease;
}
.dropdown.show .dropdown-toggle::after {
  transform: translateY(-50%) rotate(-180deg);
}
.dropdown .dropdown-menu {
  display: block;
  top: 100% !important;
  left: 50% !important;
  transform: translate(-50%, 50px) !important;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s ease all;
}
.dropdown .dropdown-menu.show {
  display: block;
  transform: translate(-50%, 0) !important;
  visibility: visible;
  opacity: 1;
  transition: 0.5s ease all;
}
.dropdown-menu .dropdown-item {
  display: flex;
  padding: 5px 15px;
  color: var(--secondaryColor);
}
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:active {
  background: var(--primaryColor);
  color: #fff;
}
.mega-dropdown {
  position: static !important;
}
.mega-dropdown .mega-dropdown-menu {
  display: block;
  width: 100%;
  top: auto !important;
  left: 50% !important;
  transform: translate(-50%, 50px) !important;
  padding: 20px 40px;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s ease all;
}
.mega-dropdown .mega-dropdown-menu.show {
  display: block;
  transform: translate(-50%, 0) !important;
  visibility: visible;
  opacity: 1;
  transition: 0.5s ease all;
}

/*////////////////////////////////////////////////////////////////*/
/*             		          	 HOME PAGE      	      				  	*/

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loader img {
  width: 200px;
  height: 200px;
}

/*////////////////////////////////////////////////////////////////*/

/* ********|| HEADER STARTS ||******** */

/* .background-image {
  background-image: url("../images/bg-img\ \(1\).png");
} */

/* .bg-img-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

header {
  position: fixed;
  top: 10px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 9;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background-color: white; */
  padding: 20px;
  border-radius: 20px;
  /* max-width: 1800px; */
}
header .brand {
  position: relative;
  height: 65px;
  width: 120px;
  transition: all 0.3s ease;
}
header .brand .logo {
  display: flex;
  width: 100%;
  height: 100%;
}
header .brand .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
}
/* header .navigation {
  display: flex;
  gap: 40px;
  flex-shrink: 0;
}
header .navigation-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  flex-shrink: 0;
  box-shadow: inset 0px -20px 50px -10px rgba(var(--shades02-rgb), 0.2);
  transition: all 0.3s ease;
}
header .navigation-menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
header .navigation-menu .menu-item {
  display: flex;
  transition: all 0.3s ease;
}
header .navigation-menu .menu-item + .menu-item {
  margin: 0 0 0 38px;
}
header .navigation-menu .menu-link {
  font-size: 16px;
  font-weight: 400;
  color: var(--shades01);
  display: inline-flex;
  align-items: center;
  line-height: 24px;
} */
header .navigation-menu .menu-link:hover,
header .navigation-menu .menu-link.active {
  color: var(--primaryColor);
}
header .navigation-menu .menu-link a.active {
  color: var(--primaryColor);
}
header .navigation-menu .menu-link:hover span:first-child img,
header .navigation-menu .menu-link.active span:first-child img {
  -moz-filter: brightness(1);
  -webkit-filter: brightness(1);
  filter: brightness(1);
}
header .language {
  position: relative;
  display: flex;
  align-items: center;
}
header .language .dropdown-toggle {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 0;
  padding: 0 16px 0 0 !important;
}

header .btn-menu-trigger {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background-color: transparent;
  color: var(--shades01);
  font-size: 30px;
}

header.scrolled {
  height: 80px;
  /* background-color: var(--blueSecondary); */
  top: 25px;
}
header.scrolled .header-wrapper{
  background-color: white;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
}
header.scrolled .brand {
  position: relative;
  height: 60px;
}
header.scrolled .navigation-menu .menu-item + .menu-item {
  margin: 0 0 0 40px;
}
header.scrolled .navigation-menu .menu-link {
  font-size: 16px;
}
header.alt {
  height: 100px;
  background-color: var(--blueSecondary);
  position: sticky;
}
header.alt .brand {
  position: relative;
  height: 60px;
}


.container .sblc-btn {
  background-color: var(--green) ;
  padding: 16px 30px;
  border: none;
  color: var(--shades01);
  border-radius: 50px;
  transition: 0.3s all ease;
  font-size: 16px;
  line-height: 24px;
}
.container .sblc-btn:hover {
  background-color: var(--subprimaryColor);
}

/* ********|| HEADER ENDS ||******** */

/* ********|| BANNER STARTS ||******** */
.banner-form-wrapper{position: relative; overflow: hidden;}

.background-shape{    width: 653px; aspect-ratio: 1 / 1; background-image: linear-gradient(to bottom, #e3f1f7, #ebf5fa00); border-radius: 0; rotate: 17deg; position: absolute; transform: translateX(-200px); top: 34%;}
.section-banner { position: relative; padding-top: 0px; align-items: center; z-index: 0; overflow: hidden; justify-content: center; align-items: center; overflow: hidden;  background-repeat: no-repeat; width: 100%; height: 100%; background-position: center; object-fit: cover; background-size: cover; padding: 70px 0;}

.section-banner .banner-wrapper{display: flex; gap: 80px; align-items: center;}
.section-banner .banner-content-wrapper{width: 55%; display: flex; justify-content: center; position: relative;}
.section-banner .banner-content-wrapper .before-dots-top{left: 10px; top: 50%;}
.section-banner .banner-content { position: relative; max-width: 540px; text-align: center; display: flex; flex-direction:column; justify-content: start; align-items: start; text-align: start; }

.section-banner .banner-title { font-size: 75px; font-weight: 800; color: var(--blue); line-height: 1.2; text-transform: capitalize; margin: 0 0 25px;}
.section-banner .banner-title span{color: var(--green);}
.section-banner .banner-subtitle { font-size: 27px; font-weight: 500; line-height: 1.4; color: var(--blue); margin: 0 0 16px;}
.section-banner .banner-description { font-size: 19px; color: var(--blue); line-height: 1.5; margin: 0 0 25px; font-weight: 500;}

.banner-btn-wrapper{display:flex; gap:20px; align-items: center; margin-bottom: 25px;}
.banner-btn-wrapper .get-btn{padding: 22px; background-color: var(--blue); color: #fff; border-radius: 50px; font-size: 18px; font-weight: 500; transition: 0.3s all ease; box-shadow: 0px 4px 10px 1px rgb(199, 199, 199);}

.visa-wrapper { background-color: white; padding: 12px; border-radius: 50px; overflow: hidden; box-shadow: 0px 4px 10px 1px rgb(199, 199, 199);}
.visa-wrapper img { width: 100%; height: 100%; object-fit: contain;}
.frame-wrapper { background-color: white; padding: 12px; border-radius: 50px; overflow: hidden; box-shadow: 0px 4px 10px 1px rgb(199, 199, 199);  }
.frame-wrapper img { width: 100%; height: 100%; object-fit: contain;}
.section-banner .banner-content .banner-list{font-size: 17px; font-weight: 700; line-height: 1.5; color: var(--blue); margin: 0 0 25px; display: flex; flex-wrap: wrap; row-gap: 10px; column-gap: 20px; list-style: none; padding-left: 20px; max-width: 500px; padding-left: 0;}
.section-banner .banner-content .banner-list li::before{content: "\f111"; font-family: "Font Awesome 5 Pro"; font-weight: 500; color: var(--blue); display: inline-block;  text-align: center; font-size: 12px; margin-right: 10px;}
.view-sample { background-color: var(--primaryColor); padding: 16px 30px; border: none; color: var(--shades01); border-radius: 8px; font-size: 16px; font-weight: 600; transition: 0.3s all ease; line-height: 24px;}
.view-sample:hover { background-color: var(--subprimaryColor); color: var(--shades01);}

.section-banner .banner-img-sec{width: 45%; position: relative;} 
.section-banner .banner-img-sec .before-dots-top{right: -6px;top: 54px;z-index: 1;} 
.section-banner .banner-img-sec .before-dots-bottom{left: 0; bottom: 308px;} 
.hero-wrapper { position: relative; width: 100%; height: 100%;}
.skew-box { width: 211%; height: 100%; aspect-ratio: 3.8 / 2; overflow: hidden; transform: skewY(-14deg); rotate: 23deg; border-radius: 0px 0 0px 140px; background: #e9f2fa; transform: translatey(-21px);}
.skew-img {width: 57%; height: 101%; object-fit: cover; rotate: -23deg; scale: 1.4; transform-origin: end; padding-right: 285px; padding-top: 165px;}

.section-banner .down-button{display: flex; justify-content: center; align-items: center; position: absolute; bottom: 142px; left: 50%; transform: translateX(-50%);}
.section-banner .down-button a{border: 1px solid var(--blue); color: var(--blue); padding: 20px 8px 8px; border-radius: 50px; background-color: transparent; font-size: 16px;}
/* ********|| BANNER ENDS ||******** */

/* ********|| FORM SECTION START ||******** */
.form-section {padding-top: 40px; padding-bottom: 30px; background-repeat: no-repeat; width: 100%; height: 100%; background-position: center; object-fit: cover; background-size: cover; overflow: hidden;}
.form-section .form-wrapper{display: flex; gap: 80px; align-items: center; position: relative; z-index: 1;}
.form-section .form-box{background-image: linear-gradient(to right bottom, var(--bgDark), var(--bgLight), var(--bgDark));padding: 40px 25px; border-radius: 40px; width: 50%; border: 4px solid white; position: relative;}
.before-dots-top{ position: absolute; color: var(--blue); font-size: 40px; letter-spacing: 5px;}
.form-section .form-box .before-dots-top{left: -80px; top: 40px; }
.before-dots-bottom{ position: absolute; color: var(--blue); font-size: 30px; letter-spacing: 5px;}
.form-section .form-box .before-dots-bottom{  right: -60px; bottom: 40px;}
.form-section .form-box .form-heading{font-size: 40px; font-weight: 700; line-height: 1.3; max-width: 530px; margin: 0 auto; text-align: center; margin-bottom: 35px; text-wrap: wrap;}
/* .form-section .form-box form{background-color: white; border-radius: 30px; padding: 40px;} */
.form-section .form-box form .form-group{display: flex; gap: 20px;}
.form-section .form-box form .form-group .input-group label{display: flex; gap: 20px; color:var(--blue); font-weight: 600; font-size: 16px; line-height: 24px;}
.form-section .form-box form .form-group .input-group{ border: 1px solid #c2dde8; border-radius: 12px;}
.form-section .form-box form .form-group .input-group input{background-color: #ffffff; color: var(--blue); font-size: 20px; padding:20px ; border-radius: 12px; border: 0; width: 100%;}
.form-section .form-box form .input-group textarea{background-color: #ffffff;  border: 1px solid #c2dde8!important; color: var(--blue); font-size: 16px; font-weight: 500; padding:20px ; border-radius: 12px; border: 0; width: 100%;}
.form-section .form-box form .input-group textarea::placeholder{color: var(--blue)!important; font-size: 16px; font-weight: 500;}
.form-section .form-box form .form-group .input-group input::placeholder{color: var(--blue)!important; font-weight: 500; font-size: 16px; line-height: 24px; }
.form-section .form-box form .input-group-full{background-color: #ffffff; border: 1px solid #c2dde8!important; color: var(--blue); font-size: 16px; font-weight: 500; padding:20px ; border-radius: 12px; border: 0; width: 100%; margin-bottom: 20px; display: flex; justify-content: space-between; line-height: 1.3;}
/* .form-section  .form-box form .input-group-full label{width: 50%;} */
.form-section .form-box form .input-group-full .radio-line{width: 20%; text-align:end;}
.form-section .form-box form .form-btn{background-color: var(--blue) ; padding: 16px 30px; border: none; color: var(--shades01); border-radius: 50px; transition: 0.3s all ease; font-size: 18px; line-height: 24px;}
.form-btn-wrap{ margin-top: 45px; display: flex; justify-content: center; align-items: center;}

.form-section .form-text-box{width: 50%;}
.form-section .form-text-box .form-text-heading{font-size: 70px; line-height: 1.3; font-weight: 800; color: var(--textColor); margin: 0 0 25px; max-width: 500px;}
.form-section .form-text-box .form-text-heading span{color: var(--green);}
/* .form-section .form-text-box .form-list-wrap{color: var(--primaryColor);} */
.form-section .form-text-box .form-list-wrap{list-style: none; padding-left: 20px; margin: 0; font-size: 22px; padding-left: 0;}
.form-section .form-text-box .form-list-wrap .form-list{font-size: 22px; line-height: 1.4; margin: 0 0 20px; font-weight: 400; list-style: none; color: var(--blue); position: relative; padding-left: 40px;}
.form-section .form-text-box .form-list-wrap .form-list span{color: var(--blue); font-weight: 700; margin-right: 10px;}
.form-section .form-text-box .form-list-wrap .form-list::before{content: "\f111"; font-family: "Font Awesome 5 Pro"; font-weight: 500; color: var(--blue); display: inline-block;  text-align: center; font-size: 16px; position: absolute; left: 3px; top: 5px;}
/* .form-section .form-text-box .form-list-wrap .form-list::after{background-color: #eff7fa; width:25px; height: 25px; border-radius: 50%; position: absolute; content: ""; left: -10px; top: 10px; z-index: -1;} */
.form-section .form-text-box .form-list-wrap .form-list .list-icon-wrapper{background-color: white; border-radius: 50px; overflow: hidden; display: inline-block; box-shadow: 0px 5px 12px -4px rgb(193, 193, 193); padding: 0 10px;}
.form-section .form-text-box .form-list-wrap .form-list .list-icon-wrapper img { width: 100%; height: 100%; object-fit: contain;}
.form-section .form-text-box .form-list-wrap:first-child .form-list{display: flex;}


/* ********|| FORM SECTION ENDS ||******** */

/* ********|| FUNDING DETAILS SECTION START ||******** */
.funding-details-sec{ padding: 60px 0px 0px; position: relative;}
.funding-details-sec::before{content: ""; width: 518px; aspect-ratio: 1 / 1; background-image: linear-gradient(to bottom, #ffffff, #ebf5fa00); border-radius: 0 100px 0 0; rotate: 24deg; position: absolute; transform: translateX(-200px); top: 204px;}
.details-project-wrap{position: relative; overflow: hidden;}
.details-project-wrap .details-project-wrap-shape{ width: 660px; aspect-ratio: 1 / 1; background-image: linear-gradient(to bottom, #ebf5f9, #ebf5fa00); border-radius: 0 180px 0 0; rotate: -153deg; position: absolute; transform: translateX(-200px); top: 25%; right: 0;}
.details-project-wrap .details-project-wrap-shape .before-dots-top{top: 50%; right: 60%; rotate: -27deg;}
/* .funding-details-sec .funding-details-wrap {background-image: linear-gradient(to right, var(--bgDark), var(--bgLight)); padding: 30px 0 100px; border-radius: 40px;} */
.funding-details-sec .funding-details-wrap .funding-heading{ gap: 8px; color: var(--textColor); font-size: 70px; font-weight: 700; line-height: 1.3; text-align: center; padding: 25px; border-radius: 30px; margin: 0 auto 0px; max-width: 1000px; position: relative;}
.funding-details-sec .funding-details-wrap .before-dots-bottom{bottom: 50px; right: 0;}
/* 
.funding-details-sec .funding-details-wrap .funding-heading::before {    position: absolute; content: ""; top: 11px; right: -45px; background: transparent; width: 36px; height: 50px; border-bottom-left-radius: 26px; box-shadow: 0px 20px 0 -4px var(--shades01); transform: rotate(100deg);}

.funding-details-sec .funding-details-wrap .funding-heading::after { position: absolute; content: ""; top: 23px; left: -38px; background: transparent; width: 39px; height: 50px; border-bottom-left-radius: 26px; box-shadow: 0px 20px 0 -4px var(--shades01); transform: rotate(198deg);} */

.funding-details-sec .funding-details-wrap .funding-heading span{color: var(--green);}
.funding-details-sec .funding-details-wrap .funding-heading .funding-sebtext{font-size: 16px; font-weight: 600; color: var(--blue); margin: 0; margin-top: 20px;}
.details-content-wrap{padding-top: 30px; display: flex; gap: 40px; justify-content: space-between; align-items: flex-start;}
.details-content-wrap .details-left{ display: flex; flex-direction: column; gap: 30px; width: 70%;}
.details-content-wrap .details-left .details-wrap{gap: 20px; background-image: linear-gradient(to right bottom, var(--bgDark), var(--bgLight), var(--bgDark)); border-radius: 35px; padding: 25px 25px; position: relative; padding-right: 70px; border: 4px solid white;}
.details-content-wrap .details-left .details-wrap::before { content: ""; position: absolute; width: 40%; height: 104%; top: -60px; right: 25px; border-radius: 35px; background-color: white;}
.details-content-wrap .details-left .details-wrap .details-texts-wrap{display: flex;  width: 100%; font-size: 20px;   letter-spacing: 0.5px; position: relative; z-index: 1; justify-content: space-between; line-height: 1.5;}

.details-content-wrap .details-left .details-wrap .details-texts-wrap .details-left-text{ color: var(--blue); padding: 28px 0; border-bottom: 1px solid #c2dde8;  font-weight: bold; width: 60%;}
.details-content-wrap .details-left .details-wrap .details-texts-wrap .details-right{ color: var(--blue); text-align: center; border-bottom: 1px solid #c2dde8; padding: 28px 0; width: 35%; font-weight: 500;}
.details-content-wrap .details-left .details-wrap .details-texts-wrap .details-right img{width: 140px; height: auto; object-fit: contain; padding: 0 10px;}
.details-content-wrap .details-left .details-wrap .details-texts-wrap .details-right.bold{ font-weight: bold;}
.details-content-wrap .details-left   .details-heading-wrap{font-size: 22px; font-weight: 600; color: var(--blue); display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 1;}
.details-content-wrap .details-left .description-heading{font-size: 22px; font-weight: 600; color: var(--blue); position: absolute; top: 100%; right: 17%;}

.details-right-sec { display: flex; justify-content: center; padding: 40px 0; width: 30%; flex-direction: column; gap:30px;}

.details-right-box { text-align: center; background: white; padding: 20px; border-radius: 30px; position: relative; width: 100%; }

.details-title { font-size: 22px; font-weight: 700; color: var(--blue); max-width: 345px; margin: 0 auto 25px;}

.details-btn a { display: inline-flex; justify-content: end; align-items: center; gap: 10px; background: var(--blue); color: #fff; font-size: 18px; font-weight: 600; padding: 6px; width: 60%; border-radius: 50px; text-decoration: none; transition: 0.2s; box-shadow: 0 5px 30px rgba(0,0,0,0.12);}
.details-btn-green a { display: inline-flex; justify-content: end; align-items: center; gap: 10px; background: var(--primaryColor); color: #fff; font-size: 18px; font-weight: 600; padding: 6px; width: 60%; border-radius: 50px; text-decoration: none; transition: 0.2s; box-shadow: 0 5px 30px rgba(0,0,0,0.12);}
.details-btn-green i{color:#db0011; font-size: 22px; background-color: white; padding: 15px; border-radius: 50px;}

.details-btn i{color:#db0011; font-size: 22px; background-color: white; padding: 15px; border-radius: 50px;}
.details-btn a:hover { opacity: 0.85;}
.details-btn img { width: 26px; height: 26px;}

.details-right-img-wrap { margin-top: 30px; width: 100%; aspect-ratio: 10/6; overflow: hidden; box-shadow: 0 9px 18px 1px rgba(0,0,0,0.12); border:2px solid var(--bgDark); border-radius: 20px;}
.details-right-img-wrap img { width: 100%; height: 100%; object-fit: cover;}

/* ********|| FUNDING DETAILS SECTION ENDS ||******** */

/* ********|| PROJECT SECTION START ||******** */
/* .project-sec{padding: 190px 0 100px;} */
.project-sec .project-wrapper{display: flex; gap: 100px; align-items: center; justify-content: space-between;}
.project-sec .project-wrapper .project-text-sec{width: 55%; max-width: 800px;}


.project-sec .project-wrapper .project-text-sec .project-title{font-size: 70px; line-height: 1.2; font-weight: 700; color: var(--textColor); margin: 0 0 30px; max-width: 600px;}
.project-sec .project-wrapper .project-text-sec .project-title span{color: var(--green);}
.project-sec .project-wrapper .project-text-sec .project-sebtitle{font-size: 27px; font-weight: 600; color: var(--blue); margin-bottom: 20px; line-height: 1.2; max-width: 570px;}
.project-sec .project-wrapper .project-text-sec .project-sebtitle .list-icon-wrapper{background-color: white; border-radius: 50px; overflow: hidden; display: inline-block; box-shadow: 0px 5px 12px -4px rgb(193, 193, 193); padding: 0 10px; margin-top: 5px;}
.project-sec .project-wrapper .project-text-sec .project-sebtitle .list-icon-wrapper img { width: 100%; height: 100%; object-fit: contain;}
.form-section .form-text-box .form-list-wrap:first-child .form-list{display: flex;}
.project-sec .project-wrapper .project-text-sec .project-des{font-size: 19px; font-weight: 600; color: var(--blue); margin-bottom: 45px; line-height: 1.5; max-width: 600px;}
.project-sec .project-wrapper .project-text-sec .project-btn-wrap .project-btn{background-color: var(--green) ; padding: 18px 30px; border: none; color: var(--shades01); border-radius: 50px; transition: 0.3s all ease; font-size: 16px; line-height: 24px;}

.project-sec .project-wrapper .project-img-sec{width: 45%;}
.project-sec .project-wrapper .project-img-sec .project-img-wrapper{ width: 100%; height: 100%;
    /* aspect-ratio: 2.4 / 2; */
    overflow: hidden;
    /* transform: skewY(-14deg);
    rotate: 23deg;
    border-radius: 0px 140px 0px 0px;
    background: #e9f2fa;
    transform: translateX(-226px);
    margin-bottom: -504px; */
  }
.project-sec .project-wrapper .project-img-sec .project-img-wrapper img{width: 100%;
    height: 100%;
    object-fit: cover;
    /* rotate: -23deg;
    scale: 1.4;
    transform-origin: end; */
  }

/* ********|| PROJECT SECTION ENDS ||******** */

/* ********|| FOOTER SECTION ENDS ||******** */
/* .footer {padding: 25px;} */
.footer .footer-wrapper { background-color: white; padding: 25px 25px; display: flex; justify-content: end;}
.footer .footer-wrapper .container { background-color: white;display: flex; justify-content: end;}
.footer .footer-wrapper .footer-img-wrapper{display: flex; justify-content: end; width: 100px; height: 60px;}
/* .footer .footer-wrapper .footer-img-wrapper img{ width: 100%; height: 100%; object-fit: contain;} */
/* ********|| FOOTER SECTION ENDS ||******** */

/* ********|| MODAL STARTS ||******** */
/* .accordion-item:not(.collapsed) {
  background-color: rgb(216, 216, 216);
  color: var(--primaryColor);
} */
/* ********|| MODAL ENDS ||******** */

/* ********|| RESPONSIVE STARTS ||******** */

@media screen and (max-width: 1600px) {
  /* .section-banner .banner-image::before{right: 55px;}
  .section-banner .banner-image::after{left: 66px;} */
  .skew-img{padding-right: 220px; padding-top: 121px;}
  .skew-box{aspect-ratio: 3.5 / 2;}
  .section-banner .banner-title { font-size: 58px;}
  .form-section .form-text-box .form-text-heading { font-size: 60px; max-width: 450px;}
  .funding-details-sec .funding-details-wrap .funding-heading{font-size: 60px;}
  .project-sec .project-wrapper .project-text-sec .project-title { font-size: 60px;}
  .project-sec .project-wrapper .project-text-sec{    max-width: 685px;}
  /* .project-sec { padding: 146px 0 100px;} */
 
  
}
@media screen and (max-width: 1470px) {
  
  .details-btn a{width: 70%; font-size: 16px;}
  .details-btn-green a{width: 70%; font-size: 16px;}
}
@media screen and (max-width: 1366px) {
  .skew-img { padding-right: 180px; padding-top: 110px;}
  .section-banner .banner-content-wrapper .before-dots-top { left: -18px;}
  .section-banner .banner-title {font-size: 46px;}
  .form-section .form-box .form-heading { font-size: 32px; padding: 0 40px;}
  .form-section .form-text-box .form-text-heading {font-size: 50px; max-width: 320px;}
  .funding-details-sec .funding-details-wrap .funding-heading { font-size: 50px;}
  .project-sec .project-wrapper .project-text-sec .project-title { font-size: 50px;}
  .details-content-wrap .details-left .details-wrap::before{width: 46%;}
  .details-content-wrap .details-left .details-wrap .details-texts-wrap .details-right{width: 40%}
  .form-section  .form-box form .input-group-full .radio-line{width: 30%;}
  .section-banner .banner-content-wrapper{padding-top: 50px;}
}
@media screen and (max-width: 1280px) {
  .section-banner .banner-content{padding-left: 40px; max-width: 530px;}
  
}
@media screen and (max-width: 1024px) {
  .skew-img { padding-right: 0; padding-top: 0;}
  .skew-box { width: 272%;}
  /* .section-banner .banner-title { font-size: 56px;} */
  .section-banner .banner-subtitle {font-size: 22px;}
  .section-banner .banner-description { font-size: 16px;}
  .section-banner .banner-content-wrapper .before-dots-top {left: -40px;}
  .form-section .form-box .form-heading { font-size: 28px;}
  .details-btn a { width: 50%;}
  .details-btn-green a { width: 50%;}
  .form-section .form-wrapper { gap: 20px;}
  .form-section .form-text-box .form-text-heading {font-size: 46px;}
  .form-section .form-box form .form-group{flex-direction: column;}
  .form-section  .form-box form .input-group-full .radio-line{width: 42%;}
  .funding-details-sec .funding-details-wrap .funding-heading{font-size: 46px; max-width: 580px;}
  .details-content-wrap{flex-direction: column;}
  .details-content-wrap .details-left{width: 100%;}
  .details-right-sec{width: 100%; flex-direction: row;}
  .funding-details-sec .funding-details-wrap{padding: 30px 0 20px;}
  .project-sec .project-wrapper .project-text-sec .project-title { font-size: 46px;}
  .project-sec .project-wrapper .project-text-sec .project-sebtitle { font-size: 24px;}
  .project-sec .project-wrapper .project-text-sec .project-des { font-size: 16px;}
  .form-section .form-text-box .form-list-wrap .form-list {font-size: 20px;}
  .project-sec .project-wrapper{gap: 30px;}
  .project-sec .project-wrapper .project-img-sec { width: 55%;}
  /* .project-sec { padding: 40px 0 100px;} */
  .funding-details-sec::before{ width: 370px;}
  .details-project-wrap .details-project-wrap-shape { width: 460px;}
  
.details-project-wrap .details-project-wrap-shape .before-dots-top { top: 35%; right: 46%;}
  
}
@media screen and (max-width: 990px) {
  .form-section .form-wrapper{flex-direction: column; gap: 60px;}
  .form-section .form-box{width: 100%;}
  .form-section .form-text-box{width: 100%;}
  .container{padding: 20px;}
  .details-right-sec{padding: 0;}
  .project-sec .project-wrapper{flex-direction: column; gap:60px; padding: 20px;}
  .project-sec .project-wrapper .project-text-sec{width: 100%;}
  .project-sec .project-wrapper .project-img-sec{width: 100%;  aspect-ratio: 3/2;}
  .form-section{ padding-bottom: 0px;}
  .funding-details-sec { padding: 10px 25px 70px;}
  /* .project-sec { padding: 20px 0 80px;} */

  .section-banner .banner-img-sec { width: 100%;}
  .skew-box { width: 100%; rotate: 0deg; aspect-ratio: 3/2; border-radius: 40px;}
  .skew-img{rotate: 0deg; width: 100%; height: 100%;}
  .section-banner .banner-img-sec .before-dots-top { right: -47px; top: -98px;}
  .section-banner .banner-img-sec .before-dots-bottom { left: 30px; bottom: 64%;}
  .section-banner .banner-content-wrapper{width: 100%;}
  .section-banner .banner-wrapper{flex-direction: column; flex-direction: column-reverse; padding: 20px; gap: 40px; padding-top: 132px;}
  .section-banner .down-button{bottom: 20px;}
  .section-banner .banner-content{max-width: 100%;}
  .section-banner{padding-top: 152px; padding: 45px 0;}
  .container{padding: 20px;}
  .section-banner .banner-title {font-size: 38px;}
  .details-btn a { width: 80%;}
  .details-btn-green a { width: 80%;}
  .project-sec .project-wrapper .project-img-sec .project-img-wrapper{width: 100%; height: 100%; rotate: 0deg;}
  .project-sec .project-wrapper .project-img-sec .project-img-wrapper img{width: 100%; height: 100%; rotate: 0deg;}
  .project-sec .project-wrapper{flex-direction: column; padding-left: 0; padding-bottom: 80px;}
  .section-banner .banner-content-wrapper{padding-top: 0;}
  .form-section .form-text-box .form-text-heading { max-width: 400px;}
  
}
@media screen and (max-width: 990px) and (orientation: landscape) {
}
@media screen and (max-width: 767px) {
}
@media screen and (max-width: 767px) and (orientation: landscape) {
}
@media screen and (max-width: 600px) {
  
}
@media screen and (max-width: 480px) {
  .section-banner .banner-wrapper{padding-top: 64px;}
  .before-dots-top{font-size: 24px;}
  .section-banner .banner-wrapper{gap: 16px;}
  .container .sblc-btn{ padding: 12px 12px; font-size: 14px;}
  header .brand{width: 70px}
  .section-banner{padding-top: 100px;}
  .section-banner .banner-content{padding-left: 10px;}
  .section-banner .banner-title { font-size: 28px;}
  .section-banner .banner-subtitle {font-size: 18px;}
  .section-banner .banner-description { font-size: 15px;}
  .visa-wrapper{    padding: 8px 12px;}
  .frame-wrapper{    padding: 8px 12px;}
  .banner-btn-wrapper{flex-wrap: wrap; max-width: 300px;}
  .form-section .form-box .form-heading {font-size: 16px;}
  .form-section .form-box form{padding: 0px;}
  .form-section .form-box form .form-group .input-group input{padding: 16px;}
  .form-section .form-box form .input-group-full{padding: 16px;}
  .form-section .form-box form .input-group textarea{padding: 16px;}
  .banner-btn-wrapper .get-btn{font-size: 17px; padding: 16px 26px;}
  .form-section .form-box{padding: 20px;}
  .form-section .form-box form .input-group-full{flex-direction: column; gap: 10px;}
  .form-section .form-box form .input-group textarea{font-size: 16px;}
  .form-section .form-text-box .form-text-heading { font-size: 28px;}
  .funding-details-sec .funding-details-wrap .funding-heading .funding-sebtext{margin-top: 10px; font-size: 14px;}
  .form-section .form-text-box .form-list-wrap .form-list {font-size: 16px;}
  .form-section .form-box form .input-group-full{font-size: 16px;}
  .form-section .form-box form .input-group-full .radio-line{text-align: start;}
  .form-section .form-box form .form-group .input-group input{font-size: 16px;}
  .form-btn-wrap {margin-top: 32px;}
  .form-section .form-box .form-heading{max-width: 270px;}
  .funding-details-sec .funding-details-wrap .funding-heading { font-size: 28px; max-width: 236px; margin: -50px auto 0px; padding: 15px;}
  .form-section {padding-bottom: 25px;padding-top: 50px;}
  .details-content-wrap .details-left .details-wrap::before{display: none;}
  .details-content-wrap .details-left .details-wrap{padding-right: 20px; padding: 20px;}
  /* .details-content-wrap .details-left .details-wrap .details-texts-wrap .details-right{color: white;} */
  .details-content-wrap .details-left .details-wrap .details-texts-wrap{flex-direction: column; gap: 12px; border-bottom: 1px solid #dce5eb; padding-bottom: 10px; margin-bottom: 14px; font-size: 15px; gap: 0;}
  .details-content-wrap .details-left .details-wrap .details-texts-wrap .details-left-text{border-bottom: 0; width: 100%; padding: 6px 0;}
  .details-content-wrap .details-left .details-wrap .details-texts-wrap .details-right{border-bottom: 0; width: 100%; padding: 6px 0; text-align: start; display: flex;}
  .details-content-wrap .details-left .description-heading{display: none;}
  .details-right-sec{flex-direction: column;}
  .details-title { font-size: 20px;}
  .details-btn a{width: 62%;}
  .details-btn-green a{width: 62%;}
  .project-sec .project-wrapper .project-text-sec .project-title { font-size: 28px;}
  .project-sec .project-wrapper .project-text-sec .project-sebtitle { font-size: 20px;}
  /* .project-sec { padding: 20px 0 40px;} */
  .footer .footer-wrapper{padding: 0px 0px;}
  .form-section .form-text-box .form-list-wrap .form-list::after{top: 0;}
  .form-section .form-text-box .form-list-wrap .form-list::before{top: 0;}
  .funding-details-sec { padding: 36px 0px 16px;}
  .project-sec .project-wrapper .project-text-sec{padding-left: 20px;}
  .details-content-wrap .details-left{gap: 18px;}
  .details-content-wrap .details-left .details-heading-wrap {font-size: 20px;}
  .form-section .form-box form .form-btn{font-size: 16px;}
  header .container{border-radius: 0px;}
  header.scrolled{top: 0px;}
  .details-project-wrap .details-project-wrap-shape .before-dots-top { top: 58%; right: 48%;}
  
  
}
@media screen and (max-width: 360px) {
  .section-banner .banner-stats .stats-data {
    font-size: 48px;
  }
  .gap-50 {
    gap: 3px;
  }
  .container .sblc-btn {
    font-size: 12px;
  }
  header .btn-menu-trigger {
    font-size: 24px;
  }
}
@media screen and (max-width: 320px) {
}
/* ********|| RESPONSIVE ENDS ||******** */
