@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

footer {
    position: relative;
    bottom: 0px;
    width: 100%;
    background: #333;
    color: #808080;
}

.main-content2 {
    display: flex;
}

    .main-content2 .box {
        flex-basis: 50%;
        padding: 10px 0 10px 20px;
    }

.box h2 {
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
}

.box .content2 {
    margin: 20px 0 0 0;
    position: relative;
}

    .box .content2:before {
        position: absolute;
        content: '';
        top: -10px;
        height: 2px;
        width: 100%;
        background: #1a1a1a;
    }

    .box .content2:after {
        position: absolute;
        content: '';
        height: 2px;
        width: 15%;
        background: #13629b;
        top: -10px;
    }

.left .content2 .social {
    margin: 20px 0 0 0;
}

.left .content2 p {
    text-align: justify;
}


.left .content2 .social a {
    padding: 0 2px;
}

    .left .content2 .social a span {
        height: 80px;
        width: 80px;
        line-height: 80px;
        text-align: center;
        font-size: 18px;
        border-radius: 5px;
        transition: 0.3s;
    }

.left .content2 .social #facebook {
    color: #1877F2;
}

.left .content2 .social #twitter {
    color: #1DA1F2;
}

.left .content2 .social #instagram {
    color: #405DE6;
}

.left .content2 .social #youtube {
    color: #FF0000;
}

.left .content2 .social #tiktok {
    color: #25F4EE;
}

.left .content2 .social #linkedin {
    color: #0e76a8;
}

.left .content2 .social #google {
    color: #4285F4;
}

.center .content2 .fas {
    font-size: 1.4395rem;
    background: #1a1a1a;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    transition: 0.3s;
    cursor: pointer;
}

    .center .content2 .fas:hover {
        background: #13629b;
    }

.center .content2 .text {
    font-size: 1.0625rem;
    font-weight: 500;
    padding-left: 10px;
}

.center .content2 .place {
    margin: 10px 0;
    color: #575a7b;
}

    .center .content2 .place a {
        text-decoration: none;
        color: #575a7b;
    }

        .center .content2 .place a:hover{
            color: #13629b;
        }

.center .content2 .phone {
    margin: 10px 0;
    color: #575a7b;
}

    .center .content2 .phone a {
        text-decoration: none;
        color: #575a7b;
    }

        .center .content2 .phone a:hover {
            color: #13629b;
        }


.center .content2 .email {
    margin: 10px 0;
    color: #575a7b;
}

    .center .content2 .email a {
        text-decoration: none;
        color: #575a7b;
    }

        .center .content2 .email a:hover {
            color: #13629b;
        }


.right form .text {
    font-size: 1.0625rem;
    margin-bottom: 2px;
    color: #656565;
}

.right form .msg {
    margin-top: 10px;
}

.right form input, .right form .textarea {
    width: 100%;
    font-size: 1.0625rem;
    background: #151515;
    color: #b28080;
    padding-left: 10px;
    border: 1px solid #222222;
}

    .right form input:focus,
    .right form .textarea:focus {
        outline-color: #13629b;
    }

.right form input {
    height: 35px;
}

.right form .btn {
    margin-top: 10px;
}

    .right form .btn a {
        height: 40px;
        width: 100%;
        border: none;
        outline: none;
        background: #333;
        font-size: 1.0625rem;
        font-weight: 500;
        cursor: pointer;
        transition: .3s;
    }

        .right form .btn a:hover {
            background: #13629b;
        }

.bottom center {
    padding: 5px;
    font-size: 0.9375rem;
    background: #151515;
}

    .bottom center span {
        color: #656565;
    }

    .bottom center a {
        color: #13629b;
        text-decoration: none;
    }

        .bottom center a:hover {
            text-decoration: underline;
        }

/*Small screens*/

@media (max-width: 900px) {
    footer {
        position: relative;
        bottom: 0px;
    }

    .main-content2 {
        flex-wrap: wrap;
        flex-direction: column;
    }

        .main-content2 .box {
            width: 100%;
            flex-basis: 50%;
        }
}

/*Second footer*/

.second-footer_container{
    max-width: 1170px;
    margin: auto;
}

.second-footer_row{
    display: flex;
    flex-wrap: wrap;
}

ul {
    list-style: none;
}

.second-footer {
    background: #24262b;
    padding: 70px 0;
}

.second-footer_col{
    width: 25%;
    padding: 0 15px;
}

    .second-footer_col h4{
        font-size: 18px;
        color: #fff;
        text-transform: capitalize;
        margin-bottom: 35px;
        font-weight: 500;
        position: relative;
    }

        .second-footer_col h4::before{
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            background: #13629b;
            height: 2px;
            box-sizing: border-box;
            width: 50px;
        }

    .second-footer_col ul li:not(:last-child){
        margin-bottom: 10px;

    }

    .second-footer_col ul li a{
        font-size: 16px;
        text-transform: capitalize;
        color: #fff;
        text-decoration: none;
        font-weight: 300;
        color: #bbb;
        display: block;
        transition: all 0.3s ease;
    }

        .second-footer_col ul li a:hover{
            color: #13629b;
            padding-left: 8px;
        }

/*Small screens*/

@media(max-width: 991px){
    .second-footer_col{
        width: 50%;
        margin-bottom: 30px;
    }
}

@media(max-width: 574px){
    .second-footer_col{
        width: 100%;
    }
}


/*Selection color*/
::selection {
    color: #fff;
    background: #13629b;
}
