* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

.cabecera {
	background-color: rgb(255,255,255);
	display: grid;
	grid-template-columns: repeat(autofit, minmax(100px, 1fr));
	grid-template-rows: repeat(autofit, minmax(100px, 1fr));
	grid-template-areas: 
		"head-1 head-2";
}

.head-1 {
	grid-area: head-1;
	height: auto;
}

.head-2 {
	grid-area: head-2;
	height: auto;
    margin: 6px;

	display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/*---- ESTILOS ----*/
.cabecera .head-1 .logo {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: stretch;
	margin-left: 20px;
}

.cabecera .head-1 .logo img {
	width: 300px;
	height: 100%;
	border-radius: 2px;
}

.cabecera .head-2 .emergencias {
	display: flex;
	justify-content: space-between;
}

.cabecera .head-2 .emergencias .fa-headset {
	display: flex;
	justify-content: center;
	align-items: center;

	font-size: 40px;
	margin: 12px 15px 12px 0;
	color: #050829;
	transition: .6s;
}

.cabecera .head-2 .emergencias .asistencias a {
	color: #050829;
	font-size: 14px;
    transition: .8s ease;
    font-family: 'Patrick Hand', cursive;
}

.cabecera .head-2 .emergencias .asistencias  a:hover {
    color: #fb4f14;
    background-color: #fff;
    transition: .8s ease;
    border-radius: 2px;
    text-decoration: underline;
}

.cabecera .head-2 .acceso,
.cabecera .head-2 .bandera,
.cabecera .head-2 .membresia {
	margin-right: 15px;
}

.head-2 .acceso .blog {
    display: flex;
    justify-content: center;
    align-items: center;
}

.head-2 .acceso .blog img {
    width: 20px;
}
.head-2 .acceso .blog a {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    letter-spacing: 1px;
    font-size: 20px;
    padding: 5px;
    color: rgb(5,26,58,.88);
}
.head-2 .acceso .blog a:hover {
    text-decoration: underline;
}
    /*----bandera------*/
.cabecera .head-2 .bandera {
    display: flex;
    justify-content: center;
    align-items: center;
}
.cabecera .head-2 .bandera img {
    width: 30px;
}
.cabecera .head-2 .bandera a {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    letter-spacing: 1px;
    font-size: 20px;
    padding: 5px;
    color: rgb(5,26,58,.88);
}
.cabecera .head-2 .bandera a:hover {
    text-decoration: underline;
}

    /*----MEMBRESIA------*/
.cabecera .head-2 .membresia {
    display: flex;
    justify-content: center;
    align-items: center;
}
.cabecera .head-2 .membresia img {
    width: 25px;
}
.cabecera .head-2 .membresia a {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    letter-spacing: 1px;
    font-size: 20px;
    padding: 5px;
    color: rgb(5,26,58,.88);
}
.cabecera .head-2 .membresia a:hover {
    text-decoration: underline;
}


.cabecera .head-2 .ico {
    padding: 10px;
    color: #050829;
    transition: .8s ease;
    border-radius: 4px;
}
.cabecera .head-2 .ico:hover {
    color: #fb4f14;
    background-color: #fff;
    transition: .8s ease;
    border-radius: 10px;
    cursor: pointer;
}

@media screen and (max-width: 650px){
    .cabecera {
        grid-template-areas: 
        	"head-1 head-1"
        	"head-2 head-2";
    }

    .cabecera .head-1 .logo {
		display: flex;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;
		margin-left: 0;
		margin: 0 5px;
	}

	.cabecera .head-1 .logo img {
		width: 100%;
		height: 100%;
		margin: 2px; 	
	}

	.cabecera .head-2 {
		display: flex;
		justify-content: space-around;
		margin: 5px;
		margin-right: 65px;
	}
      
}

@media screen and (max-width: 410px){
	.cabecera .head-2 {
		flex-wrap: nowrap;
	}
    .head-2 .acceso .blog a,
    .cabecera .head-2 .bandera a,
    .cabecera .head-2 .membresia a {
       font-size: 14px; 
    }
      
}
/*------ FIN HEADER ---- ---- ---- ----*/

/*---- ----- --- NAV ---- ---- ---- ---*/
.menu-boton {
	display: none;
}
.sidenav a{
	display: none;
}

.navegador {
	background-color: rgb(5,26,58,.88);

	display: grid;
	grid-template-columns: repeat(autofit, minmax(100px, 1fr));
	grid-template-rows: repeat(autofit, minmax(100px, 1fr));
	grid-template-areas:
		"home navegacion";
}

.navegador .home {
	grid-area: home;
	height: 50px;
}

.navegador .navegacion {
	grid-area: navegacion;
	height: 50px;
}

.navegador .home {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;  
    
    margin-left: 40px;
}
.navegador .home a {
	color: #fff;
	padding: 10px;
	font-size: 16px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    transition: .6s ease;
}

.navegador .home a:hover {
    color: #051A3A;
    background-color: #fff;
    transition: .5s ease;
    border-radius: 2px;
    text-decoration: underline;
}

.navegador .navegacion {
	display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.navegador .navegacion a {
	color: #fff;
	padding: 12px 10px;
	font-size: 16px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    transition: .5s ease;
}
.navegador .navegacion a:hover {
	color: #051A3A;
    background-color: #fff;
    transition: .5s ease;
    border-radius: 2px;
    text-decoration: underline;
}

@media screen and (max-width: 650px){
	.navegador {
		display: none;
	}
    .menu-boton {
        display: inline-block;
        position: absolute;
        right: 0;
        padding: 8px;
        margin-right: 2px;
        margin-top: -40px;
        font-size: 20px;
        background-color: rgb(5,26,58,.88);
        color: #fff;
        font-family: 'Yanone Kaffeesatz', sans-serif;
        border-radius: 2px;
    }
.sidenav {
    width: 0;
    position: fixed;
    z-index: 1;  
    top: 100px;
    right: 0;
    padding: 10px 0;
    background-color: #4091ec;
    overflow-x: hidden;
    transition: 0.7s;
    cursor: pointer;
    border-radius: 4px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
	}

.sidenav a {
    padding-left: 20px;
    font-size: 22px;
   	padding: 5px;
    color: #fff;
    display: block;
    transition: 0.3s;
	}

.sidenav a:hover {
    color: rgb(5,26,58);
    transition: .6s;
	}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 36px;
	}
}
/*---- ---- ---- ---- FIN DEL NAV ---- ---- ----*/

/*---- ---- INICIO SLIDE ---- ---- ----*/
.banner {
    display: grid;
    grid-template-columns: auto-fit, minmax(300px, 1fr);
    grid-template-rows: minmax(100px, 1fr);
    z-index: -1;
    width: 100%;
    height: 600px;
    position: absolute;
    top: 0;
    overflow: hidden;
}

slider {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #0e246d;
    overflow: hidden;
    position: absolute;
    box-shadow: 5px 5px 15px rgb(0,0,57);  
}

slide {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    animation: slide 20s infinite;
    overflow: hidden;
}
slide:nth-child(4) {
    left: 0%;
    animation-delay: -4s;
    background-image: url(../img/banner-1.jpg);
    background-size: cover;
    background-position: center;
    
}slide:nth-child(3) {
    animation-delay: 1s;
    background-image: url(../img/banner-2.jpg);
    background-size: cover;
    background-position: center;
}
slide:nth-child(2) {
    animation-delay: 6s;
    background-image: url(../img/banner-3.jpg);
    background-size: cover;
    background-position: center;
}
slide:nth-child(1) {
    left: 0%;
    animation-delay: 11s;
    background-image: url(../img/banner-4.jpg);
    background-size: cover;
    background-position: center;
}

@keyframes slide {
    0% {left: 100%; width: 100%;}
    5% {left: 0%;}
    25% {left: 0%;}
    30% {left: -100%; width: 100%;}
    30.0001% {left: -100%; width: 0%;}
    100% {left: 100%; width: 0%;} 
}

@media screen and (max-width: 650px) {
	slide p {
		font-size: 50px;
		margin-top: 400px;
	}
}
/*--=======================--*/

/*--=======================--*/



/*---- ---- ---- FIN SLIDE ---- ---- ----*/


.rep-dom {/*----Texto bienvenida----*/
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 360px;
}
.rep-dom .title-rep-dom {
	font-family: 'Yanone Kaffeesatz', sans-serif;
	font-size: 70px;
	padding: 16px;
	color: #fff;
	letter-spacing: 1px;
}

@media screen and (max-width: 1200px) {
	.rep-dom .title-rep-dom {
		font-size: 40px;
		padding: 16px;
		text-align: center;
	}
}
@media screen and (max-width: 650px) {
	.rep-dom {
		margin-top: 260px;
	}
}

/*---- ---- INICIO CIRCUITOS ---- ----*/
.Content-01 {
    background-image: url(../img/banner-circuito.jpg);
    background-size: cover;
    background-position: center;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(auto-fit, 1fr);
    grid-template-areas:
        "para-circuitos1 para-circuitos2 para-circuitos3";
}

.para-circuitos1 {
    grid-area: para-circuitos1;
    height: 200px;
    margin-bottom: 120px;
    background-color: rgb(5,26,58,.88);
}
.para-circuitos2 {
    grid-area: para-circuitos2;
    height: 200px;
    margin-bottom: 120px;
    background-color: rgb(5,26,58,.88);
}
.para-circuitos3 {
    grid-area: para-circuitos3;
    height: 200px;
    margin-bottom: 120px;
    background-color: rgb(5,26,58,.88);
}

/*---- ---- STYLES ---- ----*/
.para-circuitos1,
.para-circuitos2,
.para-circuitos3 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.para-circuitos1 .img-circuito1 {
    background-image: url(../img/circuito-1.jpeg);
    background-size: cover;
    background-position: center;
    width: 80%;
    height: 50%;
    margin: 1px;
    margin-left: 5px;
}
.para-circuitos2 .img-circuito2 {
    background-image: url(../receptivo/img/trato.jpeg);
    background-size: cover;
    background-position: center;
    width: 70%;
    padding: 12px;
    height: 50%;
    margin: 1px;
    margin-left: 5px;
}
.para-circuitos3 .img-circuito3 {
    background-image: url(../img/circuito-3.jpg);
    background-size: cover;
    background-position: center;
    width: 70%;
    height: 50%;
    margin: 1px;
    margin-left: 5px;
}

.title-circuito {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    color: #fb4f14;
    margin-top: 12px;
}
.txt-circuito,
.a-circuito {
    font-family: 'Patrick Hand', cursive;
    font-size: 16px;
    color: #fff;
    padding: 5px;
    font-weight: 100;
}
.a-circuito{
    color: yellow;
}
.a-circuito:hover {
    text-decoration: underline;
} 
/*----------------*/

/*----TEXTO REP. DOMINICANA----*/
.txt-rd-destinos {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-top: -85px;
}
.txt-rd-destinos .title-dr {
	font-family: 'Yanone Kaffeesatz', sans-serif;
	font-size: 60px;
	padding: 10px;
	color: #000;
	letter-spacing: 1px;
}

/*-------@MEDIAS-------*/
@media screen and (max-width: 1200px) {
    .Content-01 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(auto-fit, 1fr);
        grid-template-areas:
            "para-circuitos1 para-circuitos2"
            "para-circuitos3 para-circuitos3" ;
    }
    .para-circuitos1 {
        margin-bottom: 0px;
        width: 100%;
    }
    .para-circuitos2 {
        margin-bottom: 0px;
        width: 100%;
    }
    .para-circuitos3 {
        width: 100%;
    }
    
}

@media screen and (max-width: 800px) {
    .Content-01 {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(auto-fit, 1fr);
        grid-template-areas:
            "para-circuitos1"
            "para-circuitos2"
            "para-circuitos3";
    }
}


/*---=====ABOUT US====--*/
.container-h1 {
	width: 100%;
	min-height: 750px;
    padding: 30px 0;

	background-image: url(../img/modified.jpg);
	background-position: center;
	background-size: cover;

	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.container-h1 .box-h1 {
	width: 250px;
	height: 350px;
	margin: 8px;
	background-color: rgb(255,255,255,.7);
	box-shadow: 1px 1px 12px 0px #0e246d;
    -webkit-box-shadow: 1px 1px 12px 0px #0e246d;
    -moz-box-shadow: 1px 1px 12px 0px #0e246d;

    display: flex;
	justify-content: center;
	align-items: center;

	position: relative;
}

.txt-h1 {
	font-family: 'Patrick Hand', cursive;
	font-weight: 200px;
	font-size: 15px;
	text-align: left;
	color: #000000;
	padding: 5px;
	margin: 8px;
}
.txt-h1 strong {
	color: #0e246d;
	font-weight: 400;
}
.txt-h1 span {
	font-family: 'Yanone Kaffeesatz', sans-serif;
	font-weight: 400;
	font-size: 20px;
	color: #1a124d;
}
.txt-h1 a {
	font-family: 'Patrick Hand', cursive;
	font-weight: 500px;
	font-size: 16px;
	text-align: left;
	color: #4091ec;
	text-decoration: border-line;
}

.widget-1 {
	position: absolute;
	top: -5px;
	right: 0;

	width: 150px;
	height: 40px;

	display: flex;
	flex-direction: row;
}

.widget-2 {
	position: absolute;
	bottom: -5px;
	left: 0;

	width: 150px;
	height: 5px;
	background-color: #fb4f14;
}

.box-color-1 {
	background-color: goldenrod;
}
.box-color-2 {
	background-color: #fb4f14;
}
.box-color-3 {
	background-color: #e31103;
}
.box-color-4 {
	background-color: #3399ff;
}


/*--=======IMAGENES WIDGETS======--*/
.img-h1-1,
.img-h1-2,
.img-h1-3,
.img-h1-4,
.img-h1-5,
.img-h1-6,
.img-h1-7,
.img-h1-8 {
	box-shadow: 1px 1px 12px 0px #0e246d;
    -webkit-box-shadow: 1px 1px 12px 0px #0e246d;
    -moz-box-shadow: 1px 1px 12px 0px #0e246d;
    
    border-radius: 2px;
}

.img-h1-1 {
	background-image: url(../img/acomodartion-1.jpg);
	background-position: center;
	background-size: cover;
	width: 75px;
	height: 40px;
}
.img-h1-2 {
	background-image: url(../img/acomodartion-2.jpg);
	background-position: center;
	background-size: cover;
	width: 75px;
	height: 40px;
}


.img-h1-3 {
	background-image: url(../img/activities-1.jpg);
	background-position: center;
	background-size: cover;
	width: 75px;
	height: 40px;
}
.img-h1-4 {
	background-image: url(../img/activities-2.jpg);
	background-position: center;
	background-size: cover;
	width: 75px;
	height: 40px;
}

.img-h1-5 {
	background-image: url(../img/quitada3.jpg);
	background-position: top;
	background-size: cover;
	width: 75px;
	height: 40px;
}
.img-h1-6 {
	background-image: url(../img/ej1.jpeg);
	background-position: center;
	background-size: cover;
	width: 75px;
	height: 40px;
}


.img-h1-7 {
	background-image: url(../img/Transfer-1.jpg);
	background-position: center;
	background-size: cover;
	width: 75px;
	height: 40px;
}
.img-h1-8 {
	background-image: url(../img/Transfer-2.png);
	background-position: center;
	background-size: cover;
	width: 75px;
	height: 40px;
}
/*---=FIN ABOUT US====--*/



/*--====================--*/
/*--======Intereses=====--*/
.container_interes{
    background-color: #2a89a0;
    /*background-color: #020716;*/
    height: auto;
    padding: 100px 50px;
    
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: 
        "box_1 box_1 box_2 box_3"
        "box_1 box_1 box_4 box_5";
}

.box_1 {
    grid-area: box_1;
    height: 510px;
    background-color: transparent;
    
    background-image: url(../img/box_1.jpg);
    background-position: center;
    background-size: cover;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.box_2 {
    grid-area: box_2;
    height: 250px;
    overflow: hidden;
    
}

.box_3 {
    grid-area: box_3;
    height: 250px;
    overflow: hidden;
}

.box_4 {
    grid-area: box_4;
    height: 250px;
    overflow: hidden;
}

.box_5 {
    grid-area: box_5;
    height: 250px;
    overflow: hidden;
}
    /*---======---*/


.container_border {
    border: 3px solid #fff;
    width: 100%;
    padding: 40px;
    height: auto;
    
    display: flex;
    justify-content: center;
    align-items: center;
}
.box_border {
    border: 1px solid #fff;
    width: 80%;
    min-height:  400px;
    background-color: rgb(21,68,80,.8);
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.txt_interes {
    font-family: 'Yanone Kaffeesatz', sans-serif; 
    font-size: 28px;
    font-weight: 100;
    text-align: center;
    color: #fff;
    padding: 5px;
}
.txt_interes span {
    color: #fafa3b;
    font-size: 60px;
    font-weight: 600;
}

.box_border p {
    font-family: 'Yanone Kaffeesatz', sans-serif; 
    font-size: 38px;
    font-weight: 300;
    text-align: center;
    color: #fff;
    padding: 5px;
    padding-top: 30px;
}
    /*--====--*/
    

    /*--==IMG==--*/
.box_2, 
.box_3, 
.box_4, 
.box_5 {
    position: relative;
}

.box_img_box {
    max-width: 467.5px;
    height: 300px;
    overflow: hidden;
    transition: all 500ms ease;
}

.img-box {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 500ms ease;
}
.img-box:hover {
    transform: scale(1.2);
    transition: all 500ms ease;
}

.box_img_box a {
    font-family: 'Yanone Kaffeesatz', sans-serif; 
    color: #fff;
    padding: 5px 12px;
    font-size: 22px;
    font-weight: 100;
    position: absolute;
    bottom: 12px;
    right: 15px;
    background-color: rgb(0,0,0,.7);
    border-radius: 12px 0 12px 0;
    text-decoration: underline;
    transition: all 500ms ease;
}
.box_img_box a:hover {
    color: #3399ff;
    transition: all 500ms ease;
    
}

    /*----======----*/
@media screen and (max-width: 940px) {
    .container_interes{
        height: 1260px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        grid-template-areas: 
            "box_1 box_1"
            "box_2 box_3"
            "box_4 box_5";
    }
}

@media screen and (max-width: 500px) {
    .container_interes{
        height: 1680px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
        grid-template-areas: 
            "box_1"
            "box_2"
            "box_3"
            "box_4"
            "box_5";
    }
    
    .anchar {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .box_1 {
        grid-area: box_1;
        height: auto;
        width: 300px;
    }
    
    .container_border {
        height: 320px;
        padding: 0;
        margin: 0;
    }
    .box_border {
        
        border: 1px solid #fff;
        width: 80%;
        min-height:  200px;
        background-color: rgb(21,68,80,.8);
    }
    .txt_interes {
        font-size: 18px;
    }
    .txt_interes span {
        font-size: 30px;
    }

    .box_border p { 
        font-size: 20px;
    }
    
    .box_img_box a {
        font-size: 20px;
    }
    

}
/*--====================--*/
/*--==FIN Intereses=====--*/


/*--=========OFERT======--*/
/*--====================--*/
.container_offer {
    width: 100%;
    min-height: 600px;
    padding: 15px;
    overflow: hidden;
    
    background-image: url(../img/bg_offer.jpg);
    background-size: contain;
    background-position: center;
    background-repeat: repeat-x;
    
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    
    z-index: 1;
    position: relative;
}
.container_offer::after {
    content:"";
    position:absolute;
    background: rgba(23,14,58,.7);
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: -1;
}

@media screen and (max-width: 990px) {
    .container_offer {
        background-repeat: repeat;
    }
}
    /*--=========--*/

.aside_right {
    position: absolute;
    width: 250px;
    height: 250px;
    background-color: #ff0080;
    
    transform: rotate(-25deg);
    border-radius: 30% 5%;
    
    bottom: -15px;
    right: -60px;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    z-index: 100;
}

.txt_aside_r {
    font-family: 'Yanone Kaffeesatz', sans-serif; 
    color: #fff;
    padding: 5px 12px;
    font-size: 30px;
    font-weight: 100;
}

.txt_aside_r span {
    font-size: 50px;
    text-transform: uppercase;
    color: #CCFF00;
}
.txt_aside_r .es_sp {
    font-size: 40px;
}
    /*--=========--*/

.box_container_offer {
    width: 300px;
    height: 400px;
    margin: 10px;
}
    
.hoteleria_aside {
    background-image: url(../img/hoteleria.jpg);
    background-position: left;
    background-size: cover;
    border-radius: 40% 25% 80% 30%;
    
    z-index: 1;
    position: relative;
}
.hoteleria_aside::after {
    content:"";
    position:absolute;
    background: rgba(0,0,0,.5);
    border-radius: 40% 25% 80% 30%;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: -1;
}

.traslados_aside {
    background-image: url(../img/quitada1.jpg);
    background-position: left;
    background-size: cover;
    border-radius: 40% 40% 80% 80%;
    
    z-index: 1;
    position: relative;
}
.traslados_aside::after {
    content:"";
    position:absolute;
    background: rgba(0,0,0,.5);
    border-radius: 40% 40% 80% 80%;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: -1;
}

.excursion_aside {
    background-image: url(../img/ex-as.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 25% 40% 30% 80%;
    
    z-index: 1;
    position: relative;
}
.excursion_aside::after {
    content:"";
    position:absolute;
    background: rgba(0,0,0,.5);
    border-radius: 25% 40% 30% 80%;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: -1;
}
    /*--=========--*/

.title_hoteleria_aside { 
    font-family: 'Yanone Kaffeesatz', sans-serif; 
    color: #fff;
    text-shadow:
       3px 3px 0 #ff0080,
     -1px -1px 0 #ff0080,  
      1px -1px 0 #ff0080,
      -1px 1px 0 #ff0080,
       1px 1px 0 #ff0080;
    padding: 15px 12px;
    margin-top: 30px;
    text-align: center;
    letter-spacing: 1px;
    font-size: 40px;
    font-weight: 100;
    text-decoration: underline;
}

.title_traslados_aside { 
    font-family: 'Yanone Kaffeesatz', sans-serif; 
    color: #fafa3b;
    text-shadow:
       3px 3px 0 #000,
      -1px -1px 0 #0e246d,  
       1px -1px 0 #0e246d,
      -1px 1px 0 #0e246d,
       1px 1px 0 #0e246d;
    padding: 15px 12px;
    margin-top: 30px;
    text-align: center;
    letter-spacing: 1px;
    font-size: 40px;
    font-weight: 100;
    text-decoration: underline;
}

.title_excursion_aside {
    font-family: 'Yanone Kaffeesatz', sans-serif; 
    color: #fff;
    text-shadow:
       3px 3px 0 #0e246d,
     -1px -1px 0 #0e246d,  
      1px -1px 0 #0e246d,
      -1px 1px 0 #0e246d,
       1px 1px 0 #0e246d;
    padding: 15px 12px;
    margin-top: 30px;
    text-align: center;
    letter-spacing: 1px;
    font-size: 40px;
    font-weight: 100;
    text-decoration: underline;
}

.txt_area_aside {
    font-family: 'Patrick Hand', cursive;
    font-size: 18px;
    color: #fff;
    text-align: center;
    padding: 5px 10px;
    margin: 5px;
    font-weight: 500;
}
.txt_area_aside span {
    color: #fafa3b;
    font-size: 28px;
    font-family: 'Yanone Kaffeesatz', sans-serif; 
}




/*--=====FIN OFERT======--*/
/*--====================--*/


/*--====================--*/
/*--=========US=========--*/

.us_container {
    width: 100%;
    min-height: 600px;
    padding: 40px 20px;
    
    background-image: url(../img/back_us.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.box_us,
.box_us_txt {
    width: 500px;
    min-height: 500px;
    margin: 10px; 15px;
    overflow: hidden;
}

.box_us img {
    width: 100%;
    height: auto;
}
    /*--==--*/

.box_us_txt {
    background-color: rgba(7,18,55,.8)
}

.title_us {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-weight: 100;
    font-size: 50px;
    color: #fff;
    text-align: center;
    padding: 12px;
    text-decoration: underline;
}

.txt_us {
	font-family: 'Yanone Kaffeesatz', sans-serif;
    font-weight: 100;
    font-size: 20px;
    color: #fff;
    text-align: left;
    padding: 8px ;
    margin: 5px;
}

.txt_us span {
	color: #ffae3b;
}

.txt_us a {
    color: yellow;
    text-decoration: underline;
    letter-spacing: 1px;
    font-size: 24px;
    transition: .5s
}
.txt_us a:hover {
    transition: .5s;
    color: #4091ec;
}
    /*--==--*/

.img_us {
    width: 100%;
    min-height: 200px;
    padding: 10px;
    margin-bottom: 20px;
    
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.box_img_us {
    width: 200px;
    height: 200px;
    overflow: hidden;
    padding-bottom: 8px;
    margin: 10px 5px;
    border-radius: 50%;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(255,255,255,1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(255,255,255,1);
    box-shadow: 0px 0px 10px 0px rgba(255,255,255,1);
}

/*--====================--*/
/*--=========FIN US=====--*/


/*--===========================--*/
/*--============Dominicana=====--*/
.main_container {
    width: 100%;
    min-height: 800px;
    padding: 10px;
    /*background-color: #3A2613;*/
    background-color: #510c76;
    
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.contain_aside {
    width: 50%;
    min-height: 780px;
}

.area_txt_aside {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
}

.contain_txt_aside {
    width: 100%;
    min-height: 500px;
    border-radius: 90%;
    
    background-image: url(../img/back_txt_side.jpg);
    background-position: center;
    background-size: cover;
    
    -webkit-box-shadow: inset 0px 0px 58px 36px rgba(81,12,118,1);
    -moz-box-shadow: inset 0px 0px 58px 36px rgba(81,12,118,1);
    box-shadow: inset 0px 0px 58px 36px rgba(81,12,118,1);
    
    z-index: 1;
    position: relative;
    
}
.contain_txt_aside::after {
    content:"";
    position:absolute;
    /*background: rgba(81, 12, 118,.9);*/
    background: rgba(0, 0, 0,.6);
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: -1;
    border-radius: 10px;
    -webkit-box-shadow: -8px -21px 44px 36px rgba(44,6,65,1);
    -moz-box-shadow: -8px -21px 44px 36px rgba(44,6,65,1);
    box-shadow: -8px -21px 44px 36px rgba(44,6,65,1);
}
    /*--===--*/

.title_aside_domi {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 50px;
    color: #fff;
    text-align: left;
    padding: 12px;
    margin-top: 10px;
    text-shadow: 1px 2px 1px #000;
}

.img_flag {
    border-radius: 50%;
    width: 80px;
    position: absolute;
    top: 2px;
    right: 10px;
}


.txt_aside_domi {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 30px;
    color: #4190ed;
    text-align: right;
    letter-spacing: 1px;
    font-weight: 100;
    padding: 10px;
    margin-bottom: 10px;
    margin-top: 15px;
    text-shadow: 1px 2px 2px #000;
}
    /*--===--*/


.title_polos {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 25px;
    color: #fff;
    font-weight: 100;
    text-align: left;
    padding: 0 5px;
    text-shadow: 1px 2px 1px #000;
}

.txt_text_aside {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 20px;
    color: #fff;
    text-align: left;
    letter-spacing: 1px;
    text-shadow: 1px 4px 1px #000;
    padding: 0 10px;
}

.txt_text_aside span {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 20px;
    color: #fbc307;
    text-align: left;
    text-decoration: underline;
}
    /*--===--*/


.area_img-aside {
    position: relative;
    z-index: 10;
}

.box_img_aside_1 {
    width: 100%;
    height: 400px;
    position: absolute;
    top: 0;
    left: 0;
    
    background-image: url(../img/aside_1.jpg);
    background-position: center;
    background-size: cover;
}

.box_img_aside_2 {
    width: 50%;
    height: 500px;
    position: absolute;
    bottom: 0;
    left: 15px;
    
    background-image: url(../img/aside_2.jpg);
    background-position: center;
    background-size: cover;
}

.box_img_aside_3 {
    width: 60%;
    height: 250px;
    position: absolute;
    bottom: 200px;
    right: 0;
    
    background-image: url(../img/aside_3.jpg);
    background-position: center;
    background-size: cover;
}


    /*---====---*/

@media screen and (max-width: 860px) {
    .main_container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .title_aside_domi {
        font-size: 30px;
        padding: 10px 40px 10px 10px;
        margin-bottom: 10px;
        margin-top: 15px;
    }
    
    .img_flag {
        width: 40px;
    }
    
    .txt_aside_domi {
        font-size: 24px;
    }
    
    .title_polos {
        font-size: 20px;
        letter-spacing: 1px;
    }
    
    .txt_text_aside {
        font-size: 16px;
        padding: 10px;
        font-family: 'Patrick Hand', cursive;
    }
    
    .box_img_aside_1 {
        width: 100%;
        height: 250px;
    }

    .box_img_aside_2 {
        width: 50%;
        height: 300px;
        bottom: -70px;
    }

    .box_img_aside_3 {
        width: 60%;
        height: 100px;
        bottom: 60px;
    }
    
    .contain_aside {
        width: 80%;
        min-height: 400px;
    }

}


/*--===========================--*/
/*--=========FIN Dominicana=====--*/















