@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
    --thm-font: "Inter", sans-serif;
    --thm-font-2: "reeyregular";
    --thm-base: rgb(0, 48, 73);
    --thm-primary: rgb(3, 40, 54);
    --thm-primary-rgb: 24, 41, 120;
    --thm-gray: #515151;
    --thm-gray-rgb: 81, 81, 81;
    --thm-white: #ffffff;
    --thm-white-rgb: 255, 255, 255;
    --thm-black: #202020;
    --thm-black-rgb: 32, 32, 32;
    --thm-gray-bg: #f5f5f5;
    --thm-main-bg: #202020;
}

:root {
    --swiper-theme-color: #007aff;
}


* {
    box-sizing: border-box;
}

* {
    margin: 0;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-family: var(--thm-font);
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

#root,
#__next {
    isolation: isolate;
}

html {
    scroll-behavior: smooth;
}

.footer{
    width: 100%;
    height: fit-content;
    display: flex;
    padding: 100px 70px 30px 70px;
    background-color: var(--thm-base);


    .footer-left{
        width: 30%;
        height: fit-content;
        transform: translateY(-40px);
        opacity: 0;
        transition: transform 0.6s ease-out, opacity 0.6s ease-out;
        margin-right: 100px;


        h2{
            color: var(--thm-gray-bg);
            margin-bottom: 20px;
            font-size: 20px;
        }

        p{
            color: rgb(117,137,145);
            font-weight: 600;
        }
    }

    .footer-left.visible {
        transform: translateY(0);
        opacity: 1;
    }

    .footer-right{
        width: 70%;
        height: fit-content;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        transform: translateY(-40px);
        opacity: 0;
        transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    }
    
    .navs, .links, .essensials{
        display: flex;
        flex-direction: column;
        gap: 10px;
        text-align: left;
    }
    
    h2{
        color: var(--thm-gray-bg);
        margin-bottom: 20px;
        font-size: 20px;
    }
    
    a {
        text-decoration: none;
        color: rgb(117,137,145);
        font-weight: 800;
        position: relative;
        margin-bottom: 5px;
        font-size: 15px;
        padding: 1px 0;
        width: fit-content;
        transition: color 0.5s ease-in-out;
    }

    a::after {
        content: ''; 
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0; 
        height: 3px; 
        background-color: rgb(255,195,0); 
        transition: width 0.5s ease; 
        color: rgb(255,195,0);
    }
    
    a:hover{
        color: rgb(255,195,0);
    }
    
    a:hover::after {
        width: 100%; 
        color: rgb(255,195,0);
    }
    
    
    .footer-right.visible {
        transform: translateY(0);
        opacity: 1;
    }

}

.copyright{
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--thm-base);
    padding: 30px 70px 100px 70px;

    .item{
        width: 100%;
        height: fit-content;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        background-color: rgb(14,59,82);
        color: rgb(117,137,145);
        transform: translateY(-35px);
        opacity: 0;
        transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    }

    .item.visible {
        transform: translateY(0);
        opacity: 1;
    }
}

