/*
Theme Name: Modo Viaje
Theme URI: https://modoviaje.ar/
Version: 1.0
Author: @marugarcia
Author URI: https://marugarcia.tk/marugarcia
*/


html{
	scroll-behavior: smooth;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	color: #060A3D;
	background: #fff;
	font-weight: 400;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
}

.overh{
	overflow: hidden;
}

*:focus{
	outline: none !important;
}

a,
a:hover,
a:focus {
	color: inherit;
	text-decoration: none;
	transition: 0.3s all;
}


h1, h2, h3, h4, h5, h6{		
	line-height: 1em;	
	font-weight: 300;
	/*font-weight: 700;*/
}

h1 { font-size: 50px; }
h2 { font-size: 28px; }
h3 { font-size: 26px; }
h4 { font-size: 24px; }
h5 { font-size: 18px; }
h6 { font-size: 15px; }

@media screen and (min-width: 992px) {

	h1 { font-size: 60px; }
	h2 { font-size: 54px; }
	h3 { font-size: 39px; }
	h4 { font-size: 27px; }
	h5 { font-size: 24px; }
	h6 { font-size: 18px; }
}

b, strong {
    font-weight: 700;
}



@keyframes bounce {
    0% {
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
    }
    50% {
        transform: translate(0, -100%);
        -webkit-transform: translate(0, -100%);
        -moz-transform: translateY(0, -100%);
    }
    100% {
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
    }          
}

@keyframes height {
    0%{
        height: 10%;
    }
    50%{
       height: 60%;
    }
    100%{
        height: 100%;
    }
}



/* Framework */

.main {
	width: 100%;
	min-height: 80vh;
	overflow: hidden;
	background: #fff;
}

.container{
	width: 100%;
	max-width: 100%;
}
@media screen and (min-width: 992px) {
	.container {
		max-width: 1440px;
		padding: 0 70px;
	}
}

@media screen and (min-width: 1200px){
	.col-lg-5-2{
		-ms-flex: 0 0 20%;
		flex: 0 0 20%;
		max-width: 20%;
	}
}
/* */

.section{
	position: relative;
	padding: 50px 0;
}

@media screen and (min-width: 992px){
	.section{
		padding: 80px 0;
	}
}


/* Buttons */

.btn{
	position: relative;
	padding: 0 20px;
	line-height: 39px;
	font-size: 16px;
	min-width: 180px;
	white-space: nowrap;
	border-radius: 50px;
	font-family: 'FSAlbertPro', sans-serif;
}
.btn:focus{
	box-shadow: none !important;
}

.btn-sm {
	line-height: 30px;
}
.btn-lg {
	line-height: 50px;
}


.btn-primary {
    background: #044ED7;
    border-color: #044ED7;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:not([disabled]):not(.disabled):active {
    color: #044ED7;
    background: transparent;
    border-color: #044ED7;
}

.btn-secondary {
    background: #EF772F;
    border-color: #EF772F;
    color: #fff;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:not([disabled]):not(.disabled):active {
    color: #EF772F;
    background: #fff;
    border-color: #EF772F;
}

.btn-outline-secondary {
    background: transparent;
    border-color: #EF772F;
    color: #EF772F;
}
.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:not([disabled]):not(.disabled):active {
    color: #fff;
    background: #EF772F;
    border-color: #EF772F;
}


.btn-light{
	color: #070A3D !important;
}
.btn-light:hover,
.btn-light:focus,
.btn-light:not([disabled]):not(.disabled):active{
	color: #fff !important;
	background: transparent;
	border-color: #fff;
}


.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:not([disabled]):not(.disabled):active {
	color: #070A3D !important;
	background: #FFF;
}

.btn-outline-dark {
    background: transparent;
    border-color: #070A3D;
    color: #070A3D;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus,
.btn-outline-dark:not([disabled]):not(.disabled):active {
	color: #FFF;
	background: #070A3D;
}


/* Backgrounds */

.bg-light {
	background-color: #F7F4F1 !important;
}
.bg-primary{
	background-color:  #EA5678 !important;
}
.bg-secondary {
	background-color: #1F4F99 !important;
}
.bg-dark {
	background-color: #060A3C !important;
}


/* Text */

.text-primary {
	color:  #EA5678 !important;
}

.text-secondary {
	color: #FF6E00 !important;
}

.text-light {
	color: #fff !important;
}


/* Header */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 52px;
    background: transparent;
    transition: 0.5s all;
    z-index: 999;
    opacity: 0;
}

.header .container,
.header .container-fluid{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*margin-left: 0;*/
    padding-left: 0;
    padding-right: 20px;
}

.header .logo{
    display: block;
    max-width: 170px;
    margin: 0;
}

.header.fixed {
    position: fixed;
    background: #fff;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
    z-index: 9998;
    -webkit-animation: slideInDown 0.3s ease-out;
    -moz-animation: slideInDown 0.3s ease-out;
}


.header.active{
    /*background: #060A3C;*/
}


/* Header > Navigation */

.header .nav-menu {
    position: relative;
    float: right;
    width: 35px;
    padding: 10px 0;
    z-index: 21;
    cursor: pointer;
    overflow: hidden;
}
.header .nav-menu .menu-line {
    float: right;
    display: block;
    width: 100%;
    height: 2px;
    margin: 3px 0;
    background: #060A3D;
    border-radius: 0;
    transition: 0.3s;
}

.header .nav-menu.active .menu-line:nth-child(1) { transform: rotate(45deg); width: 40px; margin-top: 14px; }
.header .nav-menu.active .menu-line:nth-child(3) { transform: rotate(-45deg); width: 40px; margin-top: -14px; }
.header .nav-menu.active .menu-line:nth-child(2) { opacity: 0; }

.header .navigation {
    display: none;
    position: absolute;
    top: 52px;
    left: 0;
    width: 100%;
    margin: 0;
    text-align: left;
    background: transparent;
}
.header .navigation.active {
    display: block;
    background: #fff;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
}
.header .navigation ul {
    position: relative;
    margin: 15px 0;
}

.header .navigation ul li a{
	font-family: 'FSAlbertPro', sans-serif;
    display: block;
    position: relative;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 700;
    color: #060A3D;
	font-style: normal;
	text-align: center;
}


.header .navigation .menu li:not(.btn-contact).active a,
.header .navigation .menu li:not(.btn-contact).current-menu-item a,
.header .navigation ul li:not(.btn-contact) a:hover {
	color: #FF6E00;
}


.header .navigation ul li.btn-contact a{
	color: #fff;
	border-radius: 100px;
	background: #FF6E00;
	border: solid 1px #FF6E00;
	font-weight: 400;
	width: 110px;
	max-height: 41px;
	margin: 0 auto;
}

.header .navigation ul li.btn-contact a:hover{
    color: #FF6E00;
    background: #fff;
    
}


@media screen and (min-width: 1200px) {
    .header{
        min-height: 75px;
    }

    .header .logo{
        max-width: 246px;
        margin: 0;
        z-index: 2;

    }

    .header .nav-menu {
        display: none;
    }

    .header .navigation{
        position: relative;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        top: auto;
        left: auto;
        width: auto;
        background: transparent;
        /*float: right;*/
    }

    .header .navigation ul,
    .header .navigation ul li{
        position: relative;
        display: inline-block;
        vertical-align: middle;
    }

    .header .navigation ul{
        width: 100%;
        margin: 0;
        text-align: center;
    }

    .header .navigation .menu li a{
        position: relative;
        padding: 0 23px;
        text-align: center;
        color: #060A3D;
        font-size: 16px;
        line-height: 40px;
    }

    .header .navigation .menu li:not(.btn-contact):not(:first-child):before {
		content: '';
		position: absolute;
		width: 1px;
		height: 12px;
		background: #060A3D;
	    left: -1px;
	    top: 14px;
	}

    .header.fixed{
        min-height: 60px;
    }
    
}


/* Module > Video Player */

.video-player{
	position: relative;
	width: 100%;
	background: no-repeat center;
	background-size: cover;
	padding: 42% 0;
	border-radius: 24px;
}
.video-player .play{
	position: absolute;
    top: calc(50% - 24px);
    left: calc(50% - 90px);
    width: 180px;
    height: 55px;
    font-size: 21px;
    line-height: 52px;
    text-align: center;
    background: rgb(61 63 65 / 50%);
    color: #EF772F;
    border: solid 2px #EF772F;
    border-radius: 100px;
    transition: 0.3s all;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-player.active .play,
.video-player:hover .play{
	color: #EF772F;
}
.video-player:hover .play{
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
}
.video-player .play i{
	font-size: 32px;
	margin-right: 4px;
	color: #EF772F;
}

.video-player.allowed{
	cursor: pointer;
}

/* Pages > Page 404 */

.page.page-404 .content{
	text-align: center;
	margin-top: 80px;
	min-height: calc(100vh - 80px);
}
.page.page-404 .content .title p{
	margin: 0 auto;
	max-width: 100%;
}

/* Pages > Internal */

.page.internal .content{
	padding: 50px 0;
}
.page.internal .content article {
	max-width: 850px;
	margin: 0 auto;
}

@media screen and (min-width: 992px) {
	.page.internal .content{
		padding: 100px 0;
	}
}

/* Templates */

.errors {
	text-align: center;
	padding: 50px 0;
}
.errors .smile {
	margin: 0;
	font-size: 50px;
	-webkit-transform: rotate(90deg);
	color: #004593;
}

.errors.error-nologued {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60vh;
}

@media screen and (min-width: 992px) {
	.errors.error-404 h3 {
		font-size: 40px;
	}
	.errors .smile {
		font-size: 80px;
	}
}


/* Title */
.title h3 {
	text-transform: uppercase;
	font-weight: bold;
}

.title h2 {
	text-transform: uppercase;
	font-weight: bold;
}

/* Page > Home */

.presentation {
	position: relative;
	background: #3AB096;
	padding-bottom: 10dvh;
}

.presentation .slider .slide .image {
    height: auto;
}
.presentation .slider .slide img{
	height: 100%;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	
}

.presentation .logo {
	max-width: 60%;
	margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 992px){
	.presentation .slider .slide .image {
	    height: 90dvh;
	}
}

.page.home .about {
	min-height: 90dvh;
	display: flex;
	align-items: center;
}

.page.home .about .title{
	max-width: 920px;
	margin: 0 auto;
	text-align: center;
}
.page.home .about hr{
	border-top: solid 5px #FCC825;
    opacity: 1;
    width: 130px;
    margin: 30px auto;
}


.page.home .about .shape {
    position: absolute;
    background-size: cover;
}

.page.home .about .shape.top{
    background: url(assets/img/shape-top.png) no-repeat center;
    background-size: contain;
    top: -26%;
    right: -5%;
    width: 27%;
    height: 65%;
    z-index: 1;
}
.page.home .about .shape.bottom{
    background: url(assets/img/shape-bottom.png) no-repeat center;
    background-size: contain;
    bottom: 0;
    left: -17%;
    width: 50%;
    height: 50%;
}
@media screen and (max-width: 991px){
	.page.home .about .shape.top{
	    top: -12%;
	    right: -10%;
	    width: 40%;
	    height: 27%;
	}

	.page.home .about .shape.bottom {
	    bottom: -31px;
	    left: -14%;
	    width: 50%;
	    height: 23%;
	}
}

.page.home .about .socialmedia li{
	display: inline-flex;
	vertical-align: middle;
	position: relative;
	margin-right: 5px;
}
.page.home .about .socialmedia li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	font-size: 34px;
	color: #EA5678;
	background: #fff;
	border-radius: 50%;
}
.page.home .about .socialmedia li a:hover{
	background: #FCC825;
	transform: scale(1.05);
}

.page.home .about .follow p {
	text-transform: uppercase;
	color: #FCC825;
	font-weight: 700;
	font-size: 12px;
}


/* Footer */

.footer{
	text-align: center;
	font-size: 12px;
	background: #14315a;
	position: relative;
	color: #FAFCFF;
}

.footer .widgets{
	padding: 25px 0;
}

.footer .menu li{
	font-size: 14px;
	padding-bottom: 10px;
}

.footer .items {
	display: block;
	text-align: center;
}

.footer .socialmedia{
	margin: 0;
}
.footer .widgets .socialmedia li{
	display: inline-flex;
	vertical-align: middle;
	position: relative;
	margin-right: 5px;
}
.footer .widgets .socialmedia li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	font-size: 24px;
	color: #14315a;
	background: #fff;
	border-radius: 50%;
}
.footer .widgets .socialmedia li a:hover{
	background: #044ED7;
	color: #fff;
}


.footer .copyright p {
	margin: 0;
	font-size: 12px;
}


@media screen and (min-width: 992px) {
	.footer{
		text-align: left;
	}
	.footer .widgets {
		padding: 40px 0;
	}	

	.footer .items {
	    display: flex;
	    align-items: center;
	}
	.footer .widgets .socialmedia {
		text-align: right;
	}
	
}


/* Slider */

.slider {
	position: relative;
}
.slider .dots {
	position: absolute;
	width: 100%;
	z-index: 10;
	bottom: -20px;
}
.slider .dots .slick-dots { width: 100%; padding: 0; margin: 0; text-align: center; }
.slider .dots .slick-dots li { display: inline-block; vertical-align: top; margin: 10px 5px; }
.slider .dots .slick-dots li button{
	display: block;
	width: 25px;
	height: 8px;
	padding: 0;
	text-indent: -9999px;
	background: #fff;
	border: none;
	border-radius: 0px;
	overflow: hidden;
	-webkit-appearance: none;
	cursor: pointer;
	opacity: 0.5;
    box-shadow: 0 0 0 0 transparent;
    transition: all 0.3s;
    
}
.slider .dots .slick-dots li.slick-active button { 
	opacity: 1;
	background: #FCC825;
}

.slider .arrows button {
	position: absolute;
	top: calc(50% - 20px);
	left: 15px;
	width: 42px;
	height: 42px;
	padding: 0;
	line-height: 300px;
	text-align: center;
	font-size: 50px;
	color: #fff;
	background: transparent;
	border: 0;
	border-radius: 50%;
	transition: 0.3s all;
	cursor: pointer;
	overflow: hidden;
	z-index: 3;
	opacity: 1;
}
.slider .arrows button:hover {
	opacity: 1;
}
.slider .arrows button:focus {
	outline: 0;
}
.slider .arrows button:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('assets/img/icons/icon-arrow-back.svg') no-repeat center;
	background-size: contain;
}
.slider .arrows button.slick-next {
	left: auto;
	right: 15px;
}
.slider .arrows button.slick-next:after{
	background-image: url('assets/img/icons/icon-arrow-next.svg');
}

@media screen and (min-width: 768px) {
	.slider .arrows button {
		width: 42px;
		height: 42px;
	}
	.slider .arrows button {
		top: calc(50% - 21px);
	}
		
}



/* Modal */

.modal{
	z-index: 99999;
}
.modal-backdrop{
	z-index: 9999;
}
.modal .modal-content{
	border: 0;
	border-radius: 0;
}

.modal .close{
	position: absolute;
	top: -50px;
	right: 15px;
	width: 40px;
	height: 40px;
	background: url('assets/img/icons/icon-cross.svg') no-repeat center;
	background-size: contain;
	z-index: 10;
	opacity: 0.5;
}

@media screen and (min-width: 992px) {
	.modal .close{
		top: 20px;
		right: -50px;
	}
}

#modalVideo{
	width: 100vw;
	max-width: 100vw;
	margin: 0;
	height: 100vh;
	max-height: 100vh;
	background: rgb(6 10 60 / 60%);
}

#modalVideo .modal-content{
	background: transparent;
	height: 100%;
}


#modalVideo .modal-body {
	width: 100%;
	height: 100%;
	/*display: flex;
	align-items: center;
	justify-content: center;*/
}

/* Form */


label{
	font-size: 14px;
	color: #e9e4e2;
	width: 100%;
}

label span {
	width: 70%;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	background: transparent;
	border: none;
	border-bottom: solid 1px  #e9e4e2;
	border-radius: 0px !important;
	padding: 8px;
	width: 100%;
	font-size: 18px;
	color: #fff;
}
input::placeholder, textarea::placeholder{
	color: #fff;
}

button, input[type="button"], input[type="reset"], input[type="submit"] {
    border: 2px solid #fff;
    border-radius: 6px;
    background: rgba(175,204,66,0.17);
    color: #fff;
    line-height: 1;
    padding: 15px 50px;
    text-transform: uppercase;
    transition: all 0.3s;
}

button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover {
	border-color: #FCC825;
	color: #1f1b2c;
	background: #FCC825;
}

/* Wahtsapp  */

.button-whatsapp{
	display: flex;
	align-items: center;
	justify-content: center;
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 70px;
    height: 70px;
    color: #fff;
    font-size: 40px;
    text-align: center;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.1);
    transition: 0.3s all;
    z-index: 9999;
}
.button-whatsapp:hover{
    background: #fff;
    color: #25D366;
}

@media screen and (min-width: 992px) {
	.button-whatsapp{
		right: 30px;
		bottom: 30px;
	}
}