/* My First Font */
@font-face {
    font-family: 'myfirstfont-Bold';
    font-style: Normal;
    font-display: swap;
    src: url(../../Fonts/GothamBold.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-Normal';
    font-style: Normal;
    font-display: swap;
    src: url(../../Fonts/GothamBook.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-Medium';
    font-style: Normal;
    font-display: swap;
    src: url(../../Fonts/GothamMedium.ttf) format('truetype');
}

@font-face {
    font-family: 'mySecondfont-Normal';
    font-style: Normal;
    font-display: swap;
    src: url(../../Fonts/Boston-Skyline-Sans-Clean.otf) format('truetype');
}



html {
    min-height: 100%;
    scroll-behavior: smooth;
    font-size: 16px;
}
    

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

:root {
    --main-color: #ea1f27;
    --main-sub-color: #353535;
    --txt-color: 1e1e1e;
    --black-color: #000;
    --white-color: #fff;
    --gray-color: #E8E8E8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    outline: none;
}

body {
    font-family: var(--bodyFont);
    background: #fff;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

html,
body {
    overflow-x: hidden;
}

p,
ul,
ol,
address,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

a,
a:active,
a:focus,
button,
button:focus,
button:active,
.btn,
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn.focus:active,
.btn.active.focus {
    outline: none;
    outline: 0;
}

p, li {
    font-family: 'myfirstfont-Medium';
    font-size: 15px;
    line-height: 25px;
    color: var(--txt-color);
}

a:hover,
a {
    text-decoration: none;
}

li {
    list-style: none;
}


/* Form Page CSS */

.form-sec {
    margin: 0 auto;
    width: 100%;
    max-width: 767px;
    height: 100%;
    /* max-height: 1364px; */
    padding: 25px;
    overflow: hidden;
}

.form-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.form-content img.main-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.form-box {
    position: relative;
    z-index: 2;
    text-align: center;
}

.form-main-con {
    margin-bottom: 50px;
}

.form-main-con form input[type="text"], 
.form-main-con form input[type="text"]:focus, 
.form-main-con form input[type="email"], 
.form-main-con form input[type="email"]:focus, 
.form-main-con form input[type="tel"], 
.form-main-con form input[type="tel"]:focus, 
.form-main-con form select, 
.form-main-con form select:focus, 
.form-main-con form textarea, 
.form-main-con form textarea:focus {
    padding: 5px 0;
    color: #1e1e1e;
    border-color: transparent;
    border: none;
    font-size: 16px;
    font-weight: 500;
    background: transparent;
    border-bottom: 1px solid var(--main-color);
    border-radius: 0;
    font-family: 'myfirstfont-Medium';
    outline: none;
    width: 100%;
    box-shadow: none;
}

.form-main-con form .main-btn {
    padding: 12px 30px;
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    color: #fff;
    position: relative;
    font-family: 'myfirstfont-Medium';
    font-size: 16px;
    text-transform: uppercase;
    transition: all ease-in-out 0.4s;
    cursor: pointer;
    border: none;
    outline: none;
    margin: 0 auto;
}

.form-main-con form .main-btn span {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-main-con form .main-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: var(--black-color);
    z-index: 0;
    transition: all ease-in-out 0.4s;
}

.form-main-con form .main-btn:hover::before {
    width: 100%;
}

.al-img {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
}

.al-img::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 60%;
    background: #1e1e1e;
}

.form-main-con form p {
    text-align: left;
    color: #57595b;
}

.al-img img {
    width: 32%;
}

.form-logo img {
    width: 75%;
    padding: 110px 0 30px;
}

.gis-txt h1 {
    color: var(--main-color);
    text-align: center;
    padding-bottom: 10px;
    font-family: 'myFirstfont-Bold';
    font-size: 25px;
    line-height: 35px;
}

.gis-txt {
    margin-bottom: 40px;
    position: relative;
}

.gis-txt::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background-color: #b3b3b3;
}

.al-partner p {
    margin-bottom: 10px;
}

.al-partner {
    margin-bottom: 40px;
}

.shape1 {
    position: absolute;
    top: 8%;
    right: -5%;
    width: 20%;
}

.shape2 {
    position: absolute;
    bottom: 8%;
    left: -5%;
    width: 20%;
}

.shape3 {
    position: absolute;
    bottom: 30%;
    right: -10%;
    width: 20%;
}

.quote1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 20%;
    z-index: -1;
}

.quote2 {
    position: absolute;
    right: 0;
    top: 40px;
    width: 20%;
    z-index: -1;
}

.forrm-txt p {
    margin-bottom: 20px;
}

header, .form-main-con {
    padding: 0 30px;
}

footer {
    background: var(--main-sub-color);
    padding: 15px 30px;
}

footer p {
    color: #fff;
    font-size: 13px;
    line-height: 23px;
}


/* Thank You Page CSS */

.thankyou-txt p {
    margin-bottom: 15px;
}

.thankyou-txt h2 {
    color: var(--main-sub-color);
    text-align: center;
    padding-bottom: 10px;
    font-family: 'myFirstfont-Bold';
    font-size: 25px;
    line-height: 35px;
}

.thankyou-txt {
    margin-bottom: 30px;
}

.contact-dtls a {
    color: var(--main-color);
}