/*CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

body {
    font-family: "Red Hat Display", sans-serif;
    overflow-x: hidden;
    background-color:#FFFFFF;
    font-weight:600;
    font-size:15px;
}

a, a:active, a:hover, button:hover, .btn:hover {
    text-decoration:none;
    transition: all 0.4s ease 0s;
}

a:focus, button:focus {
    outline: none;
    text-decoration:none;
}

button, .btn {
    text-transform: none;
    outline: none;
    transition: all 0.4s ease 0s;
}

:focus-visible {
    outline: none;
}

.form-control:focus {
    box-shadow: none;
}

textarea {
    resize: none;
}

::-webkit-input-placeholder { /* Chrome, Edge, and Safari */
    color: #FFFFFF !important;
    opacity: 0.8 !important;
}

::-moz-placeholder { /* Firefox */
    color: #FFFFFF !important;
    opacity: 0.8 !important;
}

:-ms-input-placeholder { /* Internet Explorer */
    color: #FFFFFF !important;
    opacity: 0.8 !important;
}

.cusotm-container {
    max-width: 80%;
    width: 80%;
}

.cusotm-container-2 {
    max-width: 70%;
    width: 70%;
}

.main-heading {
    color: #252B42;
    font-weight: 800;
    font-size: 35px;
    margin-bottom: 20px;
}

/* Header Styles Start */

header .navbar {
    background-color: #CFAF5A;
    padding: 20px 0;
}

header .navbar .nav-link {
    color: #FFFFFF !important;
    padding-right: 20px !important;
    padding-left: 20px !important;
}

header .navbar .nav-link:hover, header .navbar .active a, header .navbar .active:focus a, header .navbar .navbar-nav .active
{
    color: #252B42 !important;
}

header .navbar .header-btn {
    color: #252B42;
    background-color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
}

header .navbar .header-btn:hover {
    color: #FFFFFF;
    background-color: #252B42;
}

header.header-fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 997;
}

/* Home Banner Styles Start */

.home-banner {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    position: relative;
    padding-top: 60px;
}

.home-banner .clip-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 64%, 0% 100%);
    background-color: #CFAF5A;
}

.home-banner h1 {
    font-weight: 800;
    margin: 40px 0 20px 0;
}

.home-banner img {
    position: relative;
    z-index: 9;
    object-fit: contain;
}

/* Home Features Styles Start */

.home-features {
    padding: 60px 0 40px 0;
    text-align: center;
}

.home-features .flex-box-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.home-features .box {
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    transition: all ease-in-out 0.4s;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 30px;
}

.home-features .box:hover {
    transform: translateY(-10px);
}

.home-features img {
    width: 80px;
}

.home-features h6 {
    font-size: 18px;
    font-weight: 800;
    margin: 15px 0 12px 0;
    color: #252B42;
}

.home-features p {
    color: #737373;
    margin: 0;
}

/* Home About CSS Start */

.home-about {
    padding: 50px 0 80px 0;
}

.home-about p {
    color: #737373;
}

/* Home Goals CSS Start */

.home-goals {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.home-goals .clip-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(100% 0, 0 0, 0 64%, 100% 100%);
    background-color: #CFAF5A;
}

.home-goals p {
    color: #FFFFFF;
}

/* Home CTA CSS Start */

.home-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0;
    color: #737373;
}

.home-cta h2 {
    font-weight: 800;
    color: #252B42;
    margin-bottom: 10px;
    font-size: 40px;
}

.home-cta a {
    background-color: #EC5C2E;
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 5px;
}

.home-cta a:hover {
    background-color: #252B42;
}

/* Popup CSS Start */

.demomodal .modal-dialog {
    max-width: 75%;
}

.demomodal .close {
    position: absolute;
    right: 4px;
    top: 8px;
    z-index: 9;
    background-image: none;
    width: auto;
    height: auto;
}

.demomodal .col-md-3 {
    padding-right: 0;
}

.demomodal .col-md-3 img {
    flex-grow: 1;
    width: 100%;
    height: auto;
    max-width: 100%;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    border-left: 2px solid #FFFFFF;
    border-top: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
}

.demomodal .col-md-9 {
    padding: 30px;
    color: #FFFFFF;
    background-color: #292929;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    position: relative;
    overflow-x: inherit;
    border-right: 2px solid #FFFFFF;
    border-top: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
}

.demomodal .col-md-3, .demomodal .col-md-9 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.demomodal .modal-content {
    background-color: transparent;
    border: none;
}

.demomodal .form-group {
    margin-bottom: 25px;
}

.demomodal .form-control {
    background: transparent;
    color: #FFFFFF;
    border: none;
    border-bottom: 1px solid #717171;
    border-radius: unset;
    padding: 10px;
    font-weight: 600;
}

.demomodal .submit-btn {
    float: right;
    background-color: #CFAF5A;
    color: #252B42;
    padding: 12px 45px;
    border-radius: 5px;
    border: unset;
    /* margin-top: 20px; */
    font-weight: 800;
    cursor: pointer;
}

.demomodal .submit-btn:hover {
    background-color: #FFFFFF;
    color: #252B42;
}

.demomodal .loader_div {
    display: none;
    position: absolute;
    right: 55px;
    bottom: -38px;
}

.demomodal label.error {
    color: #fc4545;
    font-size: 13px;
    margin: 0;
}

.demomodal .flag-container {
    position: relative;
    margin-top: 15px !important;
    display: inline-table;
    width: 100%;
}

.demomodal .flag-container input {
    padding: 10px 0 20px 80px !important;
    background: url('./inc/img/uae-flag.png') !important;
    height: 25px;
    background-repeat: no-repeat !important;
}

.demomodal .flag-container .country-code {
    position: absolute;
    top: 0;
    padding: 0 10px;
    color: #fff;
    left: 25px;
}

/* Footer CSS Start */

.footer {
    display: flex;
    justify-content: space-between;
    padding: 60px 0 40px 0;
}

.footer h4 {
    color: #252B42;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer .footer-menu ul {
    padding: 0;
    list-style: none;
    line-height: 2.2;
    font-weight: 600;
}

.footer .footer-menu li, .footer .footer-menu li a {
    color: #737373;

}

.footer .footer-menu li a:hover {
    color: #252B42;
}

.footer-social-links ul {
    padding: 0;
    list-style: none;
    display: flex;
    gap: 15px;
    padding-top: 7px;
}

.copyrights {
    background-color: #CFAF5A;
    padding: 20px 0;
    color: #FFFFFF;
    text-align: center;
    font-size: 14px;
}

.copyrights a {
    color: #FFFFFF;
}

.copyrights a:hover {
    color: #252B42;
}

/* Responsive CSS Start */

@media (min-width: 1366px) { 

    body {  /* Font-size - 15px*/
        font-size: 1.098vw;
    }

    h1 {
        font-size: 2.928vw;
    }
    
    header .navbar {
        padding: 1.464vw 0;
    }

    header .navbar .header-btn {
        padding: 0.732vw 1.464vw;
    }

    header .navbar .nav-link {
        padding-right: 1.464vw !important;
        padding-left: 1.464vw !important;
    }

    .home-banner {
        padding-top: 4.392vw;
    }

    .home-banner h1 {
        margin: 2.928vw 0 1.464vw 0;
    }

    .home-features {
        padding: 4.392vw 0 2.928vw 0;
    }

    .home-features .flex-box-3 {
        gap: 1.464vw;
    }

    .home-features .box {
        padding: 2.928vw 2.196vw;
        border-radius: 0.732vw;
        margin-bottom: 2.196vw;
    }

    .home-features h6 {
        font-size: 1.318vw;
        margin: 1.098vw 0 0.878vw 0;
    }

    .main-heading {
        font-size: 2.562vw;
        margin-bottom: 1.464vw;
    }

    .home-about {
        padding: 3.66vw 0 5.857vw 0;
    }

    .home-goals {
        padding: 7.321vw 0;
    }

    .home-cta {
        padding: 3.66vw 0;
    }
    
    .home-cta h2 {
        margin-bottom: 0.732vw;
        font-size: 2.928vw;
    }
    
    .home-cta a {
        padding: 0.878vw 1.83vw;
        border-radius: 0.366vw;
    }

    .footer {
        padding: 4.392vw 0 2.928vw 0;
    }
    
    .footer h4 {
        margin-bottom: 1.098vw;
    }

    .footer-social-links ul {
        gap: 1.098vw;
        padding-top: 0.512vw;
    }
    
    .copyrights {
        padding: 1.464vw 1.098vw;
        font-size: 1.025vw;
    }

    .demomodal .close {
        right: 0.293vw;
        top: 0.586vw;
    }
    
    .demomodal .col-md-3 img {
        border-top-left-radius: 1.83vw;
        border-bottom-left-radius: 1.83vw;
        border-left: 0.146vw solid #FFFFFF;
        border-top: 0.146vw solid #FFFFFF;
        border-bottom: 0.146vw solid #FFFFFF;
    }
    
    .demomodal .col-md-9 {
        padding: 2.196vw;
        border-top-right-radius: 1.83vw;
        border-bottom-right-radius: 1.83vw;
        border-right: 0.146vw solid #FFFFFF;
        border-top: 0.146vw solid #FFFFFF;
        border-bottom: 0.146vw solid #FFFFFF;
    }
    
    .demomodal .form-group {
        margin-bottom: 1.83vw;
    }
    
    .demomodal .form-control {
        padding: 0.732vw;
        font-size: 1.171vw;
    }
    
    .demomodal .submit-btn {
        padding: 0.878vw 3.294vw;
        border-radius: 0.366vw;
        /* margin-top: 1.464vw; */
    }
    
    .demomodal label.error {
        font-size: 0.952vw;
    }

    .demomodal label.error {
        font-size: 0.952vw;
    }

    .demomodal .flag-container {
        margin-top: 1.098vw !important;
    }

    .demomodal .flag-container input {
        padding: 0.732vw 0 1.464vw 5.857vw !important;
        height: 1.83vw;
    }

    .demomodal .flag-container .country-code {
        padding: 0 0.732vw;
        left: 1.83vw;
    }

}

@media only screen and (max-width: 991px) {
    
    .cusotm-container-2 {
        max-width: 80%;
        width: 80%;
    }

    .home-cta { 
        margin: 0 auto;
        display: block;
        text-align: center;
    }

    .home-cta a {
        display: block;
        width: max-content;
        margin: 0 auto;
    }

    .home-cta p {
        margin-bottom: 20px;
    }

}

@media only screen and (max-width: 767px) {
    
    .cusotm-container, .cusotm-container-2{
        max-width: 100%;
        width: 100%;
    }

    header .navbar {
        padding-left: 15px;
        padding-right: 15px;
    }

    .home-features .flex-box-3 {
        display: unset;
    }

    header #navbarText {
        background: #000000;
        padding: 20px;
        text-align: center;
    }

    header .navbar .header-btn {
        margin-top: 15px;
    }

    .home-banner h1 {
        margin-top: 0;
    }

    .home-banner p {
        margin-bottom: 30px;
    }

    .home-goals .row {
        flex-direction: column-reverse;
    }

    .home-goals img {
        margin-top: 30px;
    }

    .footer {
        display: grid;
        padding-top: 30px;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer .footer-logo {
        width: 137px;
    }

    .demomodal .col-md-3 {
        display: none;
    }

    .demomodal .col-md-9 {
        border-radius: 25px;
        border: 2px solid #FFFFFF;
    }

}

@media only screen and (max-width: 576px) {

    .home-banner {
        height: 90vh;
    }

    .home-features {
        padding-bottom: 0;
    }

    .home-about {
        padding: 20px 0 60px 0;
    }

    .home-goals {
        padding-top: 50px;
    }

    .footer {
        padding-top: 0;
    }

    .copyrights {
        font-size: 13px;
    }

    .demomodal .modal-dialog {
        max-width: 100%;
        padding: 0 20px;
    }

    .demomodal .col-md-9 {
        padding: 50px 20px 30px 20px;
    }

    .demomodal .modal-dialog {
        margin-top: 50px;
    }

    .demomodal .col-md-9 {
        border-radius: 10px;
        border: 1px solid #FFFFFF;
    }

    .demomodal .form-control {
        font-size: 15px;
    }
    
}
/* Responsive CSS End */