/*-----------------------------------*\
 * style.css
\*-----------------------------------*/


/* @import url('https://fonts.cdnfonts.com/css/circular-std'); */



/*-----------------------------------*\
 * #CUSTOM PROPERTY
\*-----------------------------------*/

:root {
    /* fonts */
    --heading-fonts: 'Recoleta', sans-serif;
    --p-fonts: 'CircularStd-Light', sans-serif;


    /* color */
    --brand-color: #1777E7;
    --black: #000000;
    --white: #fff;
    --grey: #2F2F2F;
    --dark-grey: #1D1E1E;

    --btn-primary: #1777E7;
    --btn-secondary: #B8B8B8;
    --btn-black: #030511;
    --transition-1: 0.25s ease-in-out;

}

/*-----------------------------------*\
   * #RESET
  \*-----------------------------------*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

header a,
header img,
header time,
header span,
header input,
header label,
header select,
header button,
header textarea,
header ion-icon {
    display: block;
}

header input,
header button,
header select,
header textarea {
    background: none;
    border: none;
    font: inherit;
}

section button,
select {
    cursor: pointer;
    background: var(--btn-primary);
    padding: 1rem 2rem;
    border: none;
    outline: none;
    border-radius: 8px;

}

input,
textarea {
    width: 100%;
}

ion-icon {
    pointer-events: none;
}

p {
    font-family: var(--p-fonts);
}

:is(a, button, select) {
    outline-color: var(--scarlet);
    outline-offset: 3px;
}

::selection {
    background: #5a59d5;
    color: var(--bg-primary);
}

button, a{
    cursor: pointer !important;
}

html {
    font-family: var(--ff-roboto);
    scroll-behavior: smooth;
}

body {
    background: var(--bg-primary);
    transition: var(--transition-1);
}

body.active {
    overflow: hidden;
}





/*-----------------------------------*\
   * #REUSED STYLE
  \*-----------------------------------*/

.container {
    padding-inline: 20px;
}

.fixed{
    position: fixed;
}

.w-100 {
    width: 100%;
}

.btn {
    max-width: max-content;
    font-family: var(--p-fonts);
    padding: 1rem 2.3rem;
    color: var(--white);
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    border: none;
}

.btn-brand {
    background: var(--brand-color);
}

.btn-primary {
    background: var(--btn-black);
}

.btn-secondary {
    background: var(--btn-secondary);
    color: var(--black);
}

.section-subtitle {
    position: relative;
    color: var(--color-secondary);
    text-transform: uppercase;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.section-subtitle::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--color-secondary);
}

.section-title {
    max-width: 350px;
    margin-bottom: 30px;
}

.section-text {
    color: var(--color-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.tooltip {
    position: absolute;
    top: -40px;
    background: var(--raw-seinna);
    min-width: max-content;
    color: var(--white);
    font-size: 15px;
    font-weight: var(--fw-700);
    padding: 5px 10px;
    border-radius: var(--radius-4);
    box-shadow: var(--shadow-1);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-1);
    z-index: 1;
}



/*-----------------------------------*\
   * #HEADER
  \*-----------------------------------*/

.header {
    background: rgba(255, 255, 255, 0.459);
    backdrop-filter: blur(5px);
    padding-block: 15px;
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
    transition: var(--transition-1);
    z-index: 4;
    /* border-bottom: 1px solid rgb(233, 233, 233); */
}



.header.active {
    padding-block: 20px;
    background: #ffffff70;
    box-shadow: var(--shadow-1);
    border-bottom: 1px solid rgb(233, 233, 233);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.logo {
    position: relative;
    min-width: 77px;
    z-index: 2;
}

.logo a {
    color: black;
    font-family: var(--ff-saira-stencil-one);
}

.logo .logo-details {
    font-size: 15px;
    display: flex;
    align-items: center;
}

.navbar-actions {
    display: none;
}

.navbar-actions select {
    color: black;
    width: 45px;
}

.navbar-actions option {
    background: var(--bg-primary);
    color: black;
}


.header.active .theme-btn {
    background: var(--bg-primary);
}

.nav-toggle-btn {
    position: relative;
    transform: rotate(-55deg);
    transition: var(--transition-1);
    z-index: 2;
}

.nav-toggle-btn.active {
    transform: rotate(-45deg);
}

.nav-toggle-btn span {
    width: 20px;
    height: 2px;
    background: black;
    margin: 5px;
    transition: var(--transition-1);
}

.nav-toggle-btn :is(.one, .three) {
    width: 10px;
}

.nav-toggle-btn .one {
    margin-left: auto;
    transform-origin: left;
}

.nav-toggle-btn .three {
    transform-origin: right;
}

.nav-toggle-btn.active .one {
    transform: rotate(90deg) translateX(-3px);
}

.nav-toggle-btn.active .three {
    transform: rotate(90deg) translateX(3px);
}

.navbar {
    position: fixed;
    background: white;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    visibility: hidden;
    transition: 0.75s cubic-bezier(0.71, 0.01, 0.24, 0.99);
    transition-delay: 0.5s;
    z-index: 1;
}

.navbar.active {
    top: 0;
    visibility: visible;
    transition-delay: 0s;
}

.navbar-list>li {
    margin-block: 20px;
    padding-inline: 50px;
    overflow: hidden;
}

.navbar-link {
    position: relative;
    width: max-content;
    margin-inline: auto;
    color: black;
    font-family: var(--p-fonts);
    font-size: 0.9rem;
    padding: 10px;
    transform: translateY(50px);
    transition: 0.75s cubic-bezier(0.68, -0.55, 0.27, 2);
}


/* CSS to position the new navbar initially hidden */
.navbar-new {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: top 0.3s ease-in-out;
}

/* CSS to display the new navbar when active */
.navbar-new.active {
    top: 0;
}

@media (max-width: 991px) {
    .navbar-link {
        font-size: 1.5rem;
    }
}

.navbar.active .navbar-link {
    transform: translateY(0);
    transition-delay: 0.5s;
}

.navbar-link::before {
    content: "";
    position: absolute;
    top: 75%;
    transform: translateY(-50%);
    left: 0;
    height: 3px;
    width: 0;
    background: #5654CA;
    transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus)::before {
    width: 100%;
}

button.nav-btn {
    font-family: var(--p-fonts);
    padding: 0.7rem 2.3rem;
    background: var(--brand-color);
    color: var(--white);
    border-radius: 8px;
    font-size: 0.9rem;
}

/* .sm-nav-btn */


@media (min-width: 550px) {
    .container {
        max-width: 550px;
        margin-inline: auto;
    }

    .section-title {
        max-width: 380px;
    }
}

/* responsive for larger than 768px screen */

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    .section-title {
        max-width: 430px;
    }
}


/* responsive for larger than 992px screen */

@media (max-width: 991px) {
    .header {
        backdrop-filter: none;
        background: white;
    }

    .header.active {
        background: white;
    }

    .sm-nav-btn {
        display: inline !important;
        visibility: visible;
    }


    .nav-btn {
        display: none;
    }
}

@media (min-width: 992px) {

    :root {
        --fs-2: 3rem;
        --section-padding: 100px;
    }

    .container {
        max-width: 980px;
    }

    .section-content {
        position: relative;
        padding-left: 40px;
    }

    .section-subtitle {
        position: absolute;
        top: 0;
        left: 0;
        transform: rotate(0.75turn) translateX(-100%);
        transform-origin: left top;
        margin-bottom: 0;
    }

    .section-subtitle::after {
        top: 8px;
        left: auto;
        right: calc(100% + 20px);
    }

    .header {
        padding-block: 25px;

    }

    .header.active {
        padding-block: 15px;
    }

    .navbar-actions {
        order: 1;
        margin-left: 0;
    }

    .nav-toggle-btn {
        display: none;
    }

    .navbar {
        all: unset;
    }

    .navbar-link {
        transform: translateY(0);
        padding-inline: 5px;
    }

    .navbar-list>li {
        margin: 0;
        padding: 0;
        overflow: visible;
    }

    .navbar-list {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    .navbar-link::before {
        height: 2px;
    }

    .sm-nav-btn {
        display: none;
        visibility: hidden;
    }


}

/* responsive for larger than 1200px screen */

@media (min-width: 1200px) {
    .container {
        max-width: 1150px;
    }

    .section-title {
        max-width: 460px;
    }

}

/* Banner */

.banner {
    width: 100%;
    overflow: hidden;
    /* background: grey; */
    margin-top: 7rem;

}


.banner-content {
    transform: translate(20%, 0px);
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.banner h1,
.banner p {
    font-family: 'Recoleta', sans-serif;
}

.banner h1 {
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.1;
}

.banner h1 span {
    color: var(--brand-color);

}

.banner p {
    font-family: var(--p-fonts);
    font-size: 0.9rem;
    line-height: 1.4;
}

.banner-btn {
    display: flex;
    gap: 1rem;
}

@media (max-width: 991px) {
    .banner-content {
        transform: translate(0, 0);
        max-width: 720px;
        padding-inline: 30px;
        margin-inline: auto;
    }

    .banner h1 {
        font-size: 3rem;
        font-weight: 700;
        line-height: 1.1;
    }
}

@media (max-width: 768px) {
    .banner-content {
        transform: translate(0, 0);
        max-width: 550px;
    }
}


@media (max-width: 520px) {
    .banner-content {
        transform: translate(0, 0);
        max-width: 720px;
        padding-inline: 20px;
    }

    .banner p br {
        content: " ";
    }

    .banner p br::after {
        content: " ";
    }

    .banner h1 {
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1.1;
    }

    /* .banner-btn {
        flex-direction: column;
    } */

    .banner-btn .btn {
        max-width: max-content;
        font-family: var(--p-fonts);
        padding: 1rem 1.2rem;
        color: var(--white);
        border-radius: 8px;
        font-size: 0.9rem;
        outline: none;
        border: none;
    }
}

@media (max-width: 380px) {
    .banner h1 {
        font-size: 2rem;
    }
}

.banner-img {
    position: relative;
    margin-top: 5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    /* background-color: #2196F3; */
    /* padding: 0 5rem; */
    /* height: 100vh; */
}

.banner-img img {
    width: 100%;
}

.banner-img-p {
    font-size: 1.5rem;
    text-align: center;
    margin-top: -2rem;
    margin-bottom: 2rem;
}

@media (min-width: 669px) {
    /* .banner-img-bg {
        display: none;
    } */

    .banner-img-sm {
        display: none;
    }
}



@media (max-width: 668px) {
    .banner-img-bg {
        display: none;
    }

    .banner-img {
        padding: 0 3rem;
    }

    .banner-img-sm {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        /* background: red; */
    }

    .banner-img-sm p {
        line-height: 1.7;
    }

    .banner-img-sm img {
        width: 100%;
    }

}


@media (max-width: 530px) {
    .banner-img {
        padding: 0 1.3em
    }

    .banner-img-p {
        font-size: 1rem;
        line-height: 1.3;
        margin-top: -1.5rem;
    }

}

.popup,
.popup2 {
    background-color: rgba(0, 0, 0, .5);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

.popup-content,
.popup-content2 {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 3rem;
    width: 100%;
    max-width: 550px;
    align-items: start;
}

.popup-content h2 {
    font-family: var(--heading-fonts);
    font-size: 2.5rem;
    color: var(--brand-color);
}

.popup-content li {
    list-style-type: unset;
    font-family: var(--p-fonts);
    list-style-position: inside;
}

.popup button{
    color: var(--white);
    cursor: pointer;
    background: var(--btn-primary);
    padding: 1rem 2rem;
    border: none;
    outline: none;
    border-radius: 8px;
    font-family: var(--p-fonts);
}

.pop-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    font-family: var(--p-fonts);
}

@media (max-width: 580px) {
    .popup,
    .popup2 {
        padding: 0 1rem;
    }

    .popup-content h2 {
        font-size: 1.5rem;
    }

    .popup-content li {
        font-size: 0.8rem;
    }

    .popup-content {
        gap: 0.8rem;
        padding: 2rem 2rem;
    }

}

.about {
    /* width: 100%; */
    /* height: 100vh; */
    background: var(--dark-grey);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 0rem 6rem 0rem;
}

.about-content-box {
    max-width: 900px;
    width: 100%;
}

.about-heading h3 {
    font-size: 3.5rem;
    font-family: var(--heading-fonts);
    color: var(--white);
    font-weight: 400;
    line-height: 1.1;
}

.about-heading h3 span {
    color: var(--brand-color);
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}

.about-content p,
.about-content b,
.about-content button {
    color: var(--white);
}

.about-content1 {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
}

.about-content1 p {
    line-height: 1.5;
    font-weight: 300;
}

.about-content2 {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 1rem;
}

.about-content2 p {
    line-height: 1.5;
}


.about-content2 p {
    text-align: right;
}

@media (max-width: 960px) {
    .about {
        padding: 5rem 1.5rem 2rem 1.5rem;
    }

    .about-content {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-content2 {
        align-items: start;
    }

    .about-content2 p {
        text-align: left;
    }

    .about-heading h3 {
        font-size: 3rem;
    }

}

@media (max-width: 524px) {
    .about-heading h3 {
        font-size: 2rem;
    }
}

@media (max-width: 390px) {
    .about-heading h3 {
        font-size: 1.7rem;
    }
}

.booking {
    width: 100%;
    /* background: var(--dark-grey); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 6rem 0rem 6rem 0rem;
}

.booking-box {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    /* align-items: center; */
    gap: 5rem;
}

.booking h3 {
    font-size: 3.5rem;
    font-family: var(--heading-fonts);
    color: var(--black);
    font-weight: 400;
    line-height: 1.1;
}

.booking h3 span {
    color: var(--brand-color);
}

.booking-content1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.booking-content1 img {
    width: 450px;
}

.booking-content2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.booking-content2 img {
    width: 550px;
    margin-top: -8rem;
}

.booking-content1-details {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.booking-content2-details {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.booking-content1-details button,
.booking-catch button {
    background: var(--black);
    color: var(--white);
}

.booking-catch {
    font-size: 3rem;
}

.booking-catch span {
    color: var(--brand-color);
}

@media (max-width: 524px) {
    #btnPop {
        margin-top: 1rem;
    }
}



@media (max-width: 946px) {
    .booking {
        padding: 6rem 1.5rem 6rem 1.5rem;
    }

    .booking-content2 br {
        content: " ";
    }

    .booking-content2 br::after {
        content: " ";
    }

    .booking-content2 {
        gap: 2rem;
    }

    .booking-content1 img {
        width: 350px;
    }

    .booking-content2 img {
        width: 400px;
    }
}

@media (max-width: 850px) {
    .booking-content1 br {
        content: " ";
    }

    .booking-content1 br::after {
        content: " ";
    }
}

@media (max-width:768px) {
    .booking h3 {
        font-size: 3rem;
    }

    .booking-box h3 br {
        content: " ";
    }

    .booking-box h3 br::after {
        content: " ";
    }

    .booking-content1 {
        flex-direction: column-reverse;
    }

    .booking-content2 {
        flex-direction: column;
    }

    .booking-content2 img {
        margin-top: 0;
    }

    .booking-content1-details {
        width: 100%;
    }

    .booking-content2-details {
        width: 100%;
    }

    .booking-content2 img {
        width: 350px;
    }

    .booking-catch {
        font-size: 2rem;
    }

}

@media (max-width: 524px) {
    .booking-box {
        gap: 3rem;
    }

    .booking h3 {
        font-size: 2rem;
        font-weight: 500;
    }

    .booking-catch {
        font-size: 1.3rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        /* gap: 0.1rem; */
    }
}

@media (max-width: 415px) {
    .booking h3 {
        font-size: 2rem;
    }

    .booking-content1 {
        overflow: hidden;
    }

    .booking-content2 {
        overflow: hidden;
    }
}


.safety {
    background: var(--black);
    padding: 4rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}


.safety p,
.safety h3 {
    color: var(--white);
}

.safety h3 {
    font-size: 3.5rem;
    font-weight: 400;
    font-family: var(--heading-fonts);
    line-height: 1.2;
}


.safety p {
    line-height: 1.4;
}

.safety button {
    background: var(--white);
}

.safety span {
    color: var(--brand-color);
}

.safety img {
    width: 400px;
}

.safety-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* width: 40%; */
    gap: 1rem;
}

@media (max-width: 1100px) {
    .safety h3 {
        font-size: 3rem;
    }

    .safety img {
        width: 300px;
    }
}

@media (max-width: 830px) {
    .safety {
        flex-direction: column;
    }

    .safety img {
        width: 400px;
    }
}

@media (max-width: 500px) {
    .safety h3 {
        font-size: 2.3rem;
    }

    .safety br {
        content: " ";
    }

    .safety br::after {
        content: " ";
    }

    .safety img {
        width: 100%;
    }
}

.why {
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 100%; */
    padding: 6rem 3rem;
    background: #EFF5FF;
}

.why div {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 900px;
}

.why h3 {
    font-size: 3.5rem;
    font-family: var(--heading-fonts);
    font-weight: 400;
    line-height: 1;
}

.why h3 span:first-child {
    color: var(--brand-color);
}

.why h3 span:last-child {
    color: grey;
    text-decoration: line-through;
}

.why ul {
    line-height: 2.4;
    font-family: var(--p-fonts);
}

.why li {
    list-style-image: url(../img/pseudo.png);
    list-style-position: inside;
    background-size: 5px !important;
}

.why button {
    color: var(--white);
    background: var(--black);
}

@media (max-width: 680px) {
    .why h3 {
        font-size: 2rem;
    }

    .why p br {
        content: " ";
    }

    .why p br::after {
        content: " ";
    }
}

@media (max-width: 450px) {
    .why {
        padding: 5rem 1.5rem;
    }
}

.start {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem 2rem;
}

.start-box {
    /* width: 100%; */
    max-width: 900px;
    background: var(--grey);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 4rem 6rem;
    border-radius: 15px;
    box-shadow: 3px 3px 10px black;
}

.start h3 {
    font-size: 2.5rem;
    color: var(--white);
    font-family: var(--heading-fonts);
    font-weight: 400;
}

.start p {
    color: var(--white);
}

.start-button {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.start-button a:nth-child(1) button {
    background: var(--white);
}

.start-button a:nth-child(2) button {
    background: none;
    color: var(--white);
}

@media (max-width: 770px) {
    .start-box {
        padding: 3rem 4rem;
    }

    .start h3 {
        font-size: 2rem;
    }

    .start p br {
        content: " ";
    }

    .start p br::after {
        content: " ";
    }

}

@media (max-width: 470px) {
    .start {
        padding: 3rem 1.5rem;
    }

    .start-box {
        padding: 2rem 2rem;
    }

    .start-button {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
        flex-direction: column;
    }
}

footer {
    padding: 3rem 5rem;
    background: var(--dark-grey);
    display: flex;
    flex-direction: column;
    gap: 5rem;
    position: relative;
}

.footer-box {
    display: flex;
    align-items: end;
    gap: 3rem;
}

footer .details {
    width: 60%;
    color: var(--white);
}

footer .details p {
    font-size: 1rem;
}

footer form {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

form input {
    padding: 1rem 1rem;
    border-radius: 10px;
    border: none;
    outline: none;
}

form input[type=submit] {
    width: 30%;
    background: var(--brand-color);
    color: white;
}

footer .others {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: end;
}

footer .icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-direction: column;
    color: white;
}

footer .icons div {
    display: flex;
    justify-content: space-between;
}

footer .ads {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

footer .ads p {
    font-size: 0.7rem;
    color: var(--white);
}

footer .ads img {
    width: 160px;
}

.footer-links {
    border-top: 0.5px solid rgba(128, 128, 128, 0.562);
    padding: 4rem 0 1rem 0;
}

.footer-links a {
    /* width: 100%; */
    padding: 0 2rem 0 0;
    color: var(--white);
    font-family: var(--p-fonts);

}

footer .copyright {
    margin-top: -2rem;
    color: rgba(128, 128, 128, 0.562);
}

@media (max-width: 960px) {
    .footer-box {
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    footer .others {
        flex-direction: row-reverse;
    }

}

@media (max-width: 730px) {
    footer .details {
        width: 100%;
    }

    footer .details p {
        line-height: 1.7;
    }

    footer {
        padding: 3rem 2rem;
    }
}

@media (max-width: 620px) {
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        font-size: 1.2rem;
    }
}

@media (max-width: 450px) {
    footer .others {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        align-items: flex-start;
    }

    footer .ads,
    footer .icons {
        align-items: flex-start;
    }

    footer .icons div {
        width: 100%;
    }

    footer .ads {
        display: none;
    }

    .footer-links {
        font-size: 1rem;
    }

    footer .details p {
        font-size: 1rem;
    }
}