/* webfont add here */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {

    /* Colors: */
    --color-primary: #010084;
    --color-text: #1b1b1b;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-light: #F4F4F6;
    --color-dark: #C7D5E1;
    --color-dark2: #42464F;
    --color-form-input: #5E6C77;
    --light-background: #EAF0F5;
    --light-blue-background: #E0EDF9;
    --light-navy-background: #B7C7EA;
    --dark-blue-background: #113A92;
    --navy-background: #446BBF;
    --blue-background: #6D93E5;
    --azure-background: #BCDDF9;
    --light-black-background: rgba(27, 27, 27, 0.8);
    --box-shadow-color: rgba(0, 0, 0, 0.25);
    --light-white-background: rgba(255, 255, 255, 0.3);
    --scrollbar-background: #f1f1f1;
    --error: red;

    /* Font/text values */
    --font-family-poppins: 'Poppins';
    --font-family-roboto: 'Roboto';
    --font-style-normal: normal;
    --font-weight-400: 400;
    --font-weight-500: 500;
    --font-weight-600: 600;
    --font-weight-700: 700;
    --font-size-12: 12px;
    --font-size-13: 13px;
    --font-size-14: 14px;
    --font-size-15: 15px;
    --font-size-16: 16px;
    --font-size-17: 17px;
    --font-size-18: 18px;
    --font-size-19: 19px;
    --font-size-20: 20px;
    --font-size-21: 21px;
    --font-size-22: 22px;
    --font-size-24: 24px;
    --font-size-26: 26px;
    --font-size-28: 28px;
    --font-size-30: 30px;
    --font-size-32: 32px;
    --font-size-36: 36px;
    --font-size-40: 40px;
    --font-size-48: 48px;
    --font-size-56: 56px;
    --font-size-64: 64px;
    --font-size-70: 70px;
    --font-size-80: 80px;
    --font-size-90: 90px;
    --font-size-100: 100px;
    --character-spacing-0: 0px;
}

/* global */


a {
  text-decoration: none;
  outline: none;
}

a,
button {
  -webkit-transition: all 250ms ease 0s;
  -moz-transition: all 250ms ease 0s;
  -ms-transition: all 250ms ease 0s;
  -o-transition: all 250ms ease 0s;
  transition: all 250ms ease 0s;
}

button,
button:focus {
  outline: none;
  border: none;
  cursor: pointer;
}

.form-control:focus,
.form-check-input:focus {
  outline: 0;
  box-shadow: none;
}
input[type="checkbox"] {
    min-height: auto;
}
input, textarea {
    width: 100%;
    padding: 13px 32px;
    border-radius: 8px;
    border: 1px solid var(--color-dark);
    outline: none;
    background: #e7eef5;
    font-size: var(--font-size-20);
    font-family: var(--font-family-roboto);
    font-weight: var(--font-weight-400);
    box-shadow: 0px 0px 4px 0px var(--box-shadow-color);
}
textarea{
    height: 200px;
    resize: none;
}

textarea:hover,
textarea:focus,
textarea:active {
  outline: none;
  box-shadow: none;
}

input:hover,
input:active,
input:focus {
  outline: none;
  box-shadow: none;
}

.dropdown-item.active,
.dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: inherit;
}

select:hover,
select:active,
select:focus {
  outline: none;
  box-shadow: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--scrollbar-background) ;
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

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

.flex-box {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1* var(--bs-gutter-y));
}

/* Character Styles */
h1 {
    font-family: var(--font-family-poppins);
    font-weight: var(--font-weight-500);
    font-size: var(--font-size-64);
    line-height: 1.05;
    color: var(--color-primary);
    margin-bottom: 40px;
}

h1 small {
    display: block;
    font-size: var(--font-size-56);
    font-weight: var(--font-weight-400);
    letter-spacing: -1%;
}

h2 {
    font-family: var(--font-family-poppins);
    font-weight: var(--font-weight-500);
    font-size: var(--font-size-56);
    line-height: 1.4;
    letter-spacing: -2%;
    color: var(--color-primary);
    margin-bottom: 36px;
}

h3 {
    font-family: var(--font-family-poppins);
    font-weight: var(--font-weight-500);
    font-size: var(--font-size-36);
    line-height: 1.25;
    margin-bottom: 24px;
}

h4 {
    font-family: var(--font-family-roboto);
    font-weight: var(--font-weight-500);
    font-size: var(--font-size-32);
    line-height: 1.3;
    margin-bottom: 20px;
}

h5 {
    font-family: var(--font-family-roboto);
    font-weight: var(--font-weight-500);
    font-size: var(--font-size-30);
    line-height: 1.35;
    margin-bottom: 20px;
}

h6 {
    font-family: var(--font-family-roboto);
    font-weight: var(--font-weight-500);
    font-size: var(--font-size-28);
    line-height: 1.4;
    margin-bottom: 20px;
}

p {
    font-family: var(--font-family-roboto);
    font-weight: var(--font-weight-400);
    font-size: var(--font-size-28);
    line-height: 1.4;
    margin-bottom: 24px;
}
p small {
    font-size: var(--font-size-24);
    line-height: 1.35;
}

ul li, ol li {
    font-family: var(--font-family-roboto);
    font-weight: var(--font-weight-400);
    font-size: var(--font-size-28);
    line-height: 1.4;
    margin-bottom: 20px;
}
ul li::marker {
    font-size: var(--font-size-24);
}

section ul, section ol {
    list-style-position: outside;
    margin-bottom: 40px;
    padding-left: 32px;
}

section h1:last-child, section h2:last-child, section h3:last-child, section h4:last-child, section h5:last-child, section h6:last-child, section p:last-child, section ul:last-child, section ol:last-child, section ul li:last-child, section ol li:last-child {
    margin-bottom: 0;
}

body {
    font-family: var(--font-family-roboto);
    background:var(--color-white);
    overflow-x: hidden;
    color: var(--color-text);
}

/* font sizes */


/* Containers */
.container {
    max-width: 1660px;
    margin: auto;
    padding: 0 30px;
}

.text-center{
    text-align: center;
}
.m-0{
    margin: 0px;
}
.mt-0{
    margin-top: 0px;
}
.mt-30{
    margin-top: 30px;
}
.mb-30{
    margin-bottom: 30px;
}
.mt-80 {
    padding-top: 80px;
}
.mb-80{
    margin-bottom: 80px;
}
.pt-80 {
    padding-top: 80px;
}
.pt-100 {
    padding-top: 100px;
}
.pb-100 {
    padding-bottom: 100px;
}
.pt-200 {
    padding-top: 200px;
}
.pb-80 {
    padding-bottom: 80px;
}
.pb-200 {
    padding-bottom: 200px;
}
.pt-300 {
    padding-top: 300px;
}
.pb-300 {
    padding-bottom: 300px;
}
.mt-100 {
    margin-top: 200px;
}
.mb-100 {
    margin-bottom: 200px;
}
.mt-200 {
    margin-top: 200px;
}
.mb-200 {
    margin-bottom: 200px;
}
.mt-300 {
    margin-top: 200px;
}
.mb-300 {
    margin-bottom: 200px;
}

.w-100 {
    width: 100% !important;
}

.light-background {
    background-color: var(--light-background);
}

/* cta button start */
.cta-btn{
    display: inline-flex;
    height: 68px;    
    text-decoration: none;
    border: 0px;
    background-color: transparent;
}
.cta-btn .cta-button-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 100%;
    padding: 0 40px;
    z-index: 1;
    will-change: transform;
    color:var(--color-white);
    border-radius: 8px;
    background: var(--color-primary);
    transition: transform .4s, background-color .6s;
}
.cta-btn .cta-button-box svg {
    margin-bottom: 4px;
    transition: 300ms all;
}
.cta-btn .cta-button-box-title {
    display: block;
    overflow: hidden;
    font-weight: var(--font-weight-500);
    font-size: var(--font-size-24);
    line-height: 1.15;
    color: var(--color-white);
    text-align: center;
}
.cta-btn:hover .cta-button-box-title span {
    transform: translateY(-105%);
}
.cta-btn:hover .cta-button-box-title span:after {
    transform: rotateX(0);
}
.cta-btn .cta-button-box-title span:after {
    content: attr(data-text);
    display: block;
    position: absolute;
    top: 105%;
    left: 0;
    right: 0;
    transform: rotateX(-90deg);
    transform-origin: top center;
    transition: transform .9s cubic-bezier(.16, 1, .3, 1);
}
.cta-btn .cta-button-box-title span {
    display: block;
    transition: transform .9s cubic-bezier(.16, 1, .3, 1);
}
.cta-btn:hover .cta-button-box {
    transform: scaleX(1.015) scaleY(1.005);
    transition: transform .6s cubic-bezier(.34, 5.56, .64, 1);
}

/* Header CSS starts */

header {
    padding: 26px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    background-color: var(--color-primary);
}
header .container {
    max-width: 1780px;
}
.header-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 2;
}
header .logo a {
    display: table;
}
header .logo a img,
header .logo a svg {
    width: 390px;
    height: 60px;
    object-fit: contain;
    transition: 300ms all;
}
.menu-primary-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.menu-primary-block nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}
.menu-primary-block nav ul li {
    padding: 2px 40px;
    border-right: 1px solid var(--color-white);
    margin-bottom: 0;
    position: relative;
}
.menu-primary-block nav ul li:last-child {
    padding-right: 0;
    border-right: none;
}
.menu-primary-block nav ul li a {
    color: var(--color-white);
    font-size: var(--font-size-18);
    font-weight: var(--font-weight-600);
    line-height: 1;
    text-transform: uppercase;
    display: block;
}
.menu-primary-block nav > ul > li.current-menu-item > a {
    letter-spacing: 10%;
    color: var(--azure-background);
    position: relative;
}
.menu-primary-block nav ul li.current-menu-item a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    width: 0; 
    height: 0;
    border-style: solid;
    border-width: 15px 13px 0px 13px;
    border-color: var(--azure-background) transparent transparent transparent;
    transform: rotate(0deg);
    margin: 0 auto;
}
.menu-primary-block nav ul li.current-menu-item:hover a:after {
    content: normal;
}
.header-menu-btn {
    display: none;
}
.menu-primary-block nav ul.sub-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 98%;
    border-radius: 8px;
    width: 220px;
    visibility: hidden;
    opacity: 0;
    transition: 300ms padding-top;
    padding-top: 8px;
}
.menu-primary-block nav ul li:hover ul.sub-menu {
    padding-top: 16px;
    opacity: 1;
    visibility: visible;
}
.menu-primary-block nav ul.sub-menu:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(100% - 12px);
    width: 0; 
    height: 0;
    margin: 0 auto;
    border-style: solid;
    border-width: 0px 10px 16px 10px;
    border-color: transparent transparent var(--azure-background) transparent;
    transform: rotate(0deg);
    transition: 300ms bottom;
}
.menu-primary-block nav ul li:hover ul.sub-menu:before {
    bottom: calc(100% - 20px);
}
.menu-primary-block nav ul.sub-menu li {
    padding: 0;
    border-right: none;
    width: 100%;
    display: block;
    overflow: hidden;
}
.menu-primary-block nav ul.sub-menu li a {
    color: var(--color-primary);
    font-size: var(--font-size-16);
    font-weight: var(--font-weight-400);
    text-transform: capitalize;
    padding: 0 10px;
    text-align: center;
    line-height: 48px;
    position: relative;
    background-color: var(--azure-background);
    width: 100%;
    display: block;
}
.menu-primary-block nav ul.sub-menu li a:hover {
    background-color: var(--light-navy-background);
}
.menu-primary-block nav ul.sub-menu li a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin: 0 auto;
    width: 20px;
    background-color: rgba(0, 0, 0, 0.75);
    height: 1px;
}
.menu-primary-block nav ul.sub-menu li:last-child a:after {
    content: normal;
}
.menu-primary-block nav ul.sub-menu li:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.menu-primary-block nav ul.sub-menu li:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Hamburger Menu Design Starts*/

.nav-icon {
    width: 38px;
    height: 26px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}
.nav-icon span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    height: 4px;
    width: 100%;
    background: var(--color-white);
    border-radius: 9px;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}
.nav-icon span:nth-child(1) {
    top: 1px;
}
.nav-icon span:nth-child(2) {
    top: 10px;
}
.nav-icon span:nth-child(3) {
    top: 20px;
}
.hamburger {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 16px;
    position: relative;
    text-transform: uppercase;
}
.hamburger:hover .nav-icon span:nth-child(2) {
    width: 12px;
}
.hamburger.open .nav-icon span:nth-child(1) {
    top: 7px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}
.hamburger.open .nav-icon span:nth-child(2) {
    opacity: 0;
    width: 0;
}
.hamburger.open .nav-icon span:nth-child(3) {
    top: 7px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.hamburger.open:hover .nav-icon {
    transform: scale(0.7);
}

header.scrolled {
    padding: 16px 0;
}
header.scrolled .logo a img,
header.scrolled .logo a svg {
    width: 300px;
    height: 50px;
}
header.scrolled .menu-primary-block nav ul li a {
    font-size: var(--font-size-14);
}
header.scrolled .menu-primary-block nav ul li.current-menu-item a:after {
    border-width: 8px 8px 0px 8px;
    top: calc(100% + 6px);
}

/* Header CSS ends */

/* hero banner start */
.hero-banner {
    height: 100vh;
    max-height: 1080px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    color: var(--color-white);
    overflow: hidden;
}
.hero-banner .banner-bg video, .hero-banner .banner-bg img {
    width: 100%;
    height: 100vh;
    min-height: 100%;
    object-fit: cover;
    max-height: 1080px;
}
.hero-banner .banner-bg {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.banner-content {
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%;
    z-index: 1;
}
.banne-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(109, 147, 229, 0.73) 0%, rgba(17, 58, 146, 0.73) 100%);
    /* subtract circle */
      /*-webkit-mask: radial-gradient(
        circle 82vh at right center,
        transparent 100%,
        black 100%
    );
    mask: radial-gradient(
        circle 82vh at right center,
        transparent 100%,
        black 100%
    );*/
    z-index: 0;
}
.banner-small-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto 0;
    width: 40%;
    height: 110%;
    z-index: 1;
    border-top-left-radius: 70%;
    border-bottom-left-radius: 70%;
    overflow: hidden;
}
.banner-small-bg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.ceo-img {
    position: absolute;
    left: 56%;
    bottom: 0;
    margin: auto 0;
    width: auto;
    height: calc(100vh - 90px);
    z-index: 3;
    overflow: hidden;
}
.ceo-img img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}
.hero-banner h1 {
    color: var(--color-primary);
    width: calc(60% + 40px);
}
.hero-banner h1 small {
    color: var(--color-light);
    margin-top: 20px;
    font-weight: var(--font-weight-400);
}
.hero-banner p {
    width: calc(60% - 60px);
    color: var(--color-light);
}
.btn-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 48px;
}
.hero-banner .cta-btn:last-child .cta-button-box {
    background-color: var(--color-light);
}
.hero-banner .cta-btn:last-child .cta-button-box .cta-button-box-title {
    color: var(--color-primary);
}

/* hero banner end */


/* footer start */

footer {
    padding: 60px 0;
    background-color: var(--color-primary);
    color: var(--color-white);
}
.footer-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
}
footer .logo {
    margin-bottom: 32px;
}
footer .logo img {
    width: 300px;
}
footer address {
    font-size: var(--font-size-18);
    font-weight: var(--font-weight-400);
    font-style: normal;
    line-height: 1.4;
}
.footer-contact a {
    color: var(--color-white);
}
.footer-contact a:hover {
    text-decoration: underline;
}
.footer-menu ul {
    list-style: none;
    padding-left: 0;
    column-count: 2;
}
.footer-menu ul li a {
    color: var(--color-white);
}
.footer-menu ul li a:hover {
    text-decoration: underline;
}
.footer-menu ul li.current-menu-item a {
    color: var(--azure-background);
    letter-spacing: 5%;
}
.footer-social-copyright p {
    font-size: var(--font-size-20);
    font-weight: var(--font-weight-400);
    margin-bottom: 0;
}
.footer-social-copyright p br {
    display: none;
}
.footer-contact p {
    font-size: var(--font-size-18);
    font-weight: var(--font-weight-500);
    letter-spacing: 3%;
}
.footer-menu ul li {
    margin-bottom: 12px;
    line-height: 1;
}
.footer-menu ul li a {
    font-size: var(--font-size-18);
    font-weight: var(--font-weight-400);
}
.footer-social-copyright {
    text-align: right;
}
.footer-social-copyright ul.social-icons {
    list-style: none;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 26px;
}
.footer-social-copyright ul.social-icons li a {
    width: 56px;
    height: 56px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-white);
    border-radius: 50%;
    position: relative;
}
.footer-social-copyright ul.social-icons li a:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 0;
    height: 0;
    margin: auto;
    transition: 300ms width, 300ms height;
}
.footer-social-copyright ul.social-icons li a:hover:before {
    width: 100%;
    height: 100%;
}
.footer-social-copyright ul.social-icons li a svg path {
    fill: var(--color-white);
}

/* footer end */


/* search section starts */

.search-section {
    background-color: var(--color-white);
    text-align: center;
}
.search-form {
    box-shadow: 0px 6px 32px 0px rgba(0, 0, 0, 0.14);
    background-color: var(--color-white);
    padding: 24px;
    border-radius: 8px;
}
.search-form .cta-btn .cta-button-box-title {
    font-size: var(--font-size-20);
}
.form-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.form-input {
    width: calc(50% - 12px);
}
.search-section .form-input {
    width: calc((100% - 293px - 72px) / 3);
}
.form-input input, .form-input select {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--color-dark);
    box-shadow: 0px 0px 4px 0px var(--box-shadow-color);
    height: 60px;
    line-height: 1;
    font-size: var(--font-size-20);
    font-weight: var(--font-weight-400);
    color: var(--color-form-input);
    padding: 0 32px;
    background-color: var(--light-background);
}
.form-input select {
    background-image: url(../images/Vector.png);
    background-position: calc(100% - 24px);
    background-repeat: no-repeat;
    background-size: 15px;
    appearance: none;
    border: 1px solid var(--color-dark);
    box-shadow: 0px 0px 4px 0px var(--box-shadow-color);
}
.form-input textarea {
    font-size: var(--font-size-20);
}
.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}
.form-check label input {
    width: auto;
}
.form-check label {
    display: flex;
    align-items: center;
    justify-content: start;
}
.form-check{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
}
.form-check input {
    margin-right:8px;
}
.custom-checkbox{
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    gap: 12px;
}
.custom-checkbox input{
    display: none;
}
.form-check label span.wpcf7-list-item-label{
    position: relative;
    padding-left: 48px;
    font-size: var(--font-size-24);
    line-height: 1.4;
}
.form-check label span.wpcf7-list-item-label::before {
    content: '';
    width:28px;
    height:28px;
    border-radius:4px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#e6edf5;
    position:absolute;
    left: 0;
    top: 0;
    border: 1px solid var(--color-dark);
    box-shadow: 0px 0px 4px 0px var(--box-shadow-color);
}
.form-check label span.wpcf7-list-item-label::after {
    content: "";
    width: 7px;
    height: 17px;
    border-right: 3px solid var(--color-white);
    border-bottom: 3px solid var(--color-white);
    transform: rotate(40deg) translate(-1px, -1px);
    opacity: 0;
    transition: 0.3s;
    left: 9px;
    top: 5px;
    position: absolute;
}
.wpcf7-list-item input:checked + span.wpcf7-list-item-label::before {
    background-color: var(--color-primary);
}
.wpcf7-list-item input:checked + span.wpcf7-list-item-label::after{
    opacity:1;
}
.form-check .wpcf7-list-item{
    margin-left: 0px;
}
.submit-btn input[type="submit"] {
    font-weight: var(--font-weight-500);
    font-size: var(--font-size-20);
    line-height: 1.15;
    color: var(--color-white);
    text-align: center;
    background-color: var(--color-primary);
    height: 60px;
    line-height: 1;
    padding: 8px 32px;
}
.submit-btn button {
    width: 293px;
}
.submit-btn .cta-btn .cta-button-box {
    width: 100%;
    height: 60px;
}

/* search section ends */

/* image content section starts */

.image-content-section .container {
    max-width: 100%;
    padding: 0;
}
.image-content-wrap {
    display: flex;
    flex-wrap: wrap;
}
.image-content-section figure {
    width: 50%;
}
.image-content-section figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.image-content-section .content {
    width: 50%;
    padding-right: calc((100vw - 1600px) / 2);
    padding-left: 72px;
    padding-top: 80px;
    padding-bottom: 80px;
}
.reverse .image-content-wrap {
    flex-direction: row-reverse;
}
.image-content-section.reverse .content {
    padding-left: calc((100vw - 1600px) / 2);
    padding-right: 72px;
}

/* image content section ends */

/* values section starts */

.values-section {
    text-align: center;
}
.section-head {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto 60px;
}
.values-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}
.values-wrap:last-child {
    margin-bottom: 0;
}
.four-columns .values-wrap {
    margin-bottom: 60px;
}
.values-block {
    width: calc(33.33% - 32px);
    background: linear-gradient(90deg, var(--light-background) 0%, var(--light-navy-background) 100%);
    text-align: center;
    padding: 40px 32px 48px;
    border-radius: 12px;
    box-shadow: 0px 4px 4px 0px var(--box-shadow-color);
}
.values-block ul {
    padding-left: 0;
    list-style: none;
}
.values-block ul li {
    padding-left: 32px;
    background-image: url(../images/list-style.png);
    background-position: left 8px;
    background-repeat: no-repeat;
    background-size: 16px;
}
.four-columns .values-block {
    width: calc(25% - 36px);
    padding: 40px 36px;
}
.values-section.four-columns .values-block {
    width: calc(25% - 36px);
    padding: 40px 36px;
}
.values-section.four-columns .values-wrap {
    margin-bottom: 60px;
}
.values-block .icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: var(--color-white);
    margin-bottom: 40px;
}
.values-block .icon img {
    width: 80px;
}
.values-block h3 {
    margin-bottom: 32px;
    color: var(--color-primary);
}
.four-columns .values-block h3 {
    margin-bottom: 16px;
}
.values-block p {
    font-size: var(--font-size-24);
}
.values-block ul li {
    font-size: var(--font-size-24);
    text-align: left;
}
.four-columns .values-block p, .four-columns .values-block ul li {
    font-size: 28px;
}
.comprehensive-support-section {
    text-align: center;
}
.comprehensive-support-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 80px 56px;
    margin-top: 80px;
    margin-bottom: 60px;
}
.comprehensive-support-wrap:last-child {
    margin-bottom: 0;
}
.comprehensive-support-block {
    width: calc(50% - 28px);
    text-align: center;
    position: relative;
}
.comprehensive-support-block .icon {
    width: 200px;
    height: 200px;
    border-radius: 50% 0 50% 50%;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: var(--navy-background);
    position: absolute;
    left: 0;
    top: -40px;
    box-shadow: 0px 4px 27px 0px var(--box-shadow-color);
}
.comprehensive-support-block .icon:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border: 4px solid var(--color-white);
    border-radius: 50% 0 50% 50%;
    transition: 300ms border-top-right-radius;
}
.comprehensive-support-block .icon img {
    width: 96px;
}
.comprehensive-support-block .heading {
    background-color: var(--light-navy-background);
    color: var(--color-primary);
    /* padding: 22px 20px;
    border-radius: 8px 8px 0 0; */
    padding: 22px 20px 22px 120px;
    border-radius: 8px 8px 0 0;
}
.comprehensive-support-block .content {
    padding-left: 96px;
}
.comprehensive-support-block .content .text {
    background-color: var(--color-white);
    padding: 40px 40px 40px 100px;
    border-radius: 0 0 8px 8px;
}
.comprehensive-support-block h3 {
    font-size: var(--font-size-32);
}

.inside-page {
    padding-top: 112px;
}
.properties-section .results {
    font-size: var(--font-size-24);
    font-weight: var(--font-weight-500);
    font-family: var(--font-family-roboto);
    margin-bottom: 48px;
}
.properties-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}
.properties-card {
    width: calc(33.33% - 32px);
    background-color: var(--light-background);
    border-radius: 12px 12px 24px 24px;
    overflow: hidden;
    border-bottom: 12px solid rgba(1, 0, 132, 0.75);
    box-shadow: 0px 4px 4px 0px var(--box-shadow-color);
    position: relative;
    display: block;
}
.properties-figure {
    position: relative;
    width: 100%;
}
.properties-figure figure {
    width: 100%;
    height: 100%;
}
.properties-figure figure img {
    width: 100%;
    aspect-ratio: 7 / 5;
    object-fit: cover;
}
.property-spec {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    font-size: var(--font-size-24);
    line-height: 1;
    color: var(--color-primary);
    padding: 16px 26px;
    background-color: var(--light-blue-background);
}
.properties-card .content {
    padding: 36px 24px 32px;
}
.property-type {
    font-size: var(--font-size-20);
    background-color: var(--azure-background);
    line-height: 34px;
    padding: 0 14px;
    display: table;
    border-radius: 6px;
    color: var(--color-primary);
    margin-bottom: 24px;
}
.properties-card h3 {
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-32);
    color: var(--color-primary);
    margin-bottom: 16px;
}
.properties-card h4 {
    font-size: var(--font-size-22);
    font-family: var(--font-family-roboto);
    font-weight: var(--font-weight-500);
    color: var(--color-text);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
.properties-card h4 img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    opacity: 0.7;
}
.properties-card ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    padding-left: 0;
}
.properties-card ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: var(--font-size-18);
    line-height: 1;
    gap: 6px;
    margin-bottom: 0;
    color: var(--color-dark2);
}
.properties-card ul li img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    opacity: 0.73;
}
.pagination-nav {
    margin-top: 60px;
}
.pagination-nav ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.pagination-nav ul li {
    margin-bottom: 0;
}
.pagination-nav ul li a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-color: var(--azure-background);
    color: var(--color-text);
    font-size: var(--font-size-18);
    font-weight: var(--font-weight-400);
    line-height: 1;
}
.pagination-nav ul li a svg path {
    stroke: var(--color-text);
}
.pagination-nav ul li.active a {
    background-color: var(--color-primary);
    color: var(--color-white);
}
.inside-banner-section {
    position: relative;
    padding: 100px 0;
}
.inside-banner-section figure {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.inside-banner-section figure:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.72) 1%, rgba(109, 147, 229, 0.72) 100%);
}
.inside-banner-section figure img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.inside-banner-section h1 {
    font-size: var(--font-size-56);
}
.inside-banner-info {
    max-width: 1440px;
    width: 100%;
}
.search-section h1 {
    font-size: var(--font-size-56);
    letter-spacing: -2%;
    line-height: 1.4;
    margin-bottom: 36px;
}
.propperty-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 56px;
    margin-bottom: 48px;
}
.propperty-head h1 {
    margin-bottom: 0;
}
.propperty-head .property-type {
    margin-bottom: 0;
}
.property-details-wrap {
    padding-top: 72px;
}
.propperty-details-info {
    width: calc(100% - 588px - 60px);
    padding-top: 32px;
}
.property-details-section {
    background-color: var(--light-background);
}
.property-details-images-holder {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.property-details-images-wrap {
    display: grid;
    grid-template-columns: 58% calc(42% - 44px);
    gap: 44px;
}
.property-details-images-wrap figure,
.property-details-images-wrap a {
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
    display: none;
}
.property-details-images-wrap figure img,
.property-details-images-wrap a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.property-details-images-wrap figure:first-child,
.property-details-images-wrap a:first-child {
    grid-column: 1;
    grid-row: 1 / 3;
    display: block;
}
.property-details-images-wrap figure:nth-child(2),
.property-details-images-wrap a:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    display: block;
}
.property-details-images-wrap figure:nth-child(3),
.property-details-images-wrap a:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    display: block;
}
.property-details-images-wrap figure:first-child img,
.property-details-images-wrap a:first-child img {
    aspect-ratio: 4 / 3;
}
.property-details-images-wrap figure:nth-child(2) img,
.property-details-images-wrap figure:nth-child(3) img,
.property-details-images-wrap a:nth-child(2) img,
.property-details-images-wrap a:nth-child(3) img {
    aspect-ratio: 2 / 1;
}
.property-details-images-wrap figure:nth-child(3),
.property-details-images-wrap a:nth-child(3) {
    position: relative;
}
.property-details-images-wrap figure:nth-child(3):after,
.property-details-images-wrap a:nth-child(3):after {
    content: '+' attr(data-count);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-black-background);
    font-size: var(--font-size-40);
    font-family: var(--font-family-poppins);
    font-weight: var(--font-weight-500);
    color: var(--color-white);
    line-height: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.propperty-details-info .properties-card {
    background-color: transparent;
    border: none;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
}
.propperty-details-info .properties-card h4 {
    font-size: var(--font-size-36);
    font-weight: var(--font-weight-600);
    color: var(--color-black);
    margin-bottom: 40px;
}
.propperty-details-info .properties-card h4 img {
    opacity: 1;
    width: 38px;
    height: 38px;
    margin-right: 8px;
}
.propperty-details-info .properties-card ul li {
    font-size: var(--font-size-24);
}
.propperty-details-info .properties-card ul li img {
    width: 26px;
    height: 26px;
}
.propperty-details-info h5 {
    font-size: var(--font-size-32);
    font-weight: var(--font-weight-600);
    color: var(--color-black);
    margin-bottom: 36px;
    padding-top: 56px;
    margin-top: 56px;
    position: relative;
}
.propperty-details-info h5:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 100%;
    width: 288px;
    height: 2px;
    background-color: var(--color-text);
}
.propperty-details-info table {
    border-collapse: separate;
    border-spacing: 64px 24px;
    margin-left: -64px;
    margin-right: -64px;
}
.propperty-details-info table th {
    font-size: var(--font-size-28);
    font-weight: var(--font-weight-400);
    color: var(--color-black);
    text-align: left;
}
.propperty-details-info table td {
    font-size: var(--font-size-28);
    font-weight: var(--font-weight-500);
    border-collapse: separate;
    border-spacing: 24px;
}
.property-details-form {
    background-color: var(--color-white);
    padding: 56px 48px;
    width: 588px;
    box-shadow: 0px 4px 8px 0px var(--box-shadow-color);
    border-radius: 12px;
}
.property-details-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 60px;
}
.property-details-form .form-input input, 
.property-details-form .form-input select {
    padding: 0 20px;
}
.property-details-form .form-wrap {
    gap: 20px;
}
.property-details-form .form-input {
    width: calc(50% - 10px);
}
.property-details-form .submit-btn {
    margin-left: auto;
    margin-right: auto;
}

.sales-support-section .section-head {
    margin-left: 0;
    margin-right: 0;
}
.section-head {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto 60px;
}
.sales-support-wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 48px;
}
.sales-support-wrap:last-child {
    margin-bottom: 0;
}
.sales-support-block {
    width: 100%;
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    background-color: var(--color-light);
    border-radius: 12px;
    overflow: hidden;
}
.sales-support-block-wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    padding: 48px 56px;
    width: calc(100% - 268px);
}
.sales-support-block ul {
    padding-left: 0;
    list-style: none;
}
.sales-support-block ul li {
    padding-left: 32px;
    background-image: url(../images/list-style.png);
    background-position: left 8px;
    background-repeat: no-repeat;
    background-size: 16px;
}
.sales-support-block .icon {
    width: 184px;
    height: 184px;
    border-radius: 50%;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: var(--color-white);
    box-shadow: 0px 0px 10px 0px var(--box-shadow-color);
}
.sales-support-block .icon img {
    width: 120px;
}
.sales-support-block h3 {
    margin-bottom: 32px;
    color: var(--color-primary);
}
.sales-support-block p {
    font-size: var(--font-size-24);
}
.sales-support-block ul li {
    font-size: var(--font-size-24);
    text-align: left;
}
.sales-support-block .order {
    font-size: var(--font-size-100);
    font-family: var(--font-family-poppins);
    font-weight: var(--font-weight-600);
    color: var(--color-primary);
    width: 268px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: var(--light-navy-background);
    padding: 56px;
    position: relative;
}
.sales-support-block .order:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 0; 
    height: 0;
    border-style: solid;
    border-width: 49px 46px 49px 0px;
    border-color: transparent var(--color-light) transparent transparent;
    transform: rotate(0deg);
    transition: 300ms right;
}
.sales-support-block:hover .order:after {
    right: -20px;
}
.sales-support-block .content {
    width: calc(100% - 184px);
    padding-right: 24px;
}
.sales-support-block:nth-child(odd) {
    background-color: var(--light-blue-background);
}
.sales-support-block:nth-child(odd) .order {
    background-color: var(--blue-background);
    color: var(--color-white);
}
.sales-support-block:nth-child(odd) .order:after {
    border-color: transparent var(--light-blue-background) transparent transparent;
}
.commitment-section h2 {
    text-align: center;
}
.commitment-wrap {
    max-width: 1092px;
    width: 100%;
    margin: 0 auto;
}
.commitment-block {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--color-white);
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
}
.commitment-block:last-child {
    margin-bottom: 0;
}
.commitment-block .heading {
    background-color: var(--dark-blue-background);
    height: 146px;
    width: 448px;
    padding: 24px 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}
.commitment-block .heading:after {
    content: '';
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 0; 
    height: 0;
    border-style: solid;
    border-width: 73px 0px 73px 50px;
    border-color: transparent transparent transparent var(--dark-blue-background);
    transform: rotate(0deg);
}
.commitment-block .heading h3 {
    font-size: var(--font-size-36);
    font-weight: var(--font-weight-500);
    color: var(--color-white);
    line-height: 1.25;
    margin-bottom: 0;
}
.commitment-block .content {
    padding: 52px 56px 52px 106px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: calc(100% - 448px);
}
.contact-info-form-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 64px;
}
.contact-info-card {
    background: rgba(17, 58, 146, 0.89);
    border-radius: 12px;
    overflow: hidden;
    padding: 54px;
    width: calc(100% - 64px - 878px);
}
.contact-info-block {
    margin-bottom: 32px;
    background-color: var(--light-white-background);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 42px;
    padding: 20px 32px;
}
.contact-info-block:last-child {
    margin-bottom: 0;
}
.contact-info-block h3 {
    font-size: var(--font-size-32);
    color: var(--azure-background);
    margin-bottom: 14px;
}
.contact-info-block h4 {
    font-size: var(--font-size-28);
    color: var(--color-white);
    margin-bottom: 4px;
}
.contact-info-block h4 a {
    color: var(--color-white);
}
.contact-info-block p {
    font-size: var(--font-size-24);
    color: var(--light-navy-background);
}
.contact-info-block .icon img {
    width: 48px;
}
.contact-info-block .content {
    width: calc(100% - 48px - 42px);
}
.contact-form-card {
    width: 878px;
    padding: 64px;
    background: linear-gradient(360deg, var(--light-background) 0%, var(--light-navy-background) 100%);
    box-shadow: 0px 4px 14px 0px var(--box-shadow-color);
    border-radius: 12px;
    overflow: hidden;
}
.contact-form-card .submit-btn {
    margin: 24px auto 0;
}
.social-icons-section {
    text-align: center;
}
.social-icons-section ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 56px;
}
.social-icons-section ul li {
    margin-bottom: 0;
}
.social-icons-section ul li a {
    display: block;
}
.social-icons-section ul li a img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}
.form-check label br {
    display: none;
}


/* Property search filter */

.ts-control {
    padding: 8px 32px !important;
    border-radius: 8px;
    border: 1px solid var(--color-dark);
    box-shadow: 0px 0px 4px 0px var(--box-shadow-color);
    background-color: var(--light-background);
    height: 60px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-image: url(../images/Vector.png);
    background-position: calc(100% - 14px);
    background-repeat: no-repeat;
    background-size: 15px;
}
.tom-multiselect.dropdown-active .ts-control {
    background-image: none;
}
.ts-control > input {
    height: 20px;
}
.ts-control:not(.rtl) {
    padding-right: 32px !important;
}
.has-items .ts-control > input {
    text-indent: -9999px !important;
    position: absolute;
    width: 0;
    z-index: -1;
}
.ts-dropdown {
    padding: 24px 16px;
    background-color: var(--light-background);
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 0 10px #ccc;
    border: none;
}
.ts-dropdown .active {
    background-color: var(--color-white);
    border-radius: 6px;
}
.ts-dropdown-content {
    font-size: 19px;
    line-height: 1.2;
    max-height: 272px;
}
.ts-dropdown .option, .ts-dropdown .optgroup-header, .ts-dropdown .no-results, .ts-dropdown .create {
    padding: 8px 18px;
}
.ts-wrapper.multi .ts-control > div {
    font-size: var(--font-size-20);
    background-color: transparent;
    margin: 3px 3px 3px 0;
    overflow: hidden;
}
.focus .ts-control {
    overflow-y: auto;
}
.search-section .form-input.type, .search-section .form-input.price-values-show-wrap {
    position: relative;
    z-index: 2;
    border-radius: 8px;
    border: 1px solid var(--color-dark);
    box-shadow: 0px 0px 4px 0px var(--box-shadow-color);
    background-color: var(--light-background);
    height: 60px;
}
.search-section .input_type {
    height: 60px;
    line-height: 60px;
    font-size: var(--font-size-20);
    font-weight: var(--font-weight-400);
    color: var(--color-form-input);
    border-right: none;
    background-color: transparent;
    border-radius: 0;
    padding: 0 32px;
    display: block;
    width: calc(100% - 0px);
    text-align: left;
    overflow: hidden;
    transition: none;
    background-image: url(../images/Vector.png);
    background-position: calc(100% - 14px);
    background-repeat: no-repeat;
    background-size: 15px;
}
.search-section .input_type.isopen {
    background-image: none;
}
.search-section .typeUl {
    padding: 0 40px 0 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    bottom: 0;
    width: 100%;
    line-height: 60px;
    border-right: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    z-index: -1;
    background-color: var(--light-background);
    font-size: var(--font-size-20);
}
.search-section .form-input.type.checkedInput .input_type {
    text-indent: -9999px;
}
.search-section .filter_popup {
    display: none;
    box-shadow: 0 0 10px #ccc;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: #fff;
    z-index: 9;
}
.search-section .filter_popup.show {
    display: block;
}
.search-section .form-input .type_select {
    background-color: var(--light-background);
    padding: 24px;
}
.search-section .type_custom_show {
    position: relative;
    z-index: 0;
    padding-left: 40px;
    padding-right: 0 !important;
    cursor: pointer;
    display: block;
    width: auto !important;
    margin-bottom: 16px;
    font-size: 19px;
    line-height: 1.2;
}
.search-section .type_custom_show:last-child {
    margin-bottom: 0;
}
.search-section .form-input.type input {
    height: 60px;
    line-height: 60px;
    font-size: 17px !important;
    color: #000;
    border: 1px solid #7f7f7f;
    border-right: none;
    background-color: transparent;
    border-radius: 0;
    padding: 0 40px;
}
.type_select input.custom_checkbox {
    height: 20px;
    line-height: 20px;
    width: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
.type_custom_show input {
    display: none !important;
}
.search-section .form-input.type label {
    margin-bottom: 0;
    vertical-align: middle;
    line-height: 1;
}
.search-section .form-input.type em {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border: 2px solid var(--color-primary);
    background-color: transparent;
    display: block;
    border-radius: 0;
}
.search-section .form-input.type em:before {
    content: "";
    position: absolute;
    opacity: 0;
    left: 5px;
    top: 0;
    width: 7px;
    height: 13px;
    border: solid var(--color-white);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.search-section .form-input.type input:checked + label em {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}
.search-section .form-input.type input:checked + label em:before {
    opacity: 1;
}
.price_range {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px;
    background-color: var(--light-background);
}
.price_range .price-wrapper-field {
    display: flex;
    align-items: center;
    padding: 8px;
    gap: 12px;
    box-shadow: 0px 0px 4px 0px var(--box-shadow-color);
    background-color: var(--color-white);
    border-radius: 6px;
}
.price_range .price-input-wrapper {
    width: calc(50% - 8px);
}
.form-input.appartement .price-input-wrapper input {
    height: 38px;
    line-height: 40px;
    padding: 0 10px;
    width: 100%;
    text-align: center;
    border: none;
    outline: none;
    border-radius: 4px;
    box-shadow: none;
    background-color: transparent;
}
.price-input-wrapper span.red-text {
    font-size: var(--font-size-16);
    font-weight: var(--font-weight-500);
    color: var(--color-primary);
    display: block;
    margin-top: 16px;
}
.form-input.appartement .price_box_show {
    display: none;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 0px;
    margin-bottom: 0px;
    border-right: none;
    z-index: -1;
    list-style: none;
    background-color: var(--light-background);
}
.form-input.appartement .price_box_show li {
    height: 58px;
    line-height: 58px;
    font-size: var(--font-size-20);
    margin-bottom: 0;
}
.form-input.appartement.has-price .price_box_show {
    display: flex;
}
.form-input.appartement.has-price .input_type {
    text-indent: -9999px;
}
.form-error-msg {
  display: none;
  color: var(--error);
}

.property-details-form .form-input:has(input[type="checkbox"]) {
    width: 100%;
    display: flex;
    align-items: start;
    gap: 10px;
    position: relative;
}
 
.property-details-form .form-input label.form-check-label {
    flex: 1;
    font-family: var(--font-family-roboto);
    font-weight: var(--font-weight-400);
    font-size: var(--font-size-28);
    line-height: 1.4;
}
.property-details-form .form-input input[type="checkbox"] {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
    opacity: 0;
}
.property-details-form .form-input label.form-check-label a {
    color: inherit;
}
.property-details-form .submit-btn {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 19px;
}
.property-details-form .submit-btn button {
    width: 175px;
    height: 56px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 8px;
    font-family: Roboto;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
}
.property-details-form .form-input:has(input[type="checkbox"])::before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e6edf5;
    position: absolute;
    left: 0;
    top: 0;
    border: 1px solid var(--color-dark);
    box-shadow: 0px 0px 4px 0px var(--box-shadow-color);
}
.property-details-form .form-input:has(input[type="checkbox"])::after {
    content: "";
    width: 3px;
    height: 10px;
    border-right: 3px solid var(--color-white);
    border-bottom: 3px solid var(--color-white);
    transform: rotate(40deg) translate(-1px, -1px);
    opacity: 0;
    transition: 0.3s;
    left: 9px;
    top: 4px;
    position: absolute;
}
.property-details-form .form-input:has(input[type="checkbox"]:checked)::before {
    background-color: var(--color-primary);
}
.property-details-form .form-input:has(input[type="checkbox"]:checked)::after {
    opacity: 1;
}
@media screen and (max-width: 1440px) {
    .property-details-form .form-input label.form-check-label {
        font-size:22px;
    }
}
@media screen and (max-width: 991px) {
    .property-details-form .form-input label.form-check-label {
        font-size:16px;
    }
}