* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Noto Sans Georgian", sans-serif; */
}.container {
    margin: 0px 150px;
}
body {
    background-attachment: fixed;

    width: 100%;
    background: url('BG.jpg') no-repeat center center/cover;
    min-height: max-content;
    overflow-x: hidden;
}
body.no-scroll {
    overflow: hidden;
}
.noto-sans-georgian {
    font-family: "Noto Sans Georgian", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "width" 100;
}

.header-line {
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 50px;
}
.header-logo{
    max-width: 350px;
    width: 100%;
}
.img{
    height: 100%;
    width: 100%;
}
.nav{
    display: flex;
    padding-top: 30px;
    align-items: flex-start;
    justify-content: space-around;
    height: 110px;
}
.nav-item {
    color: #fff;
    text-decoration: none;
    text-wrap: nowrap;
    font-size: 25px;
    margin-right: 100px;
    transition: color .3s ease-in-out
}
.nav-item:hover {
    color:#31ac78;
}
.nav-item.active {
    color:#31ac78;
    font-weight: bold;
}
.header-dowm {
    margin-top: 80px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 10px;
    height: 100%;
}
h2 {
    color: #fff;
    font-size: 33px;
}
.content {
    color: #fff;
    width: 800px;
    padding: 10px 10px;
}
.inner-div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: center;
    margin-top: -70px;
}
.span {
    font-size: 40px;
    color: #31AC78;
}
p {
    line-height: 30px;
}
.left-div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 900px;
    width: 100%;
    gap: 10px;
    height: 100%;
}
.right-div {
    padding-right: 90px;
    padding-top: 20px;
}
.pht1 {
    height: 80%;
    width: 80%;
}
label {
    font-weight: 800;
    color: #31AC78;
}
.benefits {
    margin-top: 100px;
    color: #fff;
    padding-left: 90px;
    padding-right: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    height: 100%;
}
.benefit-box {
    display: flex;
    min-height: 220px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2px;
    border-radius: 10px;
    padding: 65px 15px;
    background: linear-gradient(to top, #8fffd000, #95ffd31f);
}
.benefit-title {
    font-size: 22px;
    font-weight: 600;
}
.benefit-content {
    font-size: 22px;
    font-weight: 400;
}
.footer-div {
    margin-top: 108px;
    color: #fff;
    padding-left: 90px;
    padding-right: 90px;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
}
.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2px;
}
.footer-title {
    width: 250px;
    padding-top: -10px;
}
.soc-icons {
    display: flex;
    justify-content: flex-start;
}
.soc-icons a {
    text-decoration: none;
    padding: 10px;
    background-color: #31AC78;
    margin: 5px;
    border-radius: 20px;
}
.soc-icons a i {
    color: #fff;
    font-size: 1.5em;
    opacity: 0.9;
    padding: 2px;
}
.icons-div {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}
.terms {
    color: #31AC78;
    padding-top: 5px;
    text-decoration: none;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.pht1 {
    animation: float 2.5s ease-in-out infinite;
}
/* Burger Menu Styles */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 98;
    position: relative;
}
.burger-line {
    height: 3px;
    width: 100%;
    background-color: #fff;
    transition: all 0.3s ease;
}
.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    background-color: #fff;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 80px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}
.mobile-nav.active {
    transform: translateX(0);
}
.mobile-nav-item {
    color: #31AC78;
    text-decoration: none;
    font-size: 20px;
    margin: 15px 20px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    width: calc(100% - 40px);
    border-bottom: 1px solid #F0F0F0;
}
.mobile-nav-item:hover {
    color: #31AC78;
    background-color: #F9F9F9;
}
.mobile-nav-item.active {
    color: #31ac78;
    font-size: 22px;
    font-weight: bold;
    border-bottom: 1px solid #31ac78;
}
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #31AC78;
    font-size: 30px;
    cursor: pointer;
    z-index: 101;
}
/* Media Queries for Responsive Design */
@media (max-width: 1720px) {
    .container {
        margin: 0px 10px;
    }
    .img {
        max-width: 250px;
    }
    .header-line {
        margin-left: 30px;
        margin-right: 30px;
        justify-content: space-around;
    }
    .nav {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 25px;
    }
    .nav-item {
        margin-right: 0px;
    }
    .header-dowm {
        margin-top: 50px;
        display: flex;
        justify-content: space-evenly;
    }
    .benefits {
        margin-top: 50px;
        margin-left: 30px;
        margin-right: 30px;
        justify-content: space-around;
    }
}
@media (max-width: 1480px) {
    .right-div {
        display: none;
    }
    .header-dowm{
        margin-top: 100px;
        flex-direction: column;
        align-items: center;
    }
    .inner-div {
        margin-top: 0px;
    }
    .benefit-title {
        text-align: center;
    }
    .benefit-content {
        text-align: center;
    }
}
@media (max-width: 1380px) {
    .benefit-box {
        padding: 45px 14px;
        min-height: 200px;
    }
}
@media(max-width:1200px)   {
    .benefits {
        padding-left: 0px;
        padding-right: 0px;
    }
    .left-div{
        margin-top: -30px;
    }
}
@media (max-width: 1024px) {
    .container {
        margin: 0 50px;
    }
    .nav {
        display: none;
    }
    .burger-menu {
        display: flex;
    }
    .header-line {
        justify-content: space-between;
        margin-left: 0;
    }
    .header-dowm {
        flex-direction: column;
        text-align: center;
    }
    .left-div, .content {
        width: 100%;
        max-width: 100%;
    }
    .footer-content{
        text-align: center;
        
    
    }
    .inner-div {
        align-items: center;
        text-align: center;
        margin-top: -20px;
        gap: 0px;
    }
    .benefits {
        flex-direction: column;
        padding: 0 20px;
    }
    .benefit-box {
        width: 100%;
        margin-bottom: 20px;
    }
    .right-div {
        padding-top: 40px;
        display: flex;
        justify-content: center;
        padding-right: 0px;
    }
    .content {
        padding: 0px 0px;
    }
    .mobile-nav {
        width: 50%;
    }
}
@media (max-width: 768px) {
    .container {
        margin: 0 20px;
    }
    .header-logo {
        max-width: 250px;
    }
    h2 {
        font-size: 28px;
    }
    .span {
        font-size: 32px;
    }
    .content {
        font-size: 16px;
        width: 100%;
        padding: 10px 0;
    }
   
    .footer-div {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (max-width: 480px) {
    .container {
        margin: 0 15px;
    }
    .img{
        width: 80%;
    }
    h2 {
        font-size: 24px;
    }
    .span {
        font-size: 28px;
    }
    .benefit-title, .benefit-content {
        font-size: 18px;
    }
    
    .footer-title {
        width: 200px;
    }
}