@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

body {
    font-family: "Inter", sans-serif;
}

.header_section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    background-color: #ffffff;
}

.header_section svg {
    width: 200px;
}

.menu_section {
    display: flex;
    gap: 40px;
}

.menu_section a {
    color: #000000;
    text-decoration: unset;
}

.socet_footer_section {
    background-color: rgb(217, 217, 217);
    padding: 30px 0px;
}

.socet_footer_section .custome_container {
    display: flex;
    justify-content: space-between;
}

.socet_footer_section .custome_container .copyright_text {
    font-size: 15px;
}

.socet_footer_section .custome_container .all_other_links {
    display: flex;
    gap: 40px;
    font-size: 15px;
}

.socet_footer_section .custome_container .all_other_links a {
    color: #000000;
    text-decoration: unset;
}

.remove_underline,
.remove_underline:hover {
    color: #000000;
    text-decoration: unset;
}

.footer_section {
    padding: 30px 0px;
    background-color: #FAFAFA;
}

* {
    box-sizing: border-box;
}

.main_section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    background-size: cover;
    background-repeat: no-repeat;
    height: calc(100vh - 100px);
    transition: background 0.5s linear;
}

.main_section a {
    position: relative;
    display: block;
    width: 100%;
    /* margin: 40px auto;
    color: #a8aabc;
    border: 1px solid #a8aabc; */
    overflow: hidden;
}

.main_section a .show {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    height: calc(100vh - 100px);
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.main_section a .show img {
    max-width: 200px;
    width: 100%;
}

.main_section a .hide_content img {
    max-width: 150px;
    width: 100%;
}

.main_section a .hide_content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 28px;
    color: #ffffff;
    background-color: #00000050;
    /* transform: translateY(100%); */
    transition: transform 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 50px;
    opacity: 0;
}

/* .main_section a .hide_content p {
    font-weight: bold;
} */
.show-animation {
    transition: background 0.5s linear;
}

.main_section a:hover .show img {
    display: none !important;
}


.main_section a:hover .hide_content {
    opacity: 1;
}

.col-half-offset {
    margin-left: 4.166666667%
}

.mobile_section {
    display: none;
}

@media (min-width:576px) and (max-width:1024px) {
    .main_section a {
        padding: 0px 15px;
    }

    .grid_section {
        grid-template-columns: 1fr !important;
        gap: 5px;
    }

    .grid_section .logo img {
        display: none;
    }
}

@media only screen and (max-width: 450px) {
    .header_section svg {
        width: 125px;
    }
}

@media (max-width: 576px) {
    .main_section a:hover .show img {
        display: block !important;
    }

    .main_section a:hover .hide_content {
        opacity: 0;
    }

    .container,
    .container-sm {
        max-width: 100% !important;
    }

    .socet_footer_section .custome_container .all_other_links {
        gap: 10px;
        flex-direction: column;
    }

    .custome_container {
        padding: 0px 20px !important;
        flex-direction: column;
        gap: 10px;
    }

    .menu_section {
        display: none;
    }

    .header_section {
        justify-content: center;
        align-items: unset;
    }

    .main_section {
        grid-template-columns: 1fr;
        background-position: center center;
    }

    .hide_content {
        display: none !important;
    }

    .main_section a .show {
        height: 100%;
    }

    .grid_item img {
        margin-bottom: 10px;
    }
}

.logo img {
    max-width: 200px !important;
}

@media (max-width: 992px) {
    .footer_section .custome_container .row {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .grid_section {
        grid-template-columns: 1fr !important;
        gap: 5px;
    }
}

.custome_container {
    padding: 0px 80px;
}

.grid_section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.h-250 {
    height: 250px;
}