
/*------------------------------------*\
    General
\*------------------------------------*/


/* -- typography -- */

body {
    font-family: 'Work Sans';
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    color: #868F9B;
        -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    /*margin-top: 0px;*/
    margin-bottom: 20px;
    color: #10161A;
        -webkit-font-smoothing: antialiased;
}

h1 {
    font-size: 54px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 21px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

a {
    color: white;
    text-decoration: none;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
}

a:hover, a:focus {
    text-decoration: none;
    outline: none;
    opacity: 0.8;
    color: white;
}




section {
    margin-top: 65px;
    margin-bottom: 65px;
    position: relative;
}

.main-color {
    color: #6195FF;
}
.title {
font-size: 41px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: -0.2px;
    /* text-align: left; */
  color: #ffffff;


}
.white-text {
    width:  65%;
    font-size: 24px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: 0.8px;
    text-align: center;
    color: #ffffff;
    margin-left: auto;
    margin-right: auto;
    -webkit-font-smoothing: antialiased;
    line-height: 30px;
        margin-top: -15px;
}

::-moz-selection {
    background-color: #6195FF;
    color: #FFF;
}

::selection {
    background-color: #6195FF;
    color: #FFF;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none
}

/* modification samuel */
.info-wrap-modification-S{
    display: flex!important;
    padding: 1.1rem 0;
    background-color: #f8f8f8;
    color: #4d4d4c; 
}

.info-wrap-text-alig-star{
    text-align: start;
    font-family: 'Work Sans', sans-serif;
    font-size: 1.9rem;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: -0.2px;
    color: #4d4d4c;
}

.info-wrap-font-price{
    text-align: center;
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    color: red;
    font-weight: bold;
}

.info-wrap-padding-S{
    padding:10px 20px;
}

/* .info-wrap-modification-S div{
    border-right: solid 2px #979797;
} */
.info-wrap-modification-S div:last-of-type{
    border-right: none;
}

.pic-s-margin-0-S{
    margin-bottom:0!important;
}

/* -- section  -- */

.section {
    position: relative;
}

.md-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}

.sm-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}


/* --  background section  -- */

.bg-grey {
    background-color: #ededed;
    /*border-top: 1px solid #EEE;
    border-bottom: 1px solid #EEE;*/
}

.bg-dark {
    background-color: #1C1D21 !important;
}


.bg-general {
    background-color: #db2a1b;
}

/* --  background image section  -- */

.bg-img {
     position: relative;
         top: 90px;


    z-index: -1;
    background-position: center;
    background-size: cover;
    /* background-attachment: fixed; */
    background-repeat: no-repeat;

}
.bg-img-2 {
     position: relative;
    top: 90px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
@media only screen and (max-width: 1024px) and (min-width: 768px){
    .bg-img-2 {
       top: 65px;
   }

   #gen_nom{
       margin: 0!important;
   }
   .margin-top-2-samuel{
       margin-top: 20px;
   }

   .margin-0-samuel{
       margin: 0!important;
   }

   .fix-m{
       margin-top: 30px;
   }

   .mb-row {
       margin: 0!important;
   }
}

.bg-img .overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: .8;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.94), transparent);
    height: 142px;
}

.overlay2 {
        position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: .8;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), transparent);
}


/* --  section header  -- */

.section-header {
    position: relative;
    margin-bottom: 60px;
}

.section-header .title {
    text-transform: capitalize;
}



.text-center .title:after {
    margin: 20px auto 0px;
}

/* --  Input  -- */

input[type="text"], input[type="email"], input[type="password"], input[type="number"], input[type="date"], input[type="url"], input[type="tel"], textarea {
    height: 40px;
    width: 100%;
    border: none;
      background: #F4F4F4;
    border-bottom: 2px solid #EEE;
    color: #354052;
    padding: 0px 10px;
    opacity: 0.5;
    -webkit-transition: 0.2s border-color, 0.2s opacity;
    transition: 0.2s border-color, 0.2s opacity;
}

textarea {
    padding: 10px 10px;
    min-height: 80px;
    resize: vertical;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, input[type="number"]:focus, input[type="date"]:focus, input[type="url"]:focus, input[type="tel"]:focus, textarea:focus {
    border-color: #6195FF;
    opacity: 1;
}

/* --  Buttons  -- */



/*------------------------------------*\
    Logo
\*------------------------------------*/

.navbar-brand {
    padding: 0;
}

@media only screen and (max-width: 1024px) and (min-width: 768px){
    .navbar-brand{
        display: flex;
        align-items: center;
    }   
}

    .navbar>.container .navbar-brand, .navbar>.container-fluid .navbar-brand {
        margin-left: 0!important;
}

.navbar-brand .logo, .navbar-brand .logo-alt {
    max-height: 50px;
    display: block;
}

@media only screen and (max-width: 1024px) and (min-width: 768px){
    .navbar-brand .logo, .navbar-brand .logo-alt {
        max-height: 20px;
        display: block;
    }    
}

#nav:not(.nav-transparent):not(.fixed-nav) .navbar-brand .logo-alt {
    display: none;
}

#nav.nav-transparent:not(.fixed-nav) .navbar-brand .logo {
    display: none;
}

#nav.fixed-nav .navbar-brand .logo-alt {
    display: none;
}

@media only screen and (max-width: 767px) {

    
    #nav.nav-transparent .navbar-brand .logo-alt {
        display: none !important;
    }
    #nav.nav-transparent .navbar-brand .logo {
        display: block !important;
    }
}


/*------------------------------------*\
    Navigation
\*------------------------------------*/

#nav {
    padding: 10px 0px;
    background: #FFF;
    -webkit-transition: 0.2s padding;
    transition: 0.2s padding;
    z-index: 999;
}

@media only screen and (max-width: 1024px) and (min-width: 768px){
    #nav {
        width: 100%;
    }
}



#nav.navbar {
    border: none;
    border-radius: 0;
    margin-bottom: 0px;
}

#nav.fixed-nav {
    position: fixed;
    left: 0;
    right: 0;
    padding: 0px 0px;
    background-color: white !important;
        border-bottom: 1px solid #dadada;
            box-shadow: 0px 0px 50px -16px rgba(0,0,0,0.75);
    }

    @media only screen and (max-width: 1024px) and (min-width: 768px){
        #nav.fixed-nav {
            left: inherit;
            right: inherit;
            }
}

#nav.nav-transparent {
    background: transparent;
}


/* -- default nav -- */

@media only screen and (min-width: 768px) {
    .main-nav li {
        padding: 0px 15px;
    }
    .main-nav li a {
        font-size: 14px;
        -webkit-transition: 0.2s color;
        transition: 0.2s color;
    }
    .main-nav>li>a {
        color: #10161A;
        padding: 15px 0px;
    }
    #nav.nav-transparent:not(.fixed-nav) .main-nav>li>a {
        color: #fff;
    }
    .main-nav>li>a:hover, .main-nav>li>a:focus, .main-nav>li.active>a {
        background: transparent;
        color: #6195FF;
    }
    .main-nav>li>a:after {
        content: "";
        display: block;
        background-color: #6195FF;
        height: 2px;
        width: 0%;
        -webkit-transition: 0.2s width;
        transition: 0.2s width;
    }
    .main-nav>li>a:hover:after, .main-nav>li.active>a:after {
        width: 100%;
    }
    /* dropdown */
    .has-dropdown {
        position: relative;
    }
    .has-dropdown>a:before {
        font-family: 'FontAwesome';
        content: "\f054";
        font-size: 6px;
        margin-left: 6px;
        float: right;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        -webkit-transition: 0.2s transform;
        transition: 0.2s transform;
    }
    .dropdown {
        position: absolute;
        right: -50%;
        top: 0;
        background-color: #6195FF;
        width: 200px;
        -webkit-box-shadow: 0px 5px 5px -5px rgba(53, 64, 82, 0.2);
        box-shadow: 0px 5px 5px -5px rgba(53, 64, 82, 0.2);
        -webkit-transform: translateY(15px) translateX(50%);
        -ms-transform: translateY(15px) translateX(50%);
        transform: translateY(15px) translateX(50%);
        opacity: 0;
        visibility: hidden;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }
    .main-nav>.has-dropdown>.dropdown {
        top: 100%;
        right: 50%;
    }
    .main-nav>.has-dropdown>.dropdown .dropdown.dropdown-left {
        right: 150%;
    }
    .dropdown li a {
        display: block;
        color: #FFF;
        border-top: 1px solid rgba(250, 250, 250, 0.1);
        padding: 10px 0px;
    }
    .dropdown li:nth-child(1) a {
        border-top: none;
    }
    .has-dropdown:hover>.dropdown {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0px) translateX(45%);
        -ms-transform: translateY(0px) translateX(45%);
        transform: translateY(0px) translateX(45%);
    }
    .has-dropdown:hover>a:before {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    .nav-collapse {
        display: none;
    }
}


.flex-center {
    display: flex;
    justify-content: center;
}

.flex-center-align {
    display: flex;
    align-items: center;
        justify-content: center;
}
.flex-center-align-start {
    display: flex;
    align-items: start;
        justify-content: center;
        flex-direction: column;
            padding-left: 37px;
}


.flex_align_center {
    display: flex;
    /*align-items: center;*/
}

.flex_absolute_center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.w-36 {
        width: 36%;
}
/* -- mobile nav -- */

@media only screen and (max-width: 767px) {
    #nav {
        padding: 0px 0px;
    }
    #nav.nav-transparent {
        background: #FFF;
    }
    .main-nav {
        position: fixed;
        right: 0;
        height: calc(100vh - 80px);
        -webkit-box-shadow: 0px 80px 0px 0px #1C1D21;
        box-shadow: 0px 80px 0px 0px #1C1D21;
        max-width: 250px;
        width: 0%;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        margin: 0;
        overflow-y: auto;
        background: #1C1D21;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }
    #nav.open .main-nav {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
        width: 100%;
    }
    .main-nav li {
        border-top: 1px solid rgba(250, 250, 250, 0.1);
    }
    .main-nav li a {
        display: block;
        color: #FFF;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }
    .main-nav>li.active {
        border-left: 6px solid #6195FF;
    }
    .main-nav li a:hover, .main-nav li a:focus {
        background-color: #6195FF;
        color: #FFF;
        opacity: 1;
    }
    .has-dropdown>a:after {
        content: "\f054";
        font-family: 'FontAwesome';
        float: right;
        -webkit-transition: 0.2s -webkit-transform;
        transition: 0.2s -webkit-transform;
        transition: 0.2s transform;
        transition: 0.2s transform, 0.2s -webkit-transform;
    }
    .dropdown {
        opacity: 0;
        visibility: hidden;
        height: 0;
        background: rgba(250, 250, 250, 0.1);
    }
    .dropdown li a {
        padding: 6px 10px;
    }
    .has-dropdown.open-drop>a:after {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    .has-dropdown.open-drop>.dropdown {
        opacity: 1;
        visibility: visible;
        height: auto;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }
}


/* -- nav btn collapse -- */

.nav-collapse {
    position: relative;
    float: right;
    width: 40px;
    height: 40px;
    margin-top: 5px;
    margin-right: 5px;
    cursor: pointer;
    z-index: 99999;
}

.nav-collapse span {
    display: block;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
}

.nav-collapse span:before, .nav-collapse span:after {
    content: "";
    display: block;
}

.nav-collapse span, .nav-collapse span:before, .nav-collapse span:after {
    height: 4px;
    background: #10161A;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.nav-collapse span:before {
    -webkit-transform: translate(0%, 10px);
    -ms-transform: translate(0%, 10px);
    transform: translate(0%, 10px);
}

.nav-collapse span:after {
    -webkit-transform: translate(0%, -14px);
    -ms-transform: translate(0%, -14px);
    transform: translate(0%, -14px);
}

#nav.open .nav-collapse span {
    background: transparent;
}

#nav.open .nav-collapse span:before {
    -webkit-transform: translateY(0px) rotate(-135deg);
    -ms-transform: translateY(0px) rotate(-135deg);
    transform: translateY(0px) rotate(-135deg);
}

#nav.open .nav-collapse span:after {
    -webkit-transform: translateY(-4px) rotate(135deg);
    -ms-transform: translateY(-4px) rotate(135deg);
    transform: translateY(-4px) rotate(135deg);
}


/*------------------------------------*\
    Header
\*------------------------------------*/

header {
    position: relative;
}

#video_bg {
    
}
.home_section {
   height: 100%;

}

.bg_home {
       height: 400px;
}
.stores {
    margin-top: 75px;
}

.mr-17 {
    margin-right: 17px;
}
.home_section .home-wrapper {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 50%;
    /*-webkit-transform: translateY(-50%);*/
    /*-ms-transform: translateY(-50%);*/
    /*transform: translateY(-50%);*/
    text-align: center;
}

.home-content h1 {
  /*text-transform: uppercase;*/
}
.home-content button {
  margin-top: 20px;
}

.header-wrapper h2 {
    display: inline-block;
    margin-bottom: 0px;
}

.header-wrapper .breadcrumb {
    float: right;
    background: transparent;
    margin-bottom: 0px;
}

.header-wrapper .breadcrumb .breadcrumb-item.active {
    color: #868F9B;
}

.breadcrumb>li+li:before {
    color: #868F9B;
}


/*------------------------------------*\
    About
\*------------------------------------*/

.about {
    position: relative;
    text-align: center;
    padding: 40px 20px;
    border: 1px solid #EEE;
    margin: 15px 0px;
}

.about i {
    font-size: 36px;
    color: #6195FF;
    margin-bottom: 20px;
}

.about:after {
    content: "";
    background-color: #1C1D21;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    z-index: -1;
    -webkit-transition: 0.2s width;
    transition: 0.2s width;
}

.about:hover:after {
    width: 100%;
}

.about h3 {
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
}

.about:hover h3 {
    color: #fff;
}


/*------------------------------------*\
    Portfolio
\*------------------------------------*/

.work {
    position: relative;
    padding: 20px;
}

.work>img {
  width: 100%;
}

.work .overlay {
    background: #1C1D21;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.work:hover .overlay {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    opacity: 0.8;
}

.work .work-content {
    position: absolute;
    left: 25px;
    right: 25px;
    top: 50%;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.work .work-content h3 {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
    color: #FFF;
    margin-bottom: 10px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.work:hover .work-content h3 {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.work .work-content span {
    display: block;
    text-transform: uppercase;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
    color: #6195FF;
    margin-bottom: 5px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.work:hover .work-content span {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.work .work-link {
    text-align: center;
    margin-top: 20px;
    opacity: 0;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
}

.work .work-link a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #6195FF;
    color: #FFF;
    line-height: 50px;
    text-align: center;
}

.work:hover .work-link {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
    opacity: 1;
}


/*------------------------------------*\
    Services
\*------------------------------------*/

.service {
    position: relative;
    padding: 40px 20px 40px 70px;
    margin: 15px 0px;
    border: 1px solid #EEE;
}

.service i {
    position: absolute;
    left: 20px;
    text-align: center;
    font-size: 32px;
    color: #6195FF;
    border-radius: 50%;
}

.service:after {
    content: "";
    background-color: #1C1D21;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    z-index: -1;
    -webkit-transition: 0.2s width;
    transition: 0.2s width;
}

.service:hover:after {
    width: 100%;
}

.service h3 {
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
}

.service:hover h3 {
    color: #fff;
}

/*------------------------------------*\
    Why choose us
\*------------------------------------*/

.feature {
    margin: 15px 0px;
}
.feature i {
    float: left;
    padding: 5px;
    border-radius: 50%;
    color: #6195FF;
    border: 1px solid #6195FF;
    margin-right: 5px;
}

/*------------------------------------*\
    Numbers
\*------------------------------------*/

.number {
    text-align: center;
    margin: 15px 0px;
}

.number i {
    color: #6195FF;
    font-size: 36px;
    margin-bottom: 20px;
}

.number h3 {
    font-size: 36px;
    margin-bottom: 10px;
}


/*------------------------------------*\
    Pricing
\*------------------------------------*/

.pricing {
    position: relative;
    text-align: center;
    border: 1px solid #EEE;
    background-color: #FFF;
    z-index: 11;
    margin: 15px 0px;
}

.pricing::after {
    content: "";
    background-color: #1C1D21;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 0%;
    z-index: -1;
    -webkit-transition: 0.2s height;
    transition: 0.2s height;
}

.pricing:hover:after {
    height: 100%;
}

.pricing .price-head {
    position: relative;
    margin-bottom: 20px;
}

.pricing .price-title {
    display: block;
    padding: 40px 0px 20px;
    text-transform: uppercase;
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
}

.pricing:hover .price-title {
    color: #6195FF;
}

.pricing .price {
    position: relative;
    width: 140px;
    height: 140px;
    line-height: 140px;
    text-align: center;
    margin: auto;
    border-radius: 50%;
    border: 2px solid #6195FF;
}

.pricing .price h3 {
  font-size: 42px;
  margin: 0px;
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  position: absolute;
  left: 0;
  right: 0;
}

.pricing:hover .price h3 {
    color: #fff;
}

.pricing .duration {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    color: #10161A;
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
}

.pricing:hover .duration {
    color: #fff;
}

.pricing .price-btn {
    padding-top: 20px;
    padding-bottom: 40px;
}

/*------------------------------------*\
    Testimonial
\*------------------------------------*/

.testimonial {
    margin: 15px 0px;
}

.testimonial-meta {
    position: relative;
    padding-left: 90px;
    height: 70px;
    margin-bottom: 20px;
    padding-top: 10px;
}

.testimonial img {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px !important;
    height: 70px !important;
    border-radius: 50%;
}

.testimonial h3 {
    margin-bottom: 5px;
}

.testimonial span {
    font-size: 14px;
    color: #6195FF;
    text-transform: uppercase;
}


/*------------------------------------*\
    Team
\*------------------------------------*/

.team {
    position: relative;
    background-color: #F4F4F4;
    padding: 40px 20px;
    margin: 15px 0px;
}

.team::after {
    content: "";
    background-color: #1C1D21;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 0%;
    z-index: 1;
    -webkit-transition: 0.2s height;
    transition: 0.2s height;
}

.team:hover:after {
    height: 100%;
}

.team-img {
    position: relative;
    margin-bottom: 20px;
    z-index: 11;
}

.team-img>img {
  width: 100%;
}

.team .overlay {
    background: #1C1D21;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    opacity: 0;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
}

.team:hover .overlay {
    opacity: 0.8;
}

.team .team-content {
    text-align: center;
    position: relative;
    z-index: 11;
}

.team .team-content h3 {
    margin-bottom: 10px;
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
}

.team .team-content span {
    font-size: 14px;
    text-transform: uppercase;
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
}

.team:hover .team-content h3 {
    color: #FFF;
}

.team:hover .team-content span {
    color: #6195FF;
}

.team .team-social {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
}

.team .team-social a {
    display: block;
    line-height: 50px;
    width: 50px;
    text-align: center;
    background-color: #6195FF;
    color: #FFF;
}

.team:hover .team-social {
    opacity: 1;
}


/*------------------------------------*\
    Blog
\*------------------------------------*/

.blog {
    background-color: #FFF;
    margin: 15px 0px;
}

.blog .blog-content {
    padding: 20px 20px 40px;
}

.blog .blog-meta {
    margin-bottom: 20px;
}

.blog .blog-meta li {
    display: inline-block;
    font-size: 14px;
    color: #10161A;
    margin-right: 10px;
}

.blog .blog-meta li i {
    color: #6195FF;
    margin-right: 5px;
}

/*------------------------------------*\
    Blog post
\*------------------------------------*/

#main .blog .blog-content {
  padding: 20px 0px 0px;
}

#main .blog {
  margin-top: 0px;
}

/* -- blog tags -- */

.blog-tags {
    margin: 40px 0px;
}

.blog-tags h5 {
    margin-bottom: 0;
    display: inline-block;
}

.blog-tags a {
    display: inline-block;
    padding: 6px 13px;
    font-size: 14px;
    margin: 2px 0px;
    background: #F4F4F4;
    color: #10161A;
}

.blog-tags a:hover {
  color: #FFF;
  background-color: #6195FF;
}

.blog-tags a i {
    margin-right: 3px;
    color: #6195FF;
}

.blog-tags a:hover i {
  color: #FFF;
}


/* -- blog author -- */

.blog-author {
    margin: 40px 0px;
}

.blog-author .media .media-left {
    padding-right: 20px;
}

.blog-author .media {
    padding: 20px;
    border: 1px solid #EEE;
}

.blog-author .media .media-heading {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #EEE;
}

.blog-author .media .media-heading h3 {
    display: inline-block;
    margin: 0;
    text-transform: uppercase;
}

.blog-author .media .media-heading .author-social {
  float: right;
}

.blog-author .author-social a {
    display: inline-block;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    border-radius: 3px;
    margin-left: 5px;
    color: #FFF;
    background-color: #6195FF;
}

/* -- blog comments -- */

.blog-comments {
    margin: 40px 0px;
}

.blog-comments .media {
    padding: 20px;
    background-color: #FFF;
    border-top: 1px solid #EEE;
    border-bottom: 0px;
    border-right: 1px solid #EEE;
    border-left: 1px solid #EEE;
    margin-top: 0px;
}

.blog-comments .media:first-child {
    border-bottom: 0px;
}

.blog-comments .media:last-child {
    border-bottom: 1px solid #EEE;
}

.blog-comments .media .media-left {
  padding-right: 20px;
}

.blog-comments .media .media-body .media-heading {
    text-transform: uppercase;
    margin-bottom:10px;
}

.blog-comments .media .media-body .media-heading .time {
    font-size: 12px;
    margin-left: 20px;
    font-weight: 400;
    color: #868F9B;
}

.blog-comments .media .media-body .media-heading .reply {
    float: right;
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 400;
}

.blog-comments .media.author {
    background-color: #F4F4F4;
    border-color: #6195FF;
    border-bottom: 1px solid #6195FF;
}
.blog-comments .media.author>.media-body>.media-heading {
    color: #6195FF;
}

.blog-comments .media.author + .media {
    border-top: 0px;
}

/* blog reply form */

.reply-form {
    margin: 40px 0px;
}

.reply-form form .input, .reply-form form .input , .reply-form form textarea {
    margin-bottom:20px;
}

.reply-form form .input, .reply-form form .input {
    width: calc(50% - 10px);
    display: inline-block;
}

.reply-form form .input:nth-child(2) {
    margin-left: 15px;
}


/*------------------------------------*\
    Blog sidebar
\*------------------------------------*/

#aside .widget {
    margin-bottom: 40px;
}

.widget h3 {
  text-transform: uppercase;
}

/* -- search sidebar -- */

#aside .widget-search {
    position: relative;
}

#aside .widget-search .search-input {
    padding-right: 50px;
}

#aside .widget-search .search-btn {
    position: absolute;
    right: 0px;
      bottom: 0px;
    width: 40px;
    height: 40px;
    border: none;
    line-height: 40px;
    background-color: transparent;
    color: #6195FF;
}

/* -- category sidebar -- */

.widget-category a {
    display: block;
    font-size: 14px;
    color: #354052;
    border-bottom: 1px solid #EEE;
    padding: 5px;
}

.widget-category a:nth-child(1) {
  border-top: 1px solid #EEE;
}

.widget-category a span {
    float: right;
    color: #6195FF;
}

.widget-category a:hover {
    color: #6195FF;
}

/* -- tags sidebar -- */

.widget-tags a {
  display: inline-block;
  padding: 6px 13px;
  font-size: 14px;
  margin: 2px 0px;
  background: #F4F4F4;
  color: #10161A;
}

.widget-tags a:hover {
  color: #FFF;
  background-color: #6195FF;
}

/* -- posts sidebar -- */

.widget-post {
    min-height: 70px;
    margin-bottom: 25px;
}

.widget-post img {
    display: block;
    float: left;
    margin-right: 10px;
    margin-top: 5px;
}

.widget-post a {
    display: block;
    color: #10161A;
}

.widget-post a:hover {
    color: #6195FF;
}

.widget-post .blog-meta {
    display: inline-block;
}

.widget-post .blog-meta li {
    display: inline-block;
    margin-right: 5px;
    color: #6195FF;
    font-size: 12px;
}

.widget-post li i {
    color: #6195FF;
    margin-right: 5px;
}



/*------------------------------------*\
    Contact
\*------------------------------------*/

.contact {
    margin: 15px 0px;
    text-align: center;
}

.contact i {
    font-size: 36px;
    color: #6195FF;
    margin-bottom: 20px;
}

.contact-form {
    text-align: center;
    margin-top: 40px;
}

.contact-form .input {
    margin-bottom: 20px;
}


.contact-form .input:nth-child(1), .contact-form .input:nth-child(2) {
    width: calc(50% - 10px);
}

.contact-form .input:nth-child(2) {
    margin-left: 15px;
}

/*------------------------------------*\
    Footer
\*------------------------------------*/
.master-card{
    width: 17.2rem;
    height: auto;
}

.icon_footer{
    width: 3rem;
}

p{margin:0;}
h1{margin: 0;}
h2{margin:0;}

.max-width-144{
    max-width: 144rem;
    margin: auto;
}

.footer{
    display: flex;
    flex-direction: column;
}

.cont-whatsapp-xs{
    display: none;
    text-decoration: none;
}

.footer-Sec-1{
    display: grid;
    grid-template-columns: 30% 30% 30%;
    grid-gap: 5%;
}

.footer-Sec-1-padding{
    padding: 5rem 15rem;
}

.footer-titles{
    font-family: 'WorkSans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: -0.1px;
    color: #201d1d;
}

.footer-parrafos{
    font-family: 'WorkSans', sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: -0.1px;
    padding: 0.5rem 0;    
    color: #4d4d4c;
}

.footer-parrafos a{
    text-decoration: none;
    color: #4d4d4c;

}

.footer-Sec-2{
    display: flex;
    justify-content: space-between;
}
.footer-Sec-2-padding{
    padding: 3.4rem 15rem;
    border-top: solid 1px #d8d8d8;
}

.cont-aplication{
    display: flex;
    margin-top: 1rem;
    margin-bottom: 3.6rem;
}

.cont-aplication a img{
    height: 3.6rem;
    width: auto;
}

.google{
    margin-right: 1.2rem;
}

.cont-redes-sociales{
    display: flex;
}

.cont-redes-sociales img{
    width: auto;
    height: 3rem;
    margin-right: 1rem;
    margin-top: 1.4rem;
}

.footer-Sec-1-2 h2{
    margin-bottom: 2rem;

}

.footer-Sec-1-2-xs{
    display: none;
}


.payline-logo{
    height:auto;
    width: 17.2rem;
}

.footer-Sec-1-3{
    padding: 0 2.7rem 2.5rem 2.7rem;
    display: flex;
    flex-direction: column;
}

@media only screen and (min-width: 768px) and (max-width: 1024px){
    .footer-Sec-1{
        padding: 5rem 2rem;
    }

    .footer-Sec-1-padding{
        padding: 0;
    }

    .footer-Sec-2{
        padding: 3.4rem 2rem;
    }

    .footer-Sec-2-padding{
        padding: 0;
    }
}

/* ========== movil ===========*/
@media only screen and (min-width: 0px) and (max-width: 767px){

       /*footer*/

       .footer-Sec-1-padding{
        padding: 0;
    }

    .footer-Sec-2-padding{
        padding: 0;
    }
    .footer{
        /* display: none; */
        /* padding: 0 2.7rem; */
    }

    .footer-Sec-1{
        display: block;
        padding: 0;
    }

    .footer-Sec-1-1:first-of-type{
        padding: 0 2.7rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-titles{
        text-align: center;
    }

    .cont-redes-sociales{
        display: flex;
        justify-content: center;
    }

    .footer-Sec-1-2{
        padding: 0 2.7rem;
        display: none;
    }

    .footer-Sec-1-2-xs{
        display: block;
        margin-bottom: 1.7rem;
    }

    .footer-parrafos{
        padding: 0;
        text-align: center;
    }

    .footer-Sec-1-3{
        padding: 2.8rem 2.7rem 2.5rem 2.7rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .payline-logo{
        width: 8.4rem;
        height: auto;
    }

    .footer-Sec-2{
        padding: 2.5rem 1.6rem;
        display: flex;
        flex-direction: column;
        text-align: center;
        color: #808180;
        font-size: 1.6rem;
    }

    .cont-whatsapp-xs{
        display:flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 1.3rem;
        width: -webkit-fill-available;
        height: 3.7rem;
        background-color: #42d853;
        margin-top: 2.9rem;
        margin-bottom: 1.7rem;
        border-radius: 2px;
        
        font-family: 'WorkSans', sans-serif;
        font-size: 1.2rem;
        font-weight: 600;
        font-style: normal;
        font-stretch: normal;
        line-height: normal;
        letter-spacing: -0.1px;
        text-align: center;
        color: #ffffff;

    }

    .cont-aplication{
        display: flex;
        justify-content: center;
        margin-top: 1rem;
        margin-bottom: 3.6rem;
    }

    .google{
        margin-right: 1.2rem;
    }
}



/* footer josue */
.footer_section {
        border-top: solid 1px #eeeeee;
    position: relative;
        height: auto !important;
    background-color: black;
}

.footer-logo {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo>a>img {
    max-height: 80px;
}

.footer-follow {
    text-align: center;
    margin-bottom: 20px;
}

.footer-follow li {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 13px;
}

.footer-follow li a {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 3px;
  background-color: #6195FF;
  color:#FFF;
}

.footer-copyright p {
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0;
}


/*------------------------------------*\
    Responsive
\*------------------------------------*/

@media only screen and (max-width: 767px) {
  .section-header h2.title {
        font-size:31.5px;
    }

  .main-btn , .default-btn , .outline-btn , .white-btn  {
        padding: 8px 22px;
        font-size:14px;
    }

  .home-content h1 {
        font-size:36px;
    }

  .header-wrapper h2 {
      margin-bottom: 20px;
      text-align: center;
      display: block;
  }

  .header-wrapper .breadcrumb {
      float: none;
      text-align: center;
  }
}

@media only screen and (max-width: 480px) {
  #portfolio [class*='col-xs'] {
          width:100%;
    }

  #numbers [class*='col-xs'] {
          width:100%;
    }

  .contact-form .input:nth-child(1), .contact-form .input:nth-child(2) {
      width: 100%;
  }
  .contact-form .input:nth-child(2) {
      margin-left: 0px;
  }

  .reply-form form .input, .reply-form form .input {
      width: 100%;
  }
  .reply-form form .input:nth-child(2) {
      margin-left: 0px;
  }



  .blog-author .media .media-left {
      display: block;
      padding-right: 0;
      margin-bottom: 20px;
  }
  .blog-author .media {
      text-align: center;
  }
  .blog-author .media .media-heading .author-social {
      margin-top: 10px;
      float: none;
  }
  .blog-author .media .media-left img {
      margin: auto;
  }

  .blog-comments .media .media {
      margin:0px -15px;
  }
}



/*------------------------------------*\
    Owl theme
\*------------------------------------*/

/* -- dots -- */

.owl-theme .owl-dots .owl-dot span {
    border: none;
    background: #EEE;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.owl-theme .owl-dots .owl-dot:hover span {
    background: #6195FF;
}
.owl-theme .owl-dots .owl-dot.active span {
      background: #6195FF;
      width:20px;
}

/* -- nav -- */

.owl-theme .owl-nav {
    opacity: 0;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
}

.owl-theme:hover .owl-nav {
    opacity: 1;
}

.owl-theme .owl-nav [class*='owl-'] {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    background: #6195FF;
    color: #FFF;
    padding: 0px;
    width: 50px;
    height: 50px;
    border-radius:3px;
    line-height: 50px;
    margin: 0;
}

.owl-theme .owl-prev {
    left: 0px;
}

.owl-theme .owl-next {
    right: 0px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    opacity: 0.8;
    background: #6195FF;
}


/*------------------------------------*\
    Back to top
\*------------------------------------*/

#back-to-top {
    display:none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: transparent;
    border-radius:3px;
    color: #FFF;
    z-index: 9999;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
    cursor: pointer;
    transform: rotate(180deg);
}

/*#back-to-top:after {
    content: "\f106";
    font-family: 'FontAwesome';
}*/

#back-to-top:hover {
    opacity: 0.8;
}





/*------------------------------------*\
    Pagination
\*------------------------------------*/

.pagination  {
           position: fixed;
    bottom: 50%;
    right: 38px;
}
.pagination a {
    display:block;
    height:20px;
    margin-bottom:5px;
    color:white;
    position:relative;
    padding:4px;
}
.pagination a.active:after {
    box-shadow:inset 0 0 0 5px;
}
.pagination a .hover-text {
    position:absolute;
    right:15px;
    top:7px;
    opacity:0;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
    padding-right: 15px;
}
.pagination a:hover .hover-text {
    opacity: 1;
}
.pagination a:after {
    -webkit-transition:box-shadow 0.5s ease;
    transition:box-shadow 0.5s ease;
    width:10px;
    height:10px;
    display: block;
    border:1px solid;
    border-radius:50%;
    content:'';
    position: absolute;
    margin:auto;
    top:0;
    right:4px;
    bottom:0;
}


/*------------------------------------*\
    Preloader
\*------------------------------------*/


#preloader {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #FFF;
    z-index: 99999;
}

.preloader {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.preloader span {
    display: inline-block;
    background-color: #db2a1b;
    width: 25px;
    height: 25px;
    -webkit-animation: 1s preload ease-in-out infinite;
            animation: preload 1s ease-in-out infinite;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    border-radius:50%;
}

.preloader span:nth-child(1) {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
}

.preloader span:nth-child(2) {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
}

.preloader span:nth-child(3) {
    -webkit-animation-delay: 0.15s;
            animation-delay: 0.15s;
}

.preloader span:nth-child(4) {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
}

@-webkit-keyframes preload {
    0% {
       -webkit-transform:scale(0);
               transform:scale(0);
    }
  50% {
    -webkit-transform:scale(1);
            transform:scale(1);
  }
  100% {
    -webkit-transform:scale(0);
            transform:scale(0);
  }
}

@keyframes preload {
    0% {
       -webkit-transform:scale(0);
               transform:scale(0);
    }
  50% {
    -webkit-transform:scale(1);
            transform:scale(1);
  }
  100% {
    -webkit-transform:scale(0);
            transform:scale(0);
  }
}


/*---------------------------*/
.icon {
    position: absolute;
    left: 50%;
    bottom: 5%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
.icon svg {
  /*transform: rotate(90deg);*/
}
.animated-arrow-1 {
    left: 50%;
  animation: arrow1 2s infinite linear;
  opacity: 1;
}
.animated-arrow-2 {
    left: 50%;
  animation: arrow2 2s infinite linear;
  opacity: 1;
}
@keyframes arrow1 {
  0%, 10% {
    opacity: 0;
    transform: translate(0, -10px);
  }
   30% {
    opacity: 0.8;
    transform: translate(0, 10px)
  }
  50% {
    opacity: 1;
    transform: translate(0, 50px)
  }
  100% {
    opacity: 0;
    transform: translate(0, 100px)
  }
}
@keyframes arrow2 {
  0%, 10% {
    opacity: 0;
    transform: translate(0, -10px);
  }
 30% {
    opacity: 0.8;
    transform: translate(0, 10px)
  }
  50% {
    opacity: 1;
    transform: translate(0, 50px)
  }
  100% {
    opacity: 0;
    transform: translate(0, 100px)
  }
}
    
.main-nav {
    text-align: center;
}
.main-nav li {
    padding: 0px 0px !important;
}
.navbar-form {
    padding: 10px 10px !important; 
}

@media only screen and (max-width: 1024px) and (min-width: 768px){
    .navbar-form{
        /* padding: 0!important; */
        margin: 0!important;
    }   
}
/*Buttons*/
.btn-default {
    padding: 10px 23px;
    font-size: 13px !important;
}

@media only screen and (max-width: 1024px) and (min-width: 768px){
    .btn-default{
        padding: 10px 10px!important;
    } 
}
.button_border_wite {
    color: white;
    border-radius: 4px;
    background-color: transparent;
    border: solid 2px white;
      font-size: 13px !important;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.1px;
}



.button_red {
    color: white !important;
    border-radius: 4px;
    background-color: #db2a1b;
    border: solid 3px #db2a1b;
    font-size: 13px !important;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.1px;
        text-decoration: none;
}

.center {
    text-align: center;
}


@media only screen and (max-width: 767px) {
    #nav.nav-transparent .container {
    
        margin-top: 0px !important;
    }
    
    .container-fluid>.navbar-collapse, .container-fluid>.navbar-header, .container>.navbar-collapse, .container>.navbar-header {
        padding: 0 13px;
    }

    .navbar-form {
    padding: 10px 15px;
    margin-top: 8px;
    margin-right: -15px;
    margin-bottom: 8px;
    margin-left: -15px;
     border-top: none; 
     border-bottom: none; 
     -webkit-box-shadow: none; 
     box-shadow: none; 
    }
    .btn-default {
       width: 80% !important;
    }
}

.play {
    font-size: 21px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: -0.2px;
  text-align: left;
  color: #ffffff !important;
      margin-bottom: 20px;

}

.about_container {
    padding: 136px 100px;
    position: relative;
}
.custom_play_image {
    height: 457px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 25px;
}
.in_title {
    font-size: 26px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.12;
    letter-spacing: -0.2px;
    text-align: left;
    color: #db2a1b;
        -webkit-font-smoothing: auto;

}
.in_p_text {
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.57;
    letter-spacing: -0.1px;
    text-align: left;
    color: #4d4d4c;
    text-align: left;
    margin-top: 20px;
    -webkit-font-smoothing: antialiased;
}

.in_p_text_foot {
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.29;
    letter-spacing: -0.1px;
    text-align: left;
    color: #4d4d4c;
    width: 462px;
    -webkit-font-smoothing: antialiased;
      margin-top: 25px;
          margin-left: 5px;

}

.absolute_row {
    margin-top: -100px;
    text-align: right;
        display: flex;
    justify-content: flex-end;
    margin-right: 0px;
}

.img_shadow {
    width: 462px;
   height: 205px;
   box-shadow: 0 2px 23px 0 rgba(0, 0, 0, 0.54);
}
.hr_custom {
    border-bottom: solid 0.1px #e6e6e6;
    width: 86%;
    margin-right: 75px;
    float: right;
}
.text_orientation_left {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    color: #d9d9d9;
    position: absolute;
    bottom: 0%;
    left: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: -0.1px;
    -webkit-font-smoothing: auto;
}
.text_orientation_right_top {
       writing-mode: vertical-lr;
    transform: rotate(180deg);
    color: #d9d9d9;
    position: absolute;
    top: -15%;
    right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: -0.1px;
    -webkit-font-smoothing: antialiased;
}
.line {
        border-bottom: solid 1px #dadada;
    width: 45px;
    transform: rotate(-90deg);
    margin-bottom: 33px;
}


.red_section {
    background-color: white;
    color: white;
    height: 430px;
}
.red_section h1 {
    font-size: 26px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.12;
  letter-spacing: -0.2px;
  text-align: center;
  color: #ffffff;
      width: 90%;
}
.red_section p {
font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.29;
  letter-spacing: -0.1px;
  text-align: center;
  color: #ffffff;

}
.red_section .stores {
    margin-top: 20px !important;
}

.title_function {
      font-size: 31px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.58;
  letter-spacing: -0.2px;
  text-align: center;
  color: #db1d26;

}



/*CAROUSEL*/
/* carousel */
.media-carousel 
{
  margin-bottom: 0;
  padding: 0 40px 30px 40px;
  margin-top: 30px;
}
/* Previous button  */
.media-carousel .carousel-control.left 
{
    background-image: none;
    background: none repeat scroll 0 0 transparent;
    margin-left: -90px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Next button  */
.media-carousel .carousel-control.right 
{
    background-image: none;
    background: none repeat scroll 0 0 transparent;
    margin-right: -70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(180deg);
}
/* Changes the position of the indicators */
.media-carousel .carousel-indicators 
{
  right: 50%;
  top: auto;
  bottom: 0px;
  margin-right: -19px;
}
/* Changes the colour of the indicators */
.media-carousel .carousel-indicators li 
{
  background: #c0c0c0;
}
.media-carousel .carousel-indicators .active 
{
  background: #333333;
}
.media-carousel img
{
  width: 250px;
  height: 100px
}

.carousel-inner {
        display: flex;
    justify-content: center;
}

@media not all, (-webkit-transform-3d) {
.carousel-inner>.item.active.left, .carousel-inner>.item.prev {
    left: -200px;
    -webkit-transform: none !important;
    transform: none !important;
}
.carousel-inner>.active.left {
    left:auto !important;
    /*display: none;*/
    visibility: hidden;
}
.carousel-inner>.active.right {
    left: auto !important;
    /*display: none;*/
    visibility: hidden;
}
@media not all, (-webkit-transform-3d) {
    .carousel-inner>.item.active, .carousel-inner>.item.next.left, .carousel-inner>.item.prev.right {
        left: auto !important;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

@media not all, (-webkit-transform-3d) {
    .carousel-inner>.item.active, .carousel-inner>.item.next.left, .carousel-inner>.item.prev.right {
        left: 0;
        -webkit-transform:none !important;
        transform:none !important;
    }
}


@media not all, (-webkit-transform-3d) {
    .carousel-inner>.item.active.right, .carousel-inner>.item.next {
        left: 0;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0);
    }
}

@media not all, (-webkit-transform-3d) {
    .carousel-inner>.item {
        -webkit-transition: -webkit-transform .6s ease-in-out;
        -o-transition: -o-transform .6s ease-in-out;
        transition: transform .6s ease-in-out;
        -webkit-backface-visibility: visible;
        backface-visibility: visible;
        -webkit-perspective: 1px !important;
        perspective: 1px!important;
    }
}

.carousel-inner>.item {
    /*position: relative;*/
    /*display: none;*/
    /*-webkit-transition:none !important;*/
    /*-o-transition: none !important;*/
    /*transition: .6s ease-in-out left;*/
}
/* End carousel */



/* TBS */
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
    color: #555;
    background-color: transparent !important; 
     border: none !important; 
     border-bottom-color: transparent; 
}

.nav-tabs>li>a {
     margin-right: 0 !important; 
     line-height: auto !important; 
     border: none !important; 
     border-radius: none !important; 
}
.nav-tabs {
    border-bottom: none !important;
}
 
.thumbnail {
    position:relative;
    overflow:hidden;
}
 
.caption {
    position:absolute;
    top:0;
    right:0;
    background:rgba(66, 139, 202, 0.75);
    width:100%;
    height:100%;
    padding:2%;
    display: none;
    text-align:center;
    color:#fff !important;
    z-index:2;
}
.custom_tabs {
           display: flex;
    text-align: center;
    /* width: 100%; */
    justify-content: center;
    height: 61px;
    background-color: #b6b6b6;
    width: 524px;
    margin-right: auto;
    margin-left: auto;
    align-items: center;
     font-size: 19px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.53;
  letter-spacing: -0.1px;
  text-align: center;
   border-radius: 3px;
}
.custom_tabs .second_tab {
    border-radius: 3px;
    background-color: #d9d9d9;
    box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.34);
    height: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    width: 65%;
    justify-content: center;
    margin-left: 15px;
    -webkit-font-smoothing: auto;
}

.custom_tabs .first_tab {
   
    height: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    width: 35%;
    justify-content: center;
    border-radius: 3px;
    -webkit-font-smoothing: auto;
}
.custom_tabs .active {
     background-color: #db2a1b;
}

.custom_tabs .inactive {
     background-color: #d9d9d9;


}
.custom_tabs .active::after {
    content: " ";
    width: 50px;
    height: 50px;
    background-color: #dc2b1c;
    position: absolute;
    transform: rotate(45deg);
    z-index: -1;
    margin-top: 8px;
}
.first_tab a, .second_tab a {
    color: white !important;
}
.pricing_p {
    font-size: 17px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: -0.1px;
    text-align: center;
    color: #4d4d4c;
        margin-top: 36px;
}

.p_wrapper {
     width: 263px;
        height: 401px;
    border-radius: 4px;
    background-color: #ededed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-right: 30px;
}
.price_table_single {

}
.p_title {
font-size: 20px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: -1.7px;
  text-align: center;
  color: #db2a1b;
  -webkit-font-smoothing: auto;
}
.p_categories {
font-size: 13px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: -1.1px;
  text-align: center;
  color: #4d4d4c;
}

.pbox div   {
}


.p_price {
font-size: 24px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  /* letter-spacing: -2.4px; */
  text-align: center;
  color: #4d4d4c;
      margin-bottom: 0px !important;
    margin-top: 10px !important;

}
.after_price {

}
.p_credits {
  font-size: 17px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.2;
  letter-spacing: -1.4px;
  text-align: center;
  color: #4d4d4c;
    margin-bottom: -5px !important;
    margin-top: 5px !important;
}
.m_p {
    margin: 10px;
}

.le_concept_section {
    margin-top: 180px !important;
    margin-bottom: 100px !important;

}
.general_text_lconcept {
    font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.13;
  letter-spacing: -0.1px;
  text-align: left;
  color: #808180;
      padding-right: 68px;
}
.tabbable {
        padding-top: 80px;
}
.fix_p_foot_text {

    padding: 0px 145px;
    margin-top: -1px;

}


.pronautica {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover
    height: 474px !important;
    -webkit-font-smoothing: auto !important;
    background-size: cover; 
    margin-bottom: 440px;
}

.pronautica h1 {
     -webkit-text-stroke-width: 0.7px !important;
     /*color: #4d4d4c !important;*/
}
.pronautica p {
 
     /*color: #4d4d4c !important;*/
}
.white-bg {
    background-color: white;
}
.abs-container {
    position: absolute;
    color: black;
    bottom: -50px;
    height: 100px;
}
.pronautica .top_text {
    font-size: 15px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: -0.1px;
  text-align: left;
  color: #db2a1b;
  -webkit-font-smoothing: auto;
}
.pronautica .sub_text {
     color: #4d4d4c !important;
}
 .boat_img {
     height: 242px;
    background-position: center;
    background-size: cover;
    /* background-size: contain; */
    background-repeat: no-repeat;
}
.pronautica .center-colum {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.pronautica .padding {
    padding: 50px 10px;
}

.pronautica .view_more {
    font-size: 12px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: -0.1px;
  text-align: center;
  color: #4d4d4c;
    display: flex;
    align-items: center;
        margin-left: auto;
}
.pronautica .view_more svg {
        margin-left: 10px;
}
.pronautica .text-bottom {
    font-size: 17px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: -0.1px;
  text-align: center;
  color: #4d4d4c;

}
.text-dark {
    font-size: 20px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: -1.2px;
  text-align: left;
  color: #4d4d4c;
}

/* ipad */
@media only screen and (max-width: 1024px) and (min-width: 768px){
    .text-dark{
        font-size: 14px;
    }
}

.text-dark:hover {
    
  color: #db2a1b;
}
.les-avantages {
    background-color: transparent !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /*height: 533px !important;*/
    /*margin-bottom: 420px;*/
}

.les-avantages p {

    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.29;
    letter-spacing: -0.1px;
    text-align: left !important;
    color: #808180 !important;
}
.flex_absolute_center_align {
        display: flex;
    align-items: center;
    /* justify-content: center; */
    flex-direction: column;
}
.flex_absolute_center_align_justify {
        display: flex;
    align-items: center;
     justify-content: center; 
    flex-direction: column;
}

.last_section {
    margin-bottom: 0px !important;
}
.copy {
  font-size: 13px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: -0.1px;
  text-align: left;
  color: #c5c5c5;
}
.right-copy {
   font-size: 13px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: -0.1px;
  text-align: left;
  color: #c5c5c5;
}
.lastrow {
background-color: white;
color: #eeeeee;
border: solid 1px #eeeeee;
    padding: 27px 15px 24px 15px;
}
.pt-40 {
      padding-top: 50px;
    padding-bottom: 70px;
}


.text-foot {
    font-size: 17px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: -0.1px;
    text-align: left;
    color: #4d4d4c;
}
.footer_section img {
        /*margin-right: 35px;*/
        color:#4d4d4c;
}
.vertLine {
    height: 133px;
    border-left: solid 0.5px white;
}
.flex-center-align-no-justify {
    display: flex;
    align-items: center;
}
.social_element {
  font-size: 17px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: -0.1px;
  text-align: right;
  color: #4d4d4c;
      margin-bottom: 5px;
}
.social_element svg {
    /*margin-right: 10px;*/
}
.otherside {
    float: right;
    color: black !important;
}


/**
 * Material Modal CSS
 */
.modal {
  /* will-change: visibility, opacity;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
    z-index: 9999999999999;
  visibility: hidden;
  opacity: 0;
  transition: none !important;
  transition-delay: $modal-delay; */
}

.modal--active {
  visibility: visible;
  opacity: 1;
}
.modal--align-top {
  align-items: flex-start;
}
.modal__bg {
  background: transparent;
}
.modal__dialog {
    max-width: 395px;
  padding: 1.2rem;
}
.modal__content {
  will-change: transform, opacity;
  position: relative;
padding: 3.5rem 3.5rem 11rem 3.5rem;
  background: #fff;
  background-clip: padding-box;
  box-shadow: 1px 5px 20px 0 rgba(177, 176, 176, 0.25);
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);

}
.modal__content--active {
  opacity: 1;
  transform: none !important;
}
.modal__close {
  z-index: 1100;
  cursor: pointer;
}
.modal__trigger {
  position: relative;
  display: inline-block;
  /*padding: 1.2rem 2.4rem;*/
  color: rgba(0,0,0,0.7);
  line-height: 1;
  cursor: pointer;
  /*background: #ffebee;*/
  /*box-shadow: 0 2px 5px 0 rgba(0,0,0,0.26);*/
  /*-webkit-tap-highlight-color: rgba(0,0,0,0);*/
/*  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;*/
  /*transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);*/
}
.modal__trigger--active {
  z-index: 10;
}
.modal__trigger:hover {
  /*background: #e5d3d6;*/
}
#modal__temp {
  will-change: transform, opacity;
  position: absolute;
  top: auto !important;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  -webkit-transform: none;
          transform: none;
  opacity: 1;
  transition: opacity 0.1s ease-out, -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 0.1s ease-out, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 0.1s ease-out, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}


.demo-close {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 2.2rem;
  padding: 0.6rem;
  /*background: rgba(0,0,0,0.3);*/
  border-radius: 50%;
  border: solid 0.5px #c5c5c5;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.demo-close svg {
  width: 24px;
  fill: #c5c5c5;
  pointer-events: none;
  vertical-align: top;
}
.demo-close:hover svg {
  fill: #fff;
}

.demo-close:hover {
  background: #c5c5c5;

}


.modal_center {
        text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.modal_center .top_text {
        font-size: 18px !important;
    -webkit-font-smoothing: subpixel-antialiased !important;
}
.modal_center .sub_text {
        font-size: 16px !important;
    -webkit-font-smoothing: subpixel-antialiased !important;
}
.modal_center p {
    text-align: left;
     font-size: 15px !important;
    font-weight: normal !important;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: -0.1px;
    text-align: left;
    color: #808180 !important;
    -webkit-font-smoothing: antialiased;
        -webkit-text-stroke-width: -0.5px !important;
        word-break: break-all;

}
.h1_pronautica {
    color: white !important;
}
.p_pronautica {
    color: white !important;
}


.t1 {
    background: #e4e4e4;
    color: #4d4d4c;
    text-align: center;
    /*border-bottom: solid 5px white;*/
    padding: 6px;
    font-weight: bold;
}

td {
    position: relative;
    text-align: center;
    background: #f0f0f0;
    /*border-right: solid 6px white;*/
    border-bottom: solid 1px #dedede;
    font-size: 12px;
    padding: 8px auto;
    color: black;
    font-size: 17px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: -0.1px;
    text-align: center;
    color: #4d4d4c;
    margin-top: 36px;
    height: 35px;
}

.white-col {
    background: white;
    border-bottom: none;
}
.white-bottom {
    border-bottom: none;
}
.toptable {
    margin-top: 36px;
    font-size: 20px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1px;
    letter-spacing: -0.2px;
    text-align: left;
    color: #db2a1b;
    -webkit-font-smoothing: auto;
}
.pricing_p_table {
        margin-top: 25px;
        font-size: 17px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.12;
    letter-spacing: -0.2px;
    text-align: left;
    -webkit-font-smoothing: auto;
     color: black;
  
}

.little {
 font-size: 11px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.12;
    letter-spacing: -0.2px;
    text-align: left;
    -webkit-font-smoothing: auto;
     color: black;
}

.f1 {
    background: #e4e4e4;
    color: #db2a1b;
    /* font-size: 12px; */
}

.ft {
    background: #e4e4e4;
}


/* INLINE EXTRAPOLATED CLASSES*/
.about_c_p_1 {
    padding-right: 10px !important;     padding-top: 80px;
}

.absolute_row_col_margin {
     margin-right: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.margin-avantages {
    margin-bottom: 65px;
}
.headnav {
    margin-top: 10px;display: flex;align-items: center;
}

@media only screen and (max-width: 1024px) and (min-width: 768px){
    .headnav{
        margin:0;
        width: 100%;
        padding: 0 35px;
    }    
}

.mt-45 {
           margin-top: 24px;
}

.mt-20 {
        margin-top: 20px;
}
.pf {
    display: flex;   padding: 0px 15px;
}.footer_section img {
            /*margin-right: 5px;*/
    /*margin-left: 10px;*/
    }

    .dialog_fit {
            max-width: fit-content !important;
    }

   
.function_section {
     /* padding-top: 55px;  */
    padding-bottom: 55px;
     /* margin-top: 130px;  */
     margin-top: -18px;
     /* margin-top: 219px; */
}
.function_section_v2 {
     /* padding-top: 55px;  */
    padding-bottom: 55px;
     /* margin-top: 130px;  */
     margin-top: -18px;
     /* margin-top: 219px; */
     margin-top: 120px;
}

.antifn {
     /*padding-top: 0 !important; */
     margin-top: auto !important; 
}

.function_section p {
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.43;
    letter-spacing: -0.1px;
    text-align: center;
    color: #4d4d4c;

}


.ra {
    background-color: #db1d26;

}

.rb {
    background-color: #dedede;   
}

.a_1 {
font-size: 23px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: -0.2px;
  text-align: center;
  color: #ffffff;
}

.a_2 {
font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: -1.3px;
  text-align: center;
  color: #ffffff;
}
.a_3 {
     font-size: 41px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: -0.3px;
  text-align: center;
  color: #ffffff;
}
.b_1 {
  font-size: 17px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: -0.1px;
  text-align: left;
  color: #201d1d;

}
.b_2 {
font-size: 27px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: -1.3px;
  text-align: left;
  color: #201d1d;

}
.b_3 {
  font-size: 15px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: -0.1px;
  text-align: left;
  color: #201d1d;
}

.bg_gray {
    background-color: #f5f5f5 !important;

}

.title_avantages {
     font-size: 29px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: -0.2px;
  text-align: center;
  color: #201d1d;

}
.tit {
    font-size: 27px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: -0.2px;
  text-align: center;
  color: #201d1d;
}

.les-avantages p {
    font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.43;
  letter-spacing: -0.1px;
  text-align: left;
  color: #201d1d;
}

.main-nav {
    display: flex;
    align-items: center;
    -webkit-font-smoothing: auto;
}
.selected {
    color: #db2a1b;
}

.title_s {
  font-size: 33px;
  color: #db2a1b;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: -0.1px;
  text-align: left;
}
.subtitle_s {



  font-size: 22px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: -0.1px;
  text-align: left;
  color: #4d4d4c;
}
.bottom-g {
    border-bottom: solid 0.5px #dedede;
    padding-bottom: 35px;
}
.s_content {
      font-size: 20px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.55;
  letter-spacing: -0.2px;
  text-align: left;
  color: #4d4d4c;
}


.padding-top-35 {
    padding-top: 35px;
}
.last_boat {
    border-bottom: none !important;
}

.td1 {
    background-color: #e4e4e4;
}

.td2 {
    background-color: #f9f9f9;
}
.td3 {
    background-color: #ececec;
}

.td4 {
    background-color: #dbdbdb;
}

.td5 {
    background-color: #c8c8c8;
}

#table2 td {
    padding: 10px;
    border: none !important;
    min-width: 195px;
    font-size: 16px;
    /* font-size: 12px; */

    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.2;
    letter-spacing: -0.1px;
    text-align: center;
    color: #4d4d4c;
}

#table2 .t1 {
    background: #e4e4e4;
    color: #4d4d4c;
    text-align: center;
    padding: 6px;
    font-weight: bold;
}
.cat11 {
    width: 128px;
}
.fn1 {
      font-size: 12px;
      /* font-size: 16px; */
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: 2.06;
  letter-spacing: -0.1px;
  text-align: left;
  color: #db2a1b !important;
}
.fnk {
      /* font-size: 16px; */
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  /* line-height: 2.06; */
  letter-spacing: -0.1px;
  /* text-align: left; */
  color: #db2a1b !important;
}
.fn1d {
  font-size: 16px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: 2.06;
  letter-spacing: -0.1px;
  text-align: left;
  color: #c7c7c7 !important;
}
.fn2d {
    color: #a7a7a7 !important;
}
.fn3d {
    color: #bababa !important;
}


.modal--active {
        transition: none !important;
    visibility: visible;
    opacity: 1;
    top: 70px !important;
    bottom: auto !important;
}

.carousel .right {
        display: flex;
    align-items: center;
    justify-content: flex-end;
}

.carousel .left {
        display: flex;
    align-items: center;
    justify-content: flex-start;
}


.carousel-control.right {
    right: 0;
    left: auto;
     background-image: none !important; 
    background-image: none !important;
     background-image: none !important;
     background-image: none !important;
    background-repeat: repeat-x;
}
.carousel-control.left {
   background-image: none !important; 
    background-image: none !important;
     background-image: none !important;
     background-image: none !important;
    background-repeat: repeat-x;
}
a { color: #4d4d4c !important; }
b a { color: #4d4d4c !important; }

.modal2 {
    left: auto !important;
}

#sell, #whatsapp_b {
        position: fixed;
    bottom: 10%;
    right: 5%;
    background: #db2b1a;
    padding: 18px;
    color: white !important;
}





.text-foot-stick {
      font-size: 15px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: -0.1px;
  text-align: left;
    margin-bottom: 20px;
    text-align: center;
}
.close_2 {
        position: absolute;
    top: -22px;
    right: 3px;
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-control-placeholder {
  position: absolute;
  top: 0;
  padding: 7px 0 0 13px;
  transition: all 200ms;
  opacity: 0.5;
  font-weight: 0, important;
}

.form-control:focus + .form-control-placeholder,
.form-control:valid + .form-control-placeholder {
  font-size: 75%;
  transform: translate3d(0, -100%, 0);
  opacity: 1;
}

.toast-top-full-width { top: 50% !important; right: 0; width: 100%; }
    #toast-container > .toast-success { z-index: 9999999999999999999999999; background-image: none; background-color: #fff; color: black; opacity: 1;    /*width: 100%;*/ }
 

 /*

        Image hover

 */

    .container_hov{
        position: relative;
    }

    .image_hov {
      opacity: 1;
      display: block;
      width: 100%;
      backface-visibility: hidden;
    }
    .lb-nav a.lb-prev, .lb-nav a.lb-next {
        filter: alpha(Opacity=100);
        opacity: 1 !important;
    }
   
    .laflotte-desktop-fix {
        padding-top: 76px !important;
    }
    .middle_hov {
        transition: .4s ease;
        opacity: 0.7;
        position: absolute;
        bottom: 0;
        /* right: 0; */
        right: -45px;
        /* right: 50px; */
        transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        text-align: center;
    }

    .container_hov:hover .middle_hov {
      opacity: 0.5;
    }

    .text_hov {
      background-color: #db2a1b;
      color: white;
      font-weight: bold;
      font-size: 16px;
          padding: 7px 34px;
        border-radius: 30px;   
     }    


      
/* CARD */
.main-card-fix {
    width: 360px;
    height: 436px;
    box-shadow: 0 2px 15px 1px rgba(0, 0, 0, 0.5);
    background-color: #de332a;
    position: relative;
    top: 39px;
    z-index: 999;
    margin-left: 256px;
    margin-top: 0px;
    margin-right: auto;
    padding: 45px 10px;
}
.card-title-custom {
    width: 274px;
    height: 81px;
    font-size: 21px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: -0.4px;
    color: #ffffff;
}
.card-text-custom {
    width: 276px;
    height: 106px;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.36;
    letter-spacing: -0.3px;
    color: #ffffff;
}

.prim {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: white;
    letter-spacing: 1px;
    line-height: 15px;
    border: 2px solid white;
    background: transparent;
    transition: all 0.3s ease 0s;
    width: 143px;
    height: 46px;
    border-radius: 27.5px;
    border: solid 3px #ffffff;
  }


.button-text-c {
    font-size: 14px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: -0.3px;
    color: #ffffff;
}

/* CARD END */





/* CAROUSEL JSSOR */
     /* jssor slider loading skin spin css */
    .slider-wrap {
        /* margin-top: 22px; */
        padding: 0px 0;
    }
    .jssorl-009-spin img {
        animation-name: jssorl-009-spin;
        animation-duration: 1.6s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
    }

@keyframes jssorl-009-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
/* CAROUSEL JSSOR  END*/
.btn.focus, .btn:focus, .btn:hover {
    color: #fff !important;
    text-decoration: none;
}


.btn-normal {
    color: #000;
    background-color: #d2d2d2;
    border-color: #b9b9b9;
}

.btn-black {
    color: #fff;
    background-color: #4d4d4c;
    border-color: #4d4d4c;
}

.checki {
    background-image: url(/assets/check_2.svg);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: 10px;
}
.bgii {
    background-image: url(/assets/main.PNG);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 10px;
    height: 525px;
    width: 100%;
}

/* homek */
#datep {
    opacity: 1 !important;
    background: white !important;
    border-left: solid 1px #e4e4e4;
    border-bottom: none !important;
    width: 100% !important;
    /* width: 247px !important; */
    font-size: 13px;
    color: #504f4f;
    font-weight: 500;
    font-size: 19px;
    height: 60px;
    font-family: sans-serif
}

#searchbtn {
    height: 60px;
    width: 100%;
    /* width: 247px; */
    font-size: 19px;
    border: none;
    background-color: #db2a1a;
    color: white;
    font-weight: 700;
}

.select2-container .select2-choices .select2-search-field input,
.select2-container .select2-choice,
.select2-container .select2-choices {
    background: none !important;
    padding: 0 !important;
    border-color: #cccccc !important;
    border-radius: 0 !important;
    border-radius: 0px !important;
}

.select2-arrow {
    display: none !important;
}

.select2-container-active .select2-choice,
.select2-container-multi.select2-container-active .select2-choices {
    border-color: transparent !important;
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

.select2-container .select2-choices .select2-search-field input,
.select2-container .select2-choice,
.select2-container .select2-choices {
    background: none !important;
    padding: 0 !important;
    border-color: #cccccc !important;
    /* border-radius: 4px !important; */
    color: #555555 !important;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    background-color: white !important;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false) !important;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) !important;
    box-shadow: none !important;
}

.select2-container .select2-choice {
    display: block;
    height: 26px;
    padding: 0 0 0 8px;
    overflow: hidden;
    position: relative;
    border: none !important;

}

.select2-container .select2-choice>.select2-chosen {
    font-size: 19px !important;
    color: #757575;
    margin: auto !important;
    padding: 17px 13px;
}

.select2-container .select2-choice>.select2-chosen:active {
    /* color: #555555 !important; */
}

.select2-search {
    padding-left: 0px !important;
    padding-right: 0px !important;
    padding: 0px !important;
}

.prec {
    width: 150px !important;
}

.postc {
    width: 360px !important;
}

.select2-search input {
    border-color: transparent !important;
    border-radius: 0px !important;
    color: #555555;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #f3f3f3 !important;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.select2-drop-active {}

.year_li .select2-drop-active {
    margin-top: 7px !important;
    margin-left: -1px !important;
    width: 150px !important;
}

.select2-results .select2-highlighted {
    background: #db2a1a !important;
}

.select2-drop-active {
    border: 1px solid #f3f3f3 !important;
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    /* border: none !important; */
    border-radius: 4px;
}

.select2-container {
    width: 100% !important;
    /* width: 247px !important; */
}

.wrap_form {
    width: 100%;
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.select2-container .select2-choice {
    height: 60px !important;
    /* display: flex; */
}

.reserv_wrap {
    /* width: 70%; */
    width: 55%;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
}

.all-wrp {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    justify-content: center;
}

.reserv {
    font-size: 40px;
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
}

.pic-s {
    width: 100%;
    height: 225px;
    /* width: 250px;
    height: 150px; */
    background: #d8d8d8;
    margin-bottom: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media only screen and (min-width: 768px) and (max-width: 1024px){
    .pic-s {
        width: 100%;
        height: 445px;

}

.fix-m {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.info-wrap {
    text-align: left;
    font-size: 19px;
    color: #4d4d4c;
    line-height: 17px;
}

.title-s {
    font-weight: 700;
    margin-bottom: 5px;
}

.location-s {
    font-weight: 300;
    margin-bottom: 10px;
}

.price-s {
    font-weight: 700;
    font-size: 22px;
    color: #db2a1a;
}

.container-c {
    padding: 0px 150px;
}

.mb-row {
    margin-bottom: 50px;
}

.card-w {
    width: 100%;
}


.select-1,
.date-1,
.button-1 {
    width: 33%;
}

.datepicker-container {
    font-size: 17px !important;
    line-height: 30px;
    position: fixed;
    z-index: -1;
    top: 0;
    color: #4d4d4c !important;
    font-weight: 300 !important;
}


@media only screen and (max-width: 767px) {
    .bg_home {
        height: 362px !important;
    }
    .bg-img-2 {
        top: 50px !important;
    }

    .wrap_form {
        width: 100%;
        display: flex;
        flex-direction: column !important;
        align-items: center;
        justify-content: center;
    }

    .reserv {
        line-height: 37px !important;
    }
    .select-1,
    .date-1,
    .button-1 {
        width: 100% !important;
    }
    .card-w {
        margin-bottom: 45px !important;
    }
}



/*------------------------------------*\
    Custom Loader
\*------------------------------------*/


#c-loader {
    position: fixed;
    left: 0;
    /* top: 0; */
    height: 60%;
    bottom: 0;
    right: 0;
    background-color: #FFF;
    opacity: 0.5;
    z-index: 99999;
}
#c-loader-full {
    position: fixed;
    left: 0;
    /* top: 0; */
    height: 100%;
    bottom: 0;
    right: 0;
    background-color: #FFF;
    opacity: 0.5;
    z-index: 99999;
}
.c-loader-full {
    position: fixed;
    left: 0;
    /* top: 0; */
    height: 100%;
    bottom: 0;
    right: 0;
    background-color: #FFF;
    opacity: 0.5;
    z-index: 99999;
}

.c-loader {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.c-loader span {
    display: inline-block;
    background-color: #db2a1b;
    width: 25px;
    height: 25px;
    -webkit-animation: 1s preload ease-in-out infinite;
            animation: preload 1s ease-in-out infinite;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    border-radius:50%;
}

.c-loader span:nth-child(1) {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
}

.c-loader span:nth-child(2) {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
}

.c-loader span:nth-child(3) {
    -webkit-animation-delay: 0.15s;
            animation-delay: 0.15s;
}

.c-loader span:nth-child(4) {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
}

@-webkit-keyframes preload {
    0% {
       -webkit-transform:scale(0);
               transform:scale(0);
    }
  50% {
    -webkit-transform:scale(1);
            transform:scale(1);
  }
  100% {
    -webkit-transform:scale(0);
            transform:scale(0);
  }
}

@keyframes preload {
    0% {
       -webkit-transform:scale(0);
               transform:scale(0);
    }
  50% {
    -webkit-transform:scale(1);
            transform:scale(1);
  }
  100% {
    -webkit-transform:scale(0);
            transform:scale(0);
  }
}


/*---------------------------*/


.contact_wsp_custom {
    position: absolute;
    bottom: calc(0% + 81px);
    right: 0px;
    z-index: 99999;
    height: 50px;
    padding: 10px;
    background-image: linear-gradient(to right, rgba(47, 37, 37, 0), rgba(0, 0, 0, 0.56));
    font-weight: 500;
}
/* Responsive */
