html {
    scroll-behavior: smooth;
}

.home {
    color: #494949;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.overlay.blue {
    background-color: #0060C9;
    opacity: 0.5;
    z-index: -1;
}
.switch-checkbox {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch-checkbox input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.enlaceTop a:hover{
	font-weight:normal !important; 
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.home section {
    padding: 90px 15px;
}
.home section#fullwidth-footer {
    padding: 0;
}

.bg-grey {
    background-color: #f9f9f9;
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
}

.home .section-container {
    max-width: 1140px;
    margin: 0 auto;
}

.home .section-container > h2 {
    text-align: center;
    color: #00A1AC;
    font-size: 35px;
    line-height: 1.2em;
    margin-bottom: 50px;
    font-weight: 700;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
}

.home .box-50 {
    width: 50%;
    padding: 0 50px;
}
.home .box-50.with-img {
    padding: 0;
}
.home .box-50.with-img img {
    width: 100%;
}

.home .modal-dialog.modal-lg {
    max-width: 900px;
}
.home .modal-dialog.modal-lg .modal-content .modal-body img {
    width: 100%;
}

#cabecera {
    display: flex;
    justify-content: space-between;
    align-items: center;
		gap: 10px;
    padding: 10px 20px;
    z-index: 100;
    background-color: #222033;
    position: fixed;
    width: 100%;
}
#cabecera #contMenuTop {
	display: flex;
	align-items: center;
	margin-right: 10px;
}
#cabecera #contMenuTop .menuTop {
	position: relative;
}
#cabecera #contMenuTop .menuTop a { 
	display: block;
	padding: 15px;
	font-size: 1.1em;
	color: white;
	font-weight: 700;
	border-bottom: solid 2px transparent;
	transition: all .25s;
}
#cabecera #contMenuTop .menuTop > a:hover {
	text-decoration: none;
	border-color: white;
}

#cabecera #contMenuTop .menuTop > .submenu {
	list-style: none;
	margin: 0;
	padding: 10px;
	position: absolute;
	top: -300px;
	right: 0;
	width: 220px;
	z-index: 1;
	opacity: 0;
	background-color: #222033;
	transform: scale(0.8);
	transition: transform .25s, opacity .25s;
}

#cabecera #contMenuTop .menuTop:hover > .submenu {
	transform: scale(1);
	z-index: 10;
	opacity: 1;
	top: 37px;
}
#cabecera #contMenuTop .menuTop > .submenu li:hover {
	background-color: white;
}
#cabecera #contMenuTop .menuTop > .submenu li:hover > a {
	color: var( --color-black );
	text-decoration: none;
}

#cabecera .buttons-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
}

#cabecera .hamburguesa { 
    display: none;
		color: white;
		font-size: 2em;
}

#cabecera .hamburguesa .fa-times { 
	display: none;
}

#above-the-fold {
    position: relative;
    background-image: url('../img/dinorank-banner-home.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    z-index: 1;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.83);
    padding: 0 30px;
}

#above-the-fold h1 {
    font-size: 3.3em;
    margin-bottom: 50px;
    font-weight: 700;
}

#above-the-fold h2 {
    max-width: 1100px;
    margin: 0 auto 50px;
    font-size: 1.8em;
    line-height: 1.7em;
}

#above-the-fold button {
    font-size: 1.5em;
    padding: 15px 50px;
    font-weight: normal;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.83);
    box-shadow: 2px 7px 3px 0px rgba(37, 37, 37, 0.95);
    height: auto;
}

#above-the-fold button:hover {
    box-shadow: none;
}

#above-the-fold button i {
    font-size: 1.2em;
    margin-right: 5px;
}

.slider-three-elements {
    width: 100%;
    position: absolute;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5)
}
.slider-three-elements .swiper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    height: 150px;
    padding: 50px;
}
.slider-three-elements .swiper-button-prev, .slider-three-elements .swiper-button-next {
    color: #fff;
    font-weight: bold;
}
.slider-three-elements .swiper .swiper-wrapper .swiper-slide img {
    margin-bottom: 10px;
}
.slider-three-elements .swiper .swiper-wrapper .swiper-slide p {
    font-size: 18px;
    font-family: Lato, sans-serif;
    color: #fff;
}

#main-video {
    text-align: center;
}
#main-video iframe {
    width: 740px;
    height:415px;
    margin: 0 auto 50px;
}
#main-video #main-features .main-feature {
    flex-basis: 30%;
    margin: 1%;
    flex-grow: 1;
    padding-top: 15px;
    background-image: linear-gradient(120deg, #4ED0F0 6%, #4E69F0 100%);
    border-radius: 5px 5px 5px 5px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    color: #fff;
    font-weight: 500;
}
#main-video #main-features .main-feature big {
    font-size: 2.5em;
}
#main-video #main-features .main-feature p {
    font-size: 1.5em;
}

#tools {
    background-color: #008DA5;
    background-image: url('../img/dark-mosaic.png');
    background-repeat: repeat;
}
#tools .single-tool {
    flex-basis: 30%;
	max-width: 360px;
    margin: 3% 0.8%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

#tools .single-tool .box-container {
    padding: 30px 25px;
    background-color: #FFFFFF;
    border-radius: 5px;
    box-shadow: 0px 0px 8px 0px rgba(151, 150, 150, 0.96);
    margin-bottom: 15px;
    text-align: center;
    flex-grow: 1;
}

#tools .single-tool .box-container img {
    margin-bottom: 15px;
}
#tools .single-tool .box-container h3 {
    font-family: Lato, sans-serif;
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 20px;
}
#tools .single-tool .box-container p {
    font-family: Karla, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.8em;
    color: #494949;
    margin-bottom: 20px;
}
#tools .single-tool button {
    margin: 0 auto;
    display: block;
    background-color: #D94266;
    padding: 2% 25% 2% 25%;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    font-size: 18px;
    color: #fff;
    border-radius: 5px;
}

#tools .single-tool button:hover {
	background-color: #bb284b;
}

.feature-description.bg-grey .flex-container {
    flex-flow: row-reverse;
}

.feature-description .flex-container {
    align-items: center;
}

.feature-description h2 {
    font-family: Lato, sans-serif;
    font-weight: 900;
    color: #00A1AC;
    font-size: 36px;
    margin-bottom: 20px;
}
.feature-description p {
    margin-bottom: 26px;
    font-size: 1.3em;
    color: #444;
    font-family: Karla, sans-serif;
    line-height: 1.9em;
}

.feature-description .box-50 > img {
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}

.feature-description img.no-shadow {
    box-shadow: none;
}

#tracking-posiciones-slider .swiper-wrapper {
    margin-bottom: 50px;
}

#testimonial {
    background-image: url("../img/mirrored-squares.png");
    background-repeat: repeat;
    background-color: #fff;
}

#testimonial-slider .swiper-wrapper {
    margin-bottom: 50px;
}
#testimonial-slider .swiper-pagination-bullet-active {
    background-color: #000;
}

.testimonial-box {
    width: 100%;
    max-width: 370px;
    padding: 0 50px;
    text-align: center;
    color: #444;
	margin:auto;
}

.testimonial-box img {
    border-radius: 100%;
    max-width: 90px;
    margin-bottom: 50px;
}

.testimonial-box p {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.1em;
    line-height: 1.9em;
    font-family: Lato, sans-serif;
    font-weight: 700;
}

.testimonial-box footer {
    padding-top: 30px;
}

.testimonial-box footer .testimonial-name {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 5px;
} 

.testimonial-box footer .testimonial-role {
    font-size: 13px;
    font-weight: 900;
}

#pricing {
    text-align: center;
}
.price-selector {
    display: flex;
    align-items: center;
    justify-content: center;
}
.price-selector label {
    cursor: pointer;
    margin: 0 10px;
}
#pricing .productoUnidad > h3 {
    margin-bottom: 60px;
    font-size: 20px;
    font-family: Lato, sans-serif;
}
#pricing .productoUnidad > h3.yearly {
    opacity: 1;
}
#pricing .productoUnidad > h3.monthly {
    opacity: 0;
}
.pricing-box-container {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
    justify-content: center;
}

.pricing-box {
    width: 100%;
    max-width: 260px;
    margin: 0 10px 50px;
    transition: all .25s;
    font-family: Lato, sans-serif;
    display: flex;
    flex-direction: column;
}

.pricing-box:hover {
    box-shadow: 0 0 10px 5px #ccc;
}

.pricing-box header {
    background-color: #112F54;
    color: #fff;
    padding: 30px;
}
.pricing-box header h3 {
    font-size: 30px;
    font-weight: bold;
}
.pricing-box header h4 {
    font-size: 16px;
}

.pricing-box .price {
    color: #fff;
    padding: 30px;
    font-size: 40px;
    position: relative;
}
.pricing-box footer {
    padding: 30px;
}
.pricing-box.starter .price, .pricing-box.starter footer {
    background-color: #1ec7aa;
}
.pricing-box.advanced .price, .pricing-box.advanced footer {
    background-color: #558DE5;
}
.pricing-box.business .price, .pricing-box.business footer {
    background-color: #C355E5;
}

.pricing-box.free .price, .pricing-box.free footer {
    background-color: #bbb;
}

.impuestosIncluidos{
	font-size:12px;
}

.pricing-box .price p {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}
.pricing-box .price small {
    font-size: 14px;
    align-self: flex-end;
    margin-bottom: 10px;
}
.pricing-box .price sup { 
    font-size: 20px;
}

.pricing-box ul {
    padding: 20px 20px 0;
    margin: 0;
    list-style: none;
    flex-grow: 1;
}

.pricing-box ul li {
    border-bottom: dashed 1px #c7c7c7;
    padding-bottom: 15px;
    margin-bottom: 19px;
    font-size: 16px;
}

.pricing-box ul li i {
    margin-right: 9px;
}
.pricing-box ul li i.fa-check {
    color: #46E065;
}
.pricing-box ul li i.fa-times {
    color: #E04646;
}

.pricing-box footer button {
    padding: 10px 50px;
    border: solid 2px transparent;
    box-shadow: none;
    border-radius: 5px;
}
.pricing-box footer button:hover {
    background-color: var( --color-secondary );
    color: white;
}

#medios-pago {
    margin: 50px 0;
}

#landing-footer {
    position: relative;
    border-top: 5px solid #D94266;
    background-image: url('../img/dinorank-banner-footer.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-family: Lato, sans-serif;
    text-align: center;
    padding: 90px 0 20vw;
}

#landing-footer h3 {
    font-size: 56px;
    color: #fff;
    font-weight: 900;
    text-shadow: 6px 0px 5px rgba(0, 0, 0, 0.83);
    margin-bottom: 50px;
}

#landing-footer button {
    background-color: #D94266;
    color: #fff;
    font-size: 35px;
    font-weight: 900;
    padding: 30px 50px;
    box-shadow: 3px 11px 3px 0px rgba(0,0,0,0.5);
    margin-bottom: 50px;
}

.contieneVideo {
	width:100%;
	text-align:center; 
}
.contieneVideo video {
    max-width: 100%;
}


/********************* Scrollbar ************************/
/*
::-webkit-scrollbar {
  width: auto;
}

::-webkit-scrollbar-track {
  background: auto;
}

::-webkit-scrollbar-thumb {
  background: auto;
}

::-webkit-scrollbar-thumb:hover {
  background: auto;
}

*/
@media screen and (max-width: 768px) {

    #cabecera #contMenuTop {
			display: none;
			flex-direction: column;
			position: absolute;
			top: 68px;
			right: 0;
			width: 40%;
			background-color: #222033;
			margin-right: 0;
    }

		#cabecera #contMenuTop .menuTop a {
			padding: 10px 25px;
		}

		#cabecera #contMenuTop .menuTop > a:hover {
			border-color: transparent;
		}

		#cabecera #contMenuTop .menuTop > .submenu {
			position: static;
			width: auto;
			transform: none;
			transition: none;
			opacity: 1;
			padding-top: 0;
			display: none;
		}

		#cabecera #contMenuTop .menuTop > .submenu > li > a {
			padding: 5px 25px;
		}

    #cabecera .hamburguesa {
        display: block;
        margin-left: 10px;
    }

}

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

    .main-feature p {
        font-size: 1.2em;
    }


		#above-the-fold h1 {
			font-size: 3em;
			margin-bottom: 20px;
		}

		#above-the-fold h2 {
			font-size: 1.5em;
			margin-bottom: 20px;
		}


    #tools .section-container {
        justify-content: center;
    }
    #tools .single-tool {
        flex-basis: 48%;
        flex-grow: 0;
    }

    .feature-description.bg-grey .flex-container {
        flex-wrap: wrap;
    }
    .feature-description .flex-container .box-50 {
        width: 100%;
    }
    .feature-description .flex-container .box-50.with-img {
        padding: 15px;
    }

    #landing-footer h3 {
        font-size: 38px;
    }

    #landing-footer button {
        font-size: 20px;
    }
    
}

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


		#cabecera .buttons-wrapper {
			display: none;
			position: absolute;
			top: 100%;
			background: var( --color-black);
			width: 100%;
			left: 0;
			padding: 10px 20px;
		}

		#cabecera .buttons-wrapper.flexbox {
			display: flex;
		}

    .elementoMenuSuperior {
        font-size: 17px;
    }
    #cabecera #contMenuTop {
        width: 100%;
				top: calc( 100% + 60px );

    }

    #above-the-fold h1 {
        font-size: 2.2em;
    }
    #above-the-fold h2 {
        font-size: 1.3em;
    }

    #above-the-fold button {
        font-size: 1.5em;
    }

    .slider-three-elements .swiper {
        height: 100px;
        padding: 20px;
    }

    #main-video iframe {
        width: 100%;
    }

    #main-video #main-features .main-feature {
        padding: 10px 10px 0;
    }

    #main-video #main-features .main-feature big {
        font-size: 1.8em;
    }

    #tools .single-tool {
        flex-basis: 100%;
        margin-bottom: 50px;
    }

    .feature-description .flex-container .box-50 {
        padding: 0 20px;
    }

    #pricing .productoUnidad > h3 {
        margin-bottom: 20px;
    }

    .pricing-box header {
        padding: 30px 10px;
    }

    #landing-footer h3 {
        padding: 0 10px;
        font-size: 30px;    
        margin-bottom: 30px;
    }

    #landing-footer button {
        padding: 15px 20px;
        margin-bottom: 80px;
    }
}