@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Roboto", sans-serif;
    color: #1f1f1f;
}
p, a, input, button, label {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    font-style: normal;
}
h1, h2, h3, h4, h5, h6{
    font-family: "Marcellus", serif;
} 
p{
    font-size: 16px;
}
.full-container{
    width: 100%;
}
.container {
    max-width: 1300px;
    margin: 0px auto;
    padding: 0px 15px;
    width: 100%;
}
.header-bg{
    padding: 15px 0px;
    width: 100%;
    position: relative;
    background: #fff;
    box-shadow: 0 0 4px 3px rgba(79, 79, 79, .14);
    @media (max-width: 1480px) {
        display: flex;
        gap: 20px;
        justify-content: flex-start;
    }
    @media (max-width: 767px) {
        display: block;
    }
    .mainmenu{
        border-right: 1px solid #dcdcdc;
        width: 81px;
        height: 100%;
        display: table;
        position: absolute;
        top: 0px;
        @media (max-width: 1480px) {
            position: relative;
            width: 44px;
        }
        .hamburger{
            position: absolute;
            left: 20px;
            top: 30px;
            width: 30px;
            height: 30px;
            cursor: pointer;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: 5px;
            @media (max-width: 1480px) {
                top: 15px;
            }
            @media (max-width: 767px) {
                top: 12px;
                width: 22px;
                height: 22px;
                gap: 4px;
            }
            span{
                width: 100%;
                height: 3px;
                border-radius: 5px;
                transition: all 0.3s ease-in-out;
                display: block;
                background-color: var(--color-button-bg);
            }
        }
    }
    .main-header{
        display: flex;
        position: relative;
        justify-content: center;
        align-items: center;
        max-width: 1300px;
        padding: 0px 15px;
        margin: auto;
        width: 100%;
        @media (max-width: 767px) {
            flex-direction: column;
        }
        @media (max-width: 1480px) {
            margin: 0;
        }
        .logo a{
            display: flex;
            position: relative;
            z-index: 1;
            img{
                width: 250px;
                @media (max-width: 991px) {
                    width: 180px;
                }
            }
        }
        .search-bar{
            width: 100%;
            max-width: 520px;
            margin-left: auto;
            @media (max-width: 767px) {
                max-width: unset;
                margin-top: 20px;
            }
            form{
                display: flex;
                justify-content: center;
                border-radius: 7px;
                height: 45px;
                input[type="text"]{
                    height: 45px;
                    font-size: 14px;
                    border-radius: 7px 0 0 7px;
                    padding: 10px 10px 10px 10px;
                    color: #2e2e2e;
                    width: 100%;
                    border: 0px;
                    border: 1px solid #ccc;
                    background: #fff;
                    &:focus{
                        outline: none;
                    }
                }
                button{
                    height: 45px;
                    width: 120px;
                    padding: 5px 0;
                    border-radius: 0 7px 7px 0;
                    background-color: var(--color-button-bg);
                    font-size: 16px;
                    font-weight: 400;
                    border: 0px;
                    color: var(--color-button-text);
                    cursor: pointer;
                    transition: all 0.3s ease;
                    &:hover{
                        background-color: var(--color-secondary);
                        transition: all 0.3s ease;
                    }
                }
            }
        }
    }
}

.ourcollections-section{
    margin-top: 50px;
    @media (max-width: 767px) {
        margin-top: 20px;
    }
    .owl-nav {
        position: absolute;
        top: 45%;
        width: 100%;
        button {
            height: 40px;
            width: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff !important;
            border-radius: 50%;
            box-shadow: -2px 1px 10px #bdbdbd;
            cursor: pointer;
            position: absolute;
            left: -20px;
            @media (max-width: 767px) {
                left: -10px;
            }
            span {
                font-size: 35px;
                color: #535353;
            }
        }
        button.owl-next {
            left: auto;
            font-weight: 400;
            right: -20px !important;
            @media (max-width: 767px) {
               right: -10px !important;
            }
        }
    }
    .Collection-section {
        .collection-item {
            position: relative;
            text-decoration: none;
            width: 100%;
            display: block;
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 5px;
            }
            .content {
                position: absolute;
                bottom: 0;
                display: grid;
                padding: 15px;
                z-index: 2;
                background: var(--color-primary);
                border-radius: 0px 20px 0px 0px;
                max-width: 80%;
                span{
                    background: #fff;
                    padding: 5px 10px;
                    text-align: left;
                    font-size: 12px;
                    color: var(--color-primary);
                    border-radius: 100px;
                    margin-bottom: 10px;
                    display: table;
                    @media (max-width: 767px) {
                        display: none;
                    }
                }
                .text {
                    h3 {
                        color: #FFF;
                        font-size: 24px;
                        font-weight: 400;
                        overflow: hidden;
                        display: -webkit-box;
                        -webkit-line-clamp: 2;
                        -webkit-box-orient: vertical;
                        text-align: center;
                        text-align: left;
                        line-height: 1.4;
                        margin-bottom: 7px;
                        @media (max-width: 767px) {
                            -webkit-line-clamp: 1;
                        }
                        @media (min-width: 768px) and (max-width: 1023px) {
                            font-size: 18px;
                        }
                        @media (max-width: 767px) {
                            font-size: 4.3vw;
                        }
                    }
                    p{
                        text-align: left;
                        font-size: 14px;
                        color: #fff;
                         overflow: hidden;
                        display: -webkit-box;
                        line-height: 1.5;
                        -webkit-line-clamp: 3;
                        -webkit-box-orient: vertical;
                        @media (max-width: 767px) {
                            -webkit-line-clamp: 2;
                        }
                    }
                }
            }
        }
    }
}
.all-in-one-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    @media (max-width: 767px) {
       grid-template-columns: auto;
    }
    .content {
        background: #FFF;
        margin-left: -60px;
        padding: 60px 40px;
        border-radius: 20px 0px 0px 20px;
        position: relative;
        z-index: 1;
        @media (max-width: 1024px) {
            padding: 30px;
        }
        @media (max-width: 767px) {
            margin-left: 0px;
            padding: 20px 0px;
        }
        .categoryname{
            font-size: 16px;
            font-weight: 400;
            line-height: 25px;
            color: var(--color-primary);
            margin-bottom: 10px;
            display: block;
            @media (max-width: 767px) {
               text-align: center;
            }
        }
        h3 {
            font-size: 32px;
            font-weight: 600;
            line-height: 42px;
            margin-bottom: 15px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;align-self: start;
            a{
                font-family: "Marcellus", serif;
            }
            @media (min-width: 768px) and (max-width: 1023px) {
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                font-size: 28px;
                margin-bottom: 5px;
            }
            @media (max-width: 767px) {
                text-align: center;
                -webkit-line-clamp: 3;
                font-size: 6.7vw;
                line-height: 120%;
            }
            a{
                text-decoration: none;
                color: #1f1f1f;
                transition: all 0.3s ease;
                &:hover{
                    color: var(--color-primary);
                    transition: all 0.3s ease;
                }
            }
        }
        p {
            color: #3D3D3D;
            font-size: 16px;
            font-weight: 400;
            line-height: 25px; /* 156.25% */
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 7;
            -webkit-box-orient: vertical;
            @media (min-width: 768px) and (max-width: 1023px) {
                font-size: 14px;
                line-height: 22px;
            }
            @media (max-width: 767px) {
                text-align: center;
                -webkit-line-clamp: 4;
            }
        }
        a.explore-btn {
            border-radius: 5px;
            background: var(--color-button-bg);
            width: 140px;
            height: 40px;
            display: flex;
            margin-top: 30px;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--color-button-text);
            font-size: 16px;
            gap: 10px;
            font-weight: 500;
            line-height: 25px;
            transition: all 0.3s;
            @media (min-width: 768px) and (max-width: 1023px) {
                margin-top: 10px;
            }
            @media (max-width: 767px) {
              margin: 10px auto 15px;
            }
            img {
                transition: transform 0.3s ease;
            }
            &:hover {
                background: var(--color-secondary);
                transition: all 0.3s;
                img {
                    transform: rotate(30deg);
                    transition: transform 0.3s ease;
                }
            }
        }
    }
    a.image {
        width: 100%;
        height: 100%;
        min-width: 0;
        position: relative;
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 5px;
        }
    }
}
.time{
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 4;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 28px;
    gap: 4px;
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 11px;
    color: #fff;
    @media (max-width: 767px) {
        display: none;
    }
}
.allinone-section {
    margin-top: 70px;
    @media (min-width: 768px) and (max-width: 1023px) {
        margin-top: 40px;
    }
    @media (max-width: 767px) {
        margin-top: 35px;
    }
    h2{
        font-size: 33px;
        font-weight: 600;
        margin-bottom: 22px;
    }
}
.latest-section{
    margin-top: 70px;
    padding: 50px 0px 60px;
    background: #253044;
    background: #E8F1F1;
    /* background-image: radial-gradient( circle farthest-corner at 50% 52.5%,  rgba(14,53,92,1) 0%, rgba(16,14,72,1) 90% ); */
    @media (max-width: 767px) {
        margin-top: 20px;
    }
    h2{
        color: var(--color-primary);
        font-size: 32px;
        margin-bottom: 40px;
        text-align: center;
        display: block;
        @media (max-width: 767px) {
            font-size: 28px;
            margin-bottom: 25px;
        }
    }
}
.article-section {
    display: flex;
    gap: 50px;
    margin-top: 25px;
    @media (min-width: 768px) and (max-width: 1023px) {
        gap: 15px;
    }
    @media (max-width: 767px) {
        flex-direction: column;
        gap: 15px;
    }
    .articles {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        @media (max-width: 1024px) {
            gap: 15px;
        }
        @media (max-width: 767px) {
            grid-template-columns:auto;
        }
        .item {
            display: grid;
            grid-template-columns: 0.6fr 1fr;
            align-items: center;
            background: #fff;
            padding: 15px;
            border-radius: 5px;
            @media (max-width: 767px) {
                flex-direction: column;
                gap: 10px;
                margin-bottom: 0px;
            }
            &:hover {
                .icon {
                    img {
                        transform: rotate(30deg);
                        transition: transform 0.3s ease;
                    }
                }
            }
            .image {
                height: 100%;
                max-height: 170px;
                width: 100%;
                flex: 1;
                img {
                    display: flex;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 5px;
                }
            }
            .content {
                flex: 1;
                padding: 15px;
                @media (max-width: 767px) {
                    padding: 0px;
                }
                a.title {
                    color: #1f1f1f;
                    font-size: 24px;
                    text-decoration: none;
                    line-height: 28px;
                    transition: all 0.3s ease;
                    overflow: hidden;
                    display: -webkit-box;
                    -webkit-line-clamp: 1;
                    -webkit-box-orient: vertical;
                    font-family: "Marcellus", serif;
                    @media (min-width: 768px) and (max-width: 1023px) {
                        font-size: 18px;
                        line-height: 28px;
                        margin-bottom: 0px;
                        -webkit-line-clamp: 1;
                    }
                    @media (max-width: 767px) {
                        font-size: 16px;
                        margin-bottom: 0px;
                        line-height: 22px;
                    }
                    &:hover{
                        color: var(--color-primary);
                        transition: all 0.3s ease;
                    }
                }
                p {
                    color: #1f1f1f;
                    font-size: 14px;
                    font-weight: 400;
                    margin-top: 10px;
                    line-height: 22px;
                    overflow: hidden;
                    display: -webkit-box;
                    -webkit-line-clamp: 3;
                    -webkit-box-orient: vertical;
                    @media (max-width: 767px) {
                        margin-top: 5px;
                        display: -webkit-box;
                        -webkit-line-clamp: 2;
                        -webkit-box-orient: vertical;
                    }
                }
                a.readmore {
                   color: var(--color-primary);
                   margin-top: 15px;
                   font-size: 14px;
                   display: block;
                }
            }
        }
    }
}
.more-section {
    padding: 50px 0;
    @media (max-width: 767px) {
        padding: 30px 0;
    }
    h2 {
        color: var(--color-primary);
        font-size: 32px;
        margin-bottom: 40px;
        text-align: center;
        display: block;
        @media (max-width: 767px) {
            font-size: 28px;
            margin-bottom: 25px;
        }
    }
    .moreitems {
        display: grid;
        grid-template-columns: 1.3fr 1fr;
        align-items: start;
        gap: 20px;
        @media (max-width: 767px) {
            grid-template-columns: auto;
        }
        .collection-item {
            position: relative;
            text-decoration: none;
            height: 100%;
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 5px;
                display: flex;
            }
            .content {
                position: absolute;
                bottom: 0;
                display: grid;
                padding: 15px;
                z-index: 2;
                background: var(--color-primary);
                border-radius: 0 20px 0 0;
                max-width: 80%;
                .text {
                    span{
                        background: #fff;
                        padding: 5px 10px;
                        text-align: left;
                        font-size: 12px;
                        color: var(--color-primary);
                        border-radius: 100px;
                        margin-bottom: 10px;
                        display: table;
                    }
                    h3 {
                        color: #FFF;
                        font-size: 24px;
                        font-weight: 400;
                        overflow: hidden;
                        display: -webkit-box;
                        -webkit-line-clamp: 2;
                        -webkit-box-orient: vertical;
                        text-align: center;
                        text-align: left;
                        line-height: 1.5;
                        margin-bottom: 10px;
                        @media (max-width: 767px) {
                            -webkit-line-clamp: 1;
                            margin-bottom: 7px;
                        }
                        a{
                            font-family: "Marcellus", serif;
                        }
                        @media (min-width: 768px) and (max-width: 1023px) {
                            font-size: 18px;
                        }
                        @media (max-width: 767px) {
                            font-size: 4.3vw;
                        }
                    }
                    p {
                        text-align: left;
                        font-size: 14px;
                        color: #fff;
                        overflow: hidden;
                        display: -webkit-box;
                        line-height: 1.5;
                        -webkit-line-clamp: 3;
                        -webkit-box-orient: vertical;
                        @media (max-width: 767px) {
                            -webkit-line-clamp: 2;
                        }
                    }
                }
            }
        }
        .articles {
            display: grid;
            grid-template-row: repeat(2, 1fr);
            gap: 15px;
            @media (max-width: 767px) {
                grid-template-columns: auto;
            }
            .item {
                display: grid;
                grid-template-columns: 0.6fr 1fr;
                align-items: center;
                @media (max-width: 767px) {
                    flex-direction: column;
                    gap: 10px;
                    margin-bottom: 0;
                }
                &:hover {
                    .icon {
                        img {
                            transform: rotate(30deg);
                            transition: transform 0.3s ease;
                        }
                    }
                }
                .image {
                    height: 100%;
                    max-height: 170px;
                    width: 100%;
                    flex: 1;
                    img {
                        display: flex;
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        border-radius: 5px;
                    }
                }
                .content {
                    flex: 1;
                    padding: 0 15px;
                    @media (max-width: 767px) {
                        padding: 0px;
                    }
                    a.title {
                        color: #1f1f1f;
                        font-size: 20px;
                        text-decoration: none;
                        font-weight: 600;
                        line-height: 28px;
                        transition: all 0.3s ease;
                        overflow: hidden;
                        display: -webkit-box;
                        -webkit-line-clamp: 1;
                        -webkit-box-orient: vertical;
                        font-family: "Marcellus", serif;
                        @media (min-width: 768px) and (max-width: 1023px) {
                            font-size: 18px;
                            line-height: 28px;
                            margin-bottom: 0;
                            -webkit-line-clamp: 1;
                        }
                        @media (max-width: 767px) {
                            font-size: 16px;
                            margin-bottom: 0;
                            line-height: 22px;
                        }
                        &:hover {
                            color: var(--color-primary);
                            transition: all 0.3s ease;
                        }
                    }
                    p {
                        color: #1f1f1f;
                        font-size: 14px;
                        font-weight: 400;
                        margin-top: 3px;
                        line-height: 22px;
                        overflow: hidden;
                        display: -webkit-box;
                        -webkit-line-clamp: 3;
                        -webkit-box-orient: vertical;
                        @media (max-width: 767px) {
                            margin-top: 5px;
                            display: -webkit-box;
                            -webkit-line-clamp: 2;
                            -webkit-box-orient: vertical;
                        }
                    }
                    a.readmore {
                        color: var(--color-primary);
                        margin-top: 15px;
                        font-size: 14px;
                        display: block;
                    }
                }
            }
        }
    }
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
    a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
        border-radius: 5px;
        border: 1px solid #ccc;
        text-decoration: none;
        color: #1f1f1f;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s;
        &:hover {
            background: var(--color-button-bg);
            color: var(--color-button-text);
            border-color: var(--color-button-bg);
        }
        &.active {
            background: var(--color-button-bg);
            color: var(--color-button-text);
            border-color: var(--color-button-bg);
        }
    }
}

.footer-section{
    background: #1f1f1f;
    padding: 20px 0px;
    .container{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        .footer-content{
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            width: 100%;
            @media (min-width: 768px) and (max-width: 991px) {
                flex-direction: column;
            }
            @media (max-width: 767px) {
                flex-direction: column;
                gap: 10px;
                align-items: flex-start;
            }
            .logo{
                img{
                    width: 200px;
                }
            }
            .footer-links{
                display: flex;
                gap: 20px;
                @media (max-width: 767px) {
                    flex-direction: column;
                    gap: 10px;
                }
                a{
                    color: #fff;
                    text-decoration: none;
                    font-size: 14px;
                    transition: all 0.3s ease;
                    &:hover{
                        color: var(--color-secondary);
                        transition: all 0.3s ease;
                    }
                }
            }
        }
        .footer-bottom{
            margin-top: 20px;
            text-align: center;
            border-top: 1px solid #3D3D3D;
            width: 100%;
            padding-top: 20px;
            p{
                margin: 0px;
                color: #cfcfcf;
                font-size: 12px;
                a{
                    color: #cfcfcf;
                }
            }
        }
    }
}
.articles-section {
    margin: 30px 0px 75px 0px;
    .container{
        display: grid;
        grid-template-columns: 1fr 0.5fr;
        gap: 50px;
        @media (max-width: 1024px) {
            gap: 20px;
        }
        @media (max-width: 767px) {
            grid-template-columns: auto;
        }
    }
    .left-section {
        h2{
            font-size: 33px;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 22px;
            @media (max-width: 1024px) {
                font-size: 28px;
            }
        }
        h3{
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        p {
            font-size: 16px;
            font-weight: 400;
            line-height: 28px;
            margin-bottom: 20px;
        }
        ul{
            margin-bottom: 20px;
            list-style-type: disc;
            padding-left: 25px;
            li{
                font-size: 16px;
                font-weight: 400;
                line-height: 28px;
                margin-bottom: 10px;
            }
        }
        img{
            margin-bottom: 20px;
            width: 100%;
        }
    }
    .right-artical{
        width: 100%;
        position: sticky;
        top: 0px;
        h3.title{
            font-size: 33px;
            font-weight: 600;
            line-height: 1.3;
            padding-bottom: 10px;
            margin-bottom: 30px;
            position: relative;
            @media (max-width: 991px) {
                font-size: 28px;
            }
            &::after{
                width: 70px;
                height: 1px;
                background: var(--color-primary);
                position: absolute;
                left: 0px;
                bottom: 0px;
                content: '';
            }
        }
        .articles {
            width: 100%;
            margin-bottom: 60px;
            .item {
                display: grid;
                grid-template-columns: 0.6fr 1fr;
                align-items: center;
                width: 100%;
                gap: 10px;
                margin-bottom: 30px;
                @media (max-width: 767px) {
                    flex-direction: column;
                }
                &:hover {
                    .icon {
                        img {
                            transform: rotate(30deg);
                            transition: transform 0.3s ease;
                        }
                    }
                }
                .image {
                    height: 100%;
                    max-height: 130px;
                    width: 100%;
                    overflow: hidden;
                    img {
                        display: flex;
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        border-radius: 5px;
                    }
                }
                .content {
                    flex: 1;
                    a.title {
                        color: #1f1f1f;
                        font-size: 20px;
                        text-decoration: none;
                        font-weight: 600;
                        line-height: 28px;
                        transition: all 0.3s ease;
                        overflow: hidden;
                        display: -webkit-box;
                        -webkit-line-clamp: 1;
                        -webkit-box-orient: vertical;
                        font-family: "Marcellus", serif;
                        @media (min-width: 768px) and (max-width: 1023px) {
                            font-size: 18px;
                            line-height: 28px;
                            margin-bottom: 0;
                            -webkit-line-clamp: 1;
                        }
                        @media (max-width: 767px) {
                            font-size: 16px;
                            margin-bottom: 0;
                            line-height: 22px;
                        }
                        &:hover {
                            color: var(--color-primary);
                            transition: all 0.3s ease;
                        }
                    }
                    p {
                        color: #1f1f1f;
                        font-size: 14px;
                        font-weight: 400;
                        margin-top: 3px;
                        line-height: 22px;
                        overflow: hidden;
                        display: -webkit-box;
                        -webkit-line-clamp: 2;
                        -webkit-box-orient: vertical;
                        @media (max-width: 767px) {
                            margin-top: 5px;
                            display: -webkit-box;
                            -webkit-line-clamp: 2;
                            -webkit-box-orient: vertical;
                        }
                    }
                    a.readmore {
                        color: var(--color-primary);
                        margin-top: 10px;
                        font-size: 14px;
                        display: block;
                    }
                }
            }
        }
        .single-item{
            margin-bottom: 40px;
            .collection-item {
                position: relative;
                text-decoration: none;
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 5px;
                    display: flex;
                }
                .content {
                    position: absolute;
                    padding: 20px;
                    z-index: 2;
                    top: 0px;
                    height: 100%;
                    width: 100%;
                    overflow: hidden;
                    &::after {
                        position: absolute;
                        top: 0px;
                        left: 0px;
                        width: 100%;
                        height: 100%;
                        background: rgba(0, 0, 0, 0.8);
                        z-index: 1;
                        content: '';
                        border-radius: 5px;
                    }
                    .text {
                        position: relative;
                        z-index: 2;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 100%;
                        height: 100%;
                        h3 {
                            color: #FFF;
                            font-size: 24px;
                            font-weight: 400;
                            overflow: hidden;
                            display: -webkit-box;
                            -webkit-line-clamp: 5;
                            -webkit-box-orient: vertical;
                            text-align: center;
                            line-height: 1.5;
                            margin-bottom: 10px;
                            a{
                                font-family: "Marcellus", serif;
                            }
                            @media (min-width: 768px) and (max-width: 1023px) {
                                font-size: 18px;
                            }
                            @media (max-width: 767px) {
                                font-size: 4.3vw;
                            }
                        }
                    }
                }
            }
        }
    }
}
.mobile-menu {
    position: fixed;
    background: rgba(0,0,0,.6);
    width: 100%;
    height: 100%;
    z-index: 100;
    display: none;
}
.mobile-menu.active {
    display: block;
}
.mobile-menu a {
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #ebebeb;
    padding: 12px 0 10px;
    display: block
}
.mobile-menu a:hover {
    color: #ff8150
}
.mobile-menu-wrapper {
    background: #fff;
    width: 100%;
    max-width: 320px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 50px 20px 0
}
@media (max-width: 700px) {
    .mobile-menu-wrapper {
        max-width:unset
    }
}
.mobile-menu-close {
    position: absolute;
    width: 30px;
    height: 30px;
    cursor: pointer;
    top: 10px;
    font-size: 24px;
    right: 10px;
}
.innerbanner{
    height: 315px;
    width: 100%;
    background: url('../images/image1.jpg') no-repeat center center;
    background-size: cover;
    background-position: 50%;
    position: relative;
    &::after{
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 1;
        content: '';
    }
    @media (max-width: 767px) {
        height: 200px;
    }
    .content{
        position: absolute;
        top: 36%;
        left: 0px;
        right: 0px;
        margin: auto;
        z-index: 2;
        text-align: center;
        padding: 0px 10px;
        @media (max-width: 767px) {
            top: 41%;
        }
        h1{
            color: #fff;
            font-size: 38px;
            font-weight: 600;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            @media (max-width: 767px) {
                font-size: 28px;
            }
        }
        ul.breadcrumb {
            list-style-type: none;
            display: flex;
            gap: 10px;
            justify-content: center;
            margin-top: 12px;
            @media (max-width: 767px) {
                display: none;
            }
            li {
                color: var(--color-secondary);
                font-size: 16px;
                line-height: 25px;
                a {
                    color: #fff;
                    text-decoration: none;
                }
            }
        }
    }
}
.innerpage-section{
    margin: 0px 0px 75px 0px;
    position: relative;
    z-index: 2;
    .container {
        max-width: 1270px;
        background: #fff;
        margin-top: 0px;
        padding: 30px;
        border-radius: 16px 16px 0px 0px;
        @media (max-width: 767px) {
            max-width: 95%;
            padding: 15px;
        }
        h2{
            font-size: 33px;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 22px;
            @media (max-width: 767px) {
                font-size: 26px;
                margin-bottom: 10px;
            }
        }
        h3{
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            @media (max-width: 767px) {
                font-size: 18px;
                margin-bottom: 10px;
            }
        }
        address{
            font-size: 16px;
            font-weight: 400;
            line-height: 28px;
            font-style: normal;
            @media (max-width: 767px) {
                font-size: 14px;
                line-height: 24px;
            }
        }
        p {
            font-size: 16px;
            font-weight: 400;
            line-height: 28px;
            margin-bottom: 20px;
            @media (max-width: 767px) {
                font-size: 14px;
                line-height: 24px;
            }
            a{
                color: #1f1f1f;
                text-decoration: none;
                transition: all 0.3s ease;
            }
        }
        ul{
            margin-bottom: 20px;
            list-style-type: disc;
            padding-left: 20px;
            li{
                font-size: 16px;
                font-weight: 400;
                line-height: 28px;
                margin-bottom: 10px;
                @media (max-width: 767px) {
                    font-size: 14px;
                    line-height: 24px;
                }
            }
        }
        .contact-button{
            display: inline-block;
            padding: 10px 40px;
            background-color: var(--color-button-bg);
            color: var(--color-button-text);
            text-decoration: none;
            border-radius: 5px;
            font-size: 16px;
            transition: background-color 0.3s ease;
            margin-top: 20px;
            &:hover {
                background-color: var(--color-secondary);
            }
        }
        .withus-section{
            width: 100%;
            display: flex;
            gap:20px;
            margin-top: 50px;
            overflow-x: auto;
            padding-bottom: 20px;
            @media (max-width: 767px) {
                flex-direction: column;
            }
            .item{
                flex: 1;
                border: 1px solid var(--color-primary);
                padding: 20px;
                border-radius: 10px;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                h3{
                    margin-bottom: 15px;
                }
                p{
                    margin-bottom: 0px;
                }
                a.contact-btn{
                    display: inline-block;
                    padding: 10px 40px;
                    background-color: var(--color-button-bg);
                    color: var(--color-button-text);
                    text-decoration: none;
                    border-radius: 5px;
                    font-size: 16px;
                    transition: background-color 0.3s ease;
                    margin-top: 20px;
                    text-align: center;
                    &:hover {
                        background-color: var(--color-primary);
                    }
                }
            }
        }
    }
}
.terms-section{
    min-height: 500px;
    .container {
        max-width: 1300px;
        background: #fff;
        padding: 30px 15px;
        border-radius: 16px 16px 0px 0px;
        h2{
            font-size: 33px;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 22px;
            @media (max-width: 767px) {
                font-size: 28px;
                line-height: 33px;
            }
        }
        h3{
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            @media (max-width: 767px) {
                font-size: 18px;
            }
        }
        p {
            font-size: 16px;
            font-weight: 400;
            line-height: 28px;
            margin-bottom: 15px;
            @media (max-width: 767px) {
                font-size: 14px;
                line-height: 24px;
            }
            a{
                color: #15a5ff;
                text-decoration: underline;
            }
        }
        ul{
            margin-bottom: 20px;
            list-style-type: disc;
            padding-left: 20px;
            li{
                font-size: 16px;
                font-weight: 400;
                line-height: 28px;
                margin-bottom: 10px;
                @media (max-width: 767px) {
                    font-size: 14px;
                    line-height: 24px;
                }
                a{
                    color: #15a5ff;
                    text-decoration: underline;
                }
            }
        }
        .table-structure{
            overflow-y: auto;
        }
        table {
            width: 100%;
            margin-bottom: 20px;
            border-collapse: collapse;
            td, th{
                border: 1px solid #ccc;
                border-collapse: collapse;
            }
            thead {
                th {
                    background: #efefef;
                    padding: 15px;
                    color: #000;
                    font-weight: 400;
                }
            }
            tbody {
                tr {
                    td {
                        padding: 10px 15px;
                    }
                }
            }
        }
    }
}
.search-section{
    background: #e9fafe;
    .container {
        max-width:814px;
        padding: 15px 13px 30px;
        .adrelated {
            display: block;
            text-align: right;
            p {
                font-size: 13px;
                color: #666;
                font-weight: 400;
                text-align: right;
                padding: 11px 0 2px;
            }
        }
        .items {
            display: block;
            margin-top: 15px;
            .item {
                display: grid;
                grid-template-columns: 1fr 140px;
                grid-gap: 20px;
                width: 100%;
                background: #fff;
                border: 1px solid #66a8ec;
                margin-bottom: 20px;
                position: relative;
                overflow: hidden;
                padding: 18px;
                @media (max-width: 600px) {
                    grid-template-columns: auto;
                    grid-gap: 10px;
                }
                .leftcontent {
                    .li-title {
                        @media (max-width: 600px) {
                            text-align: center;
                            text-align: center;
                            margin-bottom: 10px;
                            font-size: 20px;
                            line-height: 30px;
                        }
                        a{
                            color: #e80037;
                            font-size: 16px;
                            font-weight: 700;
                            text-decoration: underline;
                            line-height: 26px;
                            @media (max-width: 600px) {
                                text-align: center;
                            }
                        }
                    }
                    .li-descr {
                        line-height: 16px;
                        @media (max-width: 600px) {
                            text-align: center;
                        }
                        a {
                            color: #222;
                            font-size: 16px;
                            line-height: 26px;
                            margin-bottom: 15px;
                            display: block;
                        }
                    }
                    .url {
                        line-height: 16px;
                        @media (max-width: 600px) {
                            text-align: center;
                        }
                        a {
                            color: #3ca3fa;
                            font-size: 16px;
                        }
                    }
                    .linkls {
                        line-height: 16px;
                        margin-bottom: 5px;
                        @media (max-width: 600px) {
                            text-align: center;
                        }
                        a {
                            color: #000;
                            text-decoration: none;
                            font-size: 20px;
                            font-weight: 400;
                        }
                    }
                }
                .rightbtn {
                    padding-top: 5px;
                    a {
                        font-size: 15px;
                        color: #fff;
                        font-weight: 600;
                        display: flex;
                        background: #ff562d;
                        position: relative;
                        height: 50px;
                        border-radius: 20px;
                        overflow: hidden;
                        padding: 8px 20px;
                        justify-content: space-between;
                        align-items: center;
                        transition: all .3s;
                        @media (max-width: 600px) {
                            grid-template-columns: auto;
                            gap: 10px;
                            justify-content: center;
                            border-radius: 10px;
                            font-size: 20px;
                        }
                        &:hover{
                            background: #eb471e;
                            transition: all .3s;
                        }
                        i {
                            font-size: 18px;
                        }
                    }
                }
            }
        }

    }
}