* {
    margin: 0;
    padding: 0;
    /* font-family: "Noto Sans Georgian", sans-serif; */    
    box-sizing: border-box;

}

.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;
}
.container {
    margin: 0px 150px;
}
body {
    width: 100%;
    background: url('BG.jpg') no-repeat center center/cover;
    min-height: max-content;
    overflow-x: hidden;

}

.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: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    height: 100%;
}
.left-div{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 650px;
    width:100%;
    gap:10px;
    height: 100%;
}
.header-title { 
    color: #fff;
    font-size: 40px;
    text-align: center;
    margin-top: 50px;
    max-width: 650px;
    width: 100%;
    font-weight: 400;
}
.header-subtitle{
    color:#fff;
    font-size:22px;
    font-weight: 100;
}

.btn {
    margin-left: 7px;
    text-decoration: none;
}
.button1 {
    text-decoration: none;
}
.button2 {
    text-decoration: none;
}

.pht1 {
    margin-top: 30px;
    height: 80%;
    width: 80%;
    
    

}
.right-div {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
    gap: 30px;
    
}
.text1 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
    flex-direction: column;
    gap: 15px;
    
}
.inner-right{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    margin-top: 53px;
}
h2 {
    font-size: 22px;
    font-weight: 400;
}
p {
    font-size: 22px;
    font-weight: 100;
    
}
.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%; /* Ensure the footer stretches to full width */
    box-sizing: border-box; /* Include padding in the width calculation */
    /* background: linear-gradient(to bottom, #8fffd000, #95ffd31f); */
}

.footer-content{
    /* width: 100%; */
    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;
    /* margin-left: auto; */
    
}
.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;
}

.soc-icons a :hover{
    /* background-color: #fff; */
    transition: 0.3s;

}
.icons-div{
    /* padding-left: 200px; */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;

}

.terms{
    color:#31ac78 ;
    padding-top: 5px;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); } /* Moves up */
    100% { transform: translateY(0px); } /* Back to original position */
}

.pht1 {
    animation: float 2.5s ease-in-out infinite;
}

.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;
    border-bottom: 1px solid #31ac78;

}

.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 */

@media(max-width:1720px){
    body {
        background-attachment: fixed;
        background: url('BG.jpg') no-repeat center center/cover;
        width: 100%;
        height: 100vh;
    }

    .img{
        max-width: 250px;
    }
    .container {
        margin: 0px 10px;
    }

    .header-dowm {
        margin-top: 0px;
        display: flex;
        justify-content: space-around;
    }
   
    .nav{
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap:25px;
    }

    .nav-item{
        margin-right: 0px;
    }

    .pht1 {
        display: none;
    }

    .inner-right {
        gap: 30px;
        margin-top: 35px;
    }

    .inner-left {
        display: block;
    }

    .header-line{
        margin-left: 30px;
        margin-right: 30px;
        justify-content: space-around;
    }

    .left-div{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        max-width: 450px;
        width:100%;
        gap:10px;
        height: 100%;
    }

    .header-title { 
        font-size: 30px;
        max-width: 450px;
        width: 100%;
        font-weight: 300;
    }

    .text1 {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
        font-size: 18px;
    }

    .right-div {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        color: #fff;
        gap: 30px;
    }

    .left-div {
        max-width: 450px;
    }
}

@media(max-width:1600px){
    body {
        background-attachment: fixed;
        background: url('BG.jpg') no-repeat center center/cover;
        width: 100%;
        height: 100vh;
    }
    .container {
        margin: 0px 10px;
    }

    .header-dowm {
        margin-top: 0px;
        display: flex;
        justify-content: space-around;
    }

    .nav{
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap:25px;
    }

    .nav-item{
        margin-right: 0px;
    }

    .pht1 {
        display: none;
    }

    .inner-right {
        gap: 30px;
        margin-top: 35px;
    }

    .inner-left {
        display: block;
    }

    .header-line{
        margin-left: 30px;
        margin-right: 30px;
        justify-content: space-around;
    }

    .header-title { 
        font-size: 30px;
        max-width: 450px;
        width: 100%;
        font-weight: 300;
    }

    .text1 {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
        font-size: 18px;
    }

    .right-div {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        color: #fff;
        gap: 30px;
    }

    .left-div {
        max-width: 450px;
    }
}

@media(max-width:1440px){
    body {
        background-attachment: fixed;
        background: url('BG.jpg') no-repeat center center/cover;
        width: 100%;
        height: 100vh;
    }
    .container {
        margin: 0px 10px;
    }

    .header-dowm {
        margin-top: 0px;
        justify-content: space-around;
    }

    .nav{
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap:25px;
    }

    .nav-item{
        margin-right: 0px;
    }

    .pht1 {
        display: none;
    }

    .inner-right {
        gap: 30px;
        margin-top: 35px;
    }

    .inner-left {
        display: block;
    }

    .header-line{
        margin-left: 30px;
        margin-right: 30px;
    }

    .header-title { 
        font-size: 30px;
        max-width: 450px;
        width: 100%;
        font-weight: 300;
    }

    .text1 {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
        font-size: 18px;
    }

    .right-div {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        color: #fff;
        gap: 30px;
    }

    .left-div {
        max-width: 450px;
    }
}

@media(max-width:1440px){
    body {
        background-attachment: fixed;
        background: url('BG.jpg') no-repeat center center/cover;
        width: 100%;
        height: 100vh;
    }
    .container {
        margin: 0px 10px;
    }

    .header-dowm {
        margin-top: 0px;
        justify-content: space-around;
    }

    .nav{
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap:25px;
    }

    .nav-item{
        margin-right: 0px;
    }

    .pht1 {
        display: none;
    }

    .inner-right {
        gap: 30px;
        margin-top: 35px;
    }

    .inner-left {
        display: none;
    }

    .header-line{
        margin-left: 30px;
        margin-right: 30px;
    }

    .header-title { 
        font-size: 30px;
        max-width: 450px;
        width: 100%;
        font-weight: 300;
    }

    .text1 {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
        font-size: 18px;
    }

    .right-div {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        color: #fff;
        gap: 30px;
    }

    .left-div {
        max-width: 450px;
    }
}

@media(max-width:1300px){
    body {
        background-attachment: fixed;
        background: url('BG.jpg') no-repeat center center/cover;
        width: 100%;
        height: 100vh;
    }
    .container {
        margin: 0px 10px;
    }

    .header-dowm {
        margin-top: 0px;
        justify-content: center;
    }

    .nav{
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap:25px;
    }

    .nav-item{
        margin-right: 0px;
    }

    .pht1 {
        display: none;
    }

    .inner-right {
        gap: 30px;
        margin-top: 35px;
    }

    .inner-left {
        display: none;
    }

    .header-line{
        margin-left: 30px;
        margin-right: 30px;
    }

    .header-title { 
        font-size: 30px;
        max-width: 450px;
        width: 100%;
        font-weight: 300;
    }

    .text1 {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
        font-size: 18px;
    }

    .right-div {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        color: #fff;
        gap: 30px;
    }

    .left-div {
        max-width: 450px;
    }
}

@media(max-width:1100px){
    body {
        background-attachment: fixed;
        background: url('BG.jpg') no-repeat center center/cover;
        width: 100%;
        height: 100vh;
    }
    .container {
        margin: 0px 10px;
    }

    .header-dowm {
        margin-top: 0px;
    }

    .nav{
        display: flex;
        align-items: flex-start;
        justify-content: space-around;
        gap:25px;
    }

    .nav-item{
        margin-right: 0px;
    }

    .pht1 {
        display: none;
    }

    .inner-right {
        gap: 30px;
        margin-top: 35px;
    }

    .inner-left {
        display: none;
    }

    .header-line{
        margin-left: 30px;
        margin-right: 30px;
    }

    .header-title { 
        font-size: 30px;
        max-width: 450px;
        width: 100%;
        font-weight: 300;
    }

    .text1 {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
        font-size: 18px;
    }

    .right-div {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        color: #fff;
        gap: 30px;
    }

    .left-div {
        max-width: 450px;
    }
}

@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;
    }
    .footer-content{
        /* width: 100%; */
        text-align: center;
        
    
    }



    .pht1 {
        display: none;
    }

    .inner-right {
        gap: 30px;
        margin-top: 35px;
    }

    .inner-left {
        display: none;
    }

    .header-line {
        justify-content: space-between;
        margin-left: 0;
    }

    .header-title { 
        font-size: 30px;
        max-width: 450px;
        width: 100%;
        font-weight: 300;
    }

    .text1 {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
        font-size: 18px;
    }

    .right-div {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        color: #fff;
        gap: 30px;
        text-align: center;
    }

    .left-div {
        max-width: 450px;
    }

    .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;
    }
}

