﻿/*Site font*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");

body {
    font-family: "Poppins", sans-serif !important;
}

/*Page Loader*/
#loaderContainer {
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100;
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    margin: 20% auto 0;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*Provide sufficient contrast against white background*/
a {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

/* Sticky footer styles*/
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

.footer {
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}


/* Index Page */
.headline {
    left: 130px;
}

.clipped {
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 0% 100%);
}

@media screen and (max-width: 650px) {
    .headline {
        left: 20px;
    }

    .clipped {
        clip-path: none;
        max-height: 300px !important;
    }
}

.servicesCurve {
    background: #000000;
    background-position: top right;
    background-repeat: no-repeat;
    background-size: contain;
    padding-bottom: 110px;
    background-attachment: fixed;
    min-height: 460px !important;
    display: block;
}

.topLeftRounded {
    position: absolute;
    fill: #fff;
    margin-top: -100px;
    z-index: 0;
}

.card-title {
    text-align: center;
}

.card-footer {
    text-align: center;
}

.card-img-top {
    height: 30%; 
    border-radius: 0;
}

li,
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sec-title {
    position: relative;
    padding-bottom: 40px;
}

    .sec-title .title {
        position: relative;
        color: #eb2d2e;
        font-size: 18px;
        font-weight: 700;
        padding-right: 50px;
        margin-bottom: 15px;
        display: inline-block;
        text-transform: capitalize;
    }

        .sec-title .title:before {
            position: absolute;
            content: "";
            right: 0;
            bottom: 7px;
            width: 40px;
            height: 1px;
            background-color: #bbb;
        }

    .sec-title h2 {
        position: relative;
        color: #252525;
        font-size: 36px;
        font-weight: 700;
        line-height: 1.5em;
        display: block;
    }

    .sec-title.light h2 {
        color: #fff;
    }

/* Contact Page Style */
.contact-page-section {
    position: relative;
    padding-bottom: 110px;
}

    .contact-page-section .inner-container {
        position: relative;
        z-index: 1;
        background-color: #000000;
        box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.1);
    }

    .contact-page-section .form-column {
        position: relative;
        padding: 0 0 0 15px;
    }

        .contact-page-section .form-column .inner-column {
            position: relative;
            padding: 60px 45px 30px;
            background-color: #e9ecef;
        }

    .contact-page-section .info-column {
        position: relative;
    }

        .contact-page-section .info-column .inner-column {
            position: relative;
            padding: 60px 25px;
        }

        .contact-page-section .info-column h2 {
            position: relative;
            color: #fff;
            font-size: 30px;
            font-weight: 700;
            line-height: 1.4em;
            margin-bottom: 45px;
        }

        .contact-page-section .info-column .list-info {
            position: relative;
            margin-bottom: 60px;
        }

            .contact-page-section .info-column .list-info li {
                position: relative;
                margin-bottom: 25px;
                font-size: 18px;
                color: #fff;
                line-height: 1.8em;
                padding-left: 45px;
            }

                .contact-page-section .info-column .list-info li:last-child {
                    margin-bottom: 0;
                }

                .contact-page-section .info-column .list-info li i {
                    position: absolute;
                    left: 0;
                    top: 8px;
                    color: #fff;
                    font-size: 30px;
                }

/* Site button Style */
.site-button {
    background-color: #af0004;
    border-radius: 30px;
}
    .site-button:hover {
        background-color: #780000;
        box-shadow: 2px;
    }


.grow {
    display: inline-block;
    transition-duration: 0.3s;
    transition-property: transform;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

    .grow:hover {
        transform: scale(1.1);
    }


/* Contact form Style */
.contact-form {
    position: relative;
}

    .contact-form .form-group {
        position: relative;
        margin-bottom: 20px;
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form textarea {
        position: relative;
        display: block;
        width: 100%;
        height: 60px;
        color: #222;
        font-size: 14px;
        line-height: 38px;
        padding: 10px 30px;
        border: 1px solid #ddd;
        background-color: #fff;
        transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
    }

        .contact-form input[type="text"]:focus,
        .contact-form input[type="email"]:focus,
        .contact-form textarea:focus {
            border-color: #eb2d2e;
        }

    .contact-form textarea {
        height: 250px;
        resize: none;
    }

    .contact-form .theme-btn {
        font-size: 16px;
        font-weight: 700;
        margin-top: 10px;
        text-transform: capitalize;
        padding: 16px 39px;
        border: 2px solid #eb2d2e;
        font-family: Arimo, sans-serif;
        background: #eb2d2e;
        display: inline-block;
        position: relative;
        line-height: 24px;
        cursor: pointer;
        color: #fff;
    }

        .contact-form .theme-btn:hover {
            color: #eb2d2e;
            border-color: #eb2d2e;
            background: 0 0;
        }

    .contact-form input.error,
    .contact-form select.error,
    .contact-form textarea.error {
        border-color: red !important;
    }

    .contact-form label.error {
        display: block;
        line-height: 24px;
        padding: 5px 0 0;
        margin: 0;
        text-transform: uppercase;
        font-size: 12px;
        color: red;
        font-weight: 500;
    }

.social-icon-four {
    position: relative;
}

    .social-icon-four li {
        position: relative;
        margin-right: 18px;
        display: inline-block;
    }

        .social-icon-four li.follow {
            color: #fff;
            font-weight: 600;
            font-size: 24px;
            display: block;
            margin-bottom: 20px;
        }

        .social-icon-four li a {
            position: relative;
            font-size: 20px;
            color: #fff;
            -webkit-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

            .social-icon-four li a:hover {
                color: #222;
            }

/* Animated Gradient Background */
.gradiantbg {
    background-image: linear-gradient(to right, #3ab5b0 0%, #3d99be 31%, #56317a 100%);
    background-size: 600% 600%;
    -webkit-animation: AnimationName 26s ease infinite;
    animation: AnimationName 26s ease infinite;
}

@-webkit-keyframes AnimationName {
    0% {
        background-position: 94% 0%
    }

    50% {
        background-position: 7% 100%
    }

    100% {
        background-position: 94% 0%
    }
}

@keyframes AnimationName {
    0% {
        background-position: 94% 0%
    }

    50% {
        background-position: 7% 100%
    }

    100% {
        background-position: 94% 0%
    }
}

.clientcontainer {
    overflow: hidden;
}

    .clientcontainer .slider {
        animation: slidein 30s linear infinite;
        white-space: nowrap;
    }

        .clientcontainer .slider .logos {
            display: inline-block;
            margin: 0px 0;
        }

            .clientcontainer .slider .logos .fab {
                width: calc(100% / 5);
                animation: fade-in 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
            }

@keyframes slidein {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
