/*
  Site Name: Intramundo - 
  Author: Carolina Kaucher
  Description: Creative  HTML5 template.
  Version: 1.0
*/
/*===========================
    1. Intramundo css 
===========================*/


@import url('https://fonts.googleapis.com/css?family=Rubik:400,500,700,900');

 body {
	font-family: 'Rubik', sans-serif;
	font-weight: normal;
	font-style: normal;
}
.img {
	max-width: 100%;
	-webkit-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
	text-decoration: none;
	outline: none;
}

a:focus,
a:hover{
	text-decoration: none;
}

span,
i,
a{
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Rubik', sans-serif;
	font-weight: 500;
	color: #21303D;
	margin-top: 0px;
    margin-bottom: 0;
}

h1 {
	font-size: 40px;
}
h2 {
	font-size: 32px;
}
h3 {
	font-size: 26px;
}
h4 {
	font-size: 20px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}
ul,ol {
	margin: 0px;
	padding: 0px;
    list-style-type: none;
}

p {
	font-size: 16px;
	font-weight: 400;
	line-height: 27px;
	color: #21303D;
	margin-bottom: 0px;
}

p.home {
	font-size: 16px;
	font-weight: 400;
	line-height: 25px;
	color: #fff;
	margin-bottom: 0px;
	
	
}

p.servicios {
	font-size: 16px;
	font-weight: 400;
	line-height: 27px;
	color: #21303D;
	margin-bottom: 0px;
	padding-top: 20px;
}

.bg-cover{
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.bg-cover2{
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 450px;
	margin-top: -40px;
}

/*==== ALL Button Style Css ====*/

.main-btn{
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    line-height: 48px;
    background-color: #8262AF;
    border: 2px solid #8262AF;
    color: #fff;
    padding: 0 30px;
    border-radius: 50px;
    -webkit-box-shadow: 0px 6px 12px 0px rgba(97,71,240,0.34);
    box-shadow: 0px 6px 12px 0px rgba(97,71,240,0.34);
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
    cursor: pointer;

}

.main-btn:hover{
    color: #21303D;
    background-color: transparent;
    border-color: #8262AF;
    -webkit-box-shadow: none;
    box-shadow: none;
}


.main-btn-2{
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    line-height: 48px;
    background-color: #8262AF;
    border: 2px solid #8262AF;
    color: #fff;
    padding: 0 30px;
    border-radius: 50px;
    -webkit-box-shadow: 0px 6px 12px 0px rgba(97,71,240,0.34);
    box-shadow: 0px 6px 12px 0px rgba(97,71,240,0.34);
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
    cursor: pointer;


}

.main-btn-2:hover{
    color: #21303D;
    background-color: transparent;
    border-color: #8262AF;
    -webkit-box-shadow: none;
    box-shadow: none;
}



/*==== ALL Section Tile Style Css ====*/

.section-tile{}
.section-tile h1{
    padding-bottom: 11px;
}
.section-tile h1 span{
    color: #684699;
}
.section-tile p{}

/*==== Preloader Style Css ====*/

.preloader {
	background: rgb(205,148,179);
    background: -webkit-gradient(linear, right top, left top, from(rgba(125,156,162,1)), to(rgba(160,141,157,1)));
    background: linear-gradient(to left, rgba(125,156,162,1)) 0%, rgba(160,141,157,1) 100%);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999999;
}
.load {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.lines {
    width: 80px;
    height: 40px;
    position: absolute;
}
 .line {
    width: 80px;
    height: 10px;
    background-color: #fff;
    position: absolute;
      clip: rect(0, 0, 20px, 0);
}
.line-1 {
    top: 0;
    -webkit-animation: slide 2s ease 0s infinite;
    animation: slide 2s ease 0s infinite;
}
.line-2 {
    top: 15px;
    -webkit-animation: slide 2s ease 0.25s infinite;
    animation: slide 2s ease 0.25s infinite;
}
.line-3 {
    top: 30px;
    -webkit-animation: slide 2s ease 0.5s infinite;
    animation: slide 2s ease 0.5s infinite;
}

.loading-text {
	text-align: center;
	width: 100%;
	color: #fff;
	font-size: 14px;
	letter-spacing: 3px;
	-webkit-animation: fade 1s ease 0s infinite;
	animation: fade 1s ease 0s infinite;
	text-transform: uppercase;
	margin-top: 50px;
}


@-webkit-keyframes slide {
  0% {
    clip: rect(0, 0, 20px, 0);
  }
  
  30% {
    clip: rect(0, 80px, 20px, 0);
  }
  
  50% {
    clip: rect(0, 80px, 20px, 0);
  }
  
  80% {
    clip: rect(0, 80px, 20px, 80px);
  }
  
  100% {
    clip: rect(0, 80px, 20px, 80px);
  }
}

@keyframes slide {
  0% {
    clip: rect(0, 0, 20px, 0);
  }
  
  30% {
    clip: rect(0, 80px, 20px, 0);
  }
  
  50% {
    clip: rect(0, 80px, 20px, 0);
  }
  
  80% {
    clip: rect(0, 80px, 20px, 80px);
  }
  
  100% {
    clip: rect(0, 80px, 20px, 80px);
  }
}

@-webkit-keyframes fade {
  0% {
    opacity: 1;
  }
  
  50% {
    opacity: 0;
  }
  
  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 1;
  }
  
  50% {
    opacity: 0;
  }
  
  100% {
    opacity: 1;
  }
}



/*===========================
    2.HRADER css 
===========================*/
#header-part{}

.headet-top{
    background-color: #f9f9ff;
    padding: 8px 0;
}
.header-address ul li{
    display: inline-block;
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
    margin-right: 30px;
}
.header-address ul li i{
    color: #6147f0;
    font-size: 16px;
    margin-right: 10px;
}

.header-social-meadia{}
.header-social-meadia ul li{
    display: inline-block;
    margin-left: 10px;
}
.header-social-meadia ul li a{
    color: #6147f0;
    font-size: 16px;
    width: 34px;
    height: 34px;
    text-align: center;
    line-height: 34px;
    border-radius: 5px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.header-social-meadia ul li:hover a{
    background-color: #6147f0;
    color: #fff;
}


.navbar{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
}
.navbar .logo-light{
	margin-top: 60px;
    display: block;
}
.navbar .logo-blue{
    display: none;
}

.navbar .navbar-nav{}
.navbar .navbar-nav li {
    margin-left: 37px;
}
.navbar .navbar-nav li:first-child{
    margin: 0;
}
.navbar .navbar-nav li a{
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.navbar .navbar-nav li:hover a{
    color: #fff;
}

.navbar .navbar-toggler {
	padding: 3px 6px;
	border: 1px solid #fff;
}
.navbar .navbar-toggler .icon-bar{
    width: 30px;
    height: 2px;
    background-color: #fff;
    display: block;
    margin: 5px 0;
    position: relative;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.navbar .navbar-toggler.active .icon-bar:nth-of-type(1) {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 7px;
}
.navbar .navbar-toggler.active .icon-bar:nth-of-type(2){
    opacity: 0;
}
.navbar .navbar-toggler.active .icon-bar:nth-of-type(3){
    -webkit-transform: rotate(45deg);
	transform: rotate(135deg);
	top: -7px;
}

.navbar.sticky {
	position: fixed;
	left: 0;
	width: 100%;
	right: 0;
	z-index: 999;
	background: #fff;
	top: -95px;
	-webkit-transform: translateY(95px);
	transform: translateY(95px);
	transition: transform 1s, -webkit-transform 1s;
    -webkit-box-shadow: 0px 4px 16px 0px rgba(203,203,203,0.25);
    box-shadow: 0px 4px 16px 0px rgba(203,203,203,0.25);
}

.navbar.sticky .logo-light{
    display: none;
}
.navbar.sticky .logo-blue{
    display: block;
}

.navbar.sticky .navbar-nav li a{
    color: #999;
}
.navbar.sticky .navbar-nav li a.active,
.navbar.sticky .navbar-nav li:hover a{
    color: #6147f0;
}

.navbar.sticky .navbar-toggler {
    border-color: #999;
}
.navbar.sticky .navbar-toggler .icon-bar{
    background-color: #999;
}

.appointment-cart{
    position: relative;
}
.appointment-cart ul li{
    display: inline-block;
    margin-left: 33px;
    color: #fff;
    cursor: pointer;
}
.appointment-cart ul li a{
    color: #fff;
    cursor: pointer;
}
.appointment-cart ul li a.canvas-open{
    transition: right 0.3s ease-in-out 0s;
    width: auto;
    z-index: 12;
    transition: right 0.3s ease-in-out 0s;
    -webkit-transition: right 0.3s ease-in-out 0s;
}

.appointment-cart .search-bar {
	position: absolute;
	right: 0;
	top: 60px;
    display: none;
}
.appointment-cart .search-bar input {
	width: 210px;
	height: 40px;
	border: 1px solid #999;
	border-radius: 5px;
	padding: 0 10px;
	font-size: 16px;
}
.appointment-cart .search-bar button {
	position: absolute;
	right: 0;
	padding: 0 10px;
	height: 38px;
	background-color: transparent;
	border: none;
	color: #999;
	font-size: 16px;
    cursor: pointer;
}

.navbar.sticky .appointment-cart ul li a,
.navbar.sticky .appointment-cart ul li{
    color: #999;
}

/*==== Navbar ends ====*/

.canvas-menu {
	position: fixed;
	right: -360px;
	width: 360px;
	top: 0;
	height: 100%;
	background: #fff;
	z-index: 99999;
	padding: 30px;
	display: block;
	overflow: auto;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.canvas-menu.open{
    right: 0;
}

.canvas-menu .button-close{}
.canvas-menu .button-close a {
	width: 40px;
	height: 40px;
	background: #007bff;
	border-radius: 5px;
	position: absolute;
	right: 30px;
	top: 33px;
}
.canvas-menu .button-close a .can-icon{
    width: 30px;
    height: 2px;
    display: block;
    background-color: #fff;
    position: relative;
}
.canvas-menu .button-close a .can-icon:nth-of-type(1) {
	top: 18px;
	left: 5px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.canvas-menu .button-close a .can-icon:nth-of-type(2) {
	top: 16px;
	left: 5px;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

.canvas-menu .canvas-contact{}
.canvas-menu .canvas-contact .contact li{
    font-size: 16px;
    color: #999;
}
.canvas-menu .canvas-contact .social li{
    display: inline-block;
    margin-right: 23px;
}
.canvas-menu .canvas-contact .social li a{
    font-size: 20px;
    color: #999;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.canvas-menu .canvas-contact .social li:hover a{
    color: #6147f0;
}

.canvas-menu .canvas-instagram{}
.canvas-menu .canvas-instagram ul li{
    display: inline-block;
    -webkit-box-shadow: 0px 0px 3px 0px rgba(163,163,163,1);
    box-shadow: 0px 0px 3px 0px rgba(163,163,163,1);
    margin: 3px 0;
}
.canvas-menu .canvas-instagram ul li a img{
    border-radius: 5px;
}

/*===========================
    3.BANNER css 
===========================*/
.icon1{
    width: 100px;
	height:98px;
margin-left: 130px}
	
.icon2{
    width: 100px;
	height:98px;
margin-left: 130px}

.icon3{
    width: 127px;
	height:98px;
margin-left: 110px}

#banner{
    background: rgb(193,197,208);
    background: -webkit-gradient(linear, right top, left top, from(rgba(193,197,208,1)), to(rgba(175,149,198,1)));
    background: linear-gradient(to left, rgba(193,197,208,1) 0%, rgba(175,149,198,1) 100%);
    position: relative;
    width: 100%;
    height: 100%;
}
#banner::after{
    position: absolute;
    content: '';
    background-image: url(../images/banner/overlay-1.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
#banner::before{
    position: absolute;
    content: '';
    background-image: url(../images/banner/overlay-2.png);
    background-repeat: no-repeat;
    background-position: top left;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-content{}
.banner-content h1{
    padding-bottom: 20px;
    color: #fff;
}

.banner-content ul{}
.banner-content ul li{
    display: inline-block;
    margin-right: 25px;
}
.banner-content ul li a.main-btn{
    color: #1754fa;
    background-color: #fff;
    border-color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.banner-content ul li a.main-btn:hover{
    background-color: transparent;
    color: #fff;
}

.banner-content ul li a.main-btn.main-btn-2{
    background-color: transparent;
    color: #fff;
}
.banner-content ul li a.main-btn.main-btn-2:hover{
    background-color: #fff;
    color: #1754fa;
}

.banner-content,
.banner-image{
    position: relative;
    z-index: 6;
	top:3px;
}


/*===========================
    3.BANNER2 css 
===========================*/

#banner2{
    background: rgb(193,197,208);
    background: -webkit-gradient(linear, right top, left top, from(rgba(193,197,208,1)), to(rgba(175,149,198,1)));
    background: linear-gradient(to left, rgba(193,197,208,1) 0%, rgba(175,149,198,1) 100%);
    position: relative;
    width: 100%;
    height: 100%;
}
#banner2::after{
    position: absolute;
    content: '';
    background-image: url(../images/banner/overlay-3.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
#banner2::before{
    position: absolute;
    content: '';
    background-image: url(../images/banner/overlay-4.png);
    background-repeat: no-repeat;
    background-position: top left;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-content{}
.banner-content h1{
    padding-bottom: 0px;
    color: #fff;
}

.banner-content ul{}
.banner-content ul li{
    display: inline-block;
    margin-right: 25px;
}
.banner-content ul li a.main-btn{
    color: #1754fa;
    background-color: #fff;
    border-color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.banner-content ul li a.main-btn:hover{
    background-color: transparent;
    color: #fff;
}

.banner-content ul li a.main-btn.main-btn-2{
    background-color: transparent;
    color: #fff;
}
.banner-content ul li a.main-btn.main-btn-2:hover{
    background-color: #fff;
    color: #1754fa;
}

.banner-content,
.banner-image{
    position: relative;
    z-index: 6;
	top:0px;
}



/*===========================
    11.CALL TO ACTION css 
===========================*/

#call-action{}

.call-action-title{}
.call-action-title h1{
    padding-bottom: 20px;
}
.call-action-title h1,
.call-action-title p{
    color: #fff;
}

/*===========================
    3.PYMEX css 
===========================*/

#pymex{
    background: rgb(193,197,208);
    background: -webkit-gradient(linear, right top, left top, from(rgba(193,197,208,1)), to(rgba(175,149,198,1)));
    background: linear-gradient(to left, rgba(193,197,208,1) 0%, rgba(175,149,198,1) 100%);
    position: relative;
    width: 100%;
    height: 100%;
}
#pymex::after{
    position: absolute;
    content: '';
    background-image: url(../images/banner/overlay-1.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
#pymex::before{
    position: absolute;
    content: '';
    background-image: url(../images/banner/overlay-2.png);
    background-repeat: no-repeat;
    background-position: top left;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pymex-content{}
.pymex-content h1{
    padding-bottom: 20px;
    color: #fff;
}

.pymex-content ul{}
.pymex-content ul li{
    display: inline-block;
    margin-right: 25px;
}
.pymex-content ul li a.main-btn{
    color: #1754fa;
    background-color: #fff;
    border-color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.pymex-content ul li a.main-btn:hover{
    background-color: transparent;
    color: #fff;
}

.pymex-content ul li a.main-btn.main-btn-2{
    background-color: transparent;
    color: #fff;
}
.pymex-content ul li a.main-btn.main-btn-2:hover{
    background-color: #fff;
    color: #1754fa;
}

.pymex-content,
.pymex-image{
    position: relative;
    z-index: 6;
}




/*===========================
    4.SERVICES css 
===========================*/

#services{}

.singel-services {
	padding: 30px 17px;
	border: 1px solid #dfdfdf;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}
.singel-services::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 0px;
    left: 0;
    bottom: 0;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.singel-services:hover::before{
    height: 6px;
}

.singel-services.color-1::before {
    background-color: #2acb35;
}
.singel-services.color-2::before {
    background-color: #2a2acb;
}
.singel-services.color-3::before {
    background-color: #6147f0;
}
.singel-services.color-4::before {
    background-color: #f100e5;
}
.singel-services.color-5::before {
    background-color: #0080ff;
}
.singel-services.color-6::before {
    background-color: #75d701;
}

.singel-services .s-icon{}
.singel-services .s-icon i{
    font-size: 36px;
    width: 70px;
    height: 70px;
    line-height: 68px;
    border-radius: 50%;
    border: 1px solid;
    display: inline-block;
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

.singel-services.color-1 .s-icon i {
    background-color: #d9ffdc;
    border-color: #2acb35;
    color: #2acb35;
}
.singel-services.color-2 .s-icon i {
    background-color: #d6d6ff;
    border-color: #2a2acb;
    color: #2a2acb;
}
.singel-services.color-3 .s-icon i {
    background-color: #d4ccff;
    border-color: #6147f0;
    color: #6147f0;
}
.singel-services.color-4 .s-icon i {
    background-color: #ffd9fd;
    border-color: #f100e5;
    color: #f100e5;
}
.singel-services.color-5 .s-icon i {
    background-color: #d9ecff;
    border-color: #0080ff;
    color: #0080ff;
}
.singel-services.color-6 .s-icon i {
    background-color: #e4ffc4;
    border-color: #75d701;
    color: #75d701;
}

.singel-services.color-1:hover .s-icon i {
    background-color: #2acb35;
    color: #fff;
}
.singel-services.color-2:hover .s-icon i {
    background-color: #2a2acb;
    color: #fff;
}
.singel-services.color-3:hover .s-icon i {
    background-color: #6147f0;
    color: #fff;
}
.singel-services.color-4:hover .s-icon i {
    background-color: #f100e5;
    color: #fff;
}
.singel-services.color-5:hover .s-icon i {
    background-color: #0080ff;
    color: #fff;
}
.singel-services.color-6:hover .s-icon i {
    background-color: #75d701;
    color: #fff;
}

.singel-services .s-cont{}
.singel-services .s-cont h4{
    padding-bottom: 20px;
}
.singel-services .s-cont p{}


/*===========================
    5.Complementario css 
===========================*/

#complementario{
    position: relative;
}

.complementario-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 45%;
}

.complementario-text{}
.complementario-text h1{
    padding-bottom: 20px;
}
.complementario-text h1 span{
    color: #684699;
}
.complementario-text p{
    padding-bottom: 17px;
}
.complementario-text ul{
    float: left;
    width: 100%;
}
.complementario-text ul li{
    position: relative;
    z-index: 1;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    line-height: 40px;
    padding-left: 32px;
}
.complementario-text ul li::before, .complementario ul li::after {
	content: '';
	position: absolute;
	width: 7px;
	height: 7px;
	background-color: #6147f0;
	border-radius: 50%;
	top: 0;
	left: 0;
	z-index: 9;
	margin: 10px 0;
}
.complementario-text ul li::before{
    top: 7px;
    left: 7px;
}
.complementario-text ul li::after{
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background-color: #d4ccff;
    z-index: -1;
}


/*===========================
    5.Asesoramiento css 
===========================*/

#asesoramiento{
    position: relative;
}

.asesoramiento-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 45%;
}

.asesoramiento-text{}
.asesoramiento-text h1{
    padding-bottom: 20px;
}
.asesoramiento-text h1 span{
    color: #684699;
}
.asesoramiento-text p{
    padding-bottom: 17px;
}
.asesoramiento-text ul{
    float: left;
    width: 100%;
}
.asesoramiento-text ul li{
    position: relative;
    z-index: 1;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    line-height: 40px;
    padding-left: 32px;
}
.asesoramiento-text ul li::before, .asesoramiento ul li::after {
	content: '';
	position: absolute;
	width: 7px;
	height: 7px;
	background-color: #6147f0;
	border-radius: 50%;
	top: 0;
	left: 0;
	z-index: 9;
	margin: 10px 0;
}
.asesoramiento-text ul li::before{
    top: 7px;
    left: 7px;
}
.asesoramiento-text ul li::after{
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background-color: #d4ccff;
    z-index: -1;
}
/*===========================
    5.Ata css 
===========================*/

#ata{
    position: relative;
}

.ata-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 45%;
}

.ata-text{}
.ata-text h1{
    padding-bottom: 20px;
}
.ata-text h1 span{
    color: #8262AF;
}
.ata-text p{
    padding-bottom: 17px;
}
.ata-text ul{
    float: left;
    width: 100%;
}
.ata-text ul li{
    position: relative;
    z-index: 1;
    font-size: 16px;
    color: #21303D;
    font-weight: 500;
    line-height: 40px;
    padding-left: 32px;
}
.ata-text ul li::before, .ata-text ul li::after {
	content: '';
	position: absolute;
	width: 7px;
	height: 7px;
	background-color: #8262AF;
	border-radius: 50%;
	top: 0;
	left: 0;
	z-index: 9;
	margin: 5px 0;
}
.ata-text ul li::before{
    top: 7px;
    left: 7px;
}
.ata-text ul li::after{
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background-color: #DADEFF;
    z-index: -1;
}



/*===========================
    5.Seguro css 
===========================*/

#seguro{
    position: relative;
}

.seguro-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 45%;
}

.seguro-text{}
.seguro-text h1{
    padding-bottom: 20px;
}
.seguro-text h1 span{
    color: #684699;
}
.seguro-text p{
    padding-bottom: 17px;
}
.seguro-text ul{
    float: left;
    width: 100%;
}
.seguro-text ul li{
    position: relative;
    z-index: 1;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    line-height: 27px;
    padding-left: 32px;
}
.seguro-text ul li::before, .seguro-text ul li::after {
	content: '';
	position: absolute;
	width: 7px;
	height: 7px;
	background-color: #684699;
	border-radius: 50%;
	top: 0;
	left: 0;
	z-index: 9;
	margin: 5px 0;
}
.seguro-text ul li::before{
    top: 7px;
    left: 7px;
}
.seguro-text ul li::after{
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background-color: #d4ccff;
    z-index: -1;
}

/*===========================
    5.Freight Forwarder css 
===========================*/

#ff{
    position: relative;
}

.ff-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 45%;
}
.ff-text{}
.ff-text h1{
    padding-bottom: 20px;
}
.ff-text h1 span{
    color: #684699;
}
.ff-text p{
    padding-bottom: 17px;
}
.ff-text ul{
    float: left;
    width: 100%;
}
.ff-text ul li{
    position: relative;
    z-index: 1;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    line-height: 27px;
    padding-left: 32px;
}
.ff-text ul li::before, .ff-text ul li::after {
	content: '';
	position: absolute;
	width: 7px;
	height: 7px;
	background-color: #684699;
	border-radius: 50%;
	top: 0;
	left: 0;
	z-index: 9;
	margin: 5px 0;
}
.ff-text ul li::before{
    top: 7px;
    left: 7px;
}
.ff-text ul li::after{
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background-color: #d4ccff;
    z-index: -1;
}



/*===========================
    5.Agente de Soporte Aduanero css 
===========================*/

#despachante{
    position: relative;
}

.despachante-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 45%;
}

.despachante-text{}
.despachante-text h1{
    padding-bottom: 20px;
}
.despachante-text h1 span{
    color: #684699;
}
.despachante-text p{
    padding-bottom: 17px;
}
.despachante-text ul{
    float: left;
    width: 100%;
}
.despachante-text ul li{
    position: relative;
    z-index: 1;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    line-height: 27px;
    padding-left: 32px;
}
.despachante-text ul li::before, .despachante-text ul li::after {
	content: '';
	position: absolute;
	width: 7px;
	height: 7px;
	background-color: #6147f0;
	border-radius: 50%;
	top: 0;
	left: 0;
	z-index: 9;
	margin: 5px 0;
}
.despachante-text ul li::before{
    top: 7px;
    left: 7px;
}
.despachante-text ul li::after{
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background-color: #d4ccff;
    z-index: -1;
}


/*===========================
      6.PROTFOLIO css 
===========================*/

.protfolio-catagory{
    -webkit-box-shadow: 0px 11px 17px 0px rgba(226,226,226,0.25);
    box-shadow: 0px 11px 17px 0px rgba(226,226,226,0.25);
    position: relative;
    z-index: 9;
}
.protfolio-catagory .nav{
}
.protfolio-catagory .nav-item{
    position: relative;
}

.protfolio-catagory .nav-item a {
	position: relative;
	width: 100%;
	border: 1px solid #dfdfdf;
	border-left: 0px;
	height: 100%;
}
.protfolio-catagory .nav-item:first-child a{
    border-left: 1px solid #dfdfdf;
}

.protfolio-catagory .nav-item a span {
	padding: 34px 0;
	width: 100%;
	text-align: center;
	font-size: 20px;
	color: #333;
    font-weight: 500;
    position: relative;
    z-index: 9;
}

.protfolio-catagory .nav-item a i {
	position: absolute;
	font-size: 65px;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 0;
    color: #efefef;
}
.protfolio-catagory .nav-item a .flaticon-speed {
	-webkit-transform: rotate(-45deg) translate(-50%);
	transform: rotate(-45deg) translate(-50%);
	top: -13px;
	left: 50%;
	font-size: 55px;
}

.protfolio-catagory .nav-item a.active {
    background: rgb(0,198,251);
    background: -webkit-gradient(linear, right top, left top, from(rgba(0,198,251,1)), to(rgba(23,84,250,1)));
    background: linear-gradient(to left, rgba(0,198,251,1) 0%, rgba(23,84,250,1) 100%);
    border-color: rgb(0,198,251);
}

.protfolio-catagory .nav-item a.active span{
    color: #fff;
}
.protfolio-catagory .nav-item a.active i{
    color: #1449d7;
    opacity: 0.3;
}

.protfolio-content{
    -webkit-box-shadow: 0px 0px 70px 0px rgba(195,195,195,0.4);
    box-shadow: 0px 0px 70px 0px rgba(195,195,195,0.4);
}
.protfolio-content .protfolio-img img{
    border-radius: 5px;
}
.protfolio-content .protfolio-item-content{}
.protfolio-content .protfolio-item-content ul li{
    display: inline-block;
    margin-right: 10px;
}
.protfolio-content .protfolio-item-content ul li a{
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    line-height: 35px;
    padding: 0 22px;
    border-radius: 50px;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.protfolio-content .protfolio-item-content ul li a.ui{
    background-color: #d9ffdc;
    color: #2acb35;
}
.protfolio-content .protfolio-item-content ul li:hover a.ui{
    background-color: #2acb35;
    color: #fff;
}
.protfolio-content .protfolio-item-content ul li a.web{
    color: #f100e5;
    background-color: #ffd9fd;
}
.protfolio-content .protfolio-item-content ul li:hover a.web{
    color: #fff;
    background-color: #f100e5;
}

.protfolio-content .protfolio-item-content h4{
    padding-top: 25px;
    padding-bottom: 15px;
}
.protfolio-content .protfolio-item-content p{
    padding-bottom: 15px;
}
.protfolio-content .protfolio-item-content a{
    color: #6147f0;
    font-size: 15px;
    font-weight: 500;
}
.protfolio-content .protfolio-item-content a i{
    font-size: 12px;
}

/*===========================
    13.CONTACT css 
===========================*/

#contact{}

.contact-form{
    margin-bottom: 30px;
}
.contact-form input,
.contact-form textarea{
    width: 100%;
    color: #999;
    height: 55px;
    padding: 0 30px;
    border: 1px solid #dfdfdf;
    border-radius: 5px;
}
.contact-form textarea{
    height: 135px;
    resize: none;
    padding-top: 15px;
}
p.form-message.success{
    background-color: #d9ffdc;
    padding: 10px;
    margin-bottom: 10px;
}
p.form-message.error {
	background-color: #d4ccff;
	padding: 10px;
    margin-bottom: 10px;
}

#map{
    width: 100%;
    height: 340px;
}

.mapouter {
    text-align: right;
    height: 340px;
    width: 100%;
}

.gmap_canvas {
	overflow: hidden;
	background: none !important;
	height: 340px;
	width: 100%;
	border: 9px solid #fff;
    border-radius: 5px;
}

.gmap_canvas iframe {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	border: 0;
}




/*===========================
    9.TESTIMONIAL css 
===========================*/

#testimonial{}

.place-image{
    position: relative;
}
.place-image ul{}
.place-image ul li{
    position: absolute;
}
.place-image ul li img{
    border-radius: 50%;
    border: 5px solid #fff;
    -webkit-box-shadow: 0px 7px 12px 0px rgba(96,71,240,0.18);
    box-shadow: 0px 7px 12px 0px rgba(96,71,240,0.18);
}
.place-image ul li:nth-child(1) {
	left: 120%;
	top: -120px;
}
.place-image ul li:nth-child(2) {
	left: 48%;
	top: -45px;
}
.place-image ul li:nth-child(3) {
	top: 110px;
	left: 50%;
}
.place-image ul li:nth-child(4) {
	left: 120%;
	top: 165px;
}

.place-image ul li:nth-child(5) {
	left: 200%;
	top: 120px;
}

.testimonial-image {}
.singel-testimonial-img {
	display: inline-block !important;
	margin: 6px;
	margin-bottom: 20px;
}
.singel-testimonial-img img{
    border-radius: 50%;
    border: 5px solid #fff;
    -webkit-box-shadow: 0px 7px 12px 0px rgba(96,71,240,0.18);
    box-shadow: 0px 7px 12px 0px rgba(96,71,240,0.18);
}


.testimonial-text{
    position: relative;
}
.singel-testimonial-text {
	position: relative;
	padding-left: 8px;
}
.singel-testimonial-text i {
	position: absolute;
	top: 0;
	left: 30px;
	font-size: 40px;
	color: #6147f0;
	line-height: 40px;
}
.singel-testimonial-text p{
    padding-bottom: 17px;
}
.singel-testimonial-text h6{
    padding-bottom: 5px;
}
.singel-testimonial-text span{
    font-size: 14px;
    color: #999;
}

.testimonial-text .slick-dots {
	position: absolute;
	top: -11px;
	left: -105px;
}
.testimonial-text .slick-dots::before {
	position: absolute;
	content: '';
	width: 1px;
	height: 340px;
	background-color: #dfdfdf;
	top: -48%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.testimonial-text .slick-dots li {
	margin-bottom: 20px;
}
.testimonial-text .slick-dots li button{
    font-size: 0;
    padding: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #654bf0;
    background-color: transparent;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.testimonial-text .slick-dots li.slick-active button::before {
	content: '';
	position: absolute;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background-color: #654bf0;
	top: 2px;
	left: 2px;
}




/*===========================
    14.WIDGET css 
===========================*/

#despachante {background: url(../images/light_wool.png) repeat;} 
#ff {background: url(../images/light_wool.png) repeat;} 
#complementario {background: url(../images/light_wool.png) repeat;} 
#ata {background: url(../images/light_wool2.png) repeat;} 
#seguro {background: url(../images/light_wool2.png) repeat;} 
#testimonial {background: url(../images/light_wool2.png) repeat;} 
#counter {background: url(../images/bg-5.jpg) repeat;} 


#widget { background-image:url(../images/footer.svg); 
    background-position: center center;
} 

.widget-logo{}
.widget-logo img{
    margin-bottom: 0px;
	width:130px;
	height:63px;
}

.widget-title{}
.widget-link{}
.widget-link ul li a{
    font-size: 14px;
    color: #d1d3d3;
    line-height: 35px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.widget-link ul li a:hover{
    color: #6147f0;
}

.widget-contact{}
.widget-contact .contact li {
	font-size: 14px;
	color: #d1d3d3;
	margin-bottom: 10px;
}
.widget-contact .social li{
    display: inline-block;
    margin-right: 23px;
}
.widget-contact .social li a{
    font-size: 14px;
    color: #d1d3d3;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.widget-contact .social li:hover a{
    color: #6147f0;
}

.widget-instagram{}
.widget-instagram ul li{
    display: inline-block;
    -webkit-box-shadow: 0px 0px 3px 0px rgba(163,163,163,1);
    box-shadow: 0px 0px 3px 0px rgba(163,163,163,1);
    margin: 3px 0;
}
.widget-instagram ul li a img{
    border-radius: 5px;
}

p.footer {
	font-size: 14px;
	font-weight: 600;
	line-height:normal;
	color: #d6d0e6;
	margin-bottom: 0px;
}

/*===========================
    15.FOOTER css 
===========================*/
	 
.hr {background-color:#fff; height: 3px;} 

#footer{
     background: rgb(205,148,179);
    background: -webkit-gradient(linear, right top, left top, from(rgba(205,148,179,1)), to(rgba(175,149,198,1)));
    background: linear-gradient(to left, rgba(205,148,179,1) 0%, rgba(175,149,198,1) 100%);
    color: #fff;}

.footer-support ul{}
.footer-support ul li {
    display: inline-block;
    margin-right: 30px;
}
.footer-support ul li a{
    font-size: 16px;
    color: #d6d0e6;
}

.footer-copyright p{
    color: #d6d0e6;
	font-size:12px;
}


.back-to-top{
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: rgb(205,148,179);
    background: -webkit-gradient(linear, right top, left top, from(rgba(205,148,179,1)), to(rgba(175,149,198,1)));
    background: linear-gradient(to left, rgba(205,148,179,1) 0%, rgba(175,149,198,1) 100%);
    color: #fff;
    font-size: 24px;
    text-align: center;
    border-radius: 5px;
    z-index: 9999;
    display: none;
}
.back-to-top:hover{
    color: #fff;
}

/*===========================
    16. BLOG PAGE css 
===========================*/

.page-banner{
    padding-top: 245px;
    z-index: 1;
}
.page-title{
    position: relative;
    z-index: 9;
}
.page-title h1{
    font-size: 60px;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 10px;
}
.page-title ul {}
.page-title ul li{
    display: inline-block;
    position: relative;
    margin: 0 5px;
}
.page-title ul li::before{
    position: absolute;
    left: -11px;
    top: 0;
    content: '/';
    color: #fff;
}
.page-title ul li:first-child::before{
    display: none;
}
.page-title ul li a{
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
}

.blog-post{}
.blog-post .singel-blog{}
.blog-post .singel-blog .blog-thum{}
.blog-post .singel-blog .blog-cont{
    border-radius: 0;
}

.blog-post .singel-blog .blog-cont a h3{
    padding-bottom: 15px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.blog-post .singel-blog .blog-cont p{
    padding-bottom: 18px;
}
.blog-post .singel-blog .blog-cont a{
    color: #1754fa;
    font-size: 15px;
    font-weight: 500;
}
.blog-post .singel-blog .blog-cont a i{
    margin-left: 7px;
}

.blog-post .singel-blog .blog-meta,
.blog-details .blog-meta{
    padding: 20px 25px;
    border: 1px solid #dfdfdf;
    border-top: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.blog-post .singel-blog .blog-meta ul li,
.blog-details .blog-meta ul li{
    display: inline-block;
    margin-right: 40px;
}
.blog-post .singel-blog .blog-meta ul li:last-child,
.blog-details .blog-meta ul li:last-child{
    margin-right: 0;
}

.blog-post .singel-blog .blog-meta ul li a,
.blog-details .blog-meta ul li a{
    font-size: 16px;
    color: #999;
}
.blog-post .singel-blog .blog-meta ul li a i,
.blog-details .blog-meta ul li a i{
    margin-right: 7px;
    color: #1754fa;
}

.blog-post .singel-blog .blog-cont a:hover h3{
    color: #1754fa;
}

.blog-pagination ul li{
    display: inline-block;
    margin-right: 20px;
}
.blog-pagination ul li a{
    border: 1px solid #dfdfdf;
    border-radius: 50%;
    color: #999;
    font-size: 15px;
    width: 45px;
    height: 45px;
    line-height: 43px;
    text-align: center;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.blog-pagination ul li a.active,
.blog-pagination ul li a:hover{
    background-color: #1754fa;
    border-color: #1754fa;
    color: #fff;
}


.blog-sidebar{}
.blog-sidebar .search-button{
    position: relative;
}
.blog-sidebar .search-button input{
    border: 1px solid #dfdfdf;
    border-radius: 5px;
    width: 100%;
    height: 55px;
    padding-left: 30px;
    font-size: 16px;
    color: #999;
}
.blog-sidebar .search-button button{
    position: absolute;
    right: 0;
    top: 0;
    height: 55px;
    padding: 0;
    width: 65px;
    font-size: 30px;
    color: #fff;
    background-color: #1754fa;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
}
.blog-sidebar .category{}
.blog-sidebar .category h3{
    padding-bottom: 18px;
    font-size: 30px;
    text-transform: uppercase;
}
.blog-sidebar .category ul li{
    margin-top: 30px;
}

.blog-sidebar .category ul li a{
    font-size: 18px;
    color: #999;
    border-radius: 5px;
    border: 1px solid #dfdfdf;
    padding: 20px 30px;
    display: block;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.blog-sidebar .category ul li:hover a{
    background-color: #1754fa;
    border-color: #1754fa;
    color: #fff;
}

.blog-sidebar .posts{}
.blog-sidebar .posts h3{
    text-transform: uppercase;
    font-size: 30px;
}

.blog-sidebar .posts ul li a .singel-post{
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.blog-sidebar .posts ul li a .singel-post .post-thum{
    width: 90px;
    height: 90px;
}
.blog-sidebar .posts ul li a .singel-post .post-thum img{
    border-radius: 5px;
}
.blog-sidebar .posts ul li a .singel-post .post-cont h6{
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 13px;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}
.blog-sidebar .posts ul li a .singel-post .post-cont span{
    font-size: 16px;
    color: #999;
}

.blog-sidebar .posts ul li a .singel-post:hover .post-cont h6{
    color: #1754fa;
}

.tags{}
.tags h3{
    font-size: 30px;
    text-transform: uppercase;
    padding-bottom: 30px;
}
.tags ul{}
.tags ul li{
    display: inline-block;
    margin-top: 15px;
    margin-right: 12px;
}
.tags ul li a{
    line-height: 45px;
    padding: 0 30px;
    border: 1px solid #dfdfdf;
    border-radius: 50px;
    color: #1754fa;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.tags ul li a:hover{
    background-color: #1754fa;
    color: #fff;
    border-color: #1754fa;
}

/*===========================
  17. BLOG DETAILS PAGE css 
===========================*/

.blog-details {}
.blog-details .blog-meta{
    border: 0;
    padding: 0;
}
.blog-details .blog-meta{}

.blog-details h3{
    padding-bottom: 7px;
}
.blog-details img{
    margin: 40px 0;
    width: 100%;
}
.blog-details p{}
.blog-details .blockquote {
	margin: 0;
	padding: 20px 68px;
	text-align: center;
	font-style: italic;
    position: relative;
}
.blog-details .blockquote p{
    color: #333;
}

.blog-details .blockquote i {
	position: absolute;
	top: 50%;
    left: 50%;
	font-size: 70px;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #e5e4e4;
	z-index: -2;
}

.tag-details{
    padding: 24px 0;
    border-top: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
}

.tag-details ul li{
    display: inline-block;
    
}
.tag-details ul li a{
    color: #999;
    font-size: 16px;
}

.tag-details ul li.title a{
    font-weight: 500;
    color: #333;
    margin-right: 22px;
}
.tag-details ul li.title a i{
    color: #0080ff;
    margin-right: 7px;
}

.comments{}
.comments h3{
    font-size: 30px;
    text-transform: uppercase;
    padding-bottom: 10px;
}
.comments .singel-comments{}
.comments .singel-comments .comments-thum{
    width: 90px;
    height: 90px;
    float: left;
}
.comments .singel-comments .comments-thum img{
    border-radius: 50%;
    width: 100%;
}
.comments .singel-comments .comment-text{
    position: relative;
}
.comments .singel-comments .comment-text h6{
    padding-bottom: 5px;
}
.comments .singel-comments .comment-text span{
    font-size: 14px;
    color: #999;
    padding-bottom: 6px;
}
.comments .singel-comments .comment-text p{}
.comments .singel-comments .comment-text .replay{
    position: absolute;
    top: 0;
    right: 0;
    font-size: 16px;
    color: #0080ff;
    font-weight: 500;
}
.comments .singel-comments .comment-text .replay i{
    margin-right: 7px;
}

.leave-comments{}
.leave-comments h3{
    padding-bottom: 10px;
    text-transform: uppercase;
}


@media (max-width: 768px) {
#widget { background-image:url(../images/footer2.svg); 
    background-position: center center;
} 
}

@media (max-width: 992px) {
#widget { background-image:url(../images/footer2.svg); 
    background-position: center center;
} 
}

















