body {
    background: #fff;
    color: #666666;
    font-family: "Josefin Sans", sans-serif;
  }
  
  a {
    transition: 0.5s;
    text-decoration: none;
  }
  
  a:hover, a:active, a:focus {
    outline: none;
    text-decoration: none;
  }
  f
  p {
    padding: 0;
    margin: 0 0 30px 0;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
  }
  
  /* Back to top button */
  .back-to-top {
    position: fixed;
    display: none;
    background: #f49f16;
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
  }
  
  .back-to-top i {
    padding-top: 12px;
    color: #000;
  }
  
  @media (max-width: 768px) {
    .back-to-top {
      bottom: 15px;
    }
  }
  
  /* Prelaoder */
  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
  }
  
  #preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #18d26e;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
  }
  
  @-webkit-keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  #header {
    transition: all 0.5s;
    z-index: 997;
    padding: 26px 0;
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 0.25em 0 rgba(0, 0, 0, 0.25);
  }
  
  #header.header-transparent {
    background: #f49f16;
  }
  
  #header.header-scrolled {
    background: #f49f16;
    padding: 18px 0;
  }
  
  #header .logo {
    font-size: 34px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    padding-left: 10px;
  }
  
  #header .logo a {
    color: #fff;
  }
  
  #header .logo img {
    max-height: 40px;
  }
  
  @media (max-width: 992px) {
    #header .logo {
      font-size: 28px;
    }
  }
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /* Desktop Navigation */
  .nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .nav-menu > ul {
    display: flex;
  }
  
  .nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    padding: 10px 0 10px 100px;
  }
  
  .nav-menu a {
    display: block;
    position: relative;
    color: #000;
    transition: 0.3s;
    font-size: 12px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
  }
  
  .nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
    color: #fff;
  }
  
  .nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: -45px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 25px;
    background: #1e3532;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 15px;
    -webkit-columns: 2;
  }
  
  .nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 64px;
    visibility: visible;
  }
  
  .nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
    margin-top: 5px;
  }
  
  .nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 13px;
    text-transform: none;
    color: rgba(255, 255, 255, 0.75);
  }
  
  .nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
    color: #f49f16;
  }
  
  .nav-menu .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
  }
  
  .nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
  }
  
  .nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
  }
  
  .nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
  }
  
  .nav-menu .drop-down .drop-down > a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
  }
  
  @media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
      left: -90%;
    }
    .nav-menu .drop-down .drop-down:hover > ul {
      left: -100%;
    }
    .nav-menu .drop-down .drop-down > a:after {
      content: "\ea9d";
    }
  }
  
  /* Mobile Navigation */
  .mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 10px;
    z-index: 9998;
    border: 0;
    top: 20px;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    height: 30px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: center;

  }
  
  .mobile-nav-toggle i {
    color: #fff;
  }
  
  .mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
  }
  
  .mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .mobile-nav a {
    display: flex;
    position: relative;
    color: #333333;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
  }
  
  .mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
    color: #f49f16;
    text-decoration: none;
  }
  
  .mobile-nav .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
  }
  
  .mobile-nav .active.drop-down > a:after {
    content: "\eaa1";
  }
  
  .mobile-nav .drop-down > a {
    padding-right: 35px;
  }
  
  .mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
  }
  
  .mobile-nav .drop-down li {
    padding-left: 20px;
  }
  
  .mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(26, 26, 26, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
  }
  
  .mobile-nav-active {
    overflow: hidden;
  }
  
  .mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
  }
  
  /*--------------------------------------------------------------
  # Intro Section
  --------------------------------------------------------------*/
  #intro {
    width: 100%;
    height: fit-content;
    background: #000;
    overflow: hidden;
    position: relative;
  }
  
  @media (max-height: 500px) {
    #intro {
      height: 150vh;
    }
  }
  
  #intro .carousel, #intro .carousel-inner, #intro .carousel-item, #intro .carousel-item::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
  }
  
  #intro .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  #intro .carousel-item::before {
    content: '';
  }
  
  #intro .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 70px;
    left: 25px;
    right: 25px;
  }
  
  #intro .container {
    text-align: center;
  }
  
  #intro h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 60px;
    font-weight: 700;
  }
  
  @media (max-width: 768px) {
    #intro h2 {
      font-size: 40px;
    }
  }
  
  #intro p {
    width: 100%;
    margin: 0;
    width: 100%;
    color: #f49f16;
    font-weight: 600;
  }
  
  #intro .carousel-fade {
    overflow: hidden;
  }
  
  #intro .carousel-fade .carousel-inner .carousel-item {
    transition-property: opacity;
  }
  
  #intro .carousel-fade .carousel-inner .carousel-item,
  #intro .carousel-fade .carousel-inner .active.carousel-item-left,
  #intro .carousel-fade .carousel-inner .active.carousel-item-right {
    opacity: 0;
  }
  
  #intro .carousel-fade .carousel-inner .active,
  #intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
  #intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
    opacity: 1;
    transition: 0.5s;
  }
  
  #intro .carousel-fade .carousel-inner .carousel-item-next,
  #intro .carousel-fade .carousel-inner .carousel-item-prev,
  #intro .carousel-fade .carousel-inner .active.carousel-item-left,
  #intro .carousel-fade .carousel-inner .active.carousel-item-right {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  
  #intro .carousel-control-prev, #intro .carousel-control-next {
    width: 10%;
  }
  
  @media (min-width: 1024px) {
    #intro .carousel-control-prev, #intro .carousel-control-next {
      width: 5%;
    }
  }
  
  #intro .carousel-control-next-icon, #intro .carousel-control-prev-icon {
    background: none;
    font-size: 32px;
    line-height: 1;
  }
  
  #intro .carousel-indicators li {
    cursor: pointer;
  }
  
  #intro .btn-get-started {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 0 10px 10px;
    color: #fff;
  }
  
  #intro .go-down{
    position: absolute;
    bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transform: translateX(-50%);
    text-align: center;
        left: 50%;
  }
  
  #intro .btn-get-started:hover {
    background: #fff;
    color: #18d26e;
  }
  
  /*--------------------------------------------------------------
  # Sections
  --------------------------------------------------------------*/
  section {
    overflow: hidden;
  }
  
  /* Sections Header
  --------------------------------*/
  .section-header h3 {
    font-size: 32px;
    color: #111;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
  }
  
  .section-header h3::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
  }
  
  .section-header h3::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #f49f16;
    bottom: 0;
    left: calc(50% - 20px);
  }
  
  .section-header p {
    text-align: center;
    padding-bottom: 30px;
    color: #333;
  }
  
  /* Section with background
  --------------------------------*/
  .section-bg {
    background: #fff;
  }
  
  /*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/
  .breadcrumbs {
    padding: 20px 0;
    background-color: #f7f7f7;
    min-height: 40px;
    margin-top: 90px;
  }
  
  @media (max-width: 992px) {
    .breadcrumbs {
      margin-top: 80px;
    }
  }
  
  .breadcrumbs h2 {
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 400;
  }
  
  .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
  }
  
  .breadcrumbs ol li + li {
    padding-left: 10px;
  }
  
  .breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
  }
  
  @media (max-width: 768px) {
    .breadcrumbs .d-flex {
      display: block !important;
    }
    .breadcrumbs ol {
      display: block;
    }
    .breadcrumbs ol li {
      display: inline-block;
    }
  }
  
  /* Featured Services Section
  --------------------------------*/
  #featured-services {
    background: #000;
  }
  
  #featured-services .box {
    padding: 30px 20px;
  }
  
  #featured-services .box-bg {
    background-image: linear-gradient(0deg, #000000 0%, #242323 50%, #000000 100%);
  }
  
  #featured-services i {
    color: #18d26e;
    font-size: 48px;
    display: inline-block;
    line-height: 1;
  }
  
  #featured-services h4 {
    font-weight: 400;
    margin: 15px 0;
    font-size: 18px;
  }
  
  #featured-services h4 a {
    color: #fff;
  }
  
  #featured-services h4 a:hover {
    color: #18d26e;
  }
  
  #featured-services p {
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 0;
  }
  
  /* About Us Section
  --------------------------------*/
  #about {
    background: url("../img/about-bg.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 60px 0 40px 0;
    position: relative;
  }
  
  #about::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 9;
  }
  
  #about .container {
    position: relative;
    z-index: 10;
  }
  
  #about .about-col {
    background: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
  }
  
  #about .about-col .img {
    position: relative;
  }
  
  #about .about-col .img img {
    border-radius: 4px 4px 0 0;
  }
  
  #about .about-col .icon {
    width: 64px;
    height: 64px;
    padding-top: 8px;
    text-align: center;
    position: absolute;
    background-color: #18d26e;
    border-radius: 50%;
    text-align: center;
    border: 4px solid #fff;
    left: calc( 50% - 32px);
    bottom: -30px;
    transition: 0.3s;
  }
  
  #about .about-col i {
    font-size: 36px;
    line-height: 1;
    color: #fff;
    transition: 0.3s;
  }
  
  #about .about-col:hover .icon {
    background-color: #fff;
  }
  
  #about .about-col:hover i {
    color: #18d26e;
  }
  
  #about .about-col h2 {
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    padding: 0;
    margin: 40px 0 12px 0;
  }
  
  #about .about-col h2 a {
    color: #000;
  }
  
  #about .about-col h2 a:hover {
    color: #18d26e;
  }
  
  #about .about-col p {
    font-size: 14px;
    line-height: 24px;
    color: #333;
    margin-bottom: 0;
    padding: 0 20px 20px 20px;
  }
  
  /* Services Section
  --------------------------------*/
  #services {
    background: #fff;
    background-size: cover;
    padding: 60px 0 40px 0;
  }
  
  #services .box {
    margin-bottom: 30px;
  }
  
  #services .icon {
    float: left;
  }
  
  #services .icon i {
    color: #18d26e;
    font-size: 36px;
    line-height: 1;
    transition: 0.5s;
  }
  
  #services .title {
    margin-left: 60px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  #services .title a {
    color: #111;
  }
  
  #services .box:hover .title a {
    color: #18d26e;
  }
  
  #services .description {
    font-size: 14px;
    margin-left: 60px;
    line-height: 24px;
    margin-bottom: 0;
  }
  
  /* Call To Action Section
  --------------------------------*/
  #call-to-action {
    background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.1)), url(../img/call-to-action-bg.jpg) fixed center center;
    background-size: cover;
    padding: 60px 0;
  }
  
  #call-to-action h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
  }
  
  #call-to-action p {
    color: #fff;
  }
  
  #call-to-action .cta-btn {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 25px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid #fff;
    color: #fff;
  }
  
  #call-to-action .cta-btn:hover {
    background: #18d26e;
    border: 2px solid #18d26e;
  }
  
  /* mainAssets
  --------------------------------*/
  #mainAssets {
    padding: 60px 0 0;
  }
  
  #mainAssets .progress {
    height: 35px;
    margin-bottom: 10px;
  }
  
  #mainAssets .progress .skill {
    font-family: 'Josefin Sans', sans-serif;
    line-height: 35px;
    padding: 0;
    margin: 0 0 0 20px;
    text-transform: uppercase;
  }
  
  #mainAssets .progress .skill .val {
    float: right;
    font-style: normal;
    margin: 0 20px 0 0;
  }
  
  #mainAssets .progress-bar {
    width: 1px;
    text-align: left;
    transition: .9s;
  }
  
  /* Facts Section
  --------------------------------*/
  #facts {
    background: url("../img/facts-bg.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 60px 0 0 0;
    position: relative;
  }
  
  #facts::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.88);
    z-index: 9;
  }
  
  #facts .container {
    position: relative;
    z-index: 10;
  }
  
  #facts .counters span {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 48px;
    display: block;
    color: #18d26e;
  }
  
  #facts .counters p {
    padding: 0;
    margin: 0 0 20px 0;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #111;
  }
  
  #facts .facts-img {
    text-align: center;
    padding-top: 30px;
  }
  
  /* Portfolio Section
  --------------------------------*/
  #portfolio {
    padding: 60px 0;
  }
  
  #portfolio #portfolio-flters {
    padding: 0;
    margin: 5px 0 35px 0;
    list-style: none;
    text-align: center;
  }
  
  #portfolio #portfolio-flters li {
    cursor: pointer;
    margin: 15px 15px 15px 0;
    display: inline-block;
    padding: 10px 20px;
    font-size: 12px;
    line-height: 20px;
    color: #666666;
    border-radius: 4px;
    text-transform: uppercase;
    background: #fff;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
  }
  
  #portfolio #portfolio-flters li:hover, #portfolio #portfolio-flters li.filter-active {
    background: #18d26e;
    color: #fff;
  }
  
  #portfolio #portfolio-flters li:last-child {
    margin-right: 0;
  }
  
  #portfolio .portfolio-wrap {
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
  }
  
  #portfolio .portfolio-wrap:hover {
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
  }
  
  #portfolio .portfolio-item {
    position: relative;
    height: 360px;
    overflow: hidden;
  }
  
  #portfolio .portfolio-item figure {
    background: #000;
    overflow: hidden;
    height: 240px;
    position: relative;
    border-radius: 4px 4px 0 0;
    margin: 0;
  }
  
  #portfolio .portfolio-item figure:hover img {
    opacity: 0.4;
    transition: 0.3s;
  }
  
  #portfolio .portfolio-item figure .link-preview, #portfolio .portfolio-item figure .link-details {
    position: absolute;
    display: inline-block;
    opacity: 0;
    line-height: 1;
    text-align: center;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    transition: 0.2s linear;
  }
  
  #portfolio .portfolio-item figure .link-preview i, #portfolio .portfolio-item figure .link-details i {
    padding-top: 6px;
    font-size: 22px;
    color: #333;
  }
  
  #portfolio .portfolio-item figure .link-preview:hover, #portfolio .portfolio-item figure .link-details:hover {
    background: #18d26e;
  }
  
  #portfolio .portfolio-item figure .link-preview:hover i, #portfolio .portfolio-item figure .link-details:hover i {
    color: #fff;
  }
  
  #portfolio .portfolio-item figure .link-preview {
    left: calc(50% - 38px);
    top: calc(50% - 18px);
  }
  
  #portfolio .portfolio-item figure .link-details {
    right: calc(50% - 38px);
    top: calc(50% - 18px);
  }
  
  #portfolio .portfolio-item figure:hover .link-preview {
    opacity: 1;
    left: calc(50% - 44px);
  }
  
  #portfolio .portfolio-item figure:hover .link-details {
    opacity: 1;
    right: calc(50% - 44px);
  }
  
  #portfolio .portfolio-item .portfolio-info {
    background: #fff;
    text-align: center;
    padding: 30px;
    height: 90px;
    border-radius: 0 0 3px 3px;
  }
  
  #portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    line-height: 1px;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 0;
  }
  
  #portfolio .portfolio-item .portfolio-info h4 a {
    color: #333;
  }
  
  #portfolio .portfolio-item .portfolio-info h4 a:hover {
    color: #18d26e;
  }
  
  #portfolio .portfolio-item .portfolio-info p {
    padding: 0;
    margin: 0;
    color: #b8b8b8;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
  }
  
  /* Portfolio Details
  --------------------------------*/
  .portfolio-details {
    padding-top: 30px;
  }
  
  .portfolio-details .portfolio-details-container {
    position: relative;
  }
  
  .portfolio-details .portfolio-details-carousel {
    position: relative;
    z-index: 1;
  }
  
  .portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
    margin-top: 5px;
    text-align: left;
  }
  
  .portfolio-details .portfolio-details-carousel .owl-dot {
    display: inline-block;
    margin: 0 10px 0 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
  }
  
  .portfolio-details .portfolio-details-carousel .owl-dot.active {
    background-color: #18d26e !important;
  }
  
  .portfolio-details .portfolio-info {
    padding: 30px;
    position: absolute;
    right: 0;
    bottom: -70px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
  }
  
  .portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  
  .portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
  }
  
  .portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
  }
  
  .portfolio-details .portfolio-description {
    padding-top: 50px;
  }
  
  .portfolio-details .portfolio-description h2 {
    width: 50%;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .portfolio-details .portfolio-description p {
    padding: 0 0 0 0;
  }
  
  @media (max-width: 768px) {
    .portfolio-details .portfolio-description h2 {
      width: 100%;
    }
    .portfolio-details .portfolio-info {
      position: static;
      margin-top: 30px;
    }
  }
  
  /* Clients Section
  --------------------------------*/
  #clients {
    padding: 60px 0;
  }
  
  #clients img {
    max-width: 100%;
    opacity: 0.5;
    transition: 0.3s;
    padding: 15px 0;
  }
  
  #clients img:focus {
    opacity: 1;
  }
  
  #clients .owl-nav, #clients .owl-dots {
    margin-top: 5px;
    text-align: center;
  }
  
  #clients .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
  }
  
  #clients .owl-dot.active {
    background-color: #18d26e;
  }
  
  /* accomodations Section
  --------------------------------*/
  .accomodations {
    padding: 60px 0;
  }
  
  .accomodations .section-header {
    margin-bottom: 40px;
  }
  
  .accomodations .testimonial-item {
    text-align: center;
  }
  
  .accomodations .testimonial-item .testimonial-img {
    width: 120px;
    border-radius: 50%;
    border: 4px solid #fff;
    margin: 0 auto;
  }
  
  .accomodations .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #111;
  }
  
  .accomodations .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0 0 15px 0;
  }
  
  .accomodations .testimonial-item .quote-sign-left {
    margin-top: -15px;
    padding-right: 10px;
    display: inline-block;
    width: 37px;
  }
  
  .accomodations .testimonial-item .quote-sign-right {
    margin-bottom: -15px;
    padding-left: 10px;
    display: inline-block;
    max-width: 100%;
    width: 37px;
  }
  
  .accomodations .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
  }
  
  @media (min-width: 992px) {
    .accomodations .testimonial-item p {
      width: 80%;
    }
  }
  
  .accomodations .owl-nav, #testimonials .owl-dots {
    margin-top: 5px;
    text-align: center;
  }
  
  .accomodations .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
  }
  
  .accomodations .owl-dot.active {
    background-color: #18d26e;
  }
  
  /* Contact Section
  --------------------------------*/
  #contact {
    padding: 60px 0;
  }
  
  #contact .contact-info {
    margin-bottom: 20px;
    text-align: center;
  }
  
  #contact .contact-info i {
    font-size: 48px;
    display: inline-block;
    margin-bottom: 10px;
    color: #18d26e;
  }
  
  #contact .contact-info address, #contact .contact-info p {
    margin-bottom: 0;
    color: #000;
  }
  
  #contact .contact-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    color: #999;
  }
  
  #contact .contact-info a {
    color: #000;
  }
  
  #contact .contact-info a:hover {
    color: #18d26e;
  }
  
  #contact .contact-address, #contact .contact-phone, #contact .contact-email {
    margin-bottom: 20px;
  }
  
  @media (min-width: 768px) {
    #contact .contact-address, #contact .contact-phone, #contact .contact-email {
      padding: 20px 0;
    }
  }
  
  @media (min-width: 768px) {
    #contact .contact-phone {
      border-left: 1px solid #ddd;
      border-right: 1px solid #ddd;
    }
  }
  
  #contact .php-email-form {
    padding: 30px;
    margin: auto;
    max-width: 600px;
  }
  
  #contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
  }
  
  #contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
  }
  
  #contact .php-email-form .error-message br + br {
    margin-top: 25px;
  }
  
  #contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
  
  #contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
  }
  
  #contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
  }
  
  #contact .php-email-form .form-group {
    margin-bottom: 20px;
  }
  
  #contact .php-email-form input, #contact .php-email-form textarea {
    padding: 10px 14px;
    border-radius: 0;
    box-shadow: none;
    font-size: 15px;
  }
  
  #contact .php-email-form input::focus, #contact .php-email-form textarea::focus {
    background-color: #18d26e;
  }
  
  #contact .php-email-form button[type="submit"] {
    background: transparent;
    border: 0;
    padding: 10px 50px;
    color: #555555;
    transition: 0.4s;
    cursor: pointer;
   border-radius: 25px;
    border: 2px solid #555555;
  }
  
  #contact .php-email-form button[type="submit"]:hover {
    background: #555555;
    color: #fff;
  }
  
  @-webkit-keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
  #footer {
    background: #051917;
    padding: 0 0 30px 0;
    color: #eee;
    font-size: 14px;
  }
  
  #footer .footer-top {
    background: #1e3532;
    padding: 60px 0 30px 0;
  }
  
  #footer .footer-top .footer-info {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-info h3 {
    font-size: 34px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 10px;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    border-left: 4px solid #18d26e;
  }
  
  #footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Montserrat", sans-serif;
    color: #eee;
  }
  
  #footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #051917;
    color: #f49f16;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
  }
  
  #footer .footer-top .social-links a:hover {
    background: #f49f16;
    color: #051917;
  }
  
  #footer .footer-top h4 {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
  }
  
  #footer .footer-top h4::before, #footer .footer-top h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
  }
  
  #footer .footer-top h4::before {
    right: 0;
    background: #051917;
  }
  
  #footer .footer-top h4::after {
    background: #f49f16;
    width: 60px;
  }
  
  #footer .footer-top .footer-links {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  #footer .footer-top .footer-links ul i {
    padding-right: 8px;
    color: #ddd;
  }
  
  #footer .footer-top .footer-links ul li {
    padding: 10px 0;
  }
  
  #footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
  }
  
  #footer .footer-top .footer-links ul a {
    color: #eee;
    line-height: 43px;
    position: absolute;
    margin-left: 10px;
  }
  
  #footer .footer-top .footer-links ul a:hover {
    color: #f0a800;
  }
  
  #footer .footer-top .footer-contact {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-contact p {
    line-height: 26px;
  }
  
  #footer .footer-top .footer-newsletter {
    margin-bottom: 30px;
  }
  @media screen and (min-width: 768px) {
    #footer .footer-top .footer-links:last-child {
      text-align: right;
    }
  }
  
  #footer .img-fluid {
    max-width: 400px;
    filter: invert(1);
    width: 80%;
  }
  
  #footer .footer-top .footer-newsletter input[type="email"] {
    border: 0;
    padding: 6px 8px;
    width: 65%;
  }
  
  #footer .footer-top .footer-newsletter input[type="submit"] {
    background: #18d26e;
    border: 0;
    width: 35%;
    padding: 6px 0;
    text-align: center;
    color: #fff;
    transition: 0.3s;
    cursor: pointer;
  }
  
  #footer .footer-top .footer-newsletter input[type="submit"]:hover {
    background: #13a456;
  }
  
  #footer .copyright {
    padding-top: 30px;
  }
  
  #footer .credits {
    text-align: center;
    font-size: 13px;
    color: #ddd;
  }
  
  .row.justify-content-center .col-xl-11.d-flex.align-items-center img {
    height: 90px;
  }
  
  .container p.textone {
    font-size: 25px;
    text-align: center;
    color: #fff;
    margin: auto;
  }
  
  .text-width{
      max-width: 900px;
  }
  
  section#one {
    background-color: #051917;
    padding: 6em 0 6em 0;
  }
  
  .textone strong.amarellotext {
    font-weight: bold;
    color: #f0a800;
  }
  
  .col-lg-6.col-md-6.footer-links h3 {
    font-weight: bold;
    color: #f0a800;
    text-decoration: underline;
    text-decoration-color: #f0a800;
  }
  
  .social-links {
    margin-top: 12px;
  }
  
  i.ion-ios-email {
    color: #f0a800 !important;
    font-size: 30px;
  }
  
  i.ion-ios-telephone-outline {
    color: #f0a800 !important;
    font-size: 30px;
  }
  
  @media only screen and (max-width: 600px) {
    #footer .row {
      margin-left: 10px;
    }
    .country_info .uk-card.uk-card-default {
      padding-left: 10px;
      padding-right: 10px;
    }
  }
  
  section#contact input {
    border-radius: 25px !important;
  }
  section#contact textarea.form-control {
    border-radius: 25px;
  }
  
  
  @media only screen and (min-width: 600px) {
    .uk-card.uk-card-default.paisresumen img {
      width: 100%;
      height: 230px;
      object-fit: cover;
    }

    section#mainAssets .container {
      max-width: 960px;
    }
    .container.bannerstexto {
      margin-top: -200px;
      margin-bottom: -329px;
    }
    .container.bannerstexto2 {
      margin-top: -206px;
      margin-bottom: -170px;
    }
    #contact .php-email-form {
    padding-right: 50px;
    padding-left: 50px;
    }
    img.mapmobile {
      display: none;
    }
  }
  
  section#mainAssets p.setext {
    text-transform: uppercase;
  }
  
  section.country_info img {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }


.team-member img{
        max-width: 100%;
    width: 400px;
}
  
  
  .country_info .uk-dotnav>.uk-active>* {
    background-color: #f49f16;
  }
  
  .country_info h3.uk-card-title {
    color: #f49f16 !important;
  }
  
  .country_info .uk-card.uk-card-default {
    box-shadow: none;
    padding-left: 100px;
    padding-right: 100px;
  }
  
  @media (min-width: 640px){
    .country_info .uk-child-width-1-2\@s>* {
        width: 90%;
    }
  }
  
  section.country_info h3.uk-card-title {
    text-align: center;
    font-size: 48px;
    font-weight: bold;
  }
  
  section.country_info .subtitle-country{
    text-align: center;
    max-width: 900px;
    margin: auto;
    white-space: break-spaces;
  }
  
  section.country_info img.flagcountry {
    height: 50px;
    margin-top: 125px;
    margin-bottom: 40px;
  }
  
  .country_info button.btn.btn-warning {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  
  .country_info button.btn.btn-warning {
    margin-left: auto;
    margin-right: auto;
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 13px;
    margin-top: 25px;
    margin-bottom: 50px;
  }
  
  .country_info button.btn.btn-warning:hover {
    background-color: #ecb201;
  }
  
  #header.header-scrolled ul {
    top: 56px;
  }
  
  @media screen and (max-width: 1200px){
  .nav-items .nav-menu {
      padding-right: 20px;
  }      
  }

  
  .nav-menu li a.viewallmenu {
    color: white !important;
  }
  
  .nav-menu li a.viewallmenu:hover {
    color: #f49f16 !important;
  }
  
  a.uk-position-center-right.uk-position-small.uk-icon.uk-slidenav,
  a.uk-position-center-left.uk-position-small.uk-icon.uk-slidenav{
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    }
  
  a.uk-position-center-right.uk-position-small.uk-icon.uk-slidenav polyline,
  a.uk-position-center-left.uk-position-small.uk-icon.uk-slidenav polyline{
  stroke: #000;
  }
  
  a.uk-position-center-left.uk-position-small.uk-hidden-hover.uk-icon.uk-slidenav-previous.uk-slidenav {
    color: #000;
  }
  a.uk-position-center-right.uk-position-small.uk-hidden-hover.uk-icon.uk-slidenav-next.uk-slidenav {
    color: #000;
  }
  
  .uk-card-media-top img.acoimage {
    height: 100%;
    width: 100%;
  }
  
.country_info .highlight-section{
  display: flex; 
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  list-style-type:none;
  padding: 15px;
  
}

.country_info .highlight-section .icon-highlight{
  border-radius: 10px;
  text-align: center;
  color: #0d2723;
  font-size: 13px;
  margin: 1%;
  width: 100px;
  height: 100px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.country_info .highlight-section .icon-highlight img{
  width: 70px;
  height: 70px;
}

  #accomodations .uk-card.uk-card-default {
    border-top-left-radius: 20px 40px;
    border-top-right-radius: 20px 40px;
    height: 100%;
    width: 100%;
  }
  
  .uk-card.uk-card-default p.nametext {
    text-transform: uppercase;
    color: #000;
    font-size: 12px;
    text-align: center;
  }
  
  @media screen and (max-width: 998px){
      .imageparrafo, .culturaltext img{
          display: none;
      }
  }
  
  @media (min-width: 640px){
    .uk-child-width-1-4\@s>* {
        width: 22%;
    }
    .row>* {
      padding-right: 0;
      padding-left: 0;
    }
    form.php-email-form .row .form-group {
      padding-right: 10px;
    }
  
    .col-lg-6.col-xs-12 .container {
      padding-left: 0;
      padding-right: 0;
    }
    img.imageparrafo {
      max-width: 185%;
      z-index: 2;
    }
    img.img-fluid.image.second, img.img-fluid.image.first  {
      height: 582px;
      object-fit: cover;
    }
    img.img-fluid.image.mobile1 {
      display: none;
    }
    img.img-fluid.image.mobile2 {
      display: none;
    }
    p.textone.first.features {
      display: none;
    }
    p.textone.first.features2 {
      display: none;
    }
    section.accomodations.home {
      display: none;
    }
    img.menuflag {
      height: 25px !important;
      margin-right: 15px;
    }
    #two .row {
      --bs-gutter-x: 2.5rem;
    }
    p.textmapMobile {
      display: none;
    }
  }
  
  section#mapanimation {
    background: #051917;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
  }
  
  section#mapanimation img{
    width: 100%;
    opacity: 0.4;
  }

  @media screen and (min-width: 1024px){
    section#mapanimation img{
    border-radius: 30px;
    margin: 30px;
    width: auto;
    }
  }
  
  img.img-fluid.image.mobile1 {
    float: right;
    margin-right: -115px;
    margin-top: 70%;
  }
  
  img.img-fluid.image.mobile2 {
    margin-left: -31%;
  }
  
  img.bannercountry {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    max-height: 700px;

  }
  
  .bannertext header.section-header {
    position: absolute;
    text-align: center;
    width: 100%;
    margin-top: 40px;
    display: none;
  }
  
  .section-header p.pbannercountry {
    margin: auto;
    width: 47%;
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
  }
  
  h3.titulobannercountry {
    font-size: 48px;
  }
  
  /* SLIDESHOW COUNTRIES */
  
.slider-photo{
    margin: 50px 0;
}
  
  
  .slider-photo .uk-visible-toggle{
      display: flex;
      justify-content: center;
  }
  .slider-photo .uk-slider-items.uk-grid{
      
      padding: 20px 0;
  }
  
.slider-photo .uk-position-small[class*=uk-position-center-left],
.slider-photo .uk-position-small[class*=uk-position-center-right] {
    transform: translateY(20%) translateY(-15px);
}
  
  .slider-photo .uk-card-body{
      padding: 20px;
  }
  @media screen and (min-width: 768px){
  .section-slideshow-countries{
    margin-top: 90px;
  }
  .slideshow-countries, .slideshow-countries img, .section-slideshow-countries .uk-slideshow{
    height: 100%;
  }
  }

  .paisresumen h3{
    text-align: center;
    text-transform: capitalize;
    font-size: 18px;
  }
  
  
  @media only screen and (max-width: 600px) {
    .country_info .uk-card.uk-card-default {
      padding-left: 30px;
      padding-right: 30px;
      text-align: center;
    }
    .uk-card.uk-card-default.paisresumen {
    border-radius: 10%;
    width: 100%;
    }
    ul.slidescountry {
      padding-left: 13px;
    }
    a#homeback {
      margin-left: 5%;
    }
    div#map {
      width: 100%;
    }
    p.sentence {
      text-align: center;
    }
      .container p.textone {
        width: 100%; 
        padding: 0px;
    }
    .section-header p.pbannercountry{
      width: 100%;
      color: white;
      text-shadow: 1px 1px 1px black;
    }
    .row>* {
      padding-right: 0;
      padding-left: 0;
    }
  
    .expertsbanner {
        width: 80%;
        text-align: center;
    }
    p.meet {
      font-size: 38px !important;
    }
    p.experts {
      font-size: 68px !important;
    }
    .circulo1 {
      display: none;
    }
    .circulo2 {
      display: none;
    }
    p.textone.first {
      margin-bottom: 30px;
    }
  
    section#one {
      background-color: #051917;
      padding: 6em 16px 6em 16px;
      margin-bottom: -2px;
    }
  
    img.img-fluid.image.first {
      display: none;
    }
  
    img.img-fluid.image.second {
     display: none;
    }
    section.partree {
      display: none;
    }
  
    .overlay{
      display: none;
    }
    p.textone.first.features {
      position: absolute;
      margin-top: 107%;
      text-transform: uppercase;
      margin-left: -16%;
      font-size: 35px;
    }
    p.textone.first.features2 {
      position: absolute;
      margin-top: -53%;
      text-transform: uppercase;
      margin-left: 9%;
      font-size: 35px;
    }
    .triangle1 {
      width: 120%;
      border-style: solid;
      border-width: 446px 374px 361px 0px;
      border-color: transparent #1e3532 transparent transparent;
    }
    section#two {
      margin-top: -74%;
    }
  
    p.textone.second {
        color: #f0a800;
        padding-left: 22px;
        padding-right: 22px;
    }
    .container.uno {
      z-index: 99;
    }
    .col-lg-6.col-xs-12.ceremonies {
      margin-top: -40%;
    }
    p.rol {
      padding-left: 0 !important;
      text-align: center;
    }
    section.country_info h3.uk-card-title {
      width: 100%;
    }
    .uk-card-body {
      padding-right: 56px;
      padding-left: 56px;
    }
    .row.sentenceletters {
      margin-top: 0 !important;
    }
    section#mainAssets .col-lg-3 {
      width: 50%;
    }
    section.accomodations.home.uk-card-body {
      padding-right: 40px;
      padding-left: 40px;
    }
    section.accomodations.home .uk-position-relative.uk-visible-toggle.uk-light {
      padding-left: 40px;
      padding-right: 40px;
    }
    section.accomodations.home .uk-card.uk-card-default p.nametext {
      font-size: 13px;
    }
    section.accomodations.home .uk-card.uk-card-default {
      border-radius: 15%;
    }
    section.accomodations.home {
      background: linear-gradient(to top, #fff 50%, #051917 50%);
      margin-top: -1px;
    }
    p.textone.explore {
      text-align: center;
      display: block;
      font-size: 35px;
    }
    img.menuflag {
      height: 20px;
      margin-right: 10px;
    }
    img.mapdesktop {
      display: none;
    }
    p.subtextmap {
      display: none;
    }
    p.textmap {
      display: none;
    }
    p.textmapMobile {
      z-index: 99;
      margin: 0;
      font-size: 30px;
      text-align: center;
      color: #fff;
      position: absolute;
      width: 100%;
      margin-top: -42%;
      padding-left: 35px;
      padding-right: 35px;
    }
  
    section.about3 {
      display: none;
    }
    .uk-slider-items.sliderpais img {
      width: 100%;
    }
  }
  
  i.fa.fa-angle-double-down {
    color: #f49f16;
    font-size: 40px;
  }
  
  .container {
    position: relative;
  }
  
  .image {
    display: block;
    width: 100%;
    height: auto;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #051917;
  }
  
  .container:hover .overlay {
    opacity: 0.9;
  }
  
  .text {
    color: #f49f16;
    font-size: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    font-weight: bold;
  }
  

  .uk-card.uk-card-default.home {
    background-color: #f4f4f4;
  }
  
  p.meet {
    color: #606060;
    font-size: 54px;
    font-weight: bold;
    margin: auto;
    opacity: 0.7;
    line-height: 0;
  }
  
  p.experts {
    font-size: 98px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
  }
  
  .expertsbanner {
    margin: auto;
    width: 76%;
    margin-top: 40px;
  }
  
  
  .expertsbanner p{
      line-height: 1em;
max-width: 600px;
    margin: 20px auto;
  }
  h3.uk-card-title.name {
    color: white !important;
    width: 50%;
    margin-bottom: 0;
  }
  
  p.sentence {
    color: #606060;
  } 
  
  p.rol {
    color: #606060;
    padding-left: 13%;
  }
  
  section.partree {
    background-color: #051917;
    padding: 20px;
  }
  
  .second-partree{
      position: relative;
      top: -2px;
  }
  .col-lg-6.col-xs-12.culturaltext {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  img.contactimage {
    position: absolute;
    top: 0%;
    right: 50%;
  }
  
  
  img.contactimage {
    position: absolute;
    top: 24%;
    right: 82%;
    width: 600px;
    height: 600px;
  }
  
  .uk-position-relative.uk-visible-toggle.uk-light.texteam{
  margin-top: 18%;
  }
    
    #team{
     background-color: #f4f4f4;
     margin: 40px 0;

    }
  .team-members{
    display: flex;
    flex-wrap: wrap;
    padding: 30px;
  }
  
  
 .members{
         max-width: 1500px;
    margin: auto;
 }
.team-members .team-member {
    width: 31.33%;
    margin: 1%;
  }
  
  @media (min-width: 601px) and (max-width: 960px){
    .team-members .team-member {
    width: 48%;
    margin: 1%;
    }
  }
  
  .team-members .team-member h6 {
margin: 20px auto 0;
    text-align: center;
    font-weight: bold;
    font-size: 1.2em;
    
}
  
  @media screen and (max-width: 600px){
          .team-members .team-member {
    width: 100%;
    margin: 1%;
    }

  }
  
  
  .circulo1 {
    height: 550px;
    width: 550px;
    background: #1e3532;
    border-radius: 100%;
    margin-top: -34%;
    float: right;
    margin-right: -185px;
  }
  .circulo2 {
    height: 550px;
    position: absolute;
    width: 550px;
    background: #1e3532;
    border-radius: 100%;
    margin-left: -8%;
    margin-top: -48%;
  }
  
  section#two {
    background-color: #051917;
  }
  
  /* media query ipad */
  @media only screen 
  and (min-device-width : 768px) 
  and (max-device-width : 1024px)  {
    #contact {
      padding: 60px 0;
    }
    .circulo1 {
      display: none;
    }
  
    .circulo2 {
     display: none;
    }
    p.meet {
      font-size: 41px !important;
    }
    p.experts {
      font-size: 77px;
    }
  }
  
  /* media query iphone 5 */
  @media only screen and (max-device-width: 480px) {
    #intro h2 {
      font-size: 39px;
    }
    p.experts {
      font-size: 62px !important;
    }
    p.meet {
      font-size: 32px !important;
    }
  }
  
  /* media query mayor 1700px */
  @media only screen and (max-device-width: 1700px) {
    ul.nav {
      margin-top: -25%;
    }
    p.meet {
      font-size: 53px;
    }
  }
  
  
  
  /* Slider view all */
  .cont {
    position: relative;
    height: 110vh;
    overflow: hidden;
  }
  
  .slider {
    position: relative;
    height: 100%;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    will-change: transform;
    cursor: all-scroll;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .slider.animation {
    -webkit-transition: -webkit-transform 750ms ease-in-out;
    transition: -webkit-transform 750ms ease-in-out;
    transition: transform 750ms ease-in-out;
    transition: transform 750ms ease-in-out, -webkit-transform 750ms ease-in-out;
  }
  .slider.animation .slide__darkbg {
    -webkit-transition: -webkit-transform 750ms ease-in-out;
    transition: -webkit-transform 750ms ease-in-out;
    transition: transform 750ms ease-in-out;
    transition: transform 750ms ease-in-out, -webkit-transform 750ms ease-in-out;
  }
  .slider.animation .slide__text {
    -webkit-transition: -webkit-transform 750ms ease-in-out;
    transition: -webkit-transform 750ms ease-in-out;
    transition: transform 750ms ease-in-out;
    transition: transform 750ms ease-in-out, -webkit-transform 750ms ease-in-out;
  }
  .slider.animation .slide__letter {
    -webkit-transition: -webkit-transform 750ms ease-in-out;
    transition: -webkit-transform 750ms ease-in-out;
    transition: transform 750ms ease-in-out;
    transition: transform 750ms ease-in-out, -webkit-transform 750ms ease-in-out;
  }
  
  .slide {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .slide--1 {
    left: 0%;
  }
  .slide--2 {
    left: 100%;
  }
  .slide--3 {
    left: 200%;
  }
  .slide--4 {
    left: 300%;
  }
  .slide--5 {
    left: 400%;
  }
  .slide__darkbg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    will-change: transform;
    z-index: 10;
  }
  .slide__text-wrapper {
    position: absolute;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    width: 100%;
    height: 100%;
    z-index: 15;
  }
  
  .slide__text {
    font-size: 8vw;
    font-weight: 800;
    text-transform: uppercase;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    letter-spacing: 12px;
    color: #fff;
    will-change: transform;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .slide__text:nth-child(odd) {
    z-index: 2;
  }
  .slide__text:nth-child(even) {
    z-index: 1;
  }
  .slide--1__darkbg {
    left: 0%;
    background: url("../img/RTX1DQYA-e1565327009208.png") center center no-repeat;
    background-size: cover;
    background-position: 0px center, 0px center;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    will-change: transform;
  }
  .slide--1__darkbg:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .slide--1__letter {
    background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/537051/city--1-min-min.jpg") center center no-repeat;
    background-position: 0px center, 0px center;
    background-size: cover;
  }
  .slide--2__darkbg {
    left: -50%;
    background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/537051/city--2-min-min.jpg") center center no-repeat;
    background-size: cover;
    background-position: 0px center, 0px center;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    will-change: transform;
  }
  .slide--2__darkbg:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .slide--2__letter {
    background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/537051/city--2-min-min.jpg") center center no-repeat;
    background-position: 0px center, 0px center;
    background-size: cover;
  }
  .slide--3__darkbg {
    left: -100%;
    background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/537051/city--3-min-min.jpg") center center no-repeat;
    background-size: cover;
    background-position: 0px center, 0px center;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    will-change: transform;
  }
  .slide--3__darkbg:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .slide--3__letter {
    background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/537051/city--3-min-min.jpg") center center no-repeat;
    background-position: 0px center, 0px center;
    background-size: cover;
  }
  .slide--4__darkbg {
    left: -150%;
    background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/537051/city--4-min-min.jpg") center center no-repeat;
    background-size: cover;
    background-position: 0px center, 0px center;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    will-change: transform;
  }
  .slide--4__darkbg:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .slide--4__letter {
    background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/537051/city--4-min-min.jpg") center center no-repeat;
    background-position: 0px center, 0px center;
    background-size: cover;
  }
  .slide--5__darkbg {
    left: -200%;
    background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/537051/city--5-min-min.jpg") center center no-repeat;
    background-size: cover;
    background-position: 0px center, 0px center;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    will-change: transform;
  }
  .slide--5__darkbg:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .slide--5__letter {
    background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/537051/city--5-min-min.jpg") center center no-repeat;
    background-position: 0px center, 0px center;
    background-size: cover;
  }
  
  .nav {
    position: absolute;
    bottom: 25px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    list-style-type: none;
    z-index: 10;
  }
  .nav__slide {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: 10px;
    cursor: pointer;
  }
  @media screen and (max-width: 400px) {
    .nav__slide {
      width: 22px;
      height: 22px;
    }
  }
  .nav__slide:hover:after {
    -webkit-transform: translate(-50%, -50%) scale(1, 1);
            transform: translate(-50%, -50%) scale(1, 1);
    opacity: 1;
  }
  .nav__slide:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0, 0);
            transform: translate(-50%, -50%) scale(0, 0);
    width: 75%;
    height: 75%;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0;
    -webkit-transition: 300ms;
    transition: 300ms;
  }
  .nav__slide--1 {
    margin-left: 10px;
  }
  
  .nav-active:after {
    -webkit-transform: translate(-50%, -50%) scale(1, 1);
            transform: translate(-50%, -50%) scale(1, 1);
    opacity: 1;
  }
  
  .side-nav {
    position: absolute;
    width: 10%;
    height: 100%;
    top: 0;
    z-index: 20;
    cursor: pointer;
    opacity: 0;
    -webkit-transition: 300ms;
    transition: 300ms;
  }
  
  .side-nav:hover {
    opacity: .1;
  }
  .side-nav--right {
    right: 0;
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(#eed7ff));
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #eed7ff 100%);
  }
  
  .side-nav--left {
    left: 0;
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), to(#eed7ff));
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, #eed7ff 100%);
  }
  
  .slide__text {
    color: #f0a800;
  }
  
  p.textmap {
    z-index: 99;
    margin: 0;
    font-size: 35px;
    text-align: center;
    color: #fff;
    position: absolute;
    width: 100%;
    margin-top: -10%;
  }
  
  p.subtextmap {
    z-index: 99;
    font-size: 26px;
    text-align: center;
    position: absolute;
    width: 100%;
    color: #f0a800;
    margin-top: -5%;
  }
  
  
  
  
  
  .controls {
    width: 900px;
    margin: 0 auto 60px auto;
    font-size: 0;
    text-align: center;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 99;
    position: absolute;
    width: 100%;
    margin-top: 10%;
  }
  .controls a {
    display: inline-block;
    background: #051917;
    margin: 10px;
    padding: 15px 40px;
    font: 16px sans-serif;
    color: #f49f16;
    text-decoration: none;
    border-radius: 10px;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    font-weight: bold;
  }
  .controls a:hover {
    background: #f49f16;
    color: #051917;
  }
  
  
  #mapanimation {
    position: relative;
    width: 1000px;
    margin: 0 auto;
    -webkit-backface-visibility: hidden;
  }
  
  #ground {
    background: url("../img/mapa_V-2 copia.png");
  }
  
  .layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 1000px;
    height: 969px;
    display: inline-block;
    opacity: 1;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  @media screen and (max-width: 1023px){
    .layer {
        display: none;
    }
  }

  @media screen and (min-width: 1024px){
    .layer {
    top: inherit;
    left: inherit;
    margin: auto;
    }
  }

  .layer .pin:nth-child(1) {
    -webkit-animation-delay: 0.08333s;
    -moz-animation-delay: 0.08333s;
    -o-animation-delay: 0.08333s;
    animation-delay: 0.08333s;
  }
  .layer .pin:nth-child(2) {
    -webkit-animation-delay: 0.16667s;
    -moz-animation-delay: 0.16667s;
    -o-animation-delay: 0.16667s;
    animation-delay: 0.16667s;
  }
  .layer .pin:nth-child(3) {
    -webkit-animation-delay: 0.25s;
    -moz-animation-delay: 0.25s;
    -o-animation-delay: 0.25s;
    animation-delay: 0.25s;
  }
  .layer .pin:nth-child(4) {
    -webkit-animation-delay: 0.33333s;
    -moz-animation-delay: 0.33333s;
    -o-animation-delay: 0.33333s;
    animation-delay: 0.33333s;
  }
  .layer .pin:nth-child(5) {
    -webkit-animation-delay: 0.41667s;
    -moz-animation-delay: 0.41667s;
    -o-animation-delay: 0.41667s;
    animation-delay: 0.41667s;
  }
  .layer .pin:nth-child(6) {
    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    -o-animation-delay: 0.5s;
    animation-delay: 0.5s;
  }
  .layer .pin:nth-child(7) {
    -webkit-animation-delay: 0.58333s;
    -moz-animation-delay: 0.58333s;
    -o-animation-delay: 0.58333s;
    animation-delay: 0.58333s;
  }
  .layer .pin:nth-child(8) {
    -webkit-animation-delay: 0.66667s;
    -moz-animation-delay: 0.66667s;
    -o-animation-delay: 0.66667s;
    animation-delay: 0.66667s;
  }
  .layer .pin:nth-child(9) {
    -webkit-animation-delay: 0.75s;
    -moz-animation-delay: 0.75s;
    -o-animation-delay: 0.75s;
    animation-delay: 0.75s;
  }
  .layer .pin:nth-child(10) {
    -webkit-animation-delay: 0.83333s;
    -moz-animation-delay: 0.83333s;
    -o-animation-delay: 0.83333s;
    animation-delay: 0.83333s;
  }
  .layer .pin:nth-child(11) {
    -webkit-animation-delay: 0.91667s;
    -moz-animation-delay: 0.91667s;
    -o-animation-delay: 0.91667s;
    animation-delay: 0.91667s;
  }
  .layer .pin:nth-child(12) {
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -o-animation-delay: 1s;
    animation-delay: 1s;
  }
  .layer .pin:nth-child(13) {
    -webkit-animation-delay: 1.08333s;
    -moz-animation-delay: 1.08333s;
    -o-animation-delay: 1.08333s;
    animation-delay: 1.08333s;
  }
  .layer .pin:nth-child(14) {
    -webkit-animation-delay: 1.16667s;
    -moz-animation-delay: 1.16667s;
    -o-animation-delay: 1.16667s;
    animation-delay: 1.16667s;
  }
  .layer.top {
    z-index: 10;
  }
  
  .pin {
    position: absolute;
    z-index: 1;
    top: 0px;
    left: 0px;
    z-index: 10;
    width: 39px;
    height: 25px;
    font-size: 12px;
    opacity: 0;
  }
  .pin.top {
    z-index: 10;
  }
  .pin:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 39px;
    height: 39px;
    background: url("../img/Sintitulo04copia.png") no-repeat center top;
  }
  .pin.drop-it {
    -webkit-animation: pin-drop 0.6s ease forwards;
    -moz-animation: pin-drop 0.6s ease forwards;
    -o-animation: pin-drop 0.6s ease forwards;
    animation: pin-drop 0.6s ease forwards;
  }
  
  @-webkit-keyframes pin-drop {
    0% {
      -moz-transform: translateY(-150px);
      -ms-transform: translateY(-150px);
      -webkit-transform: translateY(-150px);
      transform: translateY(-150px);
      opacity: 0;
    }
    30%, 50%, 80% {
      -moz-transform: translateY(0px);
      -ms-transform: translateY(0px);
      -webkit-transform: translateY(0px);
      transform: translateY(0px);
    }
    40% {
      -moz-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
      -webkit-transform: translateY(-5px);
      transform: translateY(-5px);
    }
    60% {
      -moz-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
      -webkit-transform: translateY(-1px);
      transform: translateY(-1px);
    }
    100% {
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -webkit-transform: translateY(0);
      transform: translateY(0);
      opacity: 1;
    }
  }
  @-moz-keyframes pin-drop {
    0% {
      -moz-transform: translateY(-150px);
      -ms-transform: translateY(-150px);
      -webkit-transform: translateY(-150px);
      transform: translateY(-150px);
      opacity: 0;
    }
    30%, 50%, 80%, 100% {
      -moz-transform: translateY(0px);
      -ms-transform: translateY(0px);
      -webkit-transform: translateY(0px);
      transform: translateY(0px);
    }
    40% {
      -moz-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
      -webkit-transform: translateY(-5px);
      transform: translateY(-5px);
    }
    60% {
      -moz-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
      -webkit-transform: translateY(-1px);
      transform: translateY(-1px);
    }
    100% {
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -webkit-transform: translateY(0);
      transform: translateY(0);
      opacity: 1;
    }
  }
  @-o-keyframes pin-drop {
    0% {
      -moz-transform: translateY(-150px);
      -ms-transform: translateY(-150px);
      -webkit-transform: translateY(-150px);
      transform: translateY(-150px);
      opacity: 0;
    }
    30%, 50%, 80%, 100% {
      -moz-transform: translateY(0px);
      -ms-transform: translateY(0px);
      -webkit-transform: translateY(0px);
      transform: translateY(0px);
    }
    40% {
      -moz-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
      -webkit-transform: translateY(-5px);
      transform: translateY(-5px);
    }
    60% {
      -moz-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
      -webkit-transform: translateY(-1px);
      transform: translateY(-1px);
    }
    100% {
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -webkit-transform: translateY(0);
      transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes pin-drop {
    0% {
      -moz-transform: translateY(-150px);
      -ms-transform: translateY(-150px);
      -webkit-transform: translateY(-150px);
      transform: translateY(-150px);
      opacity: 0;
    }
    30%, 50%, 80%, 100% {
      -moz-transform: translateY(0px);
      -ms-transform: translateY(0px);
      -webkit-transform: translateY(0px);
      transform: translateY(0px);
    }
    40% {
      -moz-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
      -webkit-transform: translateY(-5px);
      transform: translateY(-5px);
    }
    60% {
      -moz-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
      -webkit-transform: translateY(-1px);
      transform: translateY(-1px);
    }
    100% {
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -webkit-transform: translateY(0);
      transform: translateY(0);
      opacity: 1;
    }
  }
  
 
  
 .tooltiptext {
    visibility: hidden;
      width: 120px;
      background-color: #051917;
      color: white;
      text-align: center;
      border-radius: 6px;
      padding: 5px;
      display: block;
      margin-left: -43px;
      margin-top: 39px;
      font-size: 16px;
  }
  
.tooltiptext:hover {
      color: #f0a800;
}
 
 
  
  .pin:hover .tooltiptext {
    visibility: visible;
  }
  
  img.img-fluid.summary {
    width: 100%;
    margin-top: 11%;
  }
  
  button.btn.btn-warning.summary {
    background-color: #051917;
    border: none;
  }
  
  img.flagcountry.summary {
    height: 30px !important;
    margin-bottom: 0px !important;
  }
  
  .uk-position-relative.uk-visible-toggle.uk-light {
    margin-top: 5%;
  }
  
  .slide__letter.slide--5__letter {
    background: rgba(30, 53, 50, 0.83);
  }
  .slide__letter.slide--4__letter {
    background: rgba(30, 53, 50, 0.83);
  }
  .slide__letter.slide--3__letter {
    background: rgba(30, 53, 50, 0.83);
  }
  .slide__letter.slide--2__letter {
    background: rgba(30, 53, 50, 0.83);
  }
  .slide__letter.slide--1__letter {
    background: rgba(30, 53, 50, 0.83);
  }
  
  ul.nav {
    position: sticky;
    width: 3%;
    float: right;
    margin-top: -37%;
  }
  
  ul.nav li {
    margin-bottom: 15px;
  }
  
  @media only screen and (max-width: 600px) {
    ul.nav {
      position: absolute;
      top: 90%;
      width: auto;
    }
  }
  
  
  
  
  .containercountry {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    margin-top: 13%;
  }
  .thumbnailscountry {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    line-height: 0;
    margin-top: 0%;
    list-style: none;
  }
  .thumbnailscountry li {
    -webkit-box-flex: 1;
    flex: auto;
  }
  .thumbnailscountry a {
    display: block;
  }
  .thumbnailscountry img {
    width: 30vmin;
    height: 20vmin;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
  }
  .slidescountry {
    overflow: hidden;
    width: 75vmin;
    height: 100vmin;
    list-style: none;
  }
  .slidescountry li {
    width: 75vmin;
    height: 100vmin;
    position: absolute;
    z-index: 1;
  }
  .slidescountry img {
    height: 100vmin;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
  }
  .slidescountry li:target {
    z-index: 3;
    -webkit-animation: slide 1s 1;
  }
  .slidescountry li:not(:target) {
    -webkit-animation: hidden 1s 1;
  }
  @-webkit-keyframes slide {
    0% {
      -webkit-transform: translateY(-100%);
      transform: translateY(-100%);
   }
    100% {
      -webkit-transform: translateY(0%);
      transform: translateY(0%);
   }
  }
  @keyframes slide {
    0% {
      -webkit-transform: translateY(-100%);
      transform: translateY(-100%);
   }
    100% {
      -webkit-transform: translateY(0%);
      transform: translateY(0%);
   }
  }
  @-webkit-keyframes hidden {
    0% {
      z-index: 2;
   }
    100% {
      z-index: 2;
   }
  }
  @keyframes hidden {
    0% {
      z-index: 2;
   }
    100% {
      z-index: 2;
   }
  }
  
  
  
  a.btn.homeback i.ion-ios-arrow-right {
    font-size: 27px;
  }
  
  a.btn.homeback {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    line-height: 30px;
    background-color: #fff !important;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    margin-top: 18%;
    margin-left: 5px;
  }
  a.btn.homeback:hover {
    box-shadow: 0px 15px 20px rgba(30, 53, 50, 0.4);
    color: #000;
  }
  
  img.flagcountry.summary {
    margin-top: 0px !important;
  }
  
  p.summarypara {
    font-size: 14px;
  }
  
  h4.uk-card-title.titulosummaryp {
    text-align: center;
    color: #051917;
  }
  
  .slider-photo .uk-slider-items .uk-card-default .uk-card-title{
      color: white;
      font-size: 0px;
  }
  
  li.bestr.bestr {
    color: #1e3532;
    text-transform: uppercase;
    font-weight: bold;
    list-style: none;
  }
  
  li.bestr {
    text-align: center;
  }
  
  li.hightin.hightin {
    color: #1e3532;
    text-transform: uppercase;
    font-weight: bold;
    list-style: none;
  }
  
  li.hightin {
    text-align: center;
  }
  
  img.imgbestr {
    height: 80px;
    display: inline !important;
  }
  
  img.imghightin {
    height: 80px;
    display: inline !important;
  }
  
  .uk-card.uk-card-default.summarytextdesc {
    padding-left: 30px;
    padding-right: 30px;
  }
  
  .row.iconssummary {
    text-align: center;
  }
  
  a.btn.btn-sq-sm.btn-dark {
    margin-right: 15px;
    background-color: #051917;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  }
  
  a.btn.btn-sq-sm.btn-dark:hover {
    background-color: #f49f16;
  }
  
  /* Main carousel style */
  .carousel {
    width: 600px;
  }
  
  /* Indicators list style */
  .article-slide .carousel-indicators {
    bottom: 0;
    left: 0;
    margin-left: 5px;
    width: 100%;
  }
  /* Indicators list style */
  .article-slide .carousel-indicators li {
    border: medium none;
    border-radius: 0;
    float: left;
    height: 54px;
    margin-bottom: 5px;
    margin-left: 0;
    margin-right: 5px !important;
    margin-top: 0;
    width: 100px;
  }
  /* Indicators images style */
  .article-slide .carousel-indicators img {
    border: 2px solid #FFFFFF;
    float: left;
    height: 54px;
    left: 0;
    width: 100px;
  }
  /* Indicators active image style */
  .article-slide .carousel-indicators .active img {
    border: 2px solid #428BCA;
    opacity: 0.7;
  }
  
  
  @media only screen 
      and (max-width:1023px) {
        .controls {
          margin-top: 32% !important;
        }
        .safeway {
          top: 11% !important;
          left: 43% !important;
        }
        .motor-vehicle {
          left: 12%;
          top: 20%;
        }
        .hilton-garden {
              left: 50% !important;
              top: 27%;
        }
        .pd-brown {
              left: 70% !important;
              top: 23%;
        }
        .bostons {
          top: 23% !important;
          left: 30% !important;
        }
        .charles-towne-plaza {
          top: 31% !important;
          left: 26% !important;
        }
        .red-hot-blue {
          top: 36% !important;
          left: 21% !important;
        }
        .giant-food {
          top: 40% !important;
          left: 66% !important;
        }
        .target {
          top: 36% !important;
          left: 35% !important;
        }
        .doolittle {
          top: 36% !important;
          left: 5% !important;
        }
        .charles-towne-center {
          top: 49% !important;
          left: 35% !important;
        }
       }
  
/* tablet */
  @media screen and (min-width: 1024px) { 
    .safeway {
      top: 280px;
      left: 500px;
    }
    .motor-vehicle {
      top: 370px;
      left: 250px;
    }
    .pd-brown {
      top: 400px;
      left: 700px;
    }
    .charles-towne-center {
      top: 800px;
      left: 400px;
    }
    .red-hot-blue {
      top: 550px;
      left: 300px;
    }
    .target {
      top: 540px;
      left: 400px;
    }
    .giant-food {
      top: 500px;
      left: 580px;
    }
    .bostons {
      top: 420px;
      left: 330px;    
    }
    .hilton-garden {
      top: 395px;
      left: 580px;    
    }
    .charles-towne-plaza {
      top: 490px;
      left: 280px;
      z-index: 22 !important;
    }
    .doolittle {
      top: 490px;
      left: 130px;
    }
  }


  .row-gallery {
    margin: 10px;
  }

  .row-gallery img {
    object-fit: cover;
    height: 100%
  }

  .sliderpais{
    display: flex;
    justify-content: center;
  }