.thinks4-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #202020;
    border-bottom: 1px solid rgba(122, 122, 122, 0.36);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.thinks4-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.thinks4-logo {
    display: block;
    z-index: 1001;
}

.thinks4-logo__img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.thinks4-logo:hover .thinks4-logo__img {
    transform: scale(1.05);
}

.thinks4-desktop {
    display: none;
}

.thinks4-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.thinks4-nav__link {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.thinks4-nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0066FF;
    transition: width 0.3s ease;
}

.thinks4-nav__link:hover {
    color: #0066FF;
    opacity: 1;
}

.thinks4-nav__link:hover::after {
    width: 100%;
}

.thinks4-btn {
    background: #0066FF;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.thinks4-mobile__logo {
    height: 60px;
    width: auto;
}

button.thinks4-close:hover {
    border: 1px solid #1769ff82;
    color: #1769ff;
}
button.thinks4-close {
    width: 30px;
    height: 30px;
    background: #000;
    border-radius: 33px;
    border: 1px solid #424242;
    color: #fff;
    font-size: 27px;
    padding: 0px;
    line-height: 10px;
}



.thinks4-btn::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.thinks4-btn:hover {
    background: #0052CC;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.thinks4-btn:hover::after {
    transform: translateX(5px);
}

.thinks4-toggle {
    width: 48px;
    height: 48px;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 1001;
    padding: 12px;
}

.thinks4-mobile.active {
    z-index: 9999999 !important;
    overflow: hidden;
}


.thinks4-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.thinks4-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.thinks4-toggle.active span:nth-child(2) {
    opacity: 0;
}

.thinks4-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.thinks4-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #202020;
    transition: right 0.3s ease-in-out;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.thinks4-mobile.active {
    right: 0;
}

.thinks4-mobile__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.thinks4-mobile__logo {
    height: 40px;
    width: auto;
}

.thinks4-mobile__menu {
    list-style: none;
    margin: 30px 0 0 0;
    padding: 0;
    flex: 1;
}

.thinks4-mobile__menu a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 15px 0;
    display: block;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.thinks4-mobile__menu a:hover {
    opacity: 1;
    color: #0066FF;
}

.thinks4-btn--mobile {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
}



.thinks4-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.thinks4-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 992px) {
    .thinks4-container {
        height: 90px;
    }

    .thinks4-logo__img {
        height: 70px;
    }
    

    .thinks4-desktop {
        display: flex;
        align-items: center;
        gap: 50px;
    }

    .thinks4-toggle,
    .thinks4-mobile,
    .thinks4-overlay {
        display: none;
    }
}

@media (min-width: 768px) {
    .thinks4-mobile {
        width: 400px;
        right: -400px;
    }
   
    
    .thinks4-mobile.active {
        right: 0;
    }
}
/*FOOTER*/


body.row{
    background-color: #141215;
}

.swiper-wrapper {
    height: 620px !important;
    padding: 0 !important;
}