:root {
    --maroon: #852014;
    --maroon-highlight: #731a10;
    --peach: #f2e8e7;
    --offwhite: #e2dcda;
    --grey: #353535;
    --white: #ffffff;
    --black: #414141;
    --shadow: rgba(000, 000, 000, 0.4);
    --font-15: 15px;

    /* clients marquee */
    --marquee-width: calc(100vw - 500px);
    --marquee-height: 200px;
    --marquee-elements-displayed: 5;
    --marquee-element-width: 350px;
    --marquee-animation-duration: calc(var(--marquee-elements) * 8s);

}

@font-face {
    font-family: 'Moderat';
    src: url('fonts/Moderat-Regular.woff2') format('woff2');
}
  

body {
    /* font-family: "Quicksand", sans-serif !important; */
    font-family: 'Moderat', sans-serif !important;
    font-optical-sizing: auto !important;
    font-weight: 200 !important;
    font-style: normal !important;
    font-variation-settings: "slnt" 0 !important;
    color: var(--black) !important;
    opacity: unset;

    .body-wrapper {
        margin: 80px auto 0;
        position: relative;
    }
}

.navbar {
    background-color: var(--white);
    padding: 0;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(190,190,190,1);
    -moz-box-shadow: 0px 0px 20px 0px rgba(190,190,190,1);
    box-shadow: 0px 0px 20px 0px rgba(190,190,190,1);
    .navbar-wrapper {
        width: calc(100vw - 20px);
        height: 80px;
        .navbar-nav {
            margin-top: 18px;
        }
        .nav-link {
            padding-inline: 20px !important;
            letter-spacing: 1px;    
            font-size: var(--font-15);
            color: var(--black) !important;
            font-weight: 400 !important;

            &.selected-tab {
                background: var(--peach);
                border-radius: 5px;
            }
        }
    }
}

.action-btn {
    background-color: var(--maroon);
    border: none;
    color: var(--white);
    padding: 18px 30px;
    text-align: center;
    display: inline-block;
    font-size: var(--font-15);
    margin: 17px 0 0;
    cursor: pointer;
    letter-spacing: 1px;
    height: 45px;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    &:hover:enabled {
        background-color: var(--maroon-highlight);
    }
    &:disabled {
        cursor: not-allowed;
        opacity: 0.5;
    }
    
    &.floating {
        background-color: var(--peach);
        color: var(--black);
        border: 2px solid var(--offwhite);
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 10;
        &:hover {
            background-color: var(--offwhite);
        }
        &.is-hidden {
            display: none;
        }
    }
}

h1 {
    text-align: center;
    font-size: 3rem !important;
}
h2 {
}
h3 {
    padding-bottom: 10px;
}
h4 {    
}
h5 {
}
h6 {
}

section {
    margin: 50px auto;
    padding: 110px 0 0;
}

.slim-width {
    width: calc(100vw - 500px);
}

.home {
    padding: 0 !important;
    .bg-img {
        position: relative;
        img {
            width: 100%;
            height: calc(100vh - 80px);
            object-fit: cover;
            object-position: center top;
            min-height: 700px;
        }
        .shadow {
            position: absolute;
            top: 0;
            left: 0;
            background-color: var(--shadow);
            width: 100%;
            height: 100%;
            color: var(--white);
            text-align: center;
            .shadow-text {
                margin: 280px auto 0;
                h2 {
                    font-weight: 500 !important;
                    line-height: 1.5;
                }
            }
        }
    }
}

.stats {
    display: flex;
    align-items: center;
    height: calc(100vh - 350px);
    min-height: 500px;

    .stats-content {
        width: 45%;
        margin: 10px;
    }
    .stats-wrapper {
        width: 55%;
        min-width: 600px;
    }
    .stats-parent {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: right;
        .stats-child {
            background-color: var(--maroon);
            width: 280px;
            height: 200px;
            border-radius: 20px;
            margin: 10px;
            padding: 50px 20px;
            color: var(--white);
            text-align: center;
            display: flex;
            justify-content: center;
            flex-direction: column;
        }
    }
}

@keyframes scrolling {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements))); }
}
.clients {
    background-color: var(--white);
    
    .clients-content {
        display: flex;
        justify-content: center;
        align-items: center;
        .marquee {
            width: var(--marquee-width);
            height: var(--marquee-height);
            overflow: hidden;
            position: relative;
        }
        .marquee:before, .marquee:after {
            position: absolute;
            top: 0;
            width: 10rem;
            height: 100%;
            content: "";
            z-index: 1;
        }
        .marquee:before {
            left: 0;
            background: linear-gradient(to right, #fff 0%, transparent 100%);
        }
        .marquee:after {
            right: 0;
            background: linear-gradient(to left, #fff 0%, transparent 100%);
        }
        .marquee-content {
            list-style: none;
            height: 100%;
            display: flex;
            animation: scrolling var(--marquee-animation-duration) linear infinite;
        }
        .marquee-content:hover {
            animation-play-state: paused;
        }
        .marquee-content li {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
            width: var(--marquee-element-width);
            max-height: 100%;
            white-space: nowrap;
        }

        .marquee-content li img {
            height: 100%;
            border: none !important;
            background-size: contain;
        }
    }
}

.industries {
    img {
        object-fit: cover;
        width: inherit;
    }
    h3, h4 {
        margin-inline: 60px !important;
        text-align: justify !important;
    }
}

.services {
    .services-wrapper {
        border: 1px solid var(--white);
        padding: 50px;
        &:first-child {
            padding-top: 0 !important;
        }
        &:last-child {
            padding-bottom: 0 !important;
        }
        .services-left, .services-right {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-weight: 300;
            height: 350px;
            margin: auto;
            .services-content {
                margin-inline: 50px;
                &:nth-child(1) {
                    margin-left: 0 !important;
                }
            }
            img {
                width: 400px;
                height: 300px;
                object-fit: cover;
                border-radius: 20px;
            }
        }

        .services-parent {
            margin: 10px auto 25px;
            background-color: var(--peach);
            color: var(--grey);
            height: 100%;
            padding: 30px;
            display: flex;
            align-items: start;
            border-radius: 20px;

            .services-child {
                width: 100%;
                position: relative;
                text-align: center;
                box-sizing: border-box;
                border-radius: 5px;
                display: flex;
                flex-direction: column;
        
                .icon-wrapper {
                    border-radius: 50%;
                    height: 100px;
                    width: 100px;
                    background: var(--white);
                    border: 1px solid var(--maroon);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin: 0 auto 20px;
                    
                    img {
                        height: 50px;
                        width: 50px;
                    }
                }

                h5 {
                    font-weight: 600;
                }

                p {
                    font-size: 17px;
                    font-weight: 500;
                }
            }
        }
    }
}

.training {
    div {
        text-align: center;
        margin-top: 80px;
        img {
            margin: 0 auto;
        }
    }
    h3, h4 {
        margin-inline: 60px !important;
        text-align: justify !important;
    }

}

.about {
    border-radius: 20px;
    margin-top: 140px;
    padding: 60px 0 0;
    .about-bg {
        background-color: var(--peach);
        padding: 50px 0 0;
    }
    .about-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        font-weight: 300;
        margin: 0 auto;
        &:first-child {
            margin-top: 0 !important;
        }
    }
    .about-child {
        height: 320px;
        width: 250px;
        margin: 0 0 60px;
        position: relative;
        text-align: center;
        box-sizing: border-box;
        border-radius: 5px;

        .icon-wrapper {
            border-radius: 50%;
            height: 320px;
            width: 250px;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 10px;
            
            &:hover {
                img {
                    border-radius: 10px;
                    height: 320px;
                    object-fit: contain;
                }
                .title {
                    color: var(--white);
                    background-color: black;
                    border-bottom-left-radius: 10px;
                    border-bottom-right-radius: 10px;

                }
            }
            
            img {
                height: 250px;
                width: 250px;
                margin-bottom: 5px;
                border-radius: 50%;
                object-fit: cover;
                object-position: center top;
            }
            
            .title {
                position: absolute;
                bottom: 0;
                margin-bottom: 0 !important;
                height: 80px;
                width: 100%;
                padding: 10px 0;

                h5 {
                    margin: 5px 0 !important;
                }
                div {
                    font-weight: 400;
                }
            }
        }
    }
}

/* .contact {
    .contact-wrapper {
        min-height: 500px;
        text-align: center;
        padding: 50px;
        margin: 0 auto;
        background-color: #f2e8e778;

        .contact-info {
            display: flex;
            justify-content: space-around;
            align-items: center;
            margin: 0 0 80px;
            
            div {
                border: 1px solid var(--maroon);
                height: 80px;
                width: 350px;
                text-align: center;
                padding: 12px 0;
                border-radius: 8px;
                background-color: white;
            }
        }

        .action-btn {
            font-size: 20px;
            padding: 8px 20px;
        }
    }
} */

.contact {
    height: 1010px;
    position: relative;
    margin-bottom: 0 !important;
    .contact-bg {
        width: calc(100vw - 1015px);
        position: absolute;
        bottom: 420px;
        padding-left: 150px;
    }
    .contact-form {
        box-shadow: 0 0 30px rgba(36, 50, 66, 0.14);
        width: 750px;
        height: 740px;
        position: absolute;
        right: 250px;
        border: none;
        padding: 50px 60px;
        background-color: white;
        border-radius: 8px;
        .contact-info {
            display: flex;
            justify-content: space-around;
            align-items: center;
            margin: 0 0 80px;
            
            div {
                border: 1px solid var(--maroon);
                height: 80px;
                width: 350px;
                text-align: center;
                padding: 12px 0;
                border-radius: 8px;
                background-color: white;
            }
        }
    }
    form {
        margin: 0 auto;
        .form-div {
            text-align: left;
            margin: 20px 0;
            height: 95px;
            &:nth-child(4) {
                height: unset !important;
            }
            input, textarea {
                border: 1px solid var(--black);
                border-radius: 10px;
                width: 100%;
                height: 45px;
                padding: 0 20px;
            }
            textarea {
                height: auto;
                padding: 10px 20px;
            }
        }
        .disclaimer {
            font-size: 12px;
            margin-top: 20px;
        }

        h6 {
            font-size: 1.1rem;
        }
    }
    &::before {
        content: " ";
        position: absolute;
        bottom: 0px;
        background-color: var(--peach);
        width: 100%;
        height: 400px;
        z-index: -1;
    }
}

.error-msg {
    margin: 10px !important;
    font-size: 13px;
    color: var(--maroon);
}

.modal {
    .modal-dialog {
        margin-right: 100px !important;
        .modal-content {
            border-radius: 8px;
            background: var(--peach);
            text-align: center;
            .modal-header {
                border-bottom: 0 !important;
                justify-content: right;
                .btn-close {
                    padding: 0;
                    margin: 10px 10px 0 0;
                    background-image: url('assets/close.svg');
                }
            }
            .modal-body {
                padding-top: 0;
                padding-bottom: 50px;
                span {
                    color: var(--maroon)
                }
            }
            form {
                margin: 0 auto;
                div {
                    text-align: left;
                    margin: 20px;
                    input, textarea {
                        border: none;
                        border-radius: 10px;
                        width: 100%;
                        height: 45px;
                        padding: 0 20px;
                    }
                    textarea {
                        height: auto;
                        padding: 10px 20px;
                    }
                }
                .disclaimer {
                    font-size: 12px;
                    margin-top: 20px;
                }

                h6 {
                    font-size: 1.1rem;
                }
            }
            .action-btn {
                margin: 30px auto 0;
                background-color: var(--maroon);
                color: var(--white);
                font-size: 1.25rem;
                padding: 7px;
                letter-spacing: 0;
            }

        }
    }
}

.modal.contact-modal {
    .modal-dialog {
        max-width: 1000px !important;
        margin-right: auto !important;
        .modal-content {
            .contact-form {
                width: 700px;
            }
            .action-btn {
                width: 400px;
            }
        }
    }
}

.modal.profile-modal {
    .modal-dialog {
        max-width: 700px !important;
        .modal-content {
            .company-profile-form {
                width: 600px;
            }
            .action-btn {
                width: 350px;
            }
        }
    }
}

.modal.callback-modal {
    .modal-dialog {
        max-width: 450px !important;
        .modal-content {
            .callback-form {
                width: 400px;
            }
            .action-btn {
                width: 250px;
            }
        }
    }
}

.footer {
    background-color: var(--maroon);
    width: 100%;
    height: 100px;
    
    .footer-wrapper {
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        height: inherit;
        .footer-section {
            display: flex;
            align-items: center;
            padding: 50px;
            text-align: center;
            color: var(--white);
            a {
                padding-inline: 40px;
                text-decoration: none;
                color: var(--white);
                font-weight: 400;
            }
        }
    }
}

.privacy-policy {
    margin: 0 auto 100px;
    width: 1200px;
    font-family: sans-serif;
    .privacy-content {
        margin-left: 30px;
        font-weight: 300;
        span {
            text-decoration: underline;
        }
    }
}


@media only screen and (max-width: 1440px) {
    .slim-width {
        width: calc(100vw - 200px);
    }

    .contact {
        .contact-wrapper {    
            .contact-info {
                div {
                    width: 250px;
                }
            }
        }
    }

    .contact {
        .contact-bg {
            width: calc(100vw - 715px);
        }

        .contact-form {
            right: 100px;
            width: 650px;
        }
    }
    

    h3 {
        font-size: 1.6rem !important;
    }

    h4 {
        font-weight: 200 !important;
        font-size: 1.25rem !important;
    }

    h5 {
        font-size: 1.15rem !important;
    }

    .stats-child {
        width: 260px !important;
        height: 180px !important;
    }

    .clients {
        .clients-content {
            .marquee {
                width: calc(100vw - 300px);
            }
        }
    }
}
