
/*--------------------------------------------------------------
# Font Faces
--------------------------------------------------------------*/


@font-face {
	font-family: 'Gotham';
	src: url('../fonts/Gotham-Light.otf') format('opentype');
	font-style: normal;
	font-weight: 300;
	font-display: swap;
}

@font-face {
	font-family: 'Gotham';
	src: url('../fonts/Gotham-LightItalic.otf') format('opentype');
	font-style: italic;
	font-weight: 300;
	font-display: swap;
}

@font-face {
	font-family: 'Gotham';
	src: url('../fonts/Gotham-Book.otf') format('opentype');
	font-style: normal;
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: 'Gotham';
	src: url('../fonts/Gotham-BookItalic.otf') format('opentype');
	font-style: italic;
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: 'Gotham';
	src: url('../fonts/Gotham-Medium.otf') format('opentype');
	font-style: normal;
	font-weight: 500;
	font-display: swap;
}

@font-face {
	font-family: 'Gotham';
	src: url('../fonts/Gotham-Bold.ttf') format('truetype');
	font-style: normal;
	font-weight: 700;
	font-display: swap;
}

@font-face {
	font-family: 'Gotham';
	src: url('../fonts/Gotham-Black.ttf') format('truetype');
	font-style: normal;
	font-weight: 800;
	font-display: swap;
}


/*----------- CSS by BMestudio 2018 -----------*/
/*-----------start KEYFRAMES-----------*/
/*start RESET*/
@-webkit-keyframes reset {
    0% {opacity: 0;}
    100% {opacity: 0;}
}
@-moz-keyframes reset {
    0% {opacity: 0;}
    100% {opacity: 0;}
}
@-o-keyframes reset {
    0% {opacity: 0;}
    100% {opacity: 0;}
}
@keyframes reset {
    0% {opacity: 0;}
    100% {opacity: 0;}
}
/*end RESET*/

/*start STICK*/
@-webkit-keyframes stick {
    0% {top: -100%;}
    100% {top: 0;}
}
@-moz-keyframes stick {
    0% {top: -100%;}
    100% {top: 0;}
}
@-o-keyframes stick {
    0% {top: -100%;}
    100% {top: 0;}
}
@keyframes stick {
    0% {top: -100%;}
    100% {top: 0;}
}
/*end STICK*/

/*start FADE IN*/
@-webkit-keyframes fade-in {
    0% {opacity: 0;}
    50% {opacity: 0;}
    100% {opacity: 1;}
}
@-moz-keyframes fade-in {
    0% {opacity: 0;}
    50% {opacity: 0;}
    100% {opacity: 1;}
}
@-o-keyframes fade-in {
    0% {opacity: 0;}
    50% {opacity: 0;}
    100% {opacity: 1;}
}
@keyframes fade-in {
    0% {opacity: 0;}
    50% {opacity: 0;}
    100% {opacity: 1;}
}
/*end FADE IN*/

/*start FLOAT*/
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}
.float:hover {
	text-decoration: none;
	color: #25d366;
  background-color:#fff;
}

.my-float{
	margin-top:16px;
}
/*end FLOAT*/

/*start SCROLL ANIMATION*/
@-webkit-keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(26px);
            transform: translateY(26px);
  }
}
@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(26px);
            transform: translateY(26px);
  }
}
/*end SCROLL ANIMATION*/
/*-----------end KEYFRAMES-----------*/

/*-----------start GLOBALS-----------*/
html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased !important;
    -moz-font-smoothing: antialiased !important;
    font-smooth: antialiased !important;
    -webkit-text-size-adjust: none;
    font-smooth: always !important;
    -webkit-font-smooth: always !important;
    -moz-font-smooth: always !important;
    text-rendering: optimizeLegibility !important;
    -moz-osx-font-smoothing: grayscale;
    height: 100%;
}

body{
    font-size: 15px;
    -webkit-animation: reset, fade-in 2s 1 ease;
    -moz-animation: reset, fade-in 2s 1 ease;
    background:#fff;
    color:#000;
    outline: none;
    -webkit-animation: reset, fade-in 2s 1 ease;
    -moz-animation: reset, fade-in 2s 1 ease;
    animation: reset, fade-in 2s 1 ease;
    -o-animation: reset, fade-in 2s 1 ease;
    font-family: Gotham, sans-serif;
    font-weight: 400;
    font-style: normal;
    height: 100%;
}


*{
    outline: none
}

a{
    color:#000;
    text-decoration: none;
    transition:All 0.5s ease;
    -webkit-transition:All 0.5s ease;
    -moz-transition:All 0.5s ease;
    -o-transition:All 0.5s ease;
}

a:hover, a:active, a.active, a:focus {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #F29B3F;
}

p{
    line-height: 1.7em;
}
    p span{
        color: #000;
        font-weight: bold;
    }
    p strong{
        font-weight: 700;
    }

strong{
    font-weight: 700;
}

ul{
    padding: 0;
    list-style: none;
    margin: 0
}
h1, h2, h5, h6, .h1, .h2, .h5, .h6{
    margin:0px;
    padding: 0px;
}
textarea{
    resize: none;
}
input:focus,
textarea:focus,
.form-control:focus{
    outline:none;
    box-shadow: none;
    border-color:#f39200;
}

button{
    transition:All 0.2s ease;
    -webkit-transition:All 0.2s ease;
    -moz-transition:All 0.2s ease;
    -o-transition:All 0.2s ease;
}

/* Navbar Toggle Icon Bar*/
.navbar-toggle{
    padding: 0;
    margin: 0;
    color: #959595;
    font-size: 2em;
    z-index: 9999!important
}
    .navbar-toggle .icon-bar{
        background-color: #f39200;
    }
        .navbar-toggle .icon-bar {
            width: 30px;
            height: 4px;
            border-radius: 0;
        }
/* end Navbar Toggle Icon Bar*/

/*start FLEX*/
.flex{
   display: -webkit-box;
   display: -moz-box;
   display: -ms-flexbox;
   display: -webkit-flex;
   display: flex;
   flex-direction: row;
   -webkit-flex-direction: row;
   -moz-flex-direction: row;
   flex-wrap: wrap;
   -webkit-flex-wrap: wrap;
   -moz-flex-wrap: wrap;
   justify-content: space-between;
   -webkit-justify-content: space-between;
   -moz-justify-content: space-between;
   align-items: center;
   -moz-align-items: center;
   -webkit-align-items: center;
}
/*end FLEX*/

/* GoTop */
#gotop{
    position: absolute;
    bottom: -20px;
    right: 15px;
    display: inline-block;
    width: 40px;
    margin: 0;
    z-index: 999;
}
    #gotop:hover{
        opacity: .7;
    }
        #gotop img{
            width: 100%;
        }
/* end GoTop */

/* start Btn */
.btn{
    background:transparent;
    color:#fff;
    border:1px solid #f39200;
    background-color:#f39200;
    box-shadow: none;
    background-image: none;
    border-radius: 0px;
    padding:10px 20px;
}
    .btn:hover{
        background-color: transparent;
        color:#f39200;
    }
/* end Btn */

/*start PARALLAX*/
.parallax-window {
    z-index: -1;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-repeat: no-repeat!important;
    background-size: cover;
    background-position: center;
}
/*end PARRALLAX*/

/*start Button Responsive Menu*/
.c-hamburger {
    display: none;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 30px;
    height: 25px;
    font-size: 0;
    text-indent: -9999px;
    appearance: none;
    box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    margin-left: 20px;
}
.c-hamburger:focus {
    outline: none;
}
    .c-hamburger span {
        display: block;
        position: absolute;
        top: 8px;
        left: 0;
        right: 0;
        height: 3px;
        background: #000;
        transform: rotate(-180deg);
        border-radius: 3px;
    }
	
	body.home:not(.stickEm-fixed) .c-hamburger span, body.home:not(.stickEm-fixed) .c-hamburger span:before, body.home:not(.stickEm-fixed) .c-hamburger span:after {
		background-color: #fff;
	}
	
        .c-hamburger span::before,
        .c-hamburger span::after {
            position: absolute;
            display: block;
            left: 0;
            width: 70%;
            border-radius: 3px;
            height: 3px;
            background-color: #000;
            content: "";
        }
        .c-hamburger span::before {
            top: -8px;
        }
        .c-hamburger span::after {
            bottom: -8px;
        }
    .c-hamburger--htx {
        background-color: transparent;
    }
        .c-hamburger--htx span {
            transition: background 0s 0.3s;
        }
            .c-hamburger--htx span::before,
            .c-hamburger--htx span::after {
                transition-duration: 0.3s, 0.3s;
                transition-delay: 0.3s, 0s;
            }
            .c-hamburger--htx span::before {
                transition-property: top, transform;
            }
            .c-hamburger--htx span::after {
                transition-property: bottom, transform;
            }

    /* active state, i.e. menu open */
    .c-hamburger--htx.is-active,
    .stickEm-fixed .c-hamburger--htx.is-active {
        background-color: transparent;
    }
        .c-hamburger--htx.is-active span,
        .stickEm-fixed .c-hamburger--htx.is-active span {
            background: none;
        }
            .c-hamburger--htx.is-active span::before {
                top: 0;
                transform: rotate(45deg);
                background: #fff
            }
            .c-hamburger--htx.is-active span::after {
                bottom: 0;
                transform: rotate(-45deg);
                background: #fff
            }
            .c-hamburger--htx.is-active span::before,
            .c-hamburger--htx.is-active span::after {
                transition-delay: 0s, 0.3s;
            }

 
    .stickEm-fixed .c-hamburger span,
    .stickEm-fixed .c-hamburger span::before,
    .stickEm-fixed .c-hamburger span::after{
        background: #323334
    }
    .stickEm-fixed .c-hamburger--htx.is-active span::before,
    .stickEm-fixed .c-hamburger--htx.is-active span::after{
        background: #fff
    }
/*end Button Responsive Menu*/


h1 { font-size: 4.5em; margin-bottom: 1em; font-weight: 800; }
h2 { font-size: 3.6em; margin-bottom: 1em; font-weight: 800; }
h3 { font-size: 2em; margin-bottom: 1em; font-weight: 700; }
h3.title { font-size: 2.7em; margin-bottom: 1em; font-weight: 800; }

.subtitle,
.title{
    color:#000;
}

.title{
    color:#000;
}

span.tdotsh {
    background-image: url(../img/three-dots-horizontal.png);
    width: 40px;
    height: 6px;
    display: block;
    position: relative;
    background-repeat: no-repeat;
    background-size: contain;
}

span.tdotsv {
    background-image: url(../img/three-dots-vertical.png);
    height: 38px;
    width: 6px;
    display: block;
    position: relative;
    background-repeat: no-repeat;
    background-size: contain;
}

.s-normal {
    padding-top: 100px;
    padding-bottom: 100px;
}


@media (max-width: 868px) {
h1 { font-size: 3.7em; }
h2 { font-size: 3em; }
h3 { font-size: 1.7em; }
h3.title { font-size: 2.2em; }	
}


/*-----------end GLOBALS-----------*/

/*-----------start HEADER-----------*/
header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999!important;
    padding: 20px 0;
    font-size: 1.1em;
}

header .container {
    width: 96%;
}

header .flex{
    justify-content: space-between;
    align-items: center;
}

	div#main {
        gap: 40px;
	}

    header .main.flex{
        justify-content: flex-start;
        align-items: center;
    }
        #logo{
            width: 175px;
            height: 48px;
            background: url(../img/logo-estudiom.svg) no-repeat 0 0 transparent;
            background-size: 100%;
            display: block;
            margin-right: 30px;
            -webkit-transition:width 0.2s ease, height 0.2s ease;

        }
		
		body.home:not(.stickEm-fixed) #logo{
            background: url(../img/logo-estudiom-white.svg) no-repeat 0 0 transparent;
		}	
		
            nav ul{
                padding: 0;
                margin: 0;
                list-style: none;
            }
                nav ul li{
                    display: inline-block;
                    margin: 0 10px;
                }
                    nav ul li a{
                        display: inline-block;
                        /* padding-bottom: 5px; */
                        border-bottom: 1px solid transparent;
                        -webkit-transition:font-size 0.2s ease, padding 0.2s ease;
                    }
					
					body.home:not(.stickEm-fixed) nav ul li a{
						color: #fff;
                    }
					
					body.home:not(.stickEm-fixed) nav ul li a:hover {
						color: #F29B3F;
                    }
					
                    nav ul li a.active,
                    nav ul li a:hover,
                    #soluciones-sec ul li:nth-child(2) a{
                        /* border-color:#fff; */
                        /* color: #fff */
                    }

        #secondary.flex{
            justify-content: flex-start;
        }
            #secondary ul{
                padding: 0;
                margin: 0;
                list-style: none;
            }
                #secondary ul li{
                    display: inline-block;
                }
                #secondary ul li:first-child{
                    margin-right: 20px;
                }
                    #secondary ul li a{
                        /* color: #fff; */
                    }
                    #secondary ul li a.btn-custom{
                        border: 2px solid;
						display: inline-block;
						text-align: center;
						padding: 8px 30px;
						font-size: 0.9em;
						line-height: 1;
						font-weight: 500;
						border-radius: 20px;
                    }
                    #secondary ul li a.btn-custom:hover,
                    #secondary ul li a.active{
                        background: #F29B3F;
                        color:#fff;
						border-color: #F29B3F;
                    }


.stickEm-fixed header{
    background: rgba(256,256,256,0.95);
    box-shadow: 0 0 5px rgba(0,0,0,0.4);
    padding: 10px 0;
    font-size: 1em;
    /*transition:all 0.2s ease;
    -webkit-transition:all 0.2s ease;
    -moz-transition:all 0.2s ease;
    -o-transition:all 0.2s ease;*/
    -webkit-animation: stick 1s 1 ease;
    -moz-animation: stick 1 s 1 ease;
    animation: stick 1s 1 ease;
    -o-animation: stick 1s 1 ease;
    -webkit-transition:padding 0.2s ease;
    position:fixed;
   
}
    .stickEm-fixed #logo{
        /*
		width: 40px;
        height: 40px;
        background: url(../img/estudiom-iso-new.svg) no-repeat 0 0 transparent;
		*/
		background: url(../img/logo-estudiom.svg) no-repeat 0 0 transparent;
        background-size: 100%;
        display: block;
        margin-right: 20px;
        -webkit-transition:width 0.2s ease, height 0.2s ease;
    }
    .stickEm-fixed header ul li a{
        color: #000;
        -webkit-transition:font-size 0.2s ease, padding 0.2s ease;
    }
    .stickEm-fixed ul li a.active,
    .stickEm-fixed ul li a:hover{
        border-color: #F29B3F;
        color: #000;
		border-width: 2px;
    }
    #soluciones-sec .stickEm-fixed ul li:nth-child(2) a{
        border-color: #F29B3F !important;
        color: #000 !important;
		border-width: 2px;
    }
    .stickEm-fixed #secondary ul li a{
        color: #000;
    }
    .stickEm-fixed #secondary ul li a.btn-custom{
        border: 2px solid #000;
        color: #000;
    }
    .stickEm-fixed #secondary ul li a.btn-custom:hover,
    .stickEm-fixed #secondary ul li a.active{
        background: #000 !important;
        color:#fff! important;
    }
/*-----------end HEADER-----------*/



/*-----------start FOOTER-----------*/
footer #legal{
    background: #606467;
    font-size: 0.8em;
    padding: 10px 0;
    color: #fff
}
    footer #legal .flex{
        justify-content: space-between;
    }
    footer #legal #datafiscal:hover{
        opacity: 0.7
    }
        footer #legal #datafiscal img{
            width: 90px;
        }

footer #partners{
    background: #414042;
    padding: 50px 0
}
    footer #partners .flex{
        justify-content: space-around;
    }
        footer #partners .logo-block{
            width: 8%;
            margin: 0 1%;
        }
            footer #partners .logo-block img{
                width: 100%;
            }

            #partners .title{
                color: #fff
            }
/*-----------end FOOTER-----------*/

/*-----------start LAYOUT-----------*/
section{
    padding: 100px 0;
}

section.gray{
    background: #F7F7F7
}

section.content{
    padding: 0
}

.img img{
    width: 100%
}
/*-----------end LAYOUT-----------*/

/*-----------start HOME-----------*/
section#inicio {
    height: 100%;
    padding: 0;
	background-image: url(../img/bg-main-b.jpg);
    background-size: cover;
}

@media (max-width: 868px) {
section#inicio {
    background-image: url(../img/bg-main-b.jpg);
    background-size: auto;
    background-position-y: 45%;
    background-position-x: 42%;
}
}

section#inicio .container{
    height: 100%
}
    section#inicio .flex{
        justify-content: center;
        align-items: center;
        height: 100%
    }
        
		div#titulo {
			text-align: left;
		}
		
		div#titulo img {
			width: 53px;
			margin-bottom: 30px;
		}
		
		section#inicio .flex h2 {
            margin: 0 0 0.3em 0;
            padding: 0;
            letter-spacing: 1px;
			/* color: #F29B3F; */
			background: linear-gradient(90deg, rgba(240,140,34,1) 0%, rgba(244,170,90,1) 100%);
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			max-width: 9.7em;
        }
		
		p.tlead {
			margin: 0;
			font-size: 2.4em;
			line-height: 1.5;
			max-width: 760px;
			text-align: center;
			color: #fff;
			font-weight: 300;
			font-style: italic;
		}
		
		div#titulo svg {
			width: 40px;
			height: 40px;
			margin-top: 50px;
			cursor: pointer;
		}


@media (max-width: 1022px) {
section#inicio .flex h2 {
	letter-spacing: 0;
}
p.tlead {
	font-size: 2.2em;
}
}

	
/*-----------end HOME-----------*/

/*-----------start PARTNERS-----------*/
section#partners{
    background: #414042;
    padding: 50px 0
}
    section#partners .flex{
        justify-content: space-around;
    }
        section#partners .logo-block{
            width: 13%;
            margin: 0 3.5%;
        }
		
            section#partners .logo-block img{
                width: 100%;
            }

            #partners .title{
                color: #fff
            }

@media (max-width: 868px) {
section#partners .logo-block {
    width: 33.33%;
}
}

/*-----------end PARTNERS-----------*/


/*-----------start SERVICES-----------*/

@media (min-width: 1022px){
section#soluciones {
    padding-top: 0;
    margin-top: -200px;
}
}

#grid{
    margin-top: 100px;
}
    section#soluciones .thumbnail{
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0;        
    }
        section#soluciones .thumbnail > a{
            display: block;
        }
		
		section#soluciones .thumbnail > a:hover {
			color: inherit;
		}
		
        section#soluciones .thumbnail .icon{
            /* background: #F29B3F; */
			background: rgb(210,115,14);
			background: linear-gradient(90deg, rgba(210,115,14,1) 0%, rgba(247,194,137,1) 100%);
            color:#fff;
            border-radius: 100%;
            width: 130px;
            height: 130px;
            margin: auto;
            margin-bottom: 75px;
            transition: all ease 0.1s;
            -webkit-transition: all ease 0.5s;
            -moz-transition: all ease 0.5s;
            text-align: center;
            justify-content: center;
            align-items: center;
        }
		
        section#soluciones .thumbnail .icon img{
           width: 60%;
        }
        section#soluciones .thumbnail:hover .icon{
            /* background: #323334; */
			background: rgb(50,51,52);
			background: linear-gradient(90deg, rgba(37,38,39,1) 0%, rgba(61,62,63,1) 100%);
        }
        section#soluciones .thumbnail .subtitle{
            color:#586D76;
            font-size: 1.5em;
            margin-bottom: 15px;
            transition: all ease 0.1s;
            -webkit-transition: all ease 0.1s;
            -moz-transition: all ease 0.1s;
        }
        section#soluciones .thumbnail:hover .subtitle{
            /* color: #323334; */
        }
        section#soluciones .thumbnail:hover p,
        section#soluciones .thumbnail:hover a{
            /* color: #8a8a8a; */
        }
        section#soluciones .thumbnail .action{
            margin-top: 30px;
        }
            section#soluciones .thumbnail .action ul li a{
                border-top:1px solid #eee;
                padding: 7px 15px;
                display: block;
            }
                section#soluciones .thumbnail .action ul li a:hover{
                    color: #323334;
                    background: #F7F7F7;
                }
				
			
#soluciones .col-md-3.col-sm-6 {
    border: 2px solid #FADCBC;
    width: 33.33%;
    border-radius: 28px;
    margin-left: 2.2%;
	padding-top: 3px;
	transition: all ease 0.1s;
    -webkit-transition: all ease 0.1s;
    -moz-transition: all ease 0.1s;
	background-color: #fff;
}

#soluciones .col-md-3.col-sm-6:hover {
	border-color: #747678;
}

#soluciones .col-md-3.col-sm-6:first-child {
    margin-left: 0;
}

section#soluciones .thumbnail .img {
    width: 100px;
    margin: auto;
    position: relative;
}


/*-----------end SERVICES-----------*/


/*-----------start CONTACT-----------*/
#contacto{
    padding-top: 0
}
    #contacto #gmap{
        height: 450px;
        margin-bottom: 75px;
    }

    #contacto .subtitle.small{
        font-size: 1.3em;
        margin-top: -15px; 
		font-weight: 500;
    }
        #contacto .subtitle.small strong{
            color: #323334
        }
            #contacto .subtitle.small a{
                color: #F29B3F;
                font-weight: 400
            }
            #contacto .subtitle.small a:hover{
                color: #323334;
            }

        #contacto .block{
            padding: 0;
            border: 1px solid #ddd;
            height: 100%;
            /*color: #5d7782;*/
            min-height: 50px;
            justify-content: center;
            padding: 10px 20px;
        }   
            #contacto .block h6{
                font-size: 0.9em;
                width: auto;
                position: relative;
                padding-left: 20px;
            }
                #contacto .block h6:before{
                    content: "\f3c5";
                    font-family:"Font Awesome 5 Free"; 
                    font-weight:900;
                    position: absolute;
                    left: 0;
                    top: -2px;
                    font-size: 1.3em;
                    color: #323334
                }
                #contacto #mail .block h6{
                    padding-left: 25px;
                }
                #contacto #mail .block h6:before{
                    content: "\f0e0"
                }
                #contacto #WhatsApp .block h6:before{
                    content: ""
                }
                

        .social ul{
            padding: 0;
            list-style: none;
            margin: 0;
            width: 100%;
        }
            .social ul li{
                display: inline-block;
                margin-right: 10px;
            }   
                .social ul li a{
                    color: #5d7782;
                    font-size: 1.3em;
                }
                .social ul li a:hover{
                    opacity: 0.6
                }

        #wrap-info.flex{
            flex-direction: column;
            justify-content: center;
            min-height: 220px;
        }
            #wrap-info .btn.btn-custom.btn-block,
            #casos .btn-custom{
                background: #323334;
                border-radius: 0;
                border-color:#323334;
                letter-spacing: 0.2em;
                margin-top: 30px;
            }
            #wrap-info .btn.btn-custom.btn-block:hover,
            #casos .btn-custom:hover{
                color: #323334;
                background: transparent;
            }
        
/*-----------end CONTACT-----------*/

/*start SOLUTIONS*/
.inner-head{
    background-color: #f0f0f0;
    padding: 150px 0 100px;
    position: relative;
}   
    .inner-head .row{
        position: relative;
    }
        
		.inner-head .container {
			position: relative;
			z-index: 2;
		}
		.inner-head #bg{
            background-repeat: no-repeat;
			background-position: right bottom;
			background-size: auto 76%;
			position: absolute;
			width: 100%;
			height: 100%;
			right: 90px;
			bottom: 25px;
			opacity: 0.35;
			z-index: 1;
        }
        .inner-head#consultoria-head #bg{
            background-image: url(../img/i-consultoria.svg); 
        }
        .inner-head#datacenter-head #bg{
            background-image: url(../img/i-datacenter.svg); 
        }
        .inner-head#networking-head #bg{
            background-image: url(../img/i-networking.svg); 
        }
        .inner-head#seguridad-head #bg{
            background-image: url(../img/i-security.svg); 
        }
    .inner-head .title{
        color: #F29B3F;
    }
    .inner-head .col-md-5. flex{
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-end;
    }
    .inner-head .img{
        text-align: right;
        height: 100%;
    }
        .inner-head .img img{
            width: 64%
        }
.block:nth-child(even){
    background: #fafafa;
}

.block.special{
    background: url(../img/bg-orange.jpg) no-repeat 0 0 transparent;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0
}
    .block.special img{
        width: 100%;
    }
    .block.special .txt,
    .block.special .subtitle{
        color: #fff
    }
    
    .block.special .subtitle{
        font-weight: 700;
        margin-bottom: 50px;
    }

    .block.special .txt{
        padding: 0;
    }

    .block .txt{
        padding: 100px 0 100px 20%;
        position: relative;
    }
	
	@media (min-width: 667px){
	.block .col-md-12 .txt {
		padding-left: 10%;
	}
	}
	
        .block .txt .icon{
            width: 70px;
            height: 70px;
            background: #F29B3F;
            text-align: center;
            border-radius:  100%;
            position: absolute;
            left: 0;
            top: 104px;
            padding: 10px;
        }
            .block .txt .icon img{
                width: 100%;
            }


.editor-2c {
    display: flex;
    gap: 10%;
}

@media (min-width: 667px){
.editor-2c > div {
    width: 50%;
}
}

#vmware-licencias {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#vmware-licencias img {
    max-width: 60%;
    text-align: center;
}

#vmware-licencias p {
    font-size: 1.3em;
    text-align: center;
    line-height: 1.3;
    padding: 1em;
}

a.button {
    color: #fff;
    background-color: #000;
    line-height: 1.2;
    padding: 1em 1.3em;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
}

#vmware-licencias a.button {
    background-color: #F29B3F;
    width: 87%;
    text-align: center;
}

@media (max-width: 667px){
.editor-2c {
    flex-direction: column;
	row-gap: 30px;
}
#vmware-licencias {
    align-items: flex-start;
}
#vmware-licencias p {
    font-size: 1.2em;
    text-align: left;
    padding: 0.8em 0;
}
#vmware-licencias a.button {
    width: fit-content;
}
}


.page-solution .editor p {
    text-align: justify;
}

@media (min-width: 600px) and (max-width:1022px) {
.page-solution .col-sm-offset-1 {
    margin-left: 0;
}
.page-solution .col-md-6.col-sm-6 {
    width: 50%;
    float: left;
}
.page-solution .col-md-6.col-sm-6 h3.subtitle {
    margin-top: 0;
}
.page-solution .inner-head #bg {
	right: 0;
}
}



/*end SOLUTIONS*/


section#operativa-content h3.subtitle {
    margin: 0 0 1em;
	font-weight: 500;
}



/*-----------start MEDIA QUERIES-----------*/
/*start IPHONE VERTICAL*/
@media (min-width: 320px) and (max-width: 479px) {
    /*start LAYOUT*/
    body{
        font-size: 13px;
    }
    
    /*end LAYOUT*/

    /*start HEADER*/
    header{
        padding: 28px 0 10px;
    }
            header #logo{
                width: 110px;
                height: 36px;
                margin: auto;
            }

        #secondary.flex{
            font-size: 0.8em;
            justify-content: space-between;
            flex-direction: row;
            align-items: center;
        }
            #secondary ul li a.btn-custom{
                padding: 5px 15px;
                display: none;
            }
            #secondary nav ul li,
            #secondary ul li:first-child{
                margin: 0 5px;
                margin-right: 5px;
            }
    .c-hamburger{
        display: block;
        margin-left: 10px;
    }

    #main.flex{
        display: block;
    }
    #main nav{
        position: fixed;
        width: 100%;
        height: 100%;
        background: rgba(242,155,63,0.8);
        color: #fff;
        left: 0;
        top:0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translate(0,100%);
        -webkit-transform: translate(0,100%);
        -moz-transform: translate(0,100%);
        transition: all ease 0.5s;
        -webkit-transition: all ease 0.5s;
        -moz-transition: all ease 0.5s;
        opacity: 0
    }
    #main nav.active{
        transform: translate(0,0);
        -webkit-transform: translate(0,0);
        -moz-transform: translate(0,0);
        opacity: 1
    }
    #main nav ul{
        width: 75%
    }
        #main nav ul li{
            display: block;
            text-align: center;
            font-size: 1.4em;
            padding: 20px 0
        }
            #main nav ul li a,
            #main nav ul li a:focus,
            #main nav ul li a:active,
            #main nav ul li a.active{
                color: #fff!important;
            }
            #main nav ul li a:hover{
                border-color:#fff!important;
            }
    /*end HEADER*/

    /*start LAYOUT*/
    section{
        padding: 50px 0
    }

    /*end LAYOUT*/

    /*start HOME*/    
    #grid .flex-es{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    /*start HOME*/

    /*start CONTACT*/
    #contacto{
        padding-top: 50px;
    }
    #wrap-info.flex{
        margin-top: 50px;
        min-height: 0
    }
        #wrap-info .block{
            margin-bottom: 10px;
            flex-direction: row;
            padding: 10px 20px;
        }
        #wrap-info > .row{
            width: 100%;
        }

        #wrap-info .btn.btn-custom.btn-block{
            letter-spacing: 0
        }

        #gmap{
            display: none;
        }
    /*end CONTACT*/

    /*start SOLUTIONS*/
    #grid{
        margin-top: 50px;
    }
        section#soluciones .thumbnail .icon{
            width: 100px;
            height: 100px;
            margin-bottom: 35px;
        }

    .block .txt{
        padding: 50px 0 50px 20%
    }
        .block .txt .icon{
            width: 50px;
            height: 50px;
            top: 40px;
        }
        #soluciones-sec .txt .subtitle{
            font-size: 1.55em;
			margin-top: 0;
        }

    .block.special{
        padding: 50px 0;
    }
        .block.special .row.flex{
            flex-direction: column;
        }
            .block.special .subtitle{
                margin-bottom: 20px;
            }
            .block.special .img{
                text-align: center;
                margin-bottom: 20px;
            }
                .block.special .img img{
                    width: 50%
                }    
    /*end SOLUTIONS*/
}
/*end IPHONE VERTICAL*/

/*start IPHONE HORIZONTAL*/
@media (min-width: 480px) and (max-width: 767px) {

    /*start LAYOUT*/
    body{
        font-size: 13px;
    }
    .title{
        font-size: 2em;
        margin-bottom: 30px;
    }
    /*end LAYOUT*/

    /*start HEADER*/
    header{
        padding: 10px 0;
    }
            header #logo{
                width: 120px;
                height: 80px;
                margin: auto;
                background-position: -17px 0
            }

        #secondary.flex{
            font-size: 0.8em;
            justify-content: space-between;
            flex-direction: row;
            align-items: center;
        }
            #secondary ul li a.btn-custom{
                padding: 5px 15px;
                display: none;
            }
            #secondary nav ul li,
            #secondary ul li:first-child{
                margin: 0 5px;
                margin-right: 5px;
            }
    .c-hamburger{
        display: block;
        margin-left: 10px;
    }

    #main.flex{
        display: block;
    }
    #main nav{
        position: fixed;
        width: 100%;
        height: 100%;
        background: rgba(242,155,63,0.8);
        color: #fff;
        left: 0;
        top:0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translate(0,100%);
        -webkit-transform: translate(0,100%);
        -moz-transform: translate(0,100%);
        transition: all ease 0.5s;
        -webkit-transition: all ease 0.5s;
        -moz-transition: all ease 0.5s;
        opacity: 0
    }
    #main nav.active{
        transform: translate(0,0);
        -webkit-transform: translate(0,0);
        -moz-transform: translate(0,0);
        opacity: 1
    }
    #main nav ul{
        width: 75%
    }
        #main nav ul li{
            display: block;
            text-align: center;
            font-size: 1.4em;
            padding: 20px 0
        }
            #main nav ul li a,
            #main nav ul li a:focus,
            #main nav ul li a:active,
            #main nav ul li a.active{
                color: #fff!important;
            }
            #main nav ul li a:hover{
                border-color:#fff!important;
            }
    /*end HEADER*/

    /*start LAYOUT*/
    section{
        padding: 50px 0
    }

    footer #partners .logo-block{
        width: 14%;
        margin: 0% 1%
    }
    /*end LAYOUT*/

    /*start HOME*/    
    #grid .flex-es{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    /*start HOME*/

    /*start CONTACT*/
    #contacto{
        padding-top: 50px;
    }

    #wrap-info.flex{
        margin-top: 50px;
        min-height: 0
    }
        #wrap-info .block{
            margin-bottom: 10px;
            flex-direction: row;
            padding: 10px 20px;
        }
        #wrap-info > .row{
            width: 100%;
        }

        #wrap-info .btn.btn-custom.btn-block{
            letter-spacing: 0
        }

        #gmap{
            display: none;
        }
    /*end CONTACT*/

    /*start SOLUTIONS*/
    #grid{
        margin-top: 50px;
    }
        section#soluciones .thumbnail .icon{
            width: 100px;
            height: 100px;
            margin-bottom: 35px;
        }

    .block .txt{
        padding: 50px 0 50px 20%
    }
        .block .txt .icon{
            width: 50px;
            height: 50px;
            top: 40px;
        }
        #soluciones-sec .txt .subtitle{
            font-size: 1.8em
        }

     .block.special{
        padding: 50px 0;
    }
        .block.special .row.flex{
            flex-direction: column;
        }
            .block.special .subtitle{
                margin-bottom: 20px;
            }
            .block.special .img{
                text-align: center;
                margin-bottom: 20px;
            }
                .block.special .img img{
                    width: 50%
                } 
    /*end SOLUTIONS*/
}
/*end IPHONE HORIZONTAL*/

 /*start IPAD VERTICAL*/
@media (min-width: 768px) and (max-width: 979px){
    /*start HEADER*/
    .c-hamburger{
        display: block;
    }

    #main.flex{
        display: block;
    }
    #main nav{
        position: fixed;
        width: 100%;
        height: 100%;
        background: rgba(23,146,255,0.8);
        color: #fff;
        left: 0;
        top:0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translate(0,100%);
        -webkit-transform: translate(0,100%);
        -moz-transform: translate(0,100%);
        transition: all ease 0.5s;
        -webkit-transition: all ease 0.5s;
        -moz-transition: all ease 0.5s;
        opacity: 0
    }
    #main nav.active{
        transform: translate(0,0);
        -webkit-transform: translate(0,0);
        -moz-transform: translate(0,0);
        opacity: 1
    }
    #main nav ul{
        width: 75%
    }
        #main nav ul li{
            display: block;
            text-align: center;
            font-size: 1.4em;
            padding: 20px 0
        }
            #main nav ul li a,
            #main nav ul li a:focus,
            #main nav ul li a:active,
            #main nav ul li a.active{
                color: #fff!important;
            }
            #main nav ul li a:hover{
                border-color:#fff!important;
            }
    /*end HEADER*/

    /*start LAYOUT*/

    footer #partners .logo-block{
        width: 13%;
        margin: 0% 1%
    }
    /*end LAYOUT*/

    /*start HOME*/    
    #grid .flex-es{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    /*start HOME*/

    /*start CONTACT*/
    #wrap-info .block{
        margin-bottom: 10px;
    }
    /*end CONTACT*/

    /*start SOLUTIONS*/
    .block .txt .icon{
        width: 55px;
        height: 55px;
        top: 90px;
    }
    /*end SOLUTIONS*/
}
/*end IPAD VERTICAL*/

@media (min-width: 1400px){
	.flip-container, .flip-container .front, .flip-container .back {
        height: 446px;        
    }

    .flip-container.block-1x2, .flip-container.block-1x2 .front, .flip-container.block-1x2 .back {
        height: 922px;
    }

    #contacto .block{
        padding: 10px 15px; 
    }
}


/*-----------end MEDIA QUERIES-----------*/

section#soluciones .container::before {
	display: none;
}

section#soluciones .thumbnail .icon {
    width: 88px;
    height: 88px;
	position: absolute;
	top: -48px;
	margin: 0;
}
	
section#soluciones .thumbnail .txt {
	padding-top: 40px;
}
	
section#soluciones .thumbnail h3.subtitle {
	color: #000;
	font-size: 1.3em;
	font-weight: 600;
	text-align: center;
	line-height: 1.3;
	padding: 0 15%;
}
	
section#soluciones .thumbnail .editor {
	font-size: 0.85em;
	text-align: center;
}

section#soluciones .thumbnail .action {
    margin-bottom: 2em;
}

section#soluciones .thumbnail span.tdotsh {
    position: absolute;
    bottom: 2em;
    left: calc(50% - 20px);
}

#soluciones .row.flex-es::before {
	display: none;
}

@media (min-width: 1022px) {
#soluciones .row.flex-es {
    display: flex;
}
}

@media (max-width: 450px) {
#soluciones .col-md-3.col-sm-6 {
    width: 90%;
    border-radius: 24px;
    margin-left: 5% !important;
	margin-right: 5%;
	margin-top: 38px;
    margin-bottom: 30px;
}
}

@media (min-width: 451px) and (max-width:1022px) {
section#soluciones {
    padding-top: 0;
    margin-top: -18.5%;
}
#soluciones .col-md-3.col-sm-6 {
    width: 40%;
    border-radius: 32px;
    margin-left: 5% !important;
	margin-right: 5%;
	margin-top: 38px;
    margin-bottom: 30px;
}	
}


/*--------------------------------------------------------------
# Slider
--------------------------------------------------------------*/

.m3slider {
    overflow: hidden;
}

.m3slides {
    display: flex;
	margin-left: 0;
	transition: all 0.6s ease-out;
}

.m3slide {
	overflow: hidden;
	width: 100%;
	background-color: #fff;
    padding: 2em;
    border-radius: 1em;
}

.m3slider .controls-wrapper {
    width: 100%;
	margin-bottom: 1.8em;
}

.m3slider .controls {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.m3slider .bullets {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0.4em 0;
    gap: 5px;
    justify-content: center;
}

.m3slider .bullets > div {
    width: 18px;
	height: 18px;
    border-radius: 50%;
    border: 2px solid #F29B3F;
	cursor: pointer;
}

.m3slider .bullets > div.current {
    background-color: #F29B3F;
}

@media only screen and (max-width: 981px) {
.m3slider .bullets > div {
    width: 15px;
	height: 15px;
}
}


/*--------------------------------------------------------------
# Casos
--------------------------------------------------------------*/

#m3slider-home-01 {
    margin-top: 40px;
}

.slide-inner {
    display: flex;
    gap: 5%;
    flex-wrap: wrap;
}

.slide-inner p {
    text-align: justify;
}

@media only screen and (min-width: 981px) {
.si-left {
    width: 60%;
}
.si-right {
    width: 35%;
}
}

.si-left h3 {
    margin-top: 0;
}

.si-right img {
    width: 100%;
    height: auto;
}

@media only screen and (min-width: 981px) {
#caso-cardio figure {
    width: 360px;
    height: 360px;
	float: right;
	border-radius: 200px;
    overflow: hidden;
}
}

#caso-cardio figure img {
    width: 100%;
    height: 100%;
	object-fit: cover;
}

#caso-prev .si-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
	align-items: flex-end;
}

#caso-prev .si-right figure {
    max-width: 226px;
}

@media only screen and (min-width: 981px) {
#caso-tpr .si-right {
    display: flex;
    justify-content: flex-end;
	align-items: center;
}
#caso-tpr figure {
    max-width: 300px;
}
}

@media only screen and (max-width: 981px) {
.slide-inner {
    flex-direction: column;
	gap: 25px;
}
#caso-cardio figure {
    width: 270px;
    height: 270px;
    margin: auto;
	border-radius: 200px;
    overflow: hidden;
}	
#caso-prev .si-right {
    align-items: center;
}
}



/*--------------------------------------------------------------
# Nosotros
--------------------------------------------------------------*/

#nosotros .s-normal {
    padding-top: 0;
    padding-bottom: 30px;
	align-items: flex-start;
}

@media only screen and (min-width: 981px) {
#nosotros .s-normal .col-md-6:first-child {
    width: 65%;
}
#nosotros .s-normal .col-md-6:last-child {
    width: 35%;
}
#nosotros figure {
    width: 300px;
    height: 300px;
    overflow: hidden;
    float: right;
	border-radius: 300px;
	margin-top: -50px;
}
}

#nosotros figure img {
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 981px) {
#nosotros h3.title {
    text-align: center;
}
#nosotros .s-normal {
    gap: 25px;
}
#nosotros .s-normal .col-md-6:last-child {
    margin: auto;
}
#nosotros figure {
    width: 270px;
    height: 270px;
    overflow: hidden;
    margin: auto;
	border-radius: 270px;
}
}

#nosotros p {
    text-align: justify;
}


/*--------------------------------------------------------------
# Footer extra
--------------------------------------------------------------*/

p#slogan-footer {
    font-size: 1.6em;
    text-align: center;
    color: #F29B3F;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto 1.5em;
    line-height: 1.3;
}

#contacto .row {
    max-width: 800px;
    margin: auto;
}

p.cta-label {
    background: #323334;
    border-radius: 0;
    border-color: #323334;
    letter-spacing: 0.2em;
    margin-top: 30px;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    font-size: 14px;
    line-height: 1.45;
}

p.cta-label-alt {
    color: #F29B3F;
    text-align: center;
    margin-top: 2em;
    font-size: 1.7em;
	font-weight: 700;
}


/*--------------------------------------------------------------
# WhatsApp
--------------------------------------------------------------*/

a.float.fixed-wa {
    bottom: 15px;
    right: 15px;
}


/*--------------------------------------------------------------
# New Partners
--------------------------------------------------------------*/

.partners {
    display: flex;
    flex-wrap: wrap;
    column-gap: 25px;
    justify-content: center;
}

.partner {
    width: 169.166px;
    height: 130px;
    display: flex;
    justify-content: center;
}

.partner img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

@media only screen and (max-width: 600px) {
.partners {
    column-gap: 14%;
    row-gap: 15px;
}
.partner {
    width: 43%;
    height: 100px;
}
}


