* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    overflow: hidden;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}
@media (max-width: 915px) {
    body {
        overflow-y: auto;
    }
}

h1,
h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}

.bg {
    position: absolute;
    inset: 0;
    min-height: 100vh;
	height:100%;
    width: 100vw;
    object-fit: cover;
    z-index: 1;
}
.bg-mob{
	display:none;
	position: absolute;
    inset: 0;
    min-height: 100vh;
	height:100%;
    width: 100vw;
    object-fit: cover;
    z-index: 1;
}

@media (max-width: 479px) {
.bg {
    display:none;
}
	.bg-mob{
		display:block;
	}
}


.content {
    display: flex;
    align-items: center;
    height: 100vh;
    position: relative;
}
.content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.logo-holder {
    position: absolute;
    z-index: 3;
    display: flex;
    top: 5%;
    left: 5%;
}

@media (max-width: 1271px) {
    .logo-holder {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        bottom: 50%;
        transform: translateY(50%);
    }
}
@media (max-width: 1070px) {
    .logo-holder {
        gap: 30px;
    }
}

.logo-holder img.logo-img-1 {
    width: 200px;
    height: 100px;
    object-fit: contain;
}
.logo-holder img.logo-img-2 {
    width: 200px;
    height: 100px;
    object-fit: contain;
}

@media (max-width: 1070px) {
    .logo-holder img.logo-img-1 {
        width: 100px;
        height: 100px;
    }
    .logo-holder img.logo-img-2 {
        width: 150px;
        height: 100px;
    }
}

.content__wrapper{
	 position: absolute;
	 right: 50%;
	transform:translateX(50%);
	 z-index: 3;
	
		 height:100vh;
	display: flex;
        flex-direction: column;
        justify-content: space-around;
	 align-items: center;
	max-width:600px;
}

@media (max-width: 479px) {
	.content__wrapper{
		position:relative;
		right: 0;
		    padding: 10px;
		gap:20px;
		height:100%;
		transform:translateX(0);
	}
	
}
.form-holder {
   
   
    display: flex;
    flex-direction: column;
    padding:20px 30px;
    border-radius: 24px;
    background: linear-gradient(106deg, #000 50%, #0a0605 50%);
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.25);
    max-width: 600px;
    /* left: 60%; */
    /* max-width: 800px; */
   
}
.title {
    font-size: 37px;
    color: #fff;
    font-style: normal;
    font-weight: 700;
    /* line-height: normal; */
    text-align: center;
	line-height: 1.3;
}
.new-title{
	font-size: 18px;
    color: #fff;
    font-style: normal;
    font-weight: 500;
    /* line-height: normal; */
    text-align: center;
	line-height: 1.3;
	margin-bottom:10px;
}
.text-holder {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.subtitle {
    color: #9b664d;
    font-size: 22px;
    border-top: 1px solid #9b664d;
    border-bottom: 1px solid #9b664d;
    max-width: fit-content;
    font-weight: 600;
    margin: 10px 0px;
    padding: 10px 0px;
    line-height: 1.2;
}
.text {
    font-size: 20px;
    color: #adadad;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 10px;
}
.new-text{
	font-size: 18px;
    color: #fff;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 10px;
	text-align:center;
}
.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.input-holder {
    position: relative;
}
.input-holder svg {
    position: absolute;
    right: 15px;
    top: 14px;
}
.input {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--gra2, #4a4a4a);
    background: #0e0e0e;
    box-shadow: 0px 0px 8px 0px rgba(255, 255, 255, 0.03);
    padding: 15px;
    color: #fff;
    transition: all 0.4s ease;
    font-size: 14px;
    font-weight: 500;
}
.input:hover {
    border-color: #9b664d;
}
.input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
input[type="text"],
input[type="email"],
input[type="tel"] {
    outline: none;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
    border-color: #9b664d;
}
.check {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 5px 0px;
}
button {
    padding: 18px 15px;
    display: flex;
    padding: 18px 15px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid var(--dsd, #4a4a4a);
    background: #0e0e0e;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: all 0.4s ease;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
}
button:hover {
    background-color: #9b664d;
    color: #000;
}

input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

input[type="checkbox"]:checked {
    background-color: #9b664d;
    border-color: #9b664d;
}

input[type="checkbox"]:checked::before {
    content: "✔";
    color: white;
    font-size: 12px;
    position: absolute;
    left: 3px;
    top: 1px;
}

@media (max-width: 915px) {
    .content {
        justify-content: center;
        width: 100vw;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        padding: 20px;
        min-height: 100vh;
        height: 100%;
    }

    .logo-holder {
        position: relative;
        z-index: 3;
        display: flex;
        gap: 20px;
        /* flex-direction: column; */
        align-items: center;
        justify-content: center;
        width: 100vw;
        left: 0;
        top: 0;
        transform: translateY(0);
        flex-direction: row;
        margin-bottom: 20px;
    }

    .logo-holder img.logo-img-1 {
        width: 150px;
        height: 45px;
        object-fit: contain;
    }
    .logo-holder img.logo-img-2 {
        width: 150px;
        height: 45px;
        object-fit: contain;
    }

    .form-holder {
        padding: 24px 20px;
        text-align: center;
        margin:0;
        position: relative;
        /* max-width: 100%; */
        width: 100%;
        right: auto;
    }
    .title {
        font-size: 25px;
    }
    .subtitle {
        margin-top: 25px;
        margin-bottom: 25px;
        padding-top: 20px;
        padding-bottom: 20px;
        font-size: 16px;
        max-width: 100%;
        width: 100%;
    }
    .text {
        font-size: 16px;
        padding-bottom: 24px;
        max-width: 233px;
    }
    .check {
        font-size: 12px;
        text-align: left;
    }

    input[type="checkbox"] {
        appearance: none;
        width: 23px;
        height: 20px;
        border: 2px solid #fff;
        border-radius: 4px;
        cursor: pointer;
        position: relative;
    }
    input[type="checkbox"]:checked::before {
        content: "✔";
        color: white;
        font-size: 12px;
        position: absolute;
        left: 1px;
        top: 1px;
    }
}

/* Dropdown Styles */
.dropdown-holder {
    position: relative;
}

.dropdown {
    position: relative;
    width: 100%;
}

.dropdown-selected {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--gra2, #4a4a4a);
    background: #0e0e0e;
    box-shadow: 0px 0px 8px 0px rgba(255, 255, 255, 0.03);
    padding: 15px;
    color: #fff;
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown-selected:hover {
    border-color: #9b664d;
}

.dropdown-selected.active {
    border-color: #9b664d;
}

.dropdown-placeholder {
    /* color: hwb(0 100% 0%); */
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.dropdown-placeholder.active {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}

.dropdown-arrow {
    position: absolute;
    right: 15px;
    top: 14px;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0e0e0e;
    border: 1px solid #4a4a4a;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-item {
    padding: 15px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #2a2a2a;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #1a1a1a;
    color: #9b664d;
}

.dropdown-item.selected {
    background-color: #9b664d;
    color: #000;
}

.gl-ax-wp-logo {
    display: none !important;
}

#city {
    /* opacity: vi; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}

.iti__selected-dial-code {
    font-family: var(--fontGilroy);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #fff;
}



