/* Other existing CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

#landingpage {
    position: relative;
}

.bgimg {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logoimg {
    height: 150px;
    width: auto;
    filter: drop-shadow(10px 7px 10px black);
}

@media (max-width: 768px) {

    .bgimg {
        width: 100%;
        height: auto;
    }

    .logoimg {
        height: 130px;
    }

}

@media (max-width: 425px) {

    .bgimg {
        width: 100%;
        height: auto;
    }

    .logoimg {
        height: 50px;
    }

}



/* container 1 start*/

.container1 {
    background: #000;
    /* border-radius: 6%; */
    text-align: center;
    color: aliceblue;
    padding: 2rem;
}

.barlow-condensed-bold {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    padding: 2rem 0;
    letter-spacing: 2px;
    text-shadow: 3px 3px 10px rgba(255, 255, 255, 0.4);
    margin: 5rem 0;
}

.collage {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.para {
    padding-top: 3rem;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
}

.logocontainer {
    width: 800px;
    /* width: 400px; */
    margin: 0 auto;
    padding-bottom: 1.5rem;
}

@media (max-width: 769px) {

    .container1 {
        border-radius: 0%;
    }

    .logocontainer {
        width: 500px;
        /* width: 350px; */
    }
}

@media (max-width: 425px) {

    .logocontainer {
        width: 350px;
        /* width: 200px; */
    }

    .barlow-condensed-bold {
        padding: 0.5rem;
    }

    .container1 {
        padding: 0.5rem;
    }


}

/* container 1  end */





/* container 2 */

.container2 {
    text-align: center;
    padding: 2rem 0;
    background-image: linear-gradient(112.5deg, rgb(214, 214, 214) 0%, rgb(214, 214, 214) 10%, rgb(195, 195, 195) 10%, rgb(195, 195, 195) 53%, rgb(176, 176, 176) 53%, rgb(176, 176, 176) 55%, rgb(157, 157, 157) 55%, rgb(157, 157, 157) 60%, rgb(137, 137, 137) 60%, rgb(137, 137, 137) 88%, rgb(118, 118, 118) 88%, rgb(118, 118, 118) 91%, rgb(99, 99, 99) 91%, rgb(99, 99, 99) 100%), linear-gradient(157.5deg, rgb(214, 214, 214) 0%, rgb(214, 214, 214) 10%, rgb(195, 195, 195) 10%, rgb(195, 195, 195) 53%, rgb(176, 176, 176) 53%, rgb(176, 176, 176) 55%, rgb(157, 157, 157) 55%, rgb(157, 157, 157) 60%, rgb(137, 137, 137) 60%, rgb(137, 137, 137) 88%, rgb(118, 118, 118) 88%, rgb(118, 118, 118) 91%, rgb(99, 99, 99) 91%, rgb(99, 99, 99) 100%), linear-gradient(135deg, rgb(214, 214, 214) 0%, rgb(214, 214, 214) 10%, rgb(195, 195, 195) 10%, rgb(195, 195, 195) 53%, rgb(176, 176, 176) 53%, rgb(176, 176, 176) 55%, rgb(157, 157, 157) 55%, rgb(157, 157, 157) 60%, rgb(137, 137, 137) 60%, rgb(137, 137, 137) 88%, rgb(118, 118, 118) 88%, rgb(118, 118, 118) 91%, rgb(99, 99, 99) 91%, rgb(99, 99, 99) 100%), linear-gradient(90deg, rgb(195, 195, 195), rgb(228, 228, 228));
    background-blend-mode: overlay, overlay, overlay, normal;
}

.barlow-condensed-bold2 {
    font-family: "Barlow Condensed", sans-serif;
    width: 1000px;
    font-weight: 500;
    font-size: 5rem;
    padding: 10rem 0 2rem 0;
    letter-spacing: 2px;
    margin: 2rem auto;
}

.groupcompanies {
    /* width: 100%; */
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    /* background-color: #cfcfd0; */
    border-radius: 6rem;
    /* padding: 2rem; */
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
    align-items: center;
    padding: 20px;
}

.logo-container {
    width: 300px;
    height: 300px;
    /* margin: 2rem; */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* background-color: #e8e8e8; */
    /* border: 3px solid black; */
    border-radius: 50%;
}

.logo-container:hover {
    border: 3px solid black;
}

.logo {
    width: 250px;
    height: 250px;
    object-fit: contain;
    transition: .5s ease;
    backface-visibility: hidden;
}

.middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}

.logo-container:hover .logo {
    opacity: 0.2;
}

.logo-container:hover .middle {
    opacity: 1;
    cursor: pointer;
}

.text {
    background-color: #000000;
    color: white;
    font-size: 15px;
    padding: 12px 26px;
}


/* Media Queries */
@media (min-width: 768px) {

    .barlow-condensed-bold,
    .barlow-condensed-bold2 {
        font-size: 4rem;
    }

    .barlow-condensed-bold2 {
        width: 700px;
    }

    .para {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {

    .barlow-condensed-bold,
    .barlow-condensed-bold2 {
        font-size: 5rem;
    }

    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 769px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo-container {
        width: 250px;
        height: 250px;
        margin: auto;
    }

    .logo {
        width: 150px;
        height: 150px;
    }
}



@media (max-width: 425px) {
    .logo-grid {
        grid-template-columns: 1fr;
    }

    .barlow-condensed-bold,
    .barlow-condensed-bold2 {
        font-size: 2rem;
    }

    .barlow-condensed-bold2 {
        width: 400px;
    }

    .para {
        font-size: 1rem;
    }
}

/* container2 end  */





/* button */

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #615EFC;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
}

#myBtn:hover {
    background-color: #555;
}

/* button end  */




/* Footer Start */

footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 40px;
}

.left-section {
    display: flex;
    align-items: center;
}

.left-section img {
    height: 250px;
}

.right-section {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.right-section p {
    font-size: 18px;
    margin: 5px 0;
    position: relative;
    padding-left: 25px;
    line-height: 2rem;
}

.phone-icon::before,
.email-icon::before,
.location-icon::before,
.globe-icon::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    position: absolute;
    left: 0;
}

.phone-icon::before {
    content: "\f095";
}

.email-icon::before {
    content: "\f0e0";
}

.location-icon::before {
    content: "\f3c5";
}

.globe-icon::before {
    content: "\f0ac";
}

.bottom-section {
    border-top: 1px solid #ccc;
    font-size: 16px;
}

.bottom-section p {
    padding-top: 20px;
}


@media (max-width: 769px) {

    .left-section img {
        height: 150px;
    }

    .right-section p {
        font-size: 13px
    }

    .bottom-section {
        font-size: 13px;
    }

    .bottom-section p {
        padding-top: 10px;
    }
}

@media (max-width: 425px) {

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .left-section {
        margin-bottom: 30px;
    }

    .right-section p {
        font-size: 15px
    }

}


/* Footer End */







/* Modal start */

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
}

.modal h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    padding-top: 30px;
    font-size: 3rem;
    color: #A9A9A9;
}

.modal p {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    /* Could be more or less, depending on screen size */
}


.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#companyLink {
    text-decoration: none;
    padding: 15px 25px;
    border: unset;
    border-radius: 15px;
    color: #e8e8e8;
    z-index: 1;
    background: #212121;
    position: relative;
    font-weight: 1000;
    font-size: 17px;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
}

#companyLink:hover {
    background-color: #e8e8e8;
    color: #212121;
}

@media (max-width: 768px) {

    .modal-content {
        width: 65%;
    }

}

@media (max-width: 425px) {

    .modal-content {
        width: 80%;
    }

}


/* Modal end */







/* Animation start  */

.hidden {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-100%);
    transition: all 1s;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.logo-container:nth-child(2) {
    transition-delay: 200ms;
}

.logo-container:nth-child(4) {
    transition-delay: 200ms;
}

/* Animation start  */



