@font-face {
    font-family: 'Open-Sans';
    src: url('../fonts/OpenSans-Regular.ttf') format('truetype');
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open-Sans", sans-serif;
    color: #000000;
}

a {
    text-decoration: none;
    color: #ED2C2B;
}

    a:hover {
        color: #FF5757;
        text-decoration: none;
    }

h1 {
    font-size: 36px;
}


h2 {
    font-size: 28px;
}


h3 {
    font-size: 20px;
}

/*h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Belleza-Regular", sans-serif;
}*/

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: #ED1C24;
    padding: 10px 0;
    font-size: 14px;
}

    #topbar .social-links a {
        /*font-family: "Belleza", sans-serif;*/
        font-size: 18px;
        font-weight: 500;
        color: #fff;
        line-height: 0;
        transition: 0.3s;
        margin: 0px 20px 0px;
    }

        #topbar .social-links a:hover {
            font-weight: bold;
            color: white;
        }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: white;
  transition: all 0.5s;
  z-index: 997;
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

#header.header-inner-pages {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#header .logo img {
  max-height: 90px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.nav {
    margin-bottom: 0;
}

    .nav > li.dropdown.open {
        position: static;
    }

        .nav > li.dropdown.open .dropdown-menu {
            display: table;
            min-width: auto;
            width: 100% !important;
            text-align: center;
            left: 0;
            right: 0;
        }

.dropdown-menu > li {
    display: table-cell;
}

/*.nav-mega {
    width: 100%;
}*/

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 22px;
  font-weight: 700;
  color: #eb2d2d;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #e67777;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
  /*height: calc(50% - 33.5px);
  min-width:  calc(100vh * 1.3);*/
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 400;
  background: white;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #d9232d;
  font-weight: bold;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #556270;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(63, 73, 83, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #556270;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #d9232d;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #d9232d;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.5);
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(30, 35, 40, 0.1);
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

#hero .container {
  text-align: center;
}

#hero h2 {
  color: #000;
  margin-bottom: 20px;
  font-size: 38px;
  font-weight: 700;
}

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  /*background: none;*/
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.7);
  color: rgba(255, 255, 255, 0.9);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #d9232d;
}

#hero .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #ED1C24;
}

    #hero .btn-get-started:hover {
        background: #FF5757;
    }

@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }

  #hero .carousel-container {
    top: 8px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg,
.services .icon-box {
  background-color: #d9d9d9;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
section.about {
    padding: 0;
}

    section.about .container {
        width: 100%;
        max-width: 100%;
        position: relative;
        display: inline-block;
        text-align: center;
    }

.about .content .titleAbout {
    font-size: 48px;
}

/*.about .content img {
    height: 100%;
    width: 100%;
}

.about .content .texto-encima {
    position: absolute;
    top: 15%;
    left: 14%;
    width: 72%;
}*/

    .about .content .texto-encima h1 {
        /*font-family: "cerebri-sans";*/
        color: #000;
        font-size: 22px;
        /*font-weight: 600;*/
    }

.about .content div p {
    /*font-family: "cerebri-sans";*/
    color: #ED2C2B;
    font-size: 22px;
    /*font-weight: 400;*/
}

.about .content ul {
    padding-left: 15%;
}

    .about .content ul li {
        /*font-family: "cerebri-sans";*/
        font-size: 28px;
        float: left;
    }

.about .content label {
    color: #ED2C2B;
    font-size: 28px;
    /*font-weight: 400;*/
}

.about .content a {
    padding-left: 15%;
    float: left;
    /*font-family: "cerebri-sans";*/
    color: #ED2C2B;
    font-size: 38px;
    font-weight: 500;
}

.about .content .certificados img {
    max-width: 25%;
}


@media (max-width: 1250px) {
    .about .content .texto-encima h1 {
        font-size: 22px;
    }

    .about .content div p {
        font-size: 22px;
    }

    .about .content a {
        font-size: 28px;
    }

    .about .content label {
        font-size: 28px;
    }
}

@media (max-width: 992px) {

    .about .content .titleAbout {
        font-size: 44px;
    }

    .about .content .texto-encima h1 {
        font-size: 18px;
    }

    .about .content div p {
        font-size: 22px;
    }

    .about .content a {
        font-size: 24px;
    }

    .about .content label {
        font-size: 24px;
    }
}

    @media (max-width: 844px) {
        .about .content .titleAbout {
            font-size: 38px;
        }

        .about .content .texto-encima h1 {
            font-size: 16px;
        }

        .about .content ul li {
            font-size: 28px;
        }

        .about .content div p {
            font-size: 18px;
        }

        .about .content a {
            font-size: 18px;
        }

        .about .content label {
            font-size: 18px;
        }
    }

    @media (max-width: 790px) {
        .about .content .titleAbout {
            font-size: 32px;
        }

        .about .content .texto-encima h1 {
            font-size: 14px;
        }
    }

    @media (max-width: 768px) {
        .about .content .titleAbout {
            font-size: 32px;
        }

        .about .content .texto-encima h1 {
            font-size: 12px;
        }

        .about .content div p {
            font-size: 14px;
        }

        .about .content a {
            font-size: 14px;
        }

        .about .content label {
            font-size: 14px;
        }

    }

@media (max-width: 640px) {
    .about .content .texto-encima h1 {
        font-size: 12px;
    }

    .about .content .texto-encima {
        top: 22%;
    }

    .about .content div p {
        font-size: 12px;
    }

}

    @media (max-width: 500px) {
        .about .content .texto-encima h1 {
            font-size: 10px;
        }

    }

/*--------------------------------------------------------------
# Statistics
--------------------------------------------------------------*/

.statistics-bg {
    background-color: #ED1C24;
}

    .statistics {
        padding: 15px 0;
        text-align: center;
    }

        .statistics h3 {
            color: #ffffff;
            margin-top: 15px;
            margin-bottom: 15px;
            font-weight: 700;
            font-size: 38px;
        }

        .statistics p {
            color: #fff;
            font-size: 18px;
            font-weight: 700;
        }

        .statistics img {
            max-width: 90%;
            /*transition: all 0.4s ease-in-out;*/
            display: inline-block;
            padding: 10px 0;
        }

            /*.statistics img:hover {
                filter: none;
                transform: scale(1.15);
            }*/

    @media (max-width: 768px) {
        .statistics img {
            max-width: 40%;
        }
    }

    /*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

    section.services {
        padding: 0;
    }

        section.services .container {
            padding: 0;
            margin: 0;
            width: 100%;
            max-width: 100%;
        }

            section.services .container .content .text-quality-service {
                padding: 0 20px;
                margin: 0 20px;
            }

.services .content .title-service {
    font-size: 48px;
}

.services .content h2 {
    font-size: 22px;
}

.services .content .title-quality-service {
    /*color: #fff;*/
    font-size: 48px;
}

.services .content .subtitle-quality-service {
    font-size: 22px;
}

    .services .content img {
        height: 100%;
        width: 100%;
    }

/*.servicesoptions .content {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .servicesoptions .content img {
            height: 100%;
            width: 100%;
        }
        */
        .servicesoptions .content h2 {
            font-size: 18px;
            /*color: #444444;*/
            /*text-decoration: underline !important;*/
        }


.services .content .title-logistic-transportation-service {
    /*color: #fff;*/
    font-size: 48px;
}

.services .content .subtitle-logistic-transportation-service {
    font-size: 22px;
}

.servicesoptions .content .title-img-logistic-transportation {
    font-size: 24px;
}

.services .content .title-warehouse-service {
    color: #fff;
    font-size: 48px;
}

.services .content .subtitle-warehouse-service {
    font-size: 28px;
}

.servicesoptions .content .title-img-warehouse-service {
    font-size: 18px;
}
    .title {
        padding: 60px 0;
        overflow: hidden;
    }

    .title-bg {
        background-color: #403F3F;
    }

@media (min-width: 750px) and (max-width: 1250px) {

    .servicesoptions .content h2 {
        font-size: 26px;
    }

    .servicesoptions .content .title-img-logistic-transportation {
        font-size: 18px;
    }

    .servicesoptions .content .title-img-warehouse-service {
        font-size: 14px;
    }

    .servicesoptions .content .title-img-quality-service {
        font-size: 24px;
    }
}

    /*--------------------------------------------------------------
# Coverage
--------------------------------------------------------------*/

    section.coverage {
        padding: 0;
        margin: 0;
    }

        section.coverage .container {
            padding: 0;
            margin: 0;
            width: 100%;
            max-width: 100%;
        }

            section.coverage .container img {
                width: 100%;
            }

    .coverage .container {
        position: relative;
        display: inline-block;
        text-align: center;
    }

        .coverage .container .texto-encima {
            position: absolute;
            bottom: 20%;
            left: 10%;
        }

    .container .texto-encima h1 {
        /*font-family: "cerebri-sans";*/
        color: #EB2D2D;
        margin-bottom: 30px;
        font-size: 38px;
        /*font-weight: 700;*/
    }

    @media (max-width: 768px) {
        .coverage .container .texto-encima h1 {
            font-size: 28px;
        }
    }

    /*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
    section.contactanos {
        padding: 0;
    }

        section.contactanos .container {
            padding: 0;
            margin: 0;
            width: 100%;
            max-width: 100%;
        }

    div.tituloContactanos {
        line-height: 100px;
    }

    .tituloContactanos h2 {
        font-size: 38px;
        margin: 50% 0;
    }

    .contactanos .content h3 {
        font-weight: 500;
        line-height: 32px;
        font-size: 24px;
    }

    .contactanos .content ul {
        list-style: none;
        padding: 0;
    }

        .contactanos .content ul li {
            padding: 10px 0 0 28px;
            position: relative;
        }

        .contactanos .content ul i {
            left: 0;
            top: 7px;
            position: absolute;
            font-size: 20px;
            color: #d9232d;
        }

.contactanos .content img {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

    .contactanos .content p:last-child {
        margin-bottom: 0;
    }

    .contactanos .content img {
        height: 100vh;
        width: 100%;
    }

    .contact .requerido {
        color: red;
    }

    @-webkit-keyframes animate-loading {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    @keyframes animate-loading {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }


.contact .container h1 {
    /*font-weight: 500;
    line-height: 32px;*/
    font-size: 28px;
}

    /*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
    #footer {
        background: #000000;
        padding: 0 0 30px 0;
        color: #fff;
        font-size: 14px;
    }

        #footer .footer-top {
            background: #000000;
            padding: 60px 0 30px 0;
        }

            #footer .footer-top .footer-info {
                margin-bottom: 30px;
            }

                /*#footer .footer-top .footer-info h3 {
                    font-size: 24px;
                    margin: 0 0 20px 0;
                    padding: 2px 0 2px 0;
                    line-height: 1;
                    font-weight: 700;
                }*/

                #footer .footer-top .footer-info p {
                    font-size: 12px;
                    line-height: 24px;
                    margin-bottom: 0;
                    /*font-family: "Raleway", sans-serif;*/
                    color: #fff;
                }

            #footer .footer-top .social-links a {
                font-size: 45px;
                display: inline-block;
                background: #ED2C2B;
                color: #fff;
                line-height: 1;
                margin: 0px 15px 0px;
                border-radius: 50%;
                text-align: center;
                width: 45px;
                height: 45px;
                transition: 0.3s;
                vertical-align: middle;
            }

                /*#footer .footer-top .social-links .facebook:hover {
                    background: #3B5998;
                    color: #fff;
                    text-decoration: none;
                }

                #footer .footer-top .social-links .whatsapp:hover {
                    background: #03C100;
                    color: #fff;
                    text-decoration: none;
                }

                #footer .footer-top .social-links .maps:hover {
                    background: #d9232d;
                    color: #fff;
                    text-decoration: none;
                }*/

            #footer .footer-top h4 {
                font-size: 16px;
                font-weight: 600;
                color: #fff;
                position: relative;
                padding-bottom: 12px;
            }

            #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: 2px;
                        color: rgba(255, 255, 255, 0.6);
                        font-size: 18px;
                        line-height: 1;
                    }

                    #footer .footer-top .footer-links ul li {
                        padding: 10px 0;
                        display: flex;
                        align-items: center;
                    }

                        #footer .footer-top .footer-links ul li:first-child {
                            padding-top: 0;
                        }

                    #footer .footer-top .footer-links ul a {
                        font-size: 14px;
                        color: rgba(255, 255, 255, 0.9);
                        transition: 0.3s;
                        display: inline-block;
                        line-height: 1;
                    }

                        #footer .footer-top .footer-links ul a:hover {
                            color: white;
                        }

                    #footer .footer-top .footer-links ul label {
                        font-size: 14px;
                    }

    /*--------------------------------------------------------------
# LoginPartial
--------------------------------------------------------------*/
    section.loginpartial {
        padding: 0;
    }

        section.loginpartial .container {
            padding: 0;
            margin: 0;
            width: 100%;
            max-width: 100%;
        }

    .loginpartial .content img {
        height: 100%;
        width: 100%;
    }

    section.loginsections {
        padding: 60px 0 150px 0;
    }

        section.loginsections .container {
            width: 100%;
            height: 100%;
        }

    .loginsections .content img {
        height: 100%;
        width: 100%;
    }

    /*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/
    section.login {
        padding: 0;
    }

        section.login .container {
            padding: 0;
            margin: 0;
            width: 100%;
            max-width: 100%;
        }

            section.login .container .content-login {
                padding-left: 45px;
            }

        section.login .content img {
            height: 100vh;
            width: 100%;
        }

    .login .container .content .login-title img {
        max-height: 195px;
    }

    .login .container .content .login-title h1 {
        /*font-family: "Cerebri Sans", sans-serif;*/
        font-size: 38px;
        font-weight: 700;
    }

    /*--------------------------------------------------------------
# Policy
--------------------------------------------------------------*/

    section.policy {
        padding: 0;
    }

        section.policy .container {
            padding: 0;
            margin: 0;
            width: 100%;
            max-width: 100%;
        }

    .policy .content img {
        height: 100%;
        width: 100%;
    }

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
    padding: 15px 0;
    text-align: center;
}

    .clients .section-title h2 {
        /*font-family: "cerebri-sans", sans-serif;*/
        font-size: 38px;
        font-weight: 700;
        color: #2E2A2C;
    }

    .clients img {
        max-width: 75%;
        transition: all 0.4s ease-in-out;
        display: inline-block;
        padding: 15px 0;
        /*filter: grayscale(100);*/
    }

        .clients img:hover {
            filter: none;
            transform: scale(1.15);
        }

@media (max-width: 768px) {
    .clients img {
        max-width: 50%;
    }
}

/*--------------------------------------------------------------
# Vacancies
--------------------------------------------------------------*/

section.vacancies {
    padding: 0;
}

    section.vacancies .container {
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }

.vacancies .content .title-vacancies {
    font-size: 48px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
    background-color: var(--surface-color);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    box-sizing: content-box;
    padding: 30px;
    margin: 30px 15px;
    position: relative;
    height: 100%;
    border-radius: 10px;
}

    .testimonials .testimonial-item .testimonial-img {
        /*width: 90px;*/
        height: 100%;
        width: 100%;
        /*border-radius: 50px;*/
        margin-right: 15px;
    }

    .testimonials .testimonial-item h3 {
        font-size: 18px;
        /*font-weight: bold;*/
        margin: 10px 0 5px 0;
        text-align: center;
    }

    /*.testimonials .testimonial-item h4 {
        font-size: 14px;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        margin: 0;
    }*/
/*
    .testimonials .testimonial-item .stars {
        margin: 10px 0;
    }

        .testimonials .testimonial-item .stars i {
            color: #ffc107;
            margin: 0 1px;
        }

    .testimonials .testimonial-item .quote-icon-left,
    .testimonials .testimonial-item .quote-icon-right {
        color: color-mix(in srgb, var(--accent-color), transparent 50%);
        font-size: 26px;
        line-height: 0;
    }

    .testimonials .testimonial-item .quote-icon-left {
        display: inline-block;
        left: -5px;
        position: relative;
    }

    .testimonials .testimonial-item .quote-icon-right {
        display: inline-block;
        right: -5px;
        position: relative;
        top: 10px;
        transform: scale(-1, -1);
    }

    .testimonials .testimonial-item p {
        font-style: italic;
        margin: 15px auto 15px auto;
    }
*/
.testimonials .swiper-wrapper {
    height: auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

    .testimonials .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        /*background-color: color-mix(in srgb, var(--default-color), transparent 85%);*/
        background-color: #FF5757;
        opacity: 1;
    }

    .testimonials .swiper-pagination .swiper-pagination-bullet-active {
        /*background-color: var(--accent-color);*/
        background-color: #ff8080;
    }

@media (max-width: 767px) {
    .testimonials .testimonial-wrap {
        padding-left: 0;
    }

    .testimonials .testimonial-item {
        padding: 30px;
        margin: 15px;
    }

        .testimonials .testimonial-item .testimonial-img {
            position: static;
            left: auto;
        }
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: #ED2C2B !important;
    /*width: 40px;
    height: 40px;*/
    border-radius: 25px;
    transition: all 0.4s;
}

    /*.scroll-top i {
        font-size: 24px;
        color: var(--contrast-color);
        line-height: 0;
    }*/

    .scroll-top:hover {
        background-color: #FF5757;
        /*color: var(--contrast-color);*/
    }

    .scroll-top.active {
        visibility: visible;
        opacity: 1;
    }
