@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wdth,wght@0,75..100,300..800;1,75..100,300..800&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Open Sans", sans-serif;
    color: #000;
}
.full-container{
    width: 100%;
}
.container {
    max-width: 1129px;  
    margin: 0px auto;
    padding: 0px 15px;
    width: 100%;
}
.main-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0px;
    margin-bottom: 0px;
    .logo img{
        width: 119px;
    }
    a.btn{
        border-radius: 100px;
        font-weight: 600;
        background-color: #FF9100;
        color:#fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: background-color 0.2s ease;
        padding: 14px 28px;
        font-size: 16px;
        text-decoration: none;
        transition: all .3s;
        transform: scale(1);
        @media(max-width: 767px){
            padding: 10px 20px;
            font-size: 16px;
            border-radius: 9px;
        }
        &:hover{
            transform: scale(1.1);
            transition: all .3s;
        }
    }
}
.banner-section {
    margin-bottom: 50px;
    @media (max-width: 767px){
        margin-bottom: 35px;
    }
    .container {
        display: flex;
        gap: 25px;
        @media(max-width: 767px){
            flex-direction: column-reverse;
            gap: 20px;
        }
        .banner-info {
            flex: 1;
            h6 {
                color: #454545;
                font-weight: 400;
                margin-bottom: 20px;
                font-size: 18px;
                @media (min-width: 768px) and (max-width: 1024px) {
                    font-size: 1.8229vw;
                }
                @media (max-width: 767px){
                    display: none;
                }
            }
            h1 {
                color: #375d45;
                font-size: 42px;
                margin-bottom: 20px;
                line-height: 54px;
                @media (min-width: 768px) and (max-width: 1024px) {
                    font-size: 3.6458vw;
                    line-height: 120%;
                }
                @media (max-width: 767px){
                    font-size: 9vw;
                    line-height: 125%;
                }
            }
            p {
                color: #454545;
                font-size: 20px;
                font-weight: 700;
                @media (min-width: 768px) and (max-width: 1024px) {
                    font-size: 1.8229vw;
                }
                span {
                    color: #1aa3ff;
                }
            }
        }
        .image {
            flex: 1;
            @media (max-width: 767px){
                margin: 0px -15px;
            }
            img {
                width: 100%;
            }
        }
    }
}

.info-section {
    p {
        font-size: 16px;
        font-weight: 400;
        line-height: 1.6rem;
        color: #303030;
        margin-bottom: 20px;
    }
    .bluetext {
        color: #0099ff !important;
    }
    .image {
        margin-bottom: 20px;
        text-align: center;
        img {
            width: 100%;
        }
    }
    h2 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 20px;
        @media (min-width: 768px) and (max-width: 1024px) {
            font-size: 3.6458vw;
            line-height: 120%;
        }
        @media(max-width: 767px){
            font-size: 24px;
        }
    }
    .image.map {
        margin-top: 40px;
        @media(max-width: 767px){
           margin: 40px 0px 20px;
        }
        img {
            max-width: 665px;
            margin: auto;
            width: 100%;
        }
    }
    .seebtn a{
        border-radius: 9px;
        font-weight: 600;
        background: #F58220;
        color: #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        padding: 10px;
        box-sizing: border-box;
        font-size: 26px;
        text-decoration: none;
        transition: all 0.3s;
        transform: scale(1);
        max-width: 400px;
        height: 75px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        @media(max-width: 767px){
            max-width: 88%;
            height: 42px;
            font-size: 18px;
        }
        &:hover {
            transform: scale(1.1);
            transition: all 0.3s;
            background: #e07115;
        }
    }
    .footer-logo {
        max-width: 119px;
        margin: 40px auto 0px;
        img{
            width: 100%;
        }
    }
    .getintouch{
        text-align: center;
        margin-top: 40px;
        p{
            font-size: 30px;
            color: #303030;
            margin-bottom: 5px;
            font-weight: 700;
            line-height: 38px;
        }
        a{
            color: #f58300;
            text-decoration: none;
            font-size: 43px;
            font-weight: 700;
            &:hover {
                color: #e07115;
            }
        }
    }
}
footer{
    background: #ebebeb;
    padding: 15px 0px;
    margin-top: 30px;
    ul.footer-links {
        display: flex;
        justify-content: center;
        list-style: none;
        li {
            a {
                padding: 0px 20px 0;
                color: #303030;
                text-decoration: none;
                display: block;
                font-size: 12px;
                @media(max-width: 767px){
                    padding: 0px 8px;
                }
                &:hover {
                    text-decoration: underline !important;
                }
            }
        }
    }
}
.mobileonly{
    display: none;
}
@media(max-width: 767px){
    .desktop{
        display: none;
    }
    .mobileonly{
        display: block;
    }
    .info-section {
        .image {
            margin: 0px -15px 20px;
        }
    }
    p.upgradeemobile-text{
        font-size: 22px;
        line-height: 150%;;
    }
}
h6.mobileonly{
    display: none;
    @media(max-width: 767px){
        display: block;
        text-align: center;
        font-size: 12px;
        margin-bottom: 7px;
        font-weight: 400;
    }
}


.Policies-page {
    padding: 40px 0px;
    .full-content{
        width: 100%;
        box-sizing: border-box;
    }
    h2 {
        margin-bottom: 30px;
        line-height: 130%;
        text-transform: capitalize;
        font-size: 34px;
        font-weight: 700;
        @media (min-width: 768px) and (max-width: 1024px) {
            margin-bottom: 20px;
        }
        @media (max-width: 767px) {
            font-size: 2.3rem;
            line-height: 120%;
            margin-bottom: 10px;
        }
    }
    .date {
        margin-bottom: 20px;
        font-size: 16px;
        color: #3c3c3c;
    }
    h3 {
        margin-bottom: 10px;
        color: #000;
        font-weight: 700;
    }
    p {
        font-size: 16px;
        color: #3c3c3c;
        line-height: 25px;
        margin-bottom: 15px;
        font-weight: 400;
        @media (min-width: 768px) and (max-width: 1024px) {
            font-size: 14px;
            line-height: 22px;
        }
        a {
            text-decoration: underline;
        }
    }
    ul {
        padding-left: 20px;
        margin: 20px 0px;
        li {
            font-size: 16px;
            color: #3c3c3c;
            line-height: 25px;
            margin-bottom: 10px;
            font-weight: 400;
            @media (min-width: 768px) and (max-width: 1024px) {
                font-size: 14px;
                line-height: 22px;
            }
        }
    }
    .table-section{
        overflow-x: auto;
    }
    table {
        thead {
            th {
                background: #efefef;
                padding: 15px 15px;
                color: #000;
            }
        }
        tbody {
            tr {
                td {
                    padding: 10px 15px;
                }
            }
        }
    }
}