@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,400;0,500;0,600;1,500;1,600&family=Hind:wght@700&display=swap');

html {
  scroll-behavior: smooth;
}

html,body {
    font-size: 16px;
    overflow-x: hidden;
    font-family: 'Fira Sans', sans-serif;
    color: #535353;
    line-height: 30px;
    font-weight: 400;
}



.font-weight-medium {
    font-weight: 500;
}
.font-20 {
    font-size: 20px;
}
.font-22 {
    font-size: 22px;
}
.font-24 {
    font-size: 24px;
}
.color-pink {
    color: #ec008b;
}
.hover-pink:hover {
    color: #ec008b;
}
.bg-pink {
    background-color: #ec008b;
}

.color-blue {
    color: #00aef1;
}
.hover-blue:hover {
    color: #00aef1;
}
.bg-blue {
    background-color: #00aef1;
}

.color-white {
    color: #fff;
}
.hover-white:hover {
    color: #fff;
}
.bg-white {
    background-color: #fff;
}

.color-gray {
    color: #3b3b3b;
}
.hover-gray:hover {
    color: #3b3b3b;
}
.bg-gray {
    background-color: #3b3b3b;
}
.banner {
    height: 730px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.title-1,.title-2 {
    text-shadow: 1px 1px 10px rgba(0,0,0,0.6);
}
.title-1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 62px;
    color: #fef200;
}
.title-2 {
    font-size: 45px;
    font-weight: 700;
    color: #fff;
    line-height: 50px;
}

.btn-main {
    background-color: #ec008b;
    border: 1px solid #ec008b;
    color: white;
    border-radius: 22px;
    padding: 8px 25px;
    font-size: 18px;
}
.btn-main:hover {
    background-color: #fff;
    color: #ec008b;
}

.btn-main-2 {
    background-color: #00aef1;
    border: 1px solid #00aef1;
    color: white;
    border-radius: 22px;
    padding: 8px 25px;
    font-size: 18px;
}
.btn-main-2:hover {
    background-color: #fff;
    color: #00aef1;
}

.why-wrapper {
    border: 4px solid #00aef1;
}


.why {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; 
}

.contact {
    list-style: none;
    padding-left: 0;
}

.contact li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.contact li i {
    color: #00aef1;
    left: 0;
    top: 4px;
    position: absolute;
}

.form-group label {
    position: absolute;
    bottom: 0;
    padding-left: 10px;
        font-size: 14px;
    line-height: normal;
}

.form-group.textarea label {
    bottom: auto;
    top: 10px;
}

.btn-wrapper {
    position: relative;
    display: inline-block;
    transition: 0.3s all;
}


.btn-wrapper:before {
    content: '';
    width: 100%;
    position: absolute;
    height: 100%;
    top: 8px;
    left: 8px;
    background-color: white;
}

.btn-submit {
    z-index: 9;
    position: relative;
    border-radius: 0;
}

.btn {
    white-space: break-spaces;
}

.form-feedback {
    margin-top: 40px;
    border: 4px solid #88ca88;
    padding: 15px;
    font-size: 18px;
}

.spinner {
    margin-left: 10px;
    font-size: 20px;
}

header {
    position: absolute;
    width: 100%;
    top: 0;
}

@media (max-width: 991px) {
    .title-1 {
        font-size: 45px;
        line-height: 50px;
    }
    .title-2 {
        font-size: 36px;
        line-height: 40px;
    }
}

@media (max-width: 575px ) {
    .banner {
        height: 600px;
    }   
        
}