::before,
::after,
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/************** START header style *******************************************/

body {
    font-family: "Inter", sans-serif;

    header {
        position: fixed;
        width: 100%;
        z-index: 1000;
    }

    .first-header {
        top: 0;
        background-color: black;
    }

    .second-header {
        height: 63px;
        top: 56px;

        background-color: white;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    }

    nav {
        height: 4rem;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;

        .brand-name {
            font-size: 3rem;
        }

        .links-container {
            list-style: none;
            display: flex;
            height: 100%;
            align-items: center;
            justify-content: center;
            margin-right: 5rem;
            margin-bottom: 0 !important;

            .link {
                padding: 1rem;
                align-self: center;
                display: flex;
                align-items: center;
                height: 100%;
                cursor: pointer;

                a {
                    color: black;
                }

                a:hover {
                    color: #f56040;
                }
            }
        }
    }
}

.contact-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-items: center;
    /* justify-content: revert; */
    padding: 1rem 1rem 0 5rem;
    align-content: center;
    align-items: center;
}

.social-icon {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-content: center;
    flex-wrap: wrap;
}

.social-icon button {
    font-size: 17px;
    color: white;
    /* height: 35px; */
    /* width: 35px; */
    /* background: white; */
    /* border-radius: 60%; */
    margin: 10px 10px;
    border: none;
    cursor: pointer;
    color: white;
    background: none;
}

.social-icon button:active {
    transform: scale(0.8);
    box-shadow: 0 3px 15px -2px;
}

.social-icon i:hover {
    color: #f56040;
    font-size: 1.3rem;
}

.create-ads {
    padding: 0.5rem 1.5rem;
    /* background-color: #F56040; */
    border-radius: 14px;
    color: #f56040;
    margin: 0;
    border: solid 1px #f56040;
    margin-left: 2rem;
}

a.create-ads:hover {
    background-color: #f56040;
    color: white;
    margin-bottom: 0.3rem;
    display: block;
}

.logo-container {
    display: flex;
    flex-direction: row;
    margin-left: 14rem;
}

.contact-container p {
    color: white;
}

.contact-container a {
    text-decoration: none;
    color: white;
}

.btn-twitter {
    font-size: 17px;
    color: white;
    height: 20px;
    width: 20px;
    margin: 9px 10px !important;
    border: none;
    cursor: pointer;
    color: white;
    background: none;
}

.btn-twitter:hover {
    height: 25px;
    width: 25px;
    color: #f56040;
}

.btn-twitter svg:hover path {
    fill: #f56040;

}


a {
    text-decoration: none;
}



@media (max-width: 750px) {
    body {
        .first-header {
            display: none !important;
        }

        .second-header {
            top: 0;
        }

        .links-container {
            display: none !important;
        }

        .logo-container {
            margin-left: 2rem;


        }


        nav {
            height: 4rem;
            width: 100%;
            display: flex;
        }

        .nav-links {
            display: block;
            position: absolute;
            top: 4rem;
            right: 0;
            width: 100%;

            &::before {
                background: rgba(0, 0, 0, .5);
                content: '';
                height: 100vh;
                right: 0;
                top: 0;
                position: absolute;
                opacity: 0;
                visibility: hidden;
                width: 100%;
                transition: all .3s;
            }

            li {
                border-bottom: 1px solid #ddd;
                opacity: 0;
                visibility: hidden;
                transform: translateY(-20px);
                transition: all .3s;

                a {
                    background: #fff;
                    color: #404040;
                    display: block;
                    font-size: 18px;
                    font-weight: 700;
                    padding: 12px 20px;
                    text-align: left;
                    width: 100%;
                    transition: all .3s;

                    &:hover {
                        color: coral;
                    }
                }
            }
        }



        .second-header input[type="checkbox"] {
            position: absolute;
            opacity: 0;
            visibility: hidden;
            right: 0;

            &:checked+label {
                border: 4px solid silver;
                border-radius: 50%;
                height: 28px;
                top: 16px;
                right: 18px;
                width: 28px;
                transform: rotate(-135deg);

                &::before {
                    background: silver;
                    top: 8px;
                    right: 4px;
                    width: 12px;
                }

                &::after {
                    background: silver;
                    opacity: 1;
                    top: 8px;
                    right: 4px;
                    visibility: visible;
                    width: 12px;
                }

                &:hover {
                    border-color: coral;

                    &::before,
                    &::after {
                        background: coral;
                    }
                }
            }

            &:checked~.nav-links {
                &::before {
                    opacity: 1;
                    visibility: visible;
                }

                li {
                    opacity: 1;
                    visibility: visible;
                    transform: translateY(0);

                    @for $i from 1 through length($nav-links) {
                        &:nth-child(#{$i}) {
                            transition-delay: ($i - 1)/10+s;
                        }
                    }
                }
            }
        }


        .second-header label {
            background: none transparent;
            border: 4px solid coral;
            border-left: 0 solid transparent;
            border-right: 0 solid transparent;
            cursor: pointer;
            display: block;
            height: 24px;
            position: absolute;
            top: 18px;
            right: 20px;
            width: 24px;
            transition: all .2s;

            &::before {
                background: coral;
                content: '';
                height: 4px;
                right: 0;
                position: absolute;
                top: 6px;
                width: 24px;
                transition: all .2s;
            }

            &::after {
                background: coral;
                content: '';
                height: 4px;
                right: 0;
                position: absolute;
                top: 6px;
                opacity: 0;
                visibility: hidden;
                width: 100%;
                transform: rotate(90deg);
                transition: all .2s;
            }
        }

        .contact-header {
            background-color: white;

            padding: 1rem 0;
        }

        #contact-header {
            color: #F56040;
            padding: 0.6rem 2rem;
            width: max-content;
            margin: 0 auto;
            text-align: center;
            border: solid 1px #F56040;
            border-radius: 1.5rem;
            font-size: 1rem;
        }

        .hero {
            margin-top: 4rem;
            flex-direction: column;
            padding-bottom: 2rem;
            height: auto;
        }

        .hero-img {
            position: absolute;
            top: 7rem;
            width: 100%;
            height: 19rem;
        }

        .hero-swiper {
            width: 100%;
        }

        .swiper {
            width: 100%;
        }

        .advertise-hero-btn {
            font-size: 1rem;
            margin-top: 3rem;
        }

        .swiper {
            width: 100%;
            height: 100%;
        }

        .hero-swiper p {
            margin-top: 4rem;
            padding: 0 1rem;
            text-align: justify;
            font-size: 1rem;
        }

        .hero-swiper h2 {
            margin-top: 2rem;
            /* height: 3rem; */
            margin-bottom: 20rem;
        }

        .why-title {
            padding: 3rem 0.1rem 0;
            font-size: 1.6rem;
        }

        .why-desktop {
            display: none;
        }

        .card {

            height: 29rem;
            width: 18rem;

        }

        .card__overlay h5 {

            font-size: 1.1rem;

        }

        .card__overlay p {
            margin: 0rem 0.5rem;
        }

        .card__header {

            padding: 1em 1em 0;

        }

        .example-ad {

            width: 100%;
        }

        .ad-example-cards:before {

            height: 100%;
            width: 95%;
            border-radius: 21px;

        }

        .example-ad-btn {
            z-index: 1;
        }

        .ads-contact-section {
            margin: 0 0 2rem;

        }

        .ads-contact-container {
            margin: 6rem auto 0;
        }

        .animation-container {
            display: none;
        }

        .form-container .col-6 {

            min-width: 100% !important;

        }

        .form-container form {

            min-width: 100%;
        }
        .iziToast-wrapper-bottomCenter, .iziToast-wrapper-center {
            bottom: 0;
            left: 0;
            right: 0;
            text-align: center;
            padding: 1rem 0;
        }

    }


}

/************** END header style *******************************************/

/*****************START  hero style ***********************************************/
.hero {
    height: calc(100vh - 120px);
    position: relative;
    background: linear-gradient(90deg, #fff4ed, white);
    display: flex;
    flex-direction: row;
}

.hero-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img img {

    /* right: -13rem; */
    min-width: 100%;
    /* max-height: 75%; */
}

.hero-swiper {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.hero-swiper h2 {
    text-align: center;
    color: orangered;
}

.hero-swiper p {
    margin-top: 4rem;
    padding: 0 5rem;
    text-align: justify;
}

.swiper-btn-container {
    display: flex;
    flex-direction: row;
    align-content: space-between;
    flex-direction: row;

    gap: 3rem;
}

.advertise-hero-btn {
    padding: 1rem 1.5rem;
    background-color: black;
    border-radius: 5px;
    color: white !important;
    font-size: 1.2rem;
}

.advertise-hero-btn:hover {
    background-color: #f56040;
}

/*****************END  hero style ***********************************************/

/*****************START Why ads style ***********************************************/
.row-column {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.why-section {
    display: flex;
    flex-direction: column;
    column-gap: 2rem;
    align-items: center;
    background: linear-gradient(180deg, white, #fff4ed, #f6e0df);
    padding-bottom: 5rem;
}

.why-title {
    text-align: center;
    display: block;

    padding: 3rem 0 1rem 0;
    font-size: 2.2rem;
    color: #000000;
    font-weight: bold;
}

.row-why {
    display: flex;
    flex-direction: row;
    width: 80%;
}

.why-image {
    position: relative;
    text-align: center;
    z-index: 1;
}

.why-image img {
    width: 80%;

    margin: 1rem auto;
    z-index: 2;
    position: relative;

    box-shadow: 0 10px 10px 0 rgb(0 0 0 / 38%);
}

.why-image1::after {
    content: "";
    position: absolute;
    width: 10%;
    height: 80%;
    background-color: #f56040;
    left: 9.3%;
    right: initial;
    top: 2.5%;
    z-index: 0;
}

.why-image2::before {
    content: "";
    position: absolute;
    width: 10%;
    height: 80%;
    background-color: #0070cf;
    right: 9.3%;
    left: initial;
    bottom: 2.5%;
    z-index: 0;
}

.why-image3::after {
    content: "";
    position: absolute;
    width: 70%;
    height: 20%;
    background-color: #0070ce;
    left: initial;
    right: 9.3%;
    top: 2.5%;
    z-index: 0;
}

.why-image4::after {
    content: "";
    position: absolute;
    width: 70%;
    height: 20%;
    background-color: #f56040;
    right: 9.3%;
    left: initial;
    bottom: 2.5%;
    z-index: 0;
}

.why-cards {
    display: flex;
    flex-direction: column;
}

.why-text {
    display: flex;
    flex-direction: column;

    /* align-content: center; */
    justify-content: center;
    gap: 3rem;
}

.why-text p {
    text-align: justify;
    font-size: 1.2rem;
    word-wrap: break-word;
    /* padding: 1rem; */
    width: 80%;
}

.why-text h3 {
    text-align: left;
    color: #0070ce;
    font-weight: bold;
    width: 90%;
    font-size: 1.8rem;
}

.why-row {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 2rem;
}

.why-row h5 {
    text-align: center;
    margin-top: 1rem;
    height: 3rem;
    color: #40537b;
    font-size: 1rem;
    font-weight: bold;
}

.why-row p {
    margin: 1rem 1rem;
}

.why-icon-blue {
    margin-right: 1rem;
    border-radius: 50%;
    /* border: solid 1px blue; */
    /* height: 50px; */
    /* width: 50px; */
    padding: 11px;
    color: white;
    background-color: #0070ce;
}

.why-icon-orange {
    margin-right: 1rem;
    border-radius: 50%;
    /* border: solid 1px blue; */
    /* height: 50px; */
    /* width: 50px; */
    padding: 11px;
    color: white;
    background-color: #f56040;
}

.fade-in-image {
    animation: fadeIn 5s;
    -webkit-animation: fadeIn 5s;
    -moz-animation: fadeIn 5s;
    -o-animation: fadeIn 5s;
    -ms-animation: fadeIn 5s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* *******END why ads style ********************************** */

/* *******Start why ads mobile style ********************************** */

.card {
    position: relative;
    display: block;
    height: 32rem;
    width: 22rem;
    border-radius: 40px;
    overflow: hidden;
    text-decoration: none;
}

.card__image {
    width: 100%;
    min-height: 55%;
}

.card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    border-radius: 40px;
    background-color: #ffe6d8;
    height: 55%;
}

.card__overlay h5 {
    text-align: center;
    margin-top: 1rem;
    /* height: 3rem; */
    color: #f56040;
    font-size: 1.35rem;
    font-weight: bold;
}

.card__overlay p {
    margin: 0rem 1rem;
}

.card__overlay p {
    display: block;
    text-align: justify;
}

.card__header {
    position: relative;
    /* display: flex; */
    /* align-items: center; */
    /* gap: 2em; */
    padding: 1em;
    border-radius: 40px 0 0 0;
    background-color: #ffe6d8;
}

.card__arc {
    width: 80px;
    height: 80px;
    position: absolute;
    bottom: 100%;
    right: 0;
    z-index: 1;
}

.card__arc path {
    fill: #ffe6d8;
    d: path("M 40 80 c 22 0 40 -22 40 -40 v 40 Z");
}

.card:hover {
    transform: scale(1.1);
}

.card {
    transition: transform 0.5s;
}

/* *******END why ads mobile style ********************************** */

/* ******************* START example ad section ******************************** */
.example-ad-section {
    display: flex;
    flex-direction: column;
    column-gap: 2rem;
    align-items: center;
    position: relative;
    margin-bottom: 3rem;
}

.example-ad {
    z-index: 1;
    display: inline-block;

    margin: 2rem 0 2rem 4%;
    flex-grow: 1;
    width: 25%;
}

.example-ad img {
    width: 100%;
    height: 100%;
}

.example-ad-title {
    text-align: center;
    display: block;
    padding: 3rem 0 1rem 0;
    font-size: 2rem;
    font-weight: bold;
    z-index: 1;
}

.ad-example-cards:before {
    background: linear-gradient(180deg, #fff4ed, #ffefea 34.52%);
    height: calc(90% - 4rem);
    width: 90vw;
    border-radius: 20%;
    content: "";
    /* height: 676px; */
    left: 50%;
    /* overflow: hidden; */
    position: absolute;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    /* display: inline-block; */
    z-index: 0;
    /* background-color: white; */
    overflow: hidden;
    /* height: max-content; */
    /* margin-top: 6rem; */
    /* padding: 5rem; */
}

.ad-example-cards {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 70%;
    align-items: center;
}

.example-ad-btn {
    display: flex;
    flex-direction: row;
    margin: 1rem 1rem 4rem 1rem;
}

.example-ad-btn button {
    color: #f56040;
    border: solid 0.5px #9e9e9e;
    margin: 0 0.5rem;
}

.toggleContainer {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 5rem;
    border: 3px solid #d9d9d9;
    border-radius: 20px;
    background: #d9d9d9;
    font-weight: bold;
    color: #d9d9d9;
    cursor: pointer;
}

.toggleContainer::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    left: 0%;
    border-radius: 20px;
    background: white;
    transition: all 0.3s;
}

.toggleCheckbox:checked+.toggleContainer::before {
    left: 50%;
}

.toggleContainer div {
    padding: 6px;
    text-align: center;
    z-index: 1;
}

.toggleCheckbox {
    display: none;
}

.toggleCheckbox:checked+.toggleContainer div:first-child {
    color: white;
    transition: color 0.3s;
}

.toggleCheckbox:checked+.toggleContainer div:last-child {
    color: #d9d9d9;
    transition: color 0.3s;
}

.toggleCheckbox+.toggleContainer div:first-child {
    color: #d9d9d9;
    transition: color 0.3s;
}

.toggleCheckbox+.toggleContainer div:last-child {
    color: white;
    transition: color 0.3s;
}

@media (max-width: 600px) {
    .item {
        flex: 1;
        min-width: 48%;
        /* Adjust as needed */
    }
}

.page-container {
    padding: 0.5rem;
    padding-left: 1em;
    display: flex;

    justify-content: space-between;
    align-items: center;

    color: #a1a1af;

    border-radius: 0.35em;
    background-color: #fcfcfc;
    background-position: 70% 50%;
    box-shadow: 0 5px 20px #0705095c;
    margin-top: 2rem;
}

.page-container .tags {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-container .tags span {
    margin-right: 1em;
    padding: 1em;
    text-transform: uppercase;
    transform: rotate(180deg);
    writing-mode: vertical-rl;
    border-left: 3px solid #dbd6d5;
    background: #f56040;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.7rem;
}

.example-card {
    display: flex;
    flex-direction: column;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: space-between;
    justify-content: space-between;
}

.example-card img {
    z-index: 1;
    max-width: 60%;
}

.page-container a {
    text-decoration: none;
    white-space: nowrap;
    font-size: 0.6rem;
    color: #a1a1af;
}

.page-container a.tag {
    display: block;
    padding: 0.3em 0.85em;
    margin: 0.5em;
    text-transform: uppercase;
    border-radius: 0.5rem;
    transition: transform 0.2s;
    transition-timing-function: cubic-bezier(0.45, -0.85, 0.55, -0.45);
}

.page-container a.tag:hover {
    transform: scale(1.2);
    background: #f56040;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-container div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.hidden {
    display: none;
}

/* ******************* END example ad section ******************************** */
/* ******************* START contact ad section ******************************** */
.ads-contact-section {
    display: flex;
    margin: 4rem;
    /* background: url(/assets/ads/advertise-page/bg.jpg) no-repeat; */
    background-size: cover;
    /* background-color: #f56040; */
    border-radius: 0 100px 0 100px;
    flex-direction: column;
}

.ads-contact-section h2 {
    color: #f56040;
}

.ads-contact-section dotlottie-player {
    width: 100%;
    max-height: 100%;
}

.ads-contact-container {
    display: flex;
    margin: 3rem auto;
    background-color: white;
    box-shadow: 0px 10px 20px rgb(0 0 0 / 53%);
    padding: 3rem 1rem 0 1rem;
    width: 90%;
    border-radius: 10px;
    background: linear-gradient(90deg, #fff4ed, white);
    flex-direction: column;
}

.form-container {
    display: flex;
    margin-top: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f56040;
    margin: 0 auto;
    margin-bottom: 20px;
    color: white;
}

.contact-inf {
    margin: 3rem auto 0 auto;
    padding: 1rem 0.5rem;
}

.contact-inf p span {
    font-weight: bold;
    /* color: #F56040; */
}

.text a {
    text-decoration: none;
    color: black;
}

.animation-container {}

.contact-information {
    width: 80%;
    /* padding: 1rem; */
    margin: 1rem auto;
}

form {
    min-width: 25rem;

    .form-control {
        background-color: #fff4ee;
        border-radius: 2rem;

        box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11);

        &.thick {
            height: 3.3rem;
            padding: 0.5rem 3.5rem;
        }

        &:focus {
            background-color: #fff4ee78;
            border: none;
            box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11);
        }
    }

    .message .form-control {
        padding: 0.5rem 1.8rem;
    }

    ::placeholder {
        font-weight: 600;
        font-size: 1.1rem;
        color: #838788;

        left: 0;
    }

    input,
    textarea {
        color: #212529;
        font-size: 1.1rem;
        border: none !important;
    }

    .icon {
        /* color: #57565c; */
        color: #000000;
        height: 1.3rem;
        position: absolute;
        left: 1.5rem;
        top: 30%;
        z-index: 100;
    }
}

.contact-btn {
    font-weight: bold;
    height: 2.5rem;
    line-height: 2.5rem;
    padding: 0 3rem;
    border: 0;
    border-radius: 3rem;

    background-size: 300% 100%;
    transition: all 0.3s ease-in-out;
    background-color: black;
    margin-top: 1rem;
}

.contact-btn:hover:enabled {
    box-shadow: 0 0.5em 0.5em -0.4em #ff923cba;
    background-size: 100% 100%;
    transform: translateY(-0.15em);
}

.contact-input-error {
    border: solid 1px red !important;
    background-color: white !important;
}

.adress{
    text-align: justify;
}


/* ******************* END contact ad section ******************************** */
#success-modal {
    /* display: none; */
}


/* alert style */
code {
    position: relative;
    text-align: center;
    margin: 1rem 7rem;
    background-color: black;
    color: white;
    width: auto;
    padding: 1rem;
    font-weight: bold;
    border-radius: 0.5rem;
    font-size: large;
}

.alert-code {
    position: fixed;
    width: 30%;
    top: 30%;
    right: 40%;
    margin: 5rem 1rem;
    z-index: 5;
}

.copy-icon {
    position: absolute;
    right: 30%;
    top: 30%;
}

.titleModal {
    font-size: 1rem;
    color: white;

    font-weight: bold;

}

.header_modal {

    background-color: #2F4858;

}
