* {
    font-family: poppins;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    overflow-x: hidden;
    background: #0f0f0f !important;
}

.rnContainer {
    z-index: 5;
    position: fixed;
    bottom: 100px;
}

.fbContainer,
.igContainer,
.ttContainer {

    color: #fff;
    cursor: pointer;
    width: 60px;
    height: 60px
}

.fbContainer,
.ttContainer {
    background-color: rgb(24, 24, 24);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.igContainer {
    background-color: rgb(180, 180, 180);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.fbContainer:hover {
    background-color: rgb(48, 108, 185);
    transition: all ease-in-out .5s;
}

.igContainer:hover {
    background-color: rgb(221, 74, 111);
    transition: all ease-in-out .5s;
}

.ttContainer:hover {
    background-color: rgb(0, 0, 0);
    transition: all ease-in-out .5s;
}

.navigationContainer {
    width: 100%;
    height: 80px;
}

.navigationSubContainer {
    width: 60%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.companyLogo {
    width: 80px;
}

.linkContainer {
    display: flex;
    align-items: center;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0 !important;
}

li {
    display: inline;
    margin: 0 30px 0 0;
}

li a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    transition: 0.3s all ease;
}

li a:hover {
    text-decoration: none;
    color: #c9c9c9;
    font-size: 15px;
}

.aboutBanner {
    margin: 80px 0px;
    height: 40vh;

    background-image: url(../img/custom1.png);
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}

.aboutBannerContainer {
    width: 50%;
    margin: auto;

    display: flex;
    align-items: center;
}

.aboutBannerContainer .left {
    width: 35%;
    font-size: 50px;
    font-weight: 700;
    color: #fff;
}

.line {
    content: "";
    height: 5px;
    background-color: rgb(172, 20, 20);
    width: 50px;
    margin: 50px 0 0 0;
}

.aboutBannerContainer .right {
    width: 65%;
    font-size: 15px;
    color: #adadad;
}

.footerMainDiv {
    padding: 100px 0 100px 0;
}

.footerContainer {
    width: 80%;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: center;
}

.f1 {
    width: 300px;
    color: #adadad;
    font-size: 15px;
    margin: 5px;

    height: 200px;
}

.f1 img {
    width: 80px;
}

.f2 {
    width: 300px;
    margin: 5px;

    display: flex;
    flex-direction: column;
    height: 200px;
}

.f2 h1 {
    font-size: 25px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 30px;
}

.f2 p {
    font-size: 15px;
    color: #adadad;
}

.f2 a {
    text-decoration: none;
    margin-bottom: 10px;
    color: #adadad;
}

.f2 a:hover {
    text-decoration: none;
    margin-bottom: 10px;
    color: #790f0f;
}

.socmedContainer {
    display: flex;
    align-items: center;
}

.socmedFb,
.socmedInsta,
.socmedTiktok,
.socmedYt {
    margin: 2px;
    border: 1px solid #adadad;
    padding: 8px 12px;


    transition: .3s all ease;
}

.socmedContainer i {
    color: #fff;
}

.socmedFb:hover {
    background-color: #307ae9;
}

.socmedInsta:hover {
    background-color: #bd1756;
}

.socmedTiktok:hover {
    background-color: #000000;
}

.socmedYt:hover {
    background-color: #850d0d;
}

.footerSub {
    padding: 10px;
    text-align: right;
    border-top: 1px solid #1a1a1a;
    font-size: 13px;
    color: #777777;
}

.contactBanner {
    width: 100%;
    padding: 50px 0px;

    background-image: url(../img/custom1.png);
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
}

.contactBannerContainer {
    width: 60%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contactBannerContainer .left {
    width: 60%;
    padding: 10px;
    filter: grayscale(100%);
    transition: .3s ease-in-out;
}

.contactBannerContainer .left:hover {
    width: 60%;
    padding: 10px;
    filter: none;
}

.contactBannerContainer .right {
    width: 40%;
    padding: 20px;
}

.right h1 {
    font-weight: 600;
    color: #fff;
    font-size: 35px;
    margin-bottom: 10px;
}

.right i {
    font-size: 25px;
    color: #850d0d;
    margin-right: 25px;
}

.right p {
    color: #adadad;
    font-size: 15px;
    margin-bottom: 20px;
}

.right .details {
    display: flex;
}

@media only screen and (max-width: 600px) {
    body {
        overflow-x: hidden;
    }

    .navigationSubContainer {
        display: none;
    }

    .aboutBanner {

        background-image: url(../img/custom1.png);
        background-position: right;
        background-size: contain;
        background-repeat: no-repeat;

        display: flex;
        align-items: center;
    }

    .aboutBannerContainer {
        width: 100%;
        margin: auto;

        display: flex;
        flex-direction: column;
    }

    .aboutBannerContainer .left {
        width: 90%;
        font-size: 50px;
        font-weight: 700;
        color: #fff;
        text-align: center;
    }

    .line {
        content: "";
        height: 5px;
        background-color: rgb(172, 20, 20);
        width: 50px;
        margin: 20px 0 20px 0;
    }

    .aboutBannerContainer .right {
        width: 90%;
        font-size: 15px;
        color: #adadad;
        text-align: center;
    }

    .footerContainer {
        width: 80%;
        margin: auto;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .f1 {
        width: 300px;
        color: #adadad;
        font-size: 15px;
        margin: 5px;

        height: 200px;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .f2 {
        width: 300px;
        margin: 5px;

        display: flex;
        flex-direction: column;
        height: 200px;
        text-align: center;
        justify-content: center;
    }

    .socmedContainer {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footerSub {
        padding: 10px;
        text-align: center;
        border-top: 1px solid #1a1a1a;
        font-size: 13px;
        color: #777777;
    }

    .contactBanner {
        width: 100%;
        padding: 50px 0px;

        background-image: url(../img/custom1.png);
        background-position: left;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .contactBannerContainer {
        width: 90%;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;

    }

    .contactBannerContainer .left {
        width: 100%;
        padding: 10px;
        filter: grayscale(100%);
        transition: .3s ease-in-out;
    }

    .contactBannerContainer .left:hover {
        width: 60%;
        padding: 10px;
        filter: none;
    }

    .contactBannerContainer .right {
        width: 100%;
        padding: 20px;
    }

    .right h1 {
        font-weight: 600;
        color: #fff;
        font-size: 35px;
        margin-bottom: 10px;
    }

    .right i {
        font-size: 25px;
        color: #850d0d;
        margin-right: 25px;
    }

    .right p {
        color: #adadad;
        font-size: 15px;
        margin-bottom: 20px;
    }

    .right .details {
        display: flex;
    }

}