    /**
    Theme Name: AdsManago
    Author: BrandsManago
    Text domain:adsmanago
    Tags:one-column, custom-menu, custom-logo, featured-images
    **/

    *,::after,::before{
        margin:0;
        padding: 0;
        box-sizing: border-box;
    }
    :root{
        --adsmanago-primary-color:#4825D8;
        --adsmanago-secondary-color:#5E2BFF;
        --adsmanago-white-color:#FFFFFF;
        --adsmanago-black-color:#000000;
    }

    body{
        font-family: 'Montserrat', sans-serif;
        overflow-x: hidden;
    }
    a{
        text-decoration: none;
    }

    /* --------------- HEADER SECTION --------------- */
                    /* TOP-BAR */
    header{
        width: 100%;
        min-height: 210px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .header-wrapper{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .mobile-menu{
        display: none;
    }
    .hamburger{
        padding: 13px 15px;
        padding-right: 0;
        display: inline-block;
        cursor: pointer;
        background-color: transparent;
        border: 0;
        margin: 0;
        outline: none;
    }
    .hamburger__box{
        width: 24px;
        height: 24px;
        display: inline-block;
        position: relative;
    }
    .hamburger__inner{
        width: 100%;
        height: 2px;
        background-color: var(--adsmanago-secondary-color);
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: background-color .1s .2s ease-in-out;
    }

    .hamburger__inner::before, .hamburger__inner::after{
        content: '';
        width: 100%;
        height: 2px;
        background-color: var(--adsmanago-secondary-color);
        position: absolute;
        left: 0;
        transition: transform .2s .2s ease-in-out;
    }

    .hamburger__inner::before{
        top: -5px;
    }
    .hamburger__inner::after{
        top: 5px;
    }
    .hamburger--active .hamburger__inner{
        background-color: transparent;
    }
    .hamburger--active .hamburger__inner::before{
        transform: translateY(5px) rotate(45deg);
    }
    .hamburger--active .hamburger__inner::after{
        transform: translateY(-5px) rotate(-45deg);
    }

    .top-bar{
        max-width: 1300px;
        width: 100%;
        height: 85px;
        display: flex;
        flex-direction: row;
    }
    .top-bar--left{
        width: 50%;
        height: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: start;
    }
    .top-bar--left a, .top-bar--right a{
        text-decoration: none;
    }
    .phone-btn{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 200px;
        height: 50px;
        margin: 0 15px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 14px;
        background-color: var(--adsmanago-white-color);
        color: var(--adsmanago-primary-color);
        border: 2px solid var(--adsmanago-primary-color);
        border-radius: 10px;
        cursor: pointer;
        transition: .2s;
    }
    .phone-btn:hover{
        background-color: var(--adsmanago-primary-color);
        color: var(--adsmanago-white-color);
    }
    .phone-btn:hover svg path{
        fill: var(--adsmanago-white-color);
    }
    .phone-btn svg,.white-btn svg,.blue-btn svg{
        display: block;
        margin: 5px;
    }
    .black-btn{
        width: 150px;
        height: 50px;
        margin: 0 15px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 14px;
        background-color: var(--adsmanago-black-color);
        color: var(--adsmanago-white-color);
        border: 2px solid var(--adsmanago-black-color);
        border-radius: 10px;
        cursor: pointer;
        transition: .2s;
    }
    .black-btn:hover{
        background-color: var(--adsmanago-white-color);
        color: var(--adsmanago-black-color);
    }
    .top-bar--right{
        width: 50%;
        height: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: end;
    }

    .white-btn,.blue-btn{
        width: 190px;
        height: 50px;
        margin: 0 15px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 14px;
        border-radius: 10px;
        cursor: pointer;
        transition: .2s;
    }
    .white-btn{
        background-color: var(--adsmanago-white-color);
        color: var(--adsmanago-black-color);
        border: 2px solid var(--adsmanago-black-color);
    }
    .blue-btn{
        background-color: var(--adsmanago-primary-color);
        color: var(--adsmanago-white-color);
        border: 2px solid var(--adsmanago-primary-color);
    }
    .white-btn:hover{
        background-color: var(--adsmanago-black-color);
        color: var(--adsmanago-white-color);
    }
    .blue-btn:hover{
        background-color: var(--adsmanago-white-color);
        color: var(--adsmanago-primary-color);
    }
    .white-btn:hover svg path{
        fill: var(--adsmanago-white-color);
    }
    .blue-btn:hover svg path{
        fill: var(--adsmanago-primary-color);
    }

                /* NAV-BAR */

    .logo svg{
        height: 100%;
        margin-right: 50px;
    }
    .nav-bar{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        max-width: 1300px;
        width: 100%;
        min-height: 125px;
    }
    .main-menu{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .menu-main-menu-container{
        width: 100%;
    }
    .main-menu ul{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        list-style: none;
    }

    .main-menu ul li a{
        text-decoration: none;
        white-space: nowrap;
        font-size: 14px;
        font-weight: 600;
        color: var(--adsmanago-black-color);
        padding: 10px 18px;
        border: 2px solid transparent;
        border-radius: 10px;
        transition: .2s;
    }

    .main-menu ul li a:hover{
        font-weight: 600;
        border: 2px solid var(--adsmanago-black-color);

    }
    @media(max-width: 1200px) {
        .nav-bar {
            flex-direction: column;
            padding: 50px 0;
        }
    }
    @media(max-width: 979px) {
        header{
            min-height: auto;
        }
        .header-wrapper{
            max-height: 80px;
            overflow: hidden;
            transition: .5s;
        }
        .header-wrapper.header-wrapper--active{
            max-height: 600px;
        }
        .mobile-menu{
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
            padding: 0 20px;
            width: 100%;

        }
        .top-bar{
            flex-direction: column;
            align-items: center;
            gap: 30px;
            height: auto;
        }
        .top-bar button{
            width: 200px !important;
        }
        .top-bar--left, .top-bar--right{
            justify-content: center;
        }
        .main-menu ul{
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-top: 50px;
        }
        .nav-bar .logo{
            display: none;
        }
    }
    @media(max-width: 460px){
        .top-bar button{
            width: 150px !important;
        }
        .logo svg{
            height: auto;
            margin-right: 0;
            max-width: 150px;
        }
    }
    /* ----------------HERO SLIDER----------------- */
    .hero{
        width: 100%;
    }
    .slider{
        width: 100vw;
        height: 715px;
        overflow: hidden;
    }
    .slides{
        width: 100%;
        height: 715px;
        display: flex;
    }
    .slide{
        background-image: url(http://www.adsmanago.com/wp-content/uploads/2023/02/slider-bg.png);
        width: 100%;
        transition: 2s;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .slide-content{
        width: 1300px;
        padding: 0 15px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .slide-tekst{
        width: 45%;
        color: white;
    }
    .slide-tekst h1{
        display: block;
        font-size: 40px;
        font-weight: 400;
    }
    .slide-tekst h1 span{
        font-size: 40px;
        display: block;
        font-weight: 600;
    }
    .slide-tekst p{
        font-size: 14px;
        line-height: 180%;
    }
    .slide-content img{
        display: block;
        width: 55%;
    }

    /* manual-slide-css */
    .slider-nav{
    position: absolute;
    bottom: 100px;
    left: 320px;
    width: 156px;
    display: flex;
    font-display: row;
    align-items: center;
    justify-content: space-between;
    }

    .slider-nav-btn{
        display: block;
        width: 44px;
        height: 7px;
        background-color: rgba(255, 255, 255, 0.15);
        border-radius: 10px;
        cursor: pointer;
        transition: 1s;
    }
    .slider-nav-btn.active{
        background-color: rgba(255, 255, 255, 1);
    }
    @media(max-width:1200px) {
        .slider-nav{
            bottom: -50px;
            left: 250px;
        }
    }
    @media(max-width: 979px){
        .slider-nav{
            bottom: 190px;
            left: 150px;
        }
    }

    /* ---------------PRICES SECTION--------------- */

    .prices{
        width: 100%;
        min-height: 250px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .prices-container{
        max-width: 1300px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .single-price{
        width: 15%;
        height: 130px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
    }

    .single-price h3{
        display: block;
        width: 100%;
        text-align: center;
        font-size: 32px;
        font-weight: 600;
    }
    .single-price p{
        display: block;
        width: 100%;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
    }
    .price-separator{
        width: 2px;
        height: 52px;
        border-radius: 10px;
        background-color: var(--adsmanago-primary-color);
    }
    @media(max-width: 1024px){
        .prices-container{
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
        }
        .single-price{
            width: 300px;
            justify-content: center;
        }
        .price-separator{
            width: 152px;
            height: 2px;
        }
    }

        /* ----------------ABOUT US----------------- */

    .about-us{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 100px;
    }
    .about-us-container{
        max-width: 1300px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-around;
    }
    .about-us-container > *{
        margin-bottom: 50px;
    }
    .about-us-container h1{
        display: block;
        width: 100%;
        text-align: center;
        font-size: 36px;
        font-weight: 400;
    }
    .about-us-container h1 span{
        font-weight: 700;
        color: var(--adsmanago-primary-color);
    }

    .about-us-video{
        width: 45%;
        height: 385px;
        background-image: url(http://www.adsmanago.com/wp-content/uploads/2023/02/vid2.png);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .about-us-video:nth-of-type(1){
        background-image: url(http://www.adsmanago.com/wp-content/uploads/2023/02/vid1.png);
    }

    .about-us-video svg{
        width: 115px;
        fill:var(--adsmanago-primary-color)
    }

    .about-us-single-text{
        width:300px;
        height: 200px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
    }
    .about-us-single-text h3{
        display: block;
        width: 90%;
        text-align: center;
        font-size: 24px;
        font-weight: 700;
    }
    .about-us-single-text p{
        display: block;
        width: 100%;
        text-align: center;
        font-size: 14px;
        font-weight: 500;
    }
    .about-us-separator{
        width: 103px;
        height: 2px;
        background-color: var(--adsmanago-black-color);
        border-radius: 10px;
        align-self: start;
        margin-top: 20px;
    }
    @media(max-width:1024px){
        .about-us-container{
            flex-direction: column;
        }
        .about-us-video{
            width: 100%;
        }
        .about-us-separator{
            width: 2px;
            height: 103px;
            align-self: center;
        }
    }
    /* ----------------OFFER FOR----------------- */
    .offer-for{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 100px;
        margin-bottom: 100px;
    }
    .offer-for-container{
        max-width: 1300px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    .offer-for-container h1{
        display: block;
        width: 100%;
        text-align: center;
        font-size: 36px;
        font-weight: 400;
        margin-bottom: 50px;
    }
    .offer-for-container h1 span{
        color: var(--adsmanago-primary-color);
        font-weight: 700;
    }
    .single-card{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        width: 30%;
        min-height: 720px;
        padding: 50px 50px 0 50px;
        border: 3px solid var(--adsmanago-black-color);
        border-radius: 10px;
    }
    .third{
        color: var(--adsmanago-white-color);
        background-image: url(http://www.adsmanago.com/wp-content/uploads/2023/03/card-bg.png);
        border: none;
    }
    .single-card h3{
        font-size: 32px;
        font-weight: 600;
    }
    .second{
        border: 3px solid var(--adsmanago-primary-color);;
    }
    .second h3{
        color: var(--adsmanago-primary-color);
    }
    .single-card p{
        font-size: 14px;
        font-weight: 400;
    }
    .single-card button{
        transform: translateY(50%);
        width: 210px;
    }
    .card-pharagraph{
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .card-pharagraph svg{
        width: 80px;
        margin-right: 10px;
    }
    .second .card-pharagraph svg path{
        fill: var(--adsmanago-primary-color);
    }
    .third .card-pharagraph svg path{
        fill: var(--adsmanago-white-color);
    }
    @media(max-width: 1024px){
        .offer-for-container{
            flex-direction: column;
            gap: 50px 0;
        }
        .single-card{
            width: 80%;
        }
    }

    /* ----------------BENEFITS SECTION----------------- */

    .benefits-section{
        width: 100%;
        height: 833px;
        background-image: url(http://www.adsmanago.com/wp-content/uploads/2023/03/benefits-bg.png);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        padding: 50px;
        color: var(--adsmanago-white-color);
    }
    .benefits-section h1{
        display: block;
        width: 100vw;
        text-align: center;
        font-size: 36px;
        font-weight: 400;
    }
    .benefits-section h1 span{
        font-weight: 600;
    }
    .benefits-content{
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 1300px;
    }
    .benefits-texts-box{
        height: 300px;
        width: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    .benefits-texts-box h3{
        font-size: 20px;
        font-weight: 400;
        text-align: right;
    }
    .benefits-texts-box p{
        font-size: 14px;
        font-weight: 400;
        text-align: right;
    }
    .benefits-second .benefits-single-tekst h3, .benefits-texts-box.benefits-second p{
        text-align: left;
    }

    .benefits-circle{
        width: 400px;
        height: 400px;
        background-color: transparent;
        border: 2px solid var(--adsmanago-primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .benefits-btn{
        width: 140px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--adsmanago-white-color);
        color: var(--adsmanago-primary-color);
        font-size: 14px;
        font-weight: 600;
        border-radius: 10px;

    }
    .benefits-btn.blue{
        background-color: var(--adsmanago-primary-color);
        color: var(--adsmanago-white-color);
        width: 350px;
    }
    .blue:nth-of-type(1){
        width: 265px;
    }
    .blue:nth-of-type(2){
        width: 200px;
    }
    .blue:nth-of-type(3){
        width: 345px;
    }
    .blue:nth-of-type(4){
        width: 275px;
    }
    .blue:nth-of-type(5){
        width: 175px;
        color: var(--adsmanago-primary-color);
        background-color: var(--adsmanago-white-color);
    }
    .benefits-circle .benefits-btn:nth-of-type(1){
        /* transform: translate(-5px,-100px); */
        position: absolute;
        top: 0;
        left: 0;
    }
    .benefits-circle .benefits-btn:nth-of-type(2){
        /* transform: translate(250px,-100px); */
        position: absolute;
        top: 0;
        right: 0;
    }
    .benefits-circle .benefits-btn:nth-of-type(4){
        /* transform: translate(-250px,100px); */
        position: absolute;
        bottom: 0;
        left: 0;
    }
    .benefits-circle .benefits-btn:nth-of-type(5){
        /* transform: translate(10px,100px); */
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .benefits-circle-filled{
        width: 250px;
        height: 250px;
        background-color: var(--adsmanago-primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        font-weight: 600;
    }
    .benefits-circle-filled h5{
        display: block;
        width: 100%;
        text-align: center;
    }
    .benefits-circle-filled h5 span{
        display: block;
        width: 100%;
        text-align: center;
        font-size: 58px;
    }
    @media(max-width:1400px){
        .blue{
            font-size: 12px;
        }
        .blue:nth-of-type(1){
            width: 235px;
        }
        .blue:nth-of-type(2){
            width: 170px;
        }
        .blue:nth-of-type(3){
            width: 315px;
        }
        .blue:nth-of-type(4){
            width: 245px;
        }
        .blue:nth-of-type(5){
            width: 145px;
            color: var(--adsmanago-primary-color);
            background-color: var(--adsmanago-white-color);
        }
    }
    @media(max-width:1250px){
        .benefits-single-tekst {
            max-width: 250px;
        }
        .benefits-single-tekst h3{
            font-size: 16px;
        }
        .benefits-single-tekst p{
            font-size: 12px;
        }
        .benefits-btn{
            width: 120px;
        }
        .benefits-circle{
            width: 430px;
            height: 335px;
        }
        .blue{
            font-size: 10px;
        }
        .blue:nth-of-type(1){
            width: 195px;
        }
        .blue:nth-of-type(2){
            width: 130px;
        }
        .blue:nth-of-type(3){
            width: 220px;
        }
        .blue:nth-of-type(4){
            width: 195px;
        }
        .blue:nth-of-type(5){
            width: 105px;
            color: var(--adsmanago-primary-color);
            background-color: var(--adsmanago-white-color);
        }
    }
@media(max-width:1024px){
    .benefits-section{
        height: auto;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .benefits-content{
        flex-direction: column;
        margin-top: 30px;
    }
    .benefits-circle{
        border: none;
    }
    .benefits-btn{
        display: none;
    }
    .benefits-texts-box{
        height: auto;
        gap: 50px;
    }
    .benefits-single-tekst h3, .benefits-single-tekst p, .benefits-second .benefits-single-tekst h3, .benefits-second .benefits-single-tekst p{
        text-align: center;
    }
    .benefits-single-tekst h3{
        font-size: 20px;
        margin-bottom: 10px;
    }
    .benefits-single-tekst p{
        font-size: 14px;
    }
    .benefits-single-tekst {
        max-width: 350px;
    }
}
@media(max-width:600px){
    .benefits-section h1{
        font-size: 22px;
    }
    .benefits-single-tekst h3{
        font-size: 15px;
    }
    .benefits-single-tekst p{
        font-size: 10px;
    }
    .benefits-single-tekst{
        max-width: 300px;
    }
}
    /* ----------------HOW IT WORKS SECTION----------------- */
    .how-it-works{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 100px;
        margin-bottom: 100px;
    }
    .how-it-works h1{
        display: block;
        text-align: center;
        width: 100%;
        font-size: 36px;
        font-weight: 400;
        margin-bottom: 50px;
    }
    .how-it-works h1 span{
        font-weight: 700;
    }
    .how-it-works-container{
        display: flex;
        flex-direction: row;
        align-items:center;
        justify-content: space-around;
        max-width: 1300px;
    }
    .how-it-works-circle{
        background-image: url(http://www.adsmanago.com/wp-content/uploads/2023/03/circle-bg.png);
        width: 275px;
        height: 271px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--adsmanago-white-color);
    }
    .how-it-works-circle svg path{
        fill: var(--adsmanago-white-color);
    }
    .how-it-works-circle h3{
        margin-top: 20px;
        font-size: 15px;
        text-align: center;
        display: block;
        width: 100%;
    }
    .how-it-works-circle span{
        display: block;
        font-size: 45px;
    }
    .how-it-works-text-container{
        width: 75%;
        min-height: 380px;
        min-width: 970px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        align-content:space-around
    }

    .how-it-works-text-box{
    background-color: #FAFAFA;
    width: 485px;
    height: 180px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    }
    .how-it-works-text-box h3{
        font-size: 32px;
        font-weight: 400;
        text-align: center;
        margin-bottom: 10px;
    }
    .how-it-works-text-box p{
        font-size: 14px;
        text-align: center;
        padding: 0 15px;
    }
@media(max-width:1300px){
    .how-it-works-text-container{
        justify-content: center;
        min-width: auto;
    }
    .how-it-works-text-box{
        width: 350px;
    }
}
@media(max-width:1024px){
    .how-it-works-container{
        flex-direction: column;
    }
    .how-it-works-text-container{
        gap: 30px;
    }
}
    /* ----------------OPNIONS SECTION----------------- */

    .opinions{
        width: 100%;
        height: 733px;
        background-image: url(http://www.adsmanago.com/wp-content/uploads/2023/03/opinions-bg.png);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
    }

    .opinions h1{
        display: block;
        width: 100%;
        text-align: center;
        font-size: 36px;
        font-weight: 400;
    }
    .opinions h1 span{
        font-weight: 700;
    }
    .opinions-content{
        width: 100%;
        max-width: 1300px;
        display: flex;
        align-items: flex-start;
        justify-content: space-around;
    }
    .single-opinion{
        background-color: var(--adsmanago-white-color);
        width: 30%;
        padding: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        min-width: 350px;
        border-radius: 10px;
    }
    .single-opinion p{
        font-size: 14px;
    }
    .opinion-first-line{
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
        margin-bottom: 50px;
    }
    .opinion-first-line img{
        border-radius: 50%;
        width: 73px;
        margin-right: 20px;
    }
    .opinion-user h4{
        font-size: 20px;
        font-weight: 700;
    }
    .opinion-first-line p{
        font-size: 14px;
    }
    .opinions-nav{
        width: 100%;
        max-width: 1300px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .opinions-nav span{
        display: block;
        width: 44px;
        height: 7px;
        border-radius: 10px;
        background-color: var(--adsmanago-primary-color);
        margin: 0 10px;
    }
    .opinions-nav span:nth-of-type(1),.opinions-nav span:nth-of-type(3){
        background-color: #E8E5F7;
    }
    @media(max-width:1100px){
        .opinions{
            height: auto;
            padding-top: 50px;
            padding-bottom: 50px;
        }
        .single-opinion{
            width: 28%;
            min-width: auto;
        }
    }
    @media(max-width:760px){
      .single-opinion{
           width: 80%;
           min-width: auto;
        }
      .opinions-content{
        flex-direction: column;
        align-items: center;
        gap: 30px;
      }
    }

    /* ----------------HIRE AGENCY----------------- */
    .hire-agency{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 50px 0;
    }
    .hire-agency-content{
        display: flex;
        align-items: center;
        justify-content: space-around;
        border: 3px solid var(--adsmanago-black-color);
        border-radius: 10px;
        width: 100%;
        max-width: 1300px;
        padding: 50px;
        margin: 50px 0;
    }
    .hire-agency-text{
        width: 70%;
        height: 350px;
        display: flex;
        flex-direction: column;
        align-items: left;
        justify-content: space-around;
    }
    .hire-agency-text h1{
        font-size: 36px;
        font-weight: 400;
    }
    .hire-agency-text h1 span{
        font-weight: 700;
        color: var(--adsmanago-primary-color);
    }
    .hire-agency-text p{
        font-size: 14px;
    }
    .hire-agency-text .black-btn{
        width: 382px;
        height: 77px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 30px;
    }
    .hire-agency-text .black-btn svg{
        margin-right: 50px;
    }
    @media(max-width:1300px){
        .hire-agency{
            padding: 0 20px;
        }
    }
    @media(max-width:1024px){
        .astra-logos img:nth-child(2), .astra-logos img:nth-child(3), .astra-logos img:nth-child(4), .astra-logos img:nth-child(5){
            display: none;
        }
        @media(max-width:756px){
            .hire-agency-symbol{
                display: none;
            }
            .hire-agency-text{
                align-items: center;
                gap: 20px 0;
            }
            .hire-agency-text h1, .hire-agency-text p{
                text-align: center;
            }
            .hire-agency-text .black-btn {
                width: 260px;
            }
        }
    }
    /* ----------------BLOG SECTION----------------- */

    .blog-section{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        background-color: var(--adsmanago-black-color);
        color: var(--adsmanago-white-color);
        padding: 50px 0;
    }
    .blog-section-container{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 1300px;
    }
    .blog-section-first-line{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 50px;
    }
    .blog-section-first-line h2{
        font-size: 36px;
        font-weight: 700;
    }
    .blog-section-first-line.article-blue-btn{
        width: 207px;
        height: 57px;
    }

    .blog-section-articles{
        width: 100%;
        height: 615px;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 20px;
    }

    .blog-section-single-article{
        background-color: var(--adsmanago-white-color);
        border-radius: 10px;
        color: var(--adsmanago-black-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    .blog-section-single-article:nth-of-type(1){
        grid-column: 1/3;
        grid-row: 1/3;
    }
    .blog-section-single-article:nth-of-type(2){
        grid-column: 3/4;
        grid-row: 1/2;
    }

    .blog-section-single-article:nth-of-type(3){
        grid-column: 4/5;
        grid-row: 1/2;
    }

    .blog-section-single-article:nth-of-type(4){
        grid-column: 3/5;
        grid-row: 2/3;
        flex-direction: row;
    }

    .blog-section-single-article-hero{
        background-image: url(http://www.adsmanago.com/wp-content/uploads/2023/03/article1.png);
        background-position: center;
        background-size: cover;
        height: 50%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: end;
        padding: 20px;
    }
    .date-btn{
        width: 108px;
        height: 26px;
        font-size: 12px;
    }
    .date-btn:hover{
        background-color: var(--adsmanago-primary-color);
        color: var(--adsmanago-white-color);
    }
    .blog-section-single-article-text{
        height: 50%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        padding:20px;
    }
    .read-more{
        width: 158px;
        height: 34px;
        font-size: 14px;
    }

    .blog-section-single-article-text h4{
        font-size: 32px;
        font-weight: 700;
        text-align: left;
    }
    .blog-section-single-article-text p{
        font-size: 14px;
    }
    .blog-section-single-article-text a{
        align-self: start;
    }
    .blog-section-single-article:nth-of-type(2) .blog-section-single-article-hero{
        background-image: url(http://www.adsmanago.com/wp-content/uploads/2023/03/article2.png);
        height: 30%;
    }
    .blog-section-single-article:nth-of-type(2) .blog-section-single-article-text, .blog-section-single-article:nth-of-type(3) .blog-section-single-article-text{
        height: 70%;
    }
    .blog-section-single-article:nth-of-type(2) .blog-section-single-article-text h4, .blog-section-single-article:nth-of-type(3) .blog-section-single-article-text h4{
        font-size: 20px;
    }
    .blog-section-single-article:nth-of-type(2) .blog-section-single-article-text .read-more, .blog-section-single-article:nth-of-type(3) .blog-section-single-article-text .read-more{
        width: 132px;
        height: 30px;
    }
    .blog-section-single-article:nth-of-type(3) .blog-section-single-article-hero{
        background-image: url(http://www.adsmanago.com/wp-content/uploads/2023/03/article3.png);
        height: 30%;
    }
    .blog-section-single-article:nth-of-type(4) .blog-section-single-article-hero{
        background-image: url(http://www.adsmanago.com/wp-content/uploads/2023/03/article4.png);
        height: 100%;
        width: 30%;
    }
    .blog-section-single-article:nth-of-type(4) .blog-section-single-article-text{
        height: 100%;
        width: 70%;
    }
    @media(max-width: 1300px){
        .blog-section{
            padding: 50px 30px;
        }
        .blog-section-container{
            max-width: auto;
            width: 100%;

        }
    }
    @media(max-width: 1130px){
        .blog-section-single-article-text h4{
            font-size: 18px;
        }
        .blog-section-single-article-text p{
            font-size: 12px;
        }
    }
    @media(max-width: 1024px){
        .blog-section-articles{
            grid-template-columns: 1fr;
            grid-template-rows: 1fr 1fr 1fr 1fr;
            height: auto;
        }
        .blog-section-single-article {
            min-height: 300px;
            flex-direction: row;
            border-radius: 10px !important;
        }
        .blog-section-single-article-hero{
            height: 100% !important;
            width: 30%;
            background-size: cover;
        }
        .blog-section-single-article-text{
            height: 100%;
            width: 70%;
            justify-content: space-around;
        }

        .blog-section-single-article:nth-of-type(1){
            grid-column: 1/2;
            grid-row: 1/2;
        }
        .blog-section-single-article:nth-of-type(2){
            grid-column: 1/2;
            grid-row: 2/3;
        }

        .blog-section-single-article:nth-of-type(3){
            grid-column: 1/2;
            grid-row: 3/4;
        }

        .blog-section-single-article:nth-of-type(4){
            grid-column: 1/2;
            grid-row: 4/5;
            flex-direction: row;
        }
    }
    @media(max-width: 570px){
        .blog-section-single-article-hero{
            display: none;
        }
        .blog-section-single-article-text{
            width: 100% !important;
        }
    }

    /* ----------------CONTACT FORM----------------- */

    .contact-form-section{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #F5F5F5;
        padding: 100px 20px;
    }
    .contact-form-container{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        width: 100%;
        max-width: 1300px;

    }
    .contact-form-container h1{
        display: block;
        width: 100%;
        text-align: center;
        font-size: 36px;
        font-weight: 400;
        margin-bottom: 20px;
    }
    .contact-form-container h1 span{
        font-weight: 700;
    }
    .contact-form-container p{
        font-size: 14px;
    }
    .contact-form-container p a{
        font-weight: 600;
        color: var(--adsmanago-primary-color);
    }

    .contact-form{
        width: 100%;
        display: grid;
        grid-template-columns: 2fr 2fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        gap: 20px;
        margin: 50px 0;
    }
    .contact-foorm-single-input{
        background-color: #fff;
        border-radius: 10px;
        position: relative;
        width: 100%;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 50px;
    }
    .contact-foorm-single-input input{
        width: 100%;
        padding: 10px;
        border: none;
        outline: 0;
        color: var(--adsmanago-black-color);
        border-radius: 10px;
    }
    .contact-foorm-single-input input:focus .contact-foorm-single-input{
        border: 1px solid var(--adsmanago-black-color);
    }
    .contact-foorm-single-input label{
        height: 100%;
        position: absolute;
        top: 50%;
        left: 10px;
        padding: 10px;
        color: var(--adsmanago-black-color);
        transform: translateY(-25%);
    }
    .contact-foorm-single-input:nth-of-type(1){
        grid-column: 1/2;
        grid-row: 1/2;
    }
    .contact-foorm-single-input:nth-of-type(2){
        grid-column: 2/3;
        grid-row: 1/2;
    }
    .contact-foorm-single-input:nth-of-type(3){
        grid-column: 1/2;
        grid-row: 2/3;
    }
    .contact-foorm-single-input:nth-of-type(4){
        grid-column: 2/3;
        grid-row: 2/3;
    }
    .topic-conversation{
        grid-column: 1/3;
        grid-row: 3/4;
    }
    .grey-btn{
        grid-column: 3/4;
        grid-row: 1/2;
        width: 100%;
        height: 100%;
        border-radius: 10px;
        border: none;
        font-size: 14px;
        font-weight: 600;
        transition: .3s;
    }
    .grey-btn:hover{
        border: 1px solid var(--adsmanago-primary-color);
        background-color: var(--adsmanago-primary-color);
        color: var(--adsmanago-white-color);
    }
    .form-submit{
        grid-column: 3/4;
        grid-row: 2/3;
        width: 100%;
        height: 100%;
        border-radius: 10px;
        font-size: 14px;
        margin: 0;
    }
    .topic-conversation{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }
    .topic-box {
        display: inline-block;
        position: relative;
        margin: 10px;
    }

    .grey-radio {
        display: none;
    }

    .topic-item {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        background-color: #E9E9E9;
        border: 1px solid #E9E9E9;
        border-radius: 5px;
        padding: 10px;
        cursor: pointer;
        width: 230px;
        height: 50px;
        font-weight: 700;
    }


    .grey-radio:checked + .topic-item {
        background-color: var(--adsmanago-primary-color);
        color: #fff;
        border-color: var(--adsmanago-primary-color);
    }

    @media(max-width: 1200px){
        .topic-conversation{
            grid-column: 1/4;
        }
    }
    @media(max-width: 920px){
        .contact-form {
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr auto 1fr ;
        }
        .contact-foorm-single-input:nth-of-type(1){
            grid-column: 1/2;
            grid-row: 1/2;
        }
        .contact-foorm-single-input:nth-of-type(2){
            grid-column: 2/3;
            grid-row: 1/2;
        }
        .contact-foorm-single-input:nth-of-type(3){
            grid-column: 1/2;
            grid-row: 2/3;
        }
        .contact-foorm-single-input:nth-of-type(4){
            grid-column: 2/3;
            grid-row: 2/3;
        }
        .grey-btn{
            grid-column: 1/2;
            grid-row: 4/5;
        }
        .form-submit{
            grid-column: 2/3;
            grid-row: 4/5;
        }
        .topic-conversation{
            grid-column: 1/3;
            grid-row: 3/4;
        }
        .topic-conversation{
            flex-direction: column;
        }
    }
    @media(max-width: 550px){
        .contact-form {
            grid-template-columns: 1fr;
            grid-template-rows:1fr 1fr 1fr 1fr auto 1fr 1fr;
        }
        .contact-foorm-single-input:nth-of-type(1){
            grid-column: 1/2;
            grid-row: 1/2;
        }
        .contact-foorm-single-input:nth-of-type(2){
            grid-column: 1/2;
            grid-row: 2/3;
        }
        .contact-foorm-single-input:nth-of-type(3){
            grid-column: 1/2;
            grid-row: 3/4;
        }
        .contact-foorm-single-input:nth-of-type(4){
            grid-column: 1/2;
            grid-row: 4/5;
        }
        .grey-btn{
            grid-column: 1/2;
            grid-row: 6/7;
        }
        .form-submit{
            grid-column: 1/2;
            grid-row: 7/8;
        }
        .topic-conversation{
            grid-column: 1/2;
            grid-row: 5/6;
        }
    }

    /* ----------------MORE INFO SECTION----------------- */
    .more-info-section{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 50px 0;
        padding: 0 20px;
    }
    .more-info-container{
        width: 100%;
        max-width: 1300px;
        display: flex;
        flex-direction: column;
        justify-content: space-around
    }
    .more-info-header{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .more-info-header h1{
        font-size: 36px;
        font-weight: 400;
    }
    .more-info-header h1 span{
        font-weight: 700;
    }

    .more-info-article{
        width: 100%;
        height: 350px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin: 30px 0;
    }

    .more-info-article:nth-child(3){
        flex-direction: row-reverse;
    }

    .more-info-article img{
        border-radius: 10px;
    }

    .more-info-text{
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
    }


    .more-info-text h3{
        font-size: 32px;
        font-weight: 700;
        text-align: left;
        display: block;
        width: 100%;
        position: relative;
    }

    .more-info-text h3::after{
        content: '';
        width: 250px;
        height: 2px;
        background-color: var(--adsmanago-black-color);
        position: absolute;
        bottom: -200%;
        left: 0;
        border-radius: 10px;
    }

    .more-info-text p{
        font-size: 14px;
    }
    @media(max-width: 1200px){
        .more-info-text h3::after{
            bottom: -10px;
        }
        .more-info-text{
            justify-content: flex-start;
            gap: 20px 0;
        }
    }
    @media(max-width: 1024px){
        .more-info-article{
            flex-direction: column !important;
            height: auto;
            gap: 20px;
        }
        .more-info-article img{
            width: 80%;
            margin: auto;
        }
    }
    @media(max-width: 550px){
        .more-info-header{
            flex-direction: column;
            justify-content: center;
            gap: 30px;
        }
        .more-info-header h1{
            text-align: center;
        }
    }
    /* ----------------FOOTER----------------- */
    .site-footer{
        width: 100vw;
        background-color: var(--adsmanago-black-color);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding-top: 50px ;
    }
    .footer-container{
        width: 100%;
        max-width: 1300px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
    .footer-buttons{
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 150px;
    }
    .contact-btns-container{
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .footer-buttons .blue-btn{
        width: 205px;
    }
    .footer-buttons .blue-btn svg path{
        fill: var(--adsmanago-white-color);
    }
    .footer-buttons .blue-btn:hover svg path{
        fill: var(--adsmanago-secondary-color);
    }

    .footer-buttons .white-btn{
        width: 285px;
    }

    .footer-buttons .up-btn{
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        bottom: 50px;
        right: 50px;
        border-radius: 50%;
        border: none;
        -webkit-box-shadow: 0px 0px 18px 0px rgba(255, 255, 255, 1);
    -moz-box-shadow: 0px 0px 18px 0px rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 18px 0px rgba(255, 255, 255, 1);
    }
    .footer-buttons .up-btn svg{
        width: 100%;
        height:100%;
    }
    .footer-buttons .up-btn svg path{
        fill: var(--adsmanago-black-color);
    }
    .footer-content{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
    }
    .footer-first-column{
        width: 40%;
        display: flex;
        flex-direction: column;
    }
    .footer-icons{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .footer-icons-socials{
        width: 30%;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }
    .footer-text{
        margin-top: 80px;
    }
    .footer-text p{
        color: #fff;
        font-size: 16px;
        line-height: 150%;
        text-align: justify;

    }

    .footer-second-column{
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .footer-menu{
        height: 100%;
        width: 40%;
        border-right: 2px solid #fff;
    }

    .footer-menu p{
        color: #fff;
        font-weight: 600;
        margin-bottom: 10px;
    }
    #menu-footer-menu{
        list-style: disc;
    }
    #menu-footer-menu li, #menu-footer-menu li a{
        color: #fff;
    }
    #menu-footer-menu li{
        margin: 5px auto;
    }
    #menu-footer-menu li a:hover{
        color: var(--adsmanago-primary-color);
    }

    .footer-company-details{
        width: 55%;
        color: #fff;
    }
    .footer-company-address{
        width: 240px;
    }
    .footer-company-details-row{
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;
    }
    .footer-company-address-line{
        width: 240px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .footer-rights-box{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin:100px auto;
    }
    .footer-rights-box-btn{
        width: 220px;
        height: 50px;
        border-radius: 10px;
        color: #696969;
        background-color: #0D0D0D;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .footer-end-section{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100vw;
        height: 115px;
        background-image: url(http://www.adsmanago.com/wp-content/uploads/2023/05/end-section-bg.png);
    }
    .footer-end-container{
        max-width: 1300px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }
    .footer-end-container h4{
        color: #fff;
        font-size: 18px;
        font-weight: 400;
        letter-spacing: 2px;
    }
    .footer-end-container h4 span{
        font-weight: 700;
    }
    .footer-end-container .blue-btn{
        width: 205px;
    }
    .footer-end-container .phone-btn{
        width: 250px;
    }

    @media(max-width: 1350px){
        .footer-container {
            padding: 0 15px;
        }
        .footer-content{
            flex-direction: column;
            gap: 50px;
        }
        .footer-buttons{
            justify-content: center;
        }
        .footer-text {
            margin-top: 20px;
        }
    }
    @media(max-width: 1200px){
        .footer-end-section{
            height: auto;
            min-height: 115px;
            background-repeat: no-repeat;
            background-size: cover;
        }
        .footer-end-container{
            flex-direction: column;
            padding: 30px 0;
            gap: 30px;
        }
        .footer-end-container h4{
            text-align: center;
        }
    }
    @media(max-width: 1024px){
        .footer-first-column{
            width: 80%;
        }
        .footer-second-column{
            flex-direction: column;
            gap: 60px;
            width: 80%;
        }
        .footer-menu{
            border-right: none;
            border-bottom: 2px solid #fff;
            padding-bottom: 20px;
        }
    }
    @media(max-width: 670px){
        .footer-company-details{
            width: 75%;
        }
    }
    @media(max-width: 530px){
        .footer-icons{
            flex-direction: column;
            gap: 30px;
        }
        .footer-icons-socials {
            gap: 20px;
        }
        .footer-buttons .blue-btn{
            width: 160px;
        }
        .footer-buttons .white-btn {
            width: 220px;
        }
        .footer-company-details{
            width: 90%;
        }
        .footer-menu {
            width: 60%;
        }
    }
    @media(max-width: 460px){
        .contact-btns-container {
            flex-direction: column;
            gap: 50px;
        }
        .footer-company-details{
            width: 100%;
        }
    }
    @media(max-width: 460px){
        .footer-end-container h4{
            font-size: 15px;
        }
    }

/* STYLES FOR SINGLE PAGE */

.single-page-container{
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.page-title{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    min-height: 115px;
    text-align: center;
    color: var(--adsmanago-white-color);
    font-size: 36px;
    background-image: url(https://www.adsmanago.com/wp-content/uploads/2023/09/titlebg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.single-page-container{
    padding: 80px 15px;
    width: 100%;
    max-width: 1300px;
    margin: auto;
}