﻿/*=======================================================================
    Banner Area
=========================================================================*/

section.banner {
    padding: 0;
    overflow: hidden;
    height: 100vh;
    max-height: 600px !important;
}

ul.banner-wrap {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    margin-bottom: 105px
}

li.banner-img {
    min-height: 600px;
}

    li.banner-img img {
        width: 100%;
        height: 100vh;
        max-height: 600px !important;
        object-fit: cover;
    }

li.banner-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translate(-30%, -50%);
    /* transform: translateY(-50%); */
    max-width: 600px;
    padding: 0 15px;
    text-align: left;
    margin: auto
}

    li.banner-content h2 {
        font-family: "Laila",serif;
        font-size: 32px;
        font-weight: normal;
        line-height: 1.2;
        margin-bottom: 15px;
    }



li.banner-content p {
    color: #fff;
    font-weight: 300;
    font-size: 20px;
    font-size: 16px;
    line-height: 160%;
    font-size: 15px;
}


ul.banner-wrap::after {
    right: -40px;
    content: '';
    width: 566px;
    height: 660px;
    position: absolute;
    bottom: -10px;
    background: url(/media/images/bg-1.svg) no-repeat;
    background-position: bottom;
    pointer-events: none;
    background-size: 100%
}

@media (max-width: 1198px) {
    section.banner,
    li.banner-img img {
        max-height: 600px !important;
    }

    li.banner-img {
        min-height: 600px;
    }

    li.banner-content {
        transform: translate(-20%, -95%) scale(.9) !important;
    }

    ul.banner-wrap::after {
        transform: translate(8%, 8%) scale(.8) !important;
    }
}

@media (max-width: 991px) {
    section.banner,
    li.banner-img img {
        max-height: 550px !important;
    }

    li.banner-img {
        min-height: 550px;
    }

    li.banner-content {
        transform: translate(-15%, -85%) scale(.75) !important;
    }

    ul.banner-wrap::after {
        transform: translate(15%, 15%) scale(.70) !important;
    }
}

@media (max-width: 767px) {
    section.banner,
    li.banner-img img {
        max-height: 450px !important;
    }

    li.banner-img {
        min-height: 450px;
    }

    li.banner-content {
        transform: translate(-5%, -70%) scale(.70) !important;
    }

    ul.banner-wrap::after {
        transform: translate(20%, 20%) scale(.55) !important;
    }
}


@media (max-width: 575px) {
    section.banner,
    li.banner-img img {
        max-height: 350px !important;
    }

    li.banner-img {
        min-height: 350px;
    }

    li.banner-content {
        transform: translate(-10%, -65%) scale(.65) !important;
    }

    ul.banner-wrap::after {
        transform: translate(25%, 25%) scale(.45) !important;
    }
}



/*=======================================================================
     Service Area
=========================================================================*/
.service-box1 {
    border-right: 1px solid #aaaaaa;
    padding: 30px 30px 15px 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    background-color: rgba(0, 33, 71, 0.8);
}

@media (min-width: 992px) and (max-width: 1199px) {
    .service-box1 {
        padding: 30px 25px 15px;
    }
}

@media only screen and (max-width: 767px) {
    .service-box1 {
        margin-bottom: 5px;
    }
}

@media only screen and (max-width: 991px) {
    .service-box1 {
        background-color: #0c2e8a;
        padding: 20px 20px 15px;
    }
}

.service-box1:last-child {
    border-right: none;
}

.service-box1 .service-box-content {
    -webkit-box-flex: 3;
    -moz-flex: 3;
    -webkit-flex: 3;
    flex: 3;
}

    .service-box1 .service-box-content h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

@media (min-width: 992px) and (max-width: 1199px) {
    .service-box1 .service-box-content h3 {
        font-size: 20px;
    }
}

.service-box1 .service-box-content h3 a {
    color: #ffffff;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.service-box1 .service-box-content p {
    color: #ffffff;
    font-weight: 400;
}

.service-box1 .service-box-icon {
    text-align: center;
    padding-top: 10px;
    -webkit-box-flex: 1;
    -moz-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}

    .service-box1 .service-box-icon i {
        color: #ffb606;
        font-size: 36px;
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -ms-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }

.service-box1:hover .service-box-content h3 a {
    color: #ffb606;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.service-box1:hover .service-box-content p {
    color: #ffffff;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.service-box1:hover .service-box-icon i {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.service-box2 {
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .service-box2 {
        margin-bottom: 30px;
    }
}

.service-box2 .service-box-icon {
    margin-bottom: 18px;
}

    .service-box2 .service-box-icon a {
        border-radius: 50%;
        height: 90px;
        width: 90px;
        display: block;
        background: #eeeeee;
        line-height: 100px;
        margin: 0 auto;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -ms-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }

        .service-box2 .service-box-icon a i {
            color: #0c2e8a;
            font-size: 36px;
        }

.service-box2 h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 500;
}

    .service-box2 h3 a {
        color: #0c2e8a;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -ms-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }

        .service-box2 h3 a:hover {
            color: #ffb606;
        }

.service-box2 p {
    width: 80%;
    margin: 0 auto;
}

@media only screen and (max-width: 991px) {
    .service-box2 p {
        width: 100%;
    }
}

.service-box2:hover .service-box-icon a {
    background: #ffb606;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.service-box3 {
    text-align: center;
}

@media only screen and (max-width: 991px) {
    .service-box3 {
        margin-bottom: 45px;
    }
}

@media only screen and (max-width: 479px) {
    .service-box3 {
        margin-bottom: 30px;
    }
}

.service-box3 .service-box-icon {
    margin-bottom: 18px;
}

    .service-box3 .service-box-icon a i {
        color: #0c2e8a;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -ms-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
        font-size: 40px;
    }

.service-box3 h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
}

    .service-box3 h3 a {
        color: #0c2e8a;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -ms-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }

        .service-box3 h3 a:hover {
            color: #ffb606;
        }

.service-box3:hover .service-box-icon a i {
    color: #ffb606;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.service-box4 {
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .service-box4 {
        margin-bottom: 30px;
    }
}

.service-box4 .service-box-icon {
    margin-bottom: 18px;
}

    .service-box4 .service-box-icon a {
        border-radius: 50%;
        height: 90px;
        width: 90px;
        display: block;
        background: #ffffff;
        line-height: 100px;
        margin: 0 auto;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -ms-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }

        .service-box4 .service-box-icon a i {
            color: #0c2e8a;
            font-size: 36px;
        }

.service-box4 h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 500;
}

    .service-box4 h3 a {
        color: #0c2e8a;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -ms-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }

        .service-box4 h3 a:hover {
            color: #ffb606;
        }

.service-box4 p {
    width: 80%;
    margin: 0 auto;
}

@media only screen and (max-width: 991px) {
    .service-box4 p {
        width: 100%;
    }
}

.service-box4:hover .service-box-icon a {
    background: #ffb606;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.service1-area {
    position: relative;
}

    .service1-area .service1-inner-area {
        position: absolute;
        top: -153px;
        left: 0;
        right: 0;
        margin: 0 auto;
        z-index: 9;
    }

@media only screen and (max-width: 1199px) {
    .service1-area .service1-inner-area {
        top: -150px;
    }
}

@media only screen and (max-width: 991px) {
    .service1-area .service1-inner-area {
        position: inherit;
        top: 0;
    }
}

.service1-area .service1-wrapper {
    margin-right: 0;
    margin-left: 0;
}

.service2-area {
    padding: 157px 0 74px;
    position: relative;
    background: var(--secondary-label-light-color);
}

@media (min-width: 992px) and (max-width: 1199px) {
    .service2-area {
        padding: 147px 0 63px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .service2-area {
        padding: 137px 0 27px;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .service2-area {
        padding: 0 0 19px;
    }
}

@media (min-width: 321px) and (max-width: 479px) {
    .service2-area {
        padding: 0 0 23px;
    }
}

@media only screen and (max-width: 320px) {
    .service2-area {
        padding: 0 0 13px;
    }
}

.search-area {
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 9;
}

@media only screen and (max-width: 767px) {
    .search-area {
        position: relative;
        top: 15px;
        margin-bottom: 80px;
    }
}

@media (min-width: 321px) and (max-width: 479px) {
    .search-area {
        margin-bottom: 70px;
    }
}

@media only screen and (max-width: 320px) {
    .search-area {
        margin-bottom: 60px;
    }
}

.search-area .search-inner {
    margin-left: 0;
    margin-right: 0;
    padding: 35px 20px;
    background: #0c2e8a;
    -webkit-box-shadow: 0px 5px 11px -5px rgba(0, 0, 0, 0.89);
    -moz-box-shadow: 0px 5px 11px -5px rgba(0, 0, 0, 0.89);
    box-shadow: 0px 5px 11px -5px rgba(0, 0, 0, 0.89);
}

    .search-area .search-inner .search-title {
        margin-top: 10px;
        text-align: left;
    }

@media only screen and (max-width: 767px) {
    .search-area .search-inner .search-title {
        text-align: center;
        margin-bottom: 10px;
    }
}

.search-area .search-inner .search-title span {
    color: #ffffff;
    font-size: 18px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .search-area .search-inner .search-title span {
        font-size: 16px;
    }
}

.search-area .search-inner .search-title span i {
    margin-right: 10px;
    color: #ffffff;
}

@media only screen and (max-width: 767px) {
    .search-area .search-inner .search-input {
        margin-bottom: 10px;
    }
}

.search-area .search-inner .search-input input {
    height: 52px;
    width: 100%;
    padding: 15px;
}

.search-area .search-inner .search-submit {
    text-align: right;
}

@media only screen and (max-width: 767px) {
    .search-area .search-inner .search-submit {
        text-align: center;
    }
}

/*=======================================================================
     About Area
=========================================================================*/

section.about-area {
    background: #fff;
}

.section-tittle h2 {
    font-size: 32px;
    font-weight: 700;
}

    .section-tittle h2 span {
        font-weight: 900;
    }

.features-icon .svg-icon.svg-icon-1 svg {
    height: 2.5rem !important;
    width: 2.5rem !important;
}

.features-caption h3 {
    font-size: 24px;
    font-weight: 600;
}

.single-features {
    display: flex
}

    .single-features .features-icon {
        position: relative;
        top: 8px
    }

        .single-features .features-icon img {
            display: block
        }

    .single-features .features-caption {
        padding-left: 19px
    }

        .single-features .features-caption h3 {
            /*font-family: "Concert One",cursive;*/
            font-size: 25px;
            line-height: 1.2;
            margin-bottom: 8px;
            font-weight: 400
        }

        .single-features .features-caption p {
            font-size: 16px;
            line-height: 1.8;
            color: #4255A4
        }

@media (max-width: 575px) {
    .about-caption {
        margin-bottom: 35px
    }
}






/*=======================================================================
     Brand Area
=========================================================================*/
.brand-area {
    padding: 70px 0;
    text-align: center;
}

    .brand-area .brand-area-box a img {
        width: 100%;
        margin: 0 auto;
    }

    .brand-area .owl-nav {
        margin-top: 0;
    }





/*=======================================================================
    Footer Area
=========================================================================*/
footer {
    position: relative;
    background: var(--primary-dark);
    padding-top: 30px
}




    footer > .container:not(:last-child) {
        border-bottom: 1px solid #666
    }

    footer > .container:first-child {
        padding-bottom: 50px
    }

    footer > .container:nth-child(1) {
        padding-top: 60px;
        padding-bottom: 70px
    }

    .footer-main *, footer a {
        color: #fff !important;
    }

        footer a:hover {
            color: #fff !important;
        }

.footer-main p {
    font-size: 16px;
    line-height: 250%;
    margin-top: 15px
}

.footer-head {
    font-size: 23px;
    position: relative;
    font-weight: normal;
    padding-bottom: 15px;
    margin-bottom: 20px
}

    .footer-head::after {
        content: '';
        width: 36px;
        height: 2px;
        background: var(--secondary);
        position: absolute;
        left: 0;
        bottom: 0
    }

.footer-main ul {
    padding: 0;
    margin: 0;
    list-style: none
}

    .footer-main ul li {
        font-size: 16px;
        margin-top: 15px
    }

.footer-copyright a {
    color: #fff
}

    .footer-main a:hover, .footer-copyright a:hover {
        color: var(--secondary) !important;
    }

.footer-main .col-sm-3:nth-child(4) {
    max-width: 12%;
    -ms-flex: 0 0 12%;
    flex: 0 0 12%
}

.footer-main .col-sm-3:nth-child(3) {
    max-width: 20%;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%
}

.footer-main .col-sm-3:nth-child(2) {
    max-width: 22%;
    -ms-flex: 0 0 22%;
    flex: 0 0 22%
}

.footer-main .col-sm-3:first-child {
    max-width: 46%;
    -ms-flex: 0 0 46%;
    flex: 0 0 46%;
    padding-right: 13%
}

.footer-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0
}

    .footer-copyright ul.social-list {
        list-style: none;
        display: flex;
        padding: 0;
        margin: 0
    }

ul.social-list li a {
    display: block;
    width: 40px;
    height: 40px;
    background: url(../images/sprite.png) 0 -532px
}

.footer-copyright p {
    color: #fff;
    margin: 10px 0;
    font-size: 16px;
    font-weight: 300
}

@media (max-width: 575px) {
    .footer-main .col-sm-3:first-child {
        max-width: 42%;
        -ms-flex: 0 0 42%;
        flex: 0 0 42%;
        padding-right: 2%;
    }

    .footer-main .col-sm-3:nth-child(2) {
        max-width: 10%;
        -ms-flex: 0 0 10%;
        flex: 0 0 10%;
    }
}
