* {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: black;

}

a {
    color: black;
}

ul li {
    list-style-type: none;
    padding: 0;
    margin: 0;


}


p {
    font-size: .8rem;
}


#preloader {
    background: white url(/assets/preloader.gif) no-repeat center center;
    background-size: 20%;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 200;
}






/* For Navbar animation*/

.navLogo {
    max-width: 100%;
    height: auto;
    z-index: 100;
}



#navbarTwo {
    box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.20);
    z-index: 100;
}

.navbarAlignment {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0% 15%;
}

.logo {
    object-fit: cover;
    height: 2.8rem;
    width: 100%;
    cursor: pointer;
}

.contacticon {
    height: 1.5rem;
    width: 2rem;
    object-fit: contain;
    cursor: pointer;
}

.contactbutton {

    text-decoration: none;
    color: black;
    font-size: 1rem;
    padding: 10px 10px;
    border-radius: 1vh;
    color: black;
    font-weight: 400;
}

/* For Navbar animation*/
.desktopMenuListItem {
    margin: .5px;
    cursor: pointer;
    position: relative;
    transform: translateZ(0);
    animation-duration: 1s;
    padding-bottom: .1rem;
    font-size: .9rem;
}



.desktopMenuListItem:before {
    content: "";
    position: absolute;
    z-index: -1;
    border-bottom: 3px solid #940a08;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: scaleX(0);
    transition: 300ms ease-out;
}


.desktopMenuListItem:hover::before {
    transform: scaleX(1);

}

/* Styling for the fixed button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    /* Makes sure it stays on top of other elements */

    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;

    background-color: #de021b;
    /* Modern Blue */
    color: #ffffff;
    border: none;
    border-radius: 50%;
    /* Perfect circle */
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);

    /* Smooth transition for hover effects */
    transition: background-color 0.2s ease, transform 0.2s ease;
}

/* Hover effects */
.scroll-top-btn:hover {
    background-color: #940a08;
    transform: translateY(-4px);
    box-shadow: 4px 2px 4px black;
    /* Subtle nudge upward on hover */
}

/* Active press state */
.scroll-top-btn:active {
    transform: translateY(-1px);
}



.choicesContainer {
    text-align: center;
    margin: 1% 0;
    padding: 0;
    max-width: 100%;


}

.choices {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;

}

.choices li {

    margin: .3% 1%;
    white-space: nowrap;
    color: gray;
    font-size: 1rem;
    padding: 0;
    font-weight: 500;

}

.choices a {

    text-decoration: none;
    color: #2c2c2c;
}

.choices a:hover {
    text-decoration: none;
    color: #940a08;
}






.gtLogo {
    max-width: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    margin: auto auto;
    margin-top: 3%;
}

.gt-text-p {
    margin-top: 2%;
    text-align: justify;
    text-justify: inter-word;
    margin: 2% 5%;
}


#sectionOne {
    height: 30vh;
    width: 100%;
    background: linear-gradient(rgba(63, 6, 6, 0.7), rgba(0, 0, 0, 0.70)),
        url(/assets/gtRadial/First\ Section\ Background.jpg);
    background-size: cover;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    justify-content: center;
    padding: 2% 20%;
    z-index: -1;
    display: flex;
    justify-content: center;
}

hr {
    width: 90%;
    margin: auto;
    height: 5px;
    /* Adjust thickness here */
    background-color: gray;
    /* Line color */
    border: none;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    align-content: flex-start;
    box-shadow: 2px 2px 7px black;
    max-width: 30%;
    min-width: 30%;
    text-align: center;
    height: 470px;
    margin: .5% 1%;
    padding: 1.5% 2%;
    transition: transform 0.3s ease;
}

.content p {
    text-align: justify;
    text-justify: inter-word;
}


.content:hover {
    box-shadow: 1px 7px 15px #940a08;
    transform: translateY(-10px);

}



.combiPic {
    max-width: 60vh;
    margin: 2% 0%;
}



.products {
    margin: 1% 5%;
}


.rows {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 1% 5%;
    max-width: 100%;

}

.cols {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2% 2%;
    max-width: 100%;

}

.contentContainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    height: auto;
}


















/*footer*/
footer {
    padding: 2% 15%;
    max-width: 100%;
    height: auto;
    background-image: url(/assets/footerBackground.png);
    background-size: cover;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    justify-content: center;
    z-index: -1;
    display: flex;
    justify-content: center;


}

.footerLogo {
    max-width: 12%;
    height: auto;
}

.socialmediaLogo {
    max-width: 6%;
    height: auto;
    margin: 4% 1%;
    cursor: pointer;
}

.footerContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;


}

.footerNav {
    list-style-type: none;
}

.footerNav a {
    color: black;
}

.footerNav a:hover {
    color: #940a08;
}


.footerProducts {
    max-width: 20%;
    height: auto;
    margin: 1% 1%;
}


.animationSectionOne {
    animation-name: moveUp;
    animation-duration: 3.5s;
}






























@media only screen and (max-width: 1441px) {
    .choices li {
        font-size: .9rem;
    }

}


@media only screen and (max-width: 1000px) {

    .content a p {
        font-size: .5rem;
    }

    * p {
        font-size: .8rem;
    }

    .content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0px 0px 0px black;
        max-width: 100%;
        height: auto;
        margin: 1% 3%;
        padding: 1% 0%;
    }


    .combiPic {
        max-width: 100%;
        height: auto;
    }



    .rows {
        display: flex;
        flex-direction: column;

        max-width: 100%;
    }

    ul {
        max-width: 100%;
        table-layout: fixed;
    }

    .cols {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        margin: 2% 2%;
        max-width: 100%;
    }

    .submitButton {
        padding: 1%;
        width: 30%;
        height: 4vh;
    }

    footer {
        padding: 2% 7%;
    }

    .socialmediaLogo {
        max-width: 6%;
        height: auto;
        margin: 3% 1%;
        cursor: pointer;
    }

    .footerLogo {
        max-width: 12%;
        height: auto;
        margin: 3% 3%;
    }

}


@media only screen and (max-width: 600px) {

    .choices {
        display: none;

    }


    .animationSectionOne p {
        font-size: .7rem;
    }

    .gtLogo {
        max-width: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        height: auto;
        margin: auto auto;
        margin-top: 8%;
    }


    .choicesContainer {
        display: flex;
        flex-direction: row;
    }

    .choices li {
        font-size: 1rem;
    }


    .choices {
        display: flex;
        flex-direction: column;
        font-size: 1rem;
        margin: 2% 3%;

    }

    .rows {
        display: flex;
        flex-direction: column;

        max-width: 100%;
    }

    .footerMenuProduct {
        display: none;
    }

    .socialmediaLogo {
        max-width: 15%;
        height: auto;
        margin: 4% 2%;
        cursor: pointer;
    }

    .footerLogo {
        max-width: 35%;
        height: auto;
    }
}













@keyframes animateUser {
    0% {
        top: 0px;
        bottom: 0px
    }

    25% {
        top: 5px;
        bottom: 0px
    }

    50% {
        top: 0px;
        bottom: 5px
    }

    75% {
        top: 5px;
        bottom: 0px
    }

    100% {
        top: 0px;
        bottom: 5px
    }

}



@keyframes transition {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;

    }
}



@keyframes moveRight {
    0% {
        opacity: 0;
        transform: translateX(150px);
    }

    100% {
        opacity: 1;
        transform: translate(0);
    }
}

@keyframes moveLeft {
    0% {
        opacity: 0;
        transform: translateX(-150px);
    }

    100% {
        opacity: 1;
        transform: translate(0);
    }
}

@keyframes moveUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translate(0);
    }
}