@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.eot');
    src: url('../fonts/Poppins-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff'),
        url('../fonts/Poppins-SemiBold.ttf') format('truetype'),
        url('../fonts/Poppins-SemiBold.svg#Poppins-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('../fonts/worksans/WorkSans-Regular.eot');
    src: url('../fonts/worksans/WorkSans-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/worksans/WorkSans-Regular.woff2') format('woff2'),
        url('../fonts/worksans/WorkSans-Regular.woff') format('woff'),
        url('../fonts/worksans/WorkSans-Regular.ttf') format('truetype'),
        url('../fonts/worksans/WorkSans-Regular.svg#WorkSans-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('../fonts/worksans/WorkSans-SemiBold.eot');
    src: url('../fonts/worksans/WorkSans-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/worksans/WorkSans-SemiBold.woff2') format('woff2'),
        url('../fonts/worksans/WorkSans-SemiBold.woff') format('woff'),
        url('../fonts/worksans/WorkSans-SemiBold.ttf') format('truetype'),
        url('../fonts/worksans/WorkSans-SemiBold.svg#WorkSans-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('../fonts/worksans/WorkSans-Bold.eot');
    src: url('../fonts/worksans/WorkSans-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/worksans/WorkSans-Bold.woff2') format('woff2'),
        url('../fonts/worksans/WorkSans-Bold.woff') format('woff'),
        url('../fonts/worksans/WorkSans-Bold.ttf') format('truetype'),
        url('../fonts/worksans/WorkSans-Bold.svg#WorkSans-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('../fonts/worksans/WorkSans-Light.eot');
    src: url('../fonts/worksans/WorkSans-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/worksans/WorkSans-Light.woff2') format('woff2'),
        url('../fonts/worksans/WorkSans-Light.woff') format('woff'),
        url('../fonts/worksans/WorkSans-Light.ttf') format('truetype'),
        url('../fonts/worksans/WorkSans-Light.svg#WorkSans-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-regaliz: #293849;
    --color-alga-metalica: #268597;
}


* {
    margin: 0px;
    padding: 0px;
}

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

body {
    font-family: 'Work Sans';
    font-weight: 300;
    font-size: 18px;
    color: var(--color-regaliz);
}

main{
    padding-top: 110px;
}

.body__noscroll{
    overflow: hidden;
}

.body__noscroll #overlay__menu{
    display: block;
}

#overlay__menu{
    background-color: rgba(0, 0, 0, .7);
    cursor: pointer;
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 9;
}

.agency-page img{
    max-width: 100%;
    height: auto;
}

.wrapper{
	margin: auto;
	max-width: 1200px;
}


.header {
	background-color: #F9F9F9;
    position: fixed;
    width: 100%;
    z-index: 999;
}

.header__content {
    align-items: center;
	display: flex;
    height: 115px;
	justify-content: space-between;
}

.header__logo__img {
    width: 245px;
}

.header__menu{
    display: block;
}

.header__right,
.header__menu__icons{
    align-items: center;
    display: flex;
}

.header__menu__search{
    cursor: pointer;
}

.header__menu__mobile{
    display: none;
    height: 30px;
    position: relative;
    width: 30px;
}

.header__menu__mobile span{
    background-color: var(--color-regaliz);
    border-radius: 10px;
    transition: transform 60ms;
    position: absolute;
    top: 0;
    margin: auto;
    bottom: 0;
    display: block;
    height: 4px;
    width: 30px;
}

.header__menu__mobile__line-top{
    transform: translateY(-6px);
}

.header__menu__mobile__line-bottom{
    transform: translateY(6px);
}

.header__menu__mobile--open .header__menu__mobile__line-top{
    transition: transform 60ms;
    transform-origin: center;
    transform: rotate(45deg);
}

.header__menu__mobile--open .header__menu__mobile__line-bottom{
    transition: transform 60ms;
    transform: rotate(-45deg);
    transform-origin: center;
}

#search{
    display: none;
    position: fixed;
    width: 50%;
    right: 0;
    top: 115px;
    z-index: 99;
}

.search__container{
    max-width: 600px;
    position: relative;
}

.search__form {
    background-color: #e9e8e8;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: 0px 3px 26px #00000017;
    padding: 30px 25px;
    width:90%;
    max-width: 400px;
    margin: 0 auto 0 0;
    right: 0;
    position: absolute;
}

.search__form__input{
    width: 100% !important;
    margin: 0 0 0 auto;
}

.search__form__btn{
    margin-top: 0px;
    margin: 20px auto 0 auto;
    display: block;
    width: 250px;
}

.search__closed{
    cursor: pointer;
    display: block;
    height: 25px;
    margin: 0px 0px 15px auto;
    padding-right: 0px;
    width: 20px;
}

.header__menu__mobile--open .header__menu__mobile__img-open{
    display: none;
}

.header__menu__mobile__img-open{
    padding-top: 5px;
}

.header__menu__mobile--open .header__menu__mobile__img-close{
    display: block;
}

.header__menu__mobile__img-close{
    display: none;
    margin-right: 7px;
    height: 25px;
    width: 25px;
}

.header__menu__list{
    align-items: center;
    display: flex;
}

.header__menu__list__li{
    font-weight: 500;
    list-style: none;
    text-decoration: none;
}


.header__menu__list__text{
    display: block;
    color: var(--color-alga-metalica);
    font-size: 16px;
    padding: 10px 30px;
    text-decoration: none;
    margin: 10px;
}

.menu_services {
    position: relative;
}

.menu_services::after{
    background-image: url('../img/menu_arrow_down.svg');
    background-size: 100% auto;
    background-repeat: no-repeat;
    content: '';
    height: 6px;
    position: absolute;
    width: 10px;
    top: 3px;
    bottom: 0;
    margin: auto 0 auto 10px;
}


.header__menu__list__li:last-child a {
    margin:10px 0px;
}


.menu_contact{
    background-color: #35495E;
    border-radius: 34px;
    padding: 15px 50px !important;
    margin: 0 20px !important;
    color: #fff !important;
}

.menu__selected{
    color: #35495e;
    font-weight: 600;
}

.header__menu__category{
    display: none;
}

.header__menu__category__options{
    display: block;
    color: var(--color-alga-metalica);
    font-size: 16px;
    padding: 10px 0;
    text-decoration: none;
    margin-left: 15px;
}

/* Sub menú */
.header__menu__fixed{
    box-shadow: 0px 3px 26px #00000017;
    display: none;
    flex-wrap: wrap;
    position: fixed;
    width: 100%;
    left: 0;
    background-color: #E9E8E8;
    top: 115px;
    height: 400px;
    z-index: 99;
}

.header__menu__fixed--open{
    display: block;
}

.header__menu__fixed__options{
    display: flex;
    justify-content: space-between;
    margin: auto;
    padding-top: 35px;
    max-width: 1200px;
}

.header__menu__fixed__column__img{
    max-width: 270px;
}

.header__menu__fixed__column__img img{
    width: 100%;
}

.header__submenu > .menu-item-has-children{
    padding-bottom: 45px;
}

.header__submenu ul{
    margin-left: 10px;
}

.header__submenu li{
    list-style: none;
    
}

.header__submenu li a{
    color: var(--color-alga-metalica);
    margin-bottom: 15px;
    display: block;
    text-decoration: none;
    font-weight: 600;
    
}

.header__submenu .sub-menu li a{
    font-weight: 500;
}


/* Formulario*/
.contact__input,
.contact__textarea{
	border: 2px solid #9ba9b7;
	border-radius: 6px;
    display: block;
    font-family: 'Work Sans';
	font-weight: 500;
	font-size: 18px;
	color: #21879A;
    padding: 15px 30px;
    margin-bottom: 18px;
    width: 98%;
}

.contact__input::placeholder,
.contact__textarea::placeholder {
  color: var(--color-alga-metalica);
  opacity: 0.7;
}

.contact__textarea{
	height: 100px;
}

.search__form__btn,
.contact__btn{
	background-color: var(--color-alga-metalica);
    border-radius: 34px;
    color: #F9F9F9;
    cursor: pointer;
    font-size: 20px;
    margin-top: 18px;
    padding: 12px 45px;
    border: none;
}

.contact__error{
    font-size: 18px;
    color: red;
    margin: 0 !important;
}

.contact__error__message{
    color: red;
    margin: 0 0 15px 0!important;
}

.thankyou{
    display: none;
    border: 1px solid var(--color-alga-metalica);
    border-radius: 42px;
    padding: 15px;
}

.thankyou__title{
    font-family: 'Poppins';
    font-size: 28px;
    color: var(--color-alga-metalica);
    text-align: center;
    text-align: center;
    display: inherit;
}

.thankyou__desc{
    text-align: center;
}


.gallery__colash,
.gallery__vertical{
    display: flex;
    width: 100%;
}

.gallery__colash__column{
    width: 50%;
}

.gallery__colash__img{
    background-color: gray;
    background-size: cover;
    background-position: center;
    border-radius: 42px;
}

.gallery__colash__img--left{
    height: 100%;
    margin-right: 20px;
}

.gallery__colash__img--middle{
    height: 245px;
    margin-bottom: 20px;
}

.gallery__colash__img--right{
    height: 245px;
}


.gallery__vertical__img{
    background-size: cover;
    background-position: center;
    border-radius: 42px;
    height: 325px;
    width: 33.3%;
}

.gallery__vertical__img:nth-child(2){
    margin: 120px 16px 0 16px;
}

.page__404{
    margin-top: 175px;
    min-height: 300px;
    text-align: center;
}

footer {
	border-top: 1px solid var(--color-alga-metalica);
	background-color: #EEEEEE;
	padding-top: 50px;
}

.footer__content {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 15px;
}

.footer__content a {
	color: #000;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

.footer__logo {

	margin-bottom: 30px;
    text-align: center;
}

.footer__logo img {
	width: 230px;
	margin-bottom: 10px;
}

.footer__rrss{
    text-align: left;
}

.footer__rrss__link{
    position: relative;
    width: 20px;
    display: inline-block;
    margin: 10px;
}

.footer__rrss__icon::after{
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    content: '';
    height: 20px;
    width: 20px;
    left: 0;
}

.footer__logo-amvo{
    display: block;
    padding-top: 60px;
}

.newsletter__container{
    display: flex;
    justify-content: end;
}

.footer__insignias{
    display: flex;
    flex-wrap: wrap;
    padding-top: 50px;
    justify-content: flex-end;
}



.footer__insignias img{
    height: 70px;
    width: auto;
    padding-bottom: 10px;
}

.footer__insignias__icon:nth-child(1) img {
    height: 75px;
    margin-top: -3px;
}

.footer__insignias__icon:nth-child(2){
    height: 72px;
    margin-top: -1px;
}

.footer__insignias .footer__insignias__icon:not(:last-child){
    padding-right: 10px;
}


.icon-facebook::after{
    background-image: url(../img/rrss/icon-fb.svg);
}

.icon-twitter::after{
    background-image: url(../img/rrss/icon-tw.svg);
    width: 25px;
}

.icon-instagram::after{
    background-image: url(../img/rrss/icon-ig.svg);
}

.icon-linkedin::after{
    background-image: url(../img/rrss/icon-linkedin.svg);
}

.icon-whatsapp::after{
    background-image: url(../img/rrss/icon-whatsapp.svg);
}

.fixed__whatsapp{
    box-shadow: 0 2px 4px -1px rgb(0 0 0 / 20%), 0 4px 5px 0 rgb(0 0 0 / 14%), 0 1px 10px 0 rgb(0 0 0 / 12%);
    width: 50px;
    height: 50px;
    background-color: var(--color-alga-metalica);
    position: fixed;
    right: 20px;
    bottom: 20px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    display: flex;
}

.fixed__whatsapp img{
    margin: 0px;
    width: 30px;
}

/* PushEngage icon fixed */ 
#pe-widget-bell.pe-bottom-right {
    right: 20px !important;
    bottom: 90px !important;
}

.footer__menu {
    display: flex;
    justify-content: space-between;
    margin: auto;
	margin-bottom: 30px;
}

.menu-footer-menu-es-container{
    padding-right: 30px;
}

.footer__menu__list li {
    margin-bottom: 10px;
    list-style: none;
}

.footer__suscribe {
	text-align: left;
}

.footer__suscribe__title {
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 10px;
}

.footer__frm {
	display: flex;
	
	width: 80%;
    width: 280px;
    margin-bottom: 0;

}

.footer__frm__input {
	height: 35px;
	box-shadow: 0px 3px 4px #00000029;
	border: 0;
	border-radius: 6px 0px 0px 6px;
	padding: 0 14px;
	outline: none;
    width: 100%;
}
.footer__frm__button {
	border: 0;
	background-color: #35495E;
	color: #fff;
	height: 35px;
    padding: 0 14px;
	border-radius: 0 6px 6px 0px;
	cursor: pointer;
}
.footer__copyright {
	background-color: var(--color-alga-metalica);
	color: #fff;
    display: flex;
    justify-content: center;
	text-align: center;
	padding: 20px;
    font-size: 16px;
}

.footer_slash{
    display: block;
    margin: 0 6px;
}

.newsletter__error{
    color: red;
    font-weight: 500;
    font-size: 16px;
    padding-top: 8px;
    max-width: 280px;
}

.newsletter__ty{
    color: var(--color-alga-metalica);
    display: none;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.search__no-found{
    font-size: 20px;
    text-align: center;
    min-height: 330px;
}

.seach__list__page{
    border-radius: 24px;
    display: block;
    height: 190px;
    margin: 0 auto;
}

.pushengage-opt-in__bell {
    bottom: 80px !important;
    right: 20px !important;
}

@media screen and (max-width: 1240px) {
    .wrapper{
        padding-left: 20px;
        padding-right: 20px;
    }

    .search__form{
        right: 15px
    }

 
    .header__menu__fixed__column__img,
    .header__menu__fixed__column{
        padding-right: 20px;
    }

    .footer__menu{
        width: 350px;
    }
}

@media screen and (max-width: 1020px) {
   
    .header__menu__list__text{
        margin: 0px;
    }

    .menu_contact {
        margin: 0px !important;
        padding: 15px 35px !important;
    }

    .header__menu__fixed__options{
        padding: 20px 20px 0 20px;
    }

    .header__menu__fixed__column__img{
        display: none;
    }

    .header__logo__img{
        width: 200px;
    }

    .header__menu__search{
        margin-left: 15px;
    }

    .gallery__colash__img--middle,
    .gallery__colash__img--right {
        height: 200px;
    }

    .gallery__vertical__img,
    .gallery__colash__img{
        border-radius: 25px;
    }

    .footer__logo{ 
        margin-bottom: 60px;
        width: 100%;
    }

    .footer__menu{
        width: 48%;
    }

    .footer__rrss{
        text-align: center;
    }

    .footer__logo-amvo{
        margin: 0 auto;
    }

    .footer__suscribe{
        width: 48%;
    }


    .footer__frm{
        margin: 0;
        width: 100%;
    }
    
}


@media screen and (max-width: 780px) {
    main{
        padding-top: 60px;
    }

    .body__noscroll{
        overflow: initial;
    }

    .body__noscroll #overlay__menu{
        display: none;
    }

    .header__content{
        height: 60px;
    }

    .header__logo__img{
        width: 180px;
    }

    .header__menu__mobile{
        display: block;
    }

    .header__menu{ 
        display: none;
        background-color: #E9E8E8;
        box-shadow: 0px 3px 26px #00000017;
        left: 0;
        padding: 0 20px 20px 20px;
        position: fixed;
        top: 60px;
        width: 100%;
    }

    .header__menu__list{
        display: block;
    }

    .header__menu__list__li{
        border-bottom: 1px solid #fff;
    }

    .header__menu__list__li:last-child a{
        margin: 0px;
    }

    .header__menu__list__text{
        font-weight: 600;
        padding: 14px 0;
    }

    .menu_contact {
        background-color: transparent;
        color: var(--color-alga-metalica) !important;
        margin: 0px !important;
        padding: 14px 0 !important;
    }

    .header__menu__fixed {
        box-shadow: none;
        height: auto;
        position: initial;
        
    }

    .header__menu__fixed__options{
        padding: 0 0 0 20px;
        display: block;
    }

    .header__submenu > .menu-item-has-children{
        padding-bottom: 0px;
    }

    .header__submenu li a,
    .header__submenu .sub-menu li a{
        font-size: 16px;
        font-weight: 300;
        margin-bottom: 10px;;
    }

    .header__menu__category{
        display: block;
    }

    #search{
        top: 60px;
        width: 100%;
    }

    .search__container {
        max-width: initial;
    }

    .search__form{
        padding: 15px;
        right: 0;
    }

    .header__menu__search{
        margin-left: 0px;
        margin-right: 15px;
    }
       
    .gallery__colash__column {
        width: 100%;
    }

    .gallery__colash__column:nth-child(2){
        display: none;
    }

    .gallery__colash__img--left{
        height: 250px;
        width: 100%;
    }


    .gallery__vertical__img:nth-child(1){
        height: 250px;
        width: 100%;
    }

    .gallery__vertical__img:nth-child(2),
    .gallery__vertical__img:nth-child(3){
        display: none;
    }

    .footer__suscribe,
    .contact__btn,
    .search__form__btn{
        width: 100%;
    }

    .contact__input, .contact__textarea{
        font-size: 16px;
        padding: 10px 20px;
        margin-bottom: 16px;
        width: 100%;
    }

    .contact__btn{
        font-size: 18px;
    }

    .footer__content{
        max-width: 440px;
        padding-bottom: 30px;
    }

    .footer__menu{
        padding-right: 0px;
        width: 100%;
    }

    .footer__frm{
        display: block;
        margin: auto;
        max-width: 300px;
    }

    .footer__suscribe__title{
        text-align: center;
    }

    .footer__frm__input{
        border-radius: 6px 6px 0 0;
    }

    .footer__frm__button{
        border-radius: 0px 0px 6px 6px; 
        width: 100%;
    }

    .menu-footer-menu-es-container{
        padding-right: 0px;
    }

    .footer__copyright{
        display: block;
    }

    .footer_slash{
        display: none;
    }

    .newsletter__container{
        justify-content: center;
    }

    .newsletter__error{
        margin: auto;
        text-align: center;
    }

    .footer__insignias{
        justify-content: center;
    }
}


@media screen and (max-width: 440px) {

    .gallery__colash__img--left{
        height: 200px;
    }

    .gallery__vertical__img:nth-child(1){
        height: 200px;
    }

    .footer__menu{
        display: block;
        text-align: center;
        margin: 0px 0 40px;
    }
}
