@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&family=Roboto:wght@200;300;400;500;700;900&display=swap');

body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #060f33;
    color: #fff;
}

.roboto-slab-normal {
    font-family: "Roboto Slab", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.roboto-slab-medium {
    font-family: "Roboto Slab", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.roboto-slab-bold {
    font-family: "Roboto Slab", serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}

.roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.roboto-medium {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.roboto-black {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.banner-bg {
    background-image: url('../images/banner/banner.png');
    background-position: top;
    background-repeat: no-repeat;
    height: 450px;
    /* margin-bottom: 150px; */
    filter: blur(5px);
}

.banner-section {
    position: relative;
}

.banner-section .content {
    color: white;
    font-weight: bold;
    position: absolute;
    top: calc(50% + 76px);
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80%;
    padding: 20px;
    text-align: center;
}


.banner-section .content .text h1 {
    font-size: 50px;
}

.banner-section .content .talk-btn {
    padding: 10px 15px;
    background: #fff;
    color: #000;
}

.banner-section .content p {
    font-size: 28px;
    color: #ffffff91;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #060f33ba;
    z-index: 100;
}

.navbar .navbar-brand img {
    height: 70px;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-size: 16px;
    padding: 10px 20px;
    margin: 0 5px;
}

.navbar-nav .nav-link:hover {
    background-color: #da5129;
    border-radius: 5px;
}

.navbar .get-quote {
    background-color: #4285f4;
    color: white !important;
    border-radius: 5px;
    font-size: 16px;
    padding: 10px 20px;
    cursor: pointer;
}

.navbar .get-quote:hover {
    background-color: #ff5733;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    /* color: white;
    padding: 14px 16px; */
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #071240;
    min-width: 260px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #da5129;
}

.dropdown:hover .dropdown-content {
    display: block !important;
}

.dropdown .active {
    background-color: #da5129 !important;
    border-radius: 5px;
}

.dropdown-content .selected {
    background-color: #da5129;
}


.px-100 {
    padding-left: 100px;
    padding-right: 100px;
    /* padding-top: 100px; */
}

.left-100 {
    left: 100px;
}

.blog-section {
    padding: 100px;
}

.blog-section .blog-content h1 {
    text-align: center;
    font-size: 45px;
    margin-bottom: 30px;
}

.blog-section .blog-content .blog-card {
    border: 2px solid #ffffff3d;
    position: relative;
    overflow: hidden;
    background-color: #0c112e;
    height: 100%;
}

.blog-section .blog-content .blog-card:hover {
    border: 2px solid #DA5129;
}

.blog-section .blog-content .blog-card h5 {
    font-size: 22px;
    margin-bottom: 20px;
    white-space: nowrap;       
    overflow: hidden;           
    text-overflow: ellipsis;   
    width: 100%;
}

.blog-section .blog-content .blog-card p {
    font-size: 18px;
    margin-bottom: 35px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;   
    -webkit-line-clamp: 5;
}

.blog-section .blog-content .blog-card .card-body {
    /* border: 1px solid #ffffff3d; */
    border-radius: 0px 0px 10px 10px;
}

.blog-section .blog-content .blog-image {
    width: 100%;
    /*height: 270px;*/
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.blog-section .blog-content .blog-card:hover img {
    transform: scale(1.05);
}

.blog-section .blog-content .readmore-link {
    bottom: 0;
    margin-bottom: 10px;
    position: absolute;
}

.blog-section .blog-content .readmore-link a {
    font-size: 18px;
    text-decoration: none;

}

.blog-section .blog-content h5,
p,
li {
    color: #fff;
}

.blog-section .blog-content h5,
p,
li {
    color: #fff;
}

.contact-form {
    padding: 40px;
    background-color: whitesmoke;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 10px;

    .form-select {
        font-size: 14px;
    }

    .form-control {
        font-size: 16px;
        padding: 10px;
    }

    label {
        display: block;
        line-height: 1;
        margin-bottom: 10px;
        font-weight: 400;
        text-transform: capitalize;
        font-size: 16px;
        color: #000;
        font-family: "Roboto Slab", serif;
    }

    h3 {
        font-size: 24px;
        padding: 30px 0px;
    }

    .heading-wrap {
        text-align: center;

        .title {
            font-size: 30px;
            color: #000;
            padding: 0;
        }

        .subtitle {
            font-size: 18px;
            color: #000;
            margin-bottom: 30px;
        }
    }

    .cancelBtn {
        border: 1px solid #b9b9b9c7;
        background-color: #808080;
        color: #fff;
        /* margin-right: 20px; */
        padding: 10px 0px;

    }

    .submitBtn {
        border: 1px solid #b9b9b9c7;
        background-color: #005de0;
        color: #fff;
        /* margin-left: 20px; */
        padding: 10px 0px;
    }

}

.solution-modal{
    .contact-form {
        padding: 40px;
        background-color: whitesmoke;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        border-radius: 10px;
    
        .form-select {
            font-size: 14px;
        }
    
        .form-control {
            font-size: 16px;
            padding: 10px;
        }
    
        label {
            display: block;
            line-height: 1;
            margin-bottom: 10px;
            font-weight: 400;
            text-transform: capitalize;
            font-size: 16px;
            color: #000;
            font-family: "Roboto Slab", serif;
        }
    
        h3 {
            font-size: 24px;
            padding: 30px 0px;
        }
    
        .heading-wrap {
            text-align: center;
            .title {
                font-size: 30px;
                color: #000;
                padding: 0;
            }
    
            .subtitle {
                font-size: 18px;
                color: #000;
                margin-bottom: 30px;
            }
        }
    
        .cancelBtn {
            border: 1px solid #b9b9b9c7;
            background-color: #808080;
            color: #fff;
            /* margin-right: 20px; */
            padding: 10px 0px;
    
        }
    
        .submitBtn {
            border: 1px solid #b9b9b9c7;
            background-color: #005de0;
            color: #fff;
            /* margin-left: 20px; */
            padding: 10px 0px;
        }
    
    }
}

.footer {
    background-color: #0c1a29;
    color: white;
    background-image: url('../images/banner/footer-bg.png');
    background-repeat: no-repeat;
    background-position: top;
}
.footer {
    .newsletter {
        padding-bottom: 10px;
        display: flex;

        h2 {
            color: #fff;
            font-size: 17px;
            font-weight: 500;
            padding-bottom: 5px;
        }

        input[type="email"] {
            border: 1px solid #ccc;
            background-color: #010c2a !important;
            border-radius: 0 !important;
            max-width: 60% !important;
        }

        input[type="submit"] {
            padding: 0px 15px;
            background-color: #010c2a;
            color: #fff;
            border: 1px solid;
            cursor: pointer;
            font-size: 25px;
        }

    }
}

.footer-logo {
    width: 250px;
}

.footer .footer-top {
    background-color: #DA5129;
    padding: 10px 0;
    text-align: center;
    position: relative;
    top: -30px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
}

.footer .footer-top h5 {
    font-size: 25px;
    /* font-weight: 400; */
    border-right: 2px solid #fff;
    line-height: 1;
}

.footer .footer-top p {
    padding: 0 20px;
    font-size: 20px;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.footer .footer-top button {
    color: #222222;
    background-color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
}

.footer .footer-top a:hover {
    background-color: #dddddd;
}

.footer .footer-contact .stat {
    display: flex;
    background: #060f33;
    border: 1px solid #707070;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    padding: 20px;
    min-width: 250px;
}

.footer .footer-contact .stat .title {
    font-size: 24px;
}

.footer .footer-contact .stat .fs-small {
    font-size: 14px;
    text-wrap: nowrap;
    opacity: 0.7;
}

.footer .footer-contact,
.footer .footer-info {
    padding: 20px 0;
}

.footer .footer-info h5 {
    /* font-size: 18px; */
    margin-bottom: 20px;
    font-weight: bold;
}

.footer .footer-info ul {
    list-style-type: none;
    padding-left: 0;
}

.footer .footer-info table {
    list-style: none;
    padding: 0;
    color: #ffffff87;
}
.footer .footer-info table td a{
    text-decoration: none;
    color: #ffffff87;
}
.footer .footer-info ul li {
    margin-bottom: 10px;
}

.footer .footer-info ul li a {
    color: #ffffff87;
    text-decoration: none;
}

.footer .footer-info table td a:hover{
    color: #4285f4;
    text-decoration: underline;
}

.footer .footer-info ul li a:hover {
    color: #4285f4;
    text-decoration: underline;
}

.footer .footer-bottom {
    /* text-align: center; */
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff87;
}

.footer .social-icons a {
    color: #ffffff87;
    margin: 10px 0;
    font-size: 20px;
}

.footer .social-icons {
    padding: 15px 0;
}

.footer .social-icons a:hover {
    color: #61dafb;
}

.footer .footer-bottom input {
    background: #060f33;
    max-width: 300px;
    color: #fff;
}

.footer .footer-bottom input::placeholder {
    color: #ffffff40;
    opacity: 1;
    /* Firefox */
}


/* Responsive CSS */
@media screen and (max-width: 320px) {
    .navbar-brand {
        margin-right: 0 !important;
    }
}

@media only screen and (max-width: 425px) {
    .px-100 {
        padding-left: 20px;
        padding-right: 20px;
    }
    .banner-section .content .text h1 {
        font-size: 34px;
    }
}

@media only screen and (max-width: 768px) {
    .corporate-value .border-right-2 {
        border-right: 0;
    }

    .leadership .leader-card .leader-info .text h5 {
        font-size: 18px;
    }

    .leadership .leader-card .leader-info .text label {
        font-size: 15px;
    }

    .leadership .leader-card .leader-info .links img {
        height: 20px;
    }
}

@media only screen and (max-width: 991px) {

    .mb-sm-60 {
        margin-bottom: 60px;
    }

    .footer .footer-top h5 {
        border-right: 0;
    }

    .footer .footer-contact .stat {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 1024px) {

    /* Testimonials section css start */
    .testimonials-section {
        .testimonials-content {
            padding: 100px 0px 150px 0px;
            margin: 0px 80px !important;

            .testimonials-title {
                text-align: center;
                margin-bottom: 30px;

                .test-title {
                    font-size: 45px;
                }

                .test-subtitle {
                    font-size: 20px;
                }
            }
        }
    }
}

@media only screen and (max-width: 1440px) {
    .px-100 {
        padding-left: 80px;
        padding-right: 80px;
    }

    /* Testimonials section css start */
    .testimonials-section {
        .testimonials-content {
            padding: 100px 0px 150px 0px;
            margin: 0px 80px;
        }
    }
}

.csdnwbtn{
    justify-self: right !important;
}