@media screen and (min-width: 300px) {
    .nav{
        width: 100%;
        height: 70px;
        background-color: var(--thm-primary);
        display: flex;
        justify-content: space-between;
        align-items: center;
        top: 0;
        z-index: 1000;
        
    
        .logo{
            width: 40%;
            height: 100%;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            cursor: pointer;
            padding: 20px 10px;
            /* background-color: var(--thm-main-bg); */
    
            img{
                width: 170px;
                height: 50px;
            }
        }
    
        .nav-links{
            width: 60%;
            height: 100%;
            display: none;
            justify-content: space-around;
            align-items: center;
    
            a{
                text-decoration: none;
                color: var(--thm-white);
                font-size: 18px;
                font-weight: 500;
                cursor: pointer;
                transition: color 0.5s;
            }
    
            a:hover{
                color: rgb(231,54,103);
            }
    
        }
    
        .nav-btn{
            width: 20%;
            height: 100%;
            display: none;
            justify-content: center;
            align-items: center;
            /* background-color: var(--thm-main-bg); */
    
    
            a{
                text-decoration: none;
                color: var(--thm-white);
                font-size: 12px;
                font-weight: 500;
                cursor: pointer;
                transition: color 0.5s;
            }
    
            .reg{
                background-color: rgb(231,54,103);
                padding: 10px 20px;
                margin-right: 15px;
                transition: background-color 0.3s;
    
                &:hover{
                    background-color: rgb(241,88,70);
                }
            }
    
            .sign{
                background: linear-gradient(to right, rgb(231, 54, 103), rgb(241, 88, 70), rgb(252, 126, 25));
                padding: 10px 20px;
                transition: background-color 0.3s;
    
                &:hover{
                    background: linear-gradient(to right, rgb(252, 126, 25), rgb(241, 88, 70), rgb(231, 54, 103));
                }
            }
        }
    
        .menu-bar{
            width: 15%;
            height: 100%;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            font-size: 30px;
            cursor: pointer;
            padding: 20px;
            
            i{
                background-color: rgb(231,54,103);
                color: var(--thm-gray-bg);
                padding: 10px;
            }
        }
    }
    
    .rates{
        width: 100%;
        height: 80px;
        background-color: var(--thm-primary);
        top: 70px;
    
        .rate{
            width: 100%;
            height: 65%;
            background-color: var(--thm-gray-bg);
        }
    }
    
    .responsive{
        width: 100%;
        height: 400px;
        background-color: var(--thm-primary);
        display: flex; 
        justify-content: center;
        align-items: center;
        flex-direction: column;
        position: absolute;
        margin-top: 70px;
        transform: translateY(-100%); 
        visibility: hidden; 
        opacity: 0; 
        z-index: 10;
        transition: transform 2s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 2s ease-in-out, visibility 0s 2s; 
    
        
        .nav-links{
            width: 100%;
            height: 70%;
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            align-items: center;
    
            a{
                text-decoration: none;
                color: var(--thm-white);
                font-size: 18px;
                font-weight: 500;
                cursor: pointer;
                transition: color 0.5s;
            }
    
            a:hover{
                color: rgb(231,54,103);
            }
    
        }
    
        .nav-btn{
            width: 100%;
            height: 30%;
            display: flex;
            justify-content: center;
            align-items: center;
            /* background-color: var(--thm-main-bg); */
    
    
            a{
                text-decoration: none;
                color: var(--thm-white);
                font-size: 12px;
                font-weight: 500;
                cursor: pointer;
                transition: color 0.5s;
            }
    
            .reg{
                background-color: rgb(231,54,103);
                padding: 10px 20px;
                margin-right: 15px;
                transition: background-color 0.3s;
    
                &:hover{
                    background-color: rgb(241,88,70);
                }
            }
    
            .sign{
                background: linear-gradient(to right, rgb(231, 54, 103), rgb(241, 88, 70), rgb(252, 126, 25));
                padding: 10px 20px;
                transition: background-color 0.3s;
    
                &:hover{
                    background: linear-gradient(to right, rgb(252, 126, 25), rgb(241, 88, 70), rgb(231, 54, 103));
                }
            }
        }
    }
    
    .responsive.active {
        transform: translateY(0); 
        visibility: visible; 
        opacity: 1; 
        transition: transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 1s ease-in-out, visibility 0s; 
    }
}

@media screen and (min-width: 768px) {
    .nav{
        width: 100%;
        height: 70px;
        background-color: var(--thm-primary);
        display: flex;
        justify-content: space-between;
        align-items: center;
        top: 0;
        z-index: 1000;
        
    
        .logo{
            width: 30%;
            height: 100%;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            cursor: pointer;
            padding: 20px 10px;
            /* background-color: var(--thm-main-bg); */
    
            img{
                width: 170px;
                height: 50px;
            }
        }
    
        .nav-links{
            width: 60%;
            height: 100%;
            display: none;
            justify-content: space-around;
            align-items: center;
    
            a{
                text-decoration: none;
                color: var(--thm-white);
                font-size: 18px;
                font-weight: 500;
                cursor: pointer;
                transition: color 0.5s;
            }
    
            a:hover{
                color: rgb(231,54,103);
            }
    
        }
    
        .nav-btn{
            width: 20%;
            height: 100%;
            display: none;
            justify-content: center;
            align-items: center;
            /* background-color: var(--thm-main-bg); */
    
    
            a{
                text-decoration: none;
                color: var(--thm-white);
                font-size: 12px;
                font-weight: 500;
                cursor: pointer;
                transition: color 0.5s;
            }
    
            .reg{
                background-color: rgb(231,54,103);
                padding: 10px 20px;
                margin-right: 15px;
                transition: background-color 0.3s;
    
                &:hover{
                    background-color: rgb(241,88,70);
                }
            }
    
            .sign{
                background: linear-gradient(to right, rgb(231, 54, 103), rgb(241, 88, 70), rgb(252, 126, 25));
                padding: 10px 20px;
                transition: background-color 0.3s;
    
                &:hover{
                    background: linear-gradient(to right, rgb(252, 126, 25), rgb(241, 88, 70), rgb(231, 54, 103));
                }
            }
        }
    
        .menu-bar{
            width: 15%;
            height: 100%;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            font-size: 30px;
            cursor: pointer;
            padding: 20px;
            
            i{
                background-color: rgb(231,54,103);
                color: var(--thm-gray-bg);
                padding: 10px;
            }
        }
    }
    
    .rates{
        width: 100%;
        height: 80px;
        background-color: var(--thm-primary);
        top: 70px;
    
        .rate{
            width: 100%;
            height: 65%;
            background-color: var(--thm-gray-bg);
        }
    }
    
    .responsive{
        width: 100%;
        height: 400px;
        background-color: var(--thm-primary);
        display: flex; 
        justify-content: center;
        align-items: center;
        flex-direction: column;
        position: absolute;
        margin-top: 72px;
        transform: translateY(-100%); 
        visibility: hidden; 
        opacity: 0; 
        transition: transform 2s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 2s ease-in-out, visibility 0s 2s; 
    
        
        .nav-links{
            width: 100%;
            height: 70%;
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            align-items: center;
    
            a{
                text-decoration: none;
                color: var(--thm-white);
                font-size: 18px;
                font-weight: 500;
                cursor: pointer;
                transition: color 0.5s;
            }
    
            a:hover{
                color: rgb(231,54,103);
            }
    
        }
    
        .nav-btn{
            width: 100%;
            height: 30%;
            display: flex;
            justify-content: center;
            align-items: center;
            /* background-color: var(--thm-main-bg); */
    
    
            a{
                text-decoration: none;
                color: var(--thm-white);
                font-size: 12px;
                font-weight: 500;
                cursor: pointer;
                transition: color 0.5s;
            }
    
            .reg{
                background-color: rgb(231,54,103);
                padding: 10px 20px;
                margin-right: 15px;
                transition: background-color 0.3s;
    
                &:hover{
                    background-color: rgb(241,88,70);
                }
            }
    
            .sign{
                background: linear-gradient(to right, rgb(231, 54, 103), rgb(241, 88, 70), rgb(252, 126, 25));
                padding: 10px 20px;
                transition: background-color 0.3s;
    
                &:hover{
                    background: linear-gradient(to right, rgb(252, 126, 25), rgb(241, 88, 70), rgb(231, 54, 103));
                }
            }
        }
    }
    
    .responsive.active {
        transform: translateY(0); 
        visibility: visible; 
        opacity: 1; 
        transition: transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 1s ease-in-out, visibility 0s; 
    }
}

@media screen and (min-width: 1100px) {
    .nav{
        width: 100%;
        height: 100px;
        background-color: var(--thm-primary);
        display: flex;
        justify-content: space-between;
        align-items: center;
        top: 0;
        z-index: 1000;
        
    
        .logo{
            width: 15%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            /* background-color: var(--thm-main-bg); */
    
            img{
                width: 150px;
                height: 50px;
            }
        }
    
        .nav-links{
            width: 60%;
            height: 100%;
            display: flex;
            justify-content: space-around;
            align-items: center;
    
            a{
                text-decoration: none;
                color: var(--thm-white);
                font-size: 18px;
                font-weight: 500;
                cursor: pointer;
                transition: color 0.5s;
            }
    
            a:hover{
                color: rgb(231,54,103);
            }
    
        }
    
        .nav-btn{
            width: 20%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            /* background-color: var(--thm-main-bg); */
    
    
            a{
                text-decoration: none;
                color: var(--thm-white);
                font-size: 12px;
                font-weight: 500;
                cursor: pointer;
                transition: color 0.5s;
            }
    
            .reg{
                background-color: rgb(231,54,103);
                padding: 10px 20px;
                margin-right: 15px;
                transition: background-color 0.3s;
    
                &:hover{
                    background-color: rgb(241,88,70);
                }
            }
    
            .sign{
                background: linear-gradient(to right, rgb(231, 54, 103), rgb(241, 88, 70), rgb(252, 126, 25));
                padding: 10px 20px;
                transition: background-color 0.3s;
    
                &:hover{
                    background: linear-gradient(to right, rgb(252, 126, 25), rgb(241, 88, 70), rgb(231, 54, 103));
                }
            }
        }
    
        .menu-bar{
            width: 5%;
            height: 100%;
            display: none;
            justify-content: center;
            align-items: center;
            font-size: 30px;
            cursor: pointer;
            
            i{
                background-color: rgb(231,54,103);
                color: var(--thm-gray-bg);
                padding: 10px;
            }
        }
    }
    
    .rates{
        width: 100%;
        height: 100px;
        background-color: var(--thm-primary);
        top: 100px;
    
        .rate{
            width: 100%;
            height: 65%;
            background-color: var(--thm-gray-bg);
        }
    }
    
    .responsive{
        width: 100%;
        height: 400px;
        background-color: var(--thm-primary);
        display: flex; 
        justify-content: center;
        align-items: center;
        flex-direction: column;
        position: absolute;
        top: 100px;
        transform: translateY(-100%); 
        visibility: hidden; 
        opacity: 0; 
        transition: transform 2s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 2s ease-in-out, visibility 0s 2s; 
    
        
        .nav-links{
            width: 100%;
            height: 70%;
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            align-items: center;
    
            a{
                text-decoration: none;
                color: var(--thm-white);
                font-size: 18px;
                font-weight: 500;
                cursor: pointer;
                transition: color 0.5s;
            }
    
            a:hover{
                color: rgb(231,54,103);
            }
    
        }
    
        .nav-btn{
            width: 100%;
            height: 30%;
            display: flex;
            justify-content: center;
            align-items: center;
            /* background-color: var(--thm-main-bg); */
    
    
            a{
                text-decoration: none;
                color: var(--thm-white);
                font-size: 12px;
                font-weight: 500;
                cursor: pointer;
                transition: color 0.5s;
            }
    
            .reg{
                background-color: rgb(231,54,103);
                padding: 10px 20px;
                margin-right: 15px;
                transition: background-color 0.3s;
    
                &:hover{
                    background-color: rgb(241,88,70);
                }
            }
    
            .sign{
                background: linear-gradient(to right, rgb(231, 54, 103), rgb(241, 88, 70), rgb(252, 126, 25));
                padding: 10px 20px;
                transition: background-color 0.3s;
    
                &:hover{
                    background: linear-gradient(to right, rgb(252, 126, 25), rgb(241, 88, 70), rgb(231, 54, 103));
                }
            }
        }
    }
    
    .responsive.active {
        transform: translateY(0); 
        visibility: visible; 
        opacity: 1; 
        transition: transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 1s ease-in-out, visibility 0s; 
    }
}