/********** Template CSS **********/
:root {
    --primary: #3CB815;
    --secondary: #F65005;
    --light: #727272;
    --dark: #111111;
}

body {
    overflow-x: hidden;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.bg-icon {
    background: url(../img/bg-icon.png) center center repeat;
    background-size: contain;
}

.align-content-left{
    justify-content: start;
}

.align-content-right{
    justify-content: end;
}

.fade-in-logo {
    animation: fadeIn 5s;
}

.logo-default{
    height: 35px;
    width: 188px;
}

.fade-in-text-title {
    animation: fadeIn 5s;
}

.fade-in-text-subtitle {
    animation: fadeIn 7s;
}

.contact-text-area{
    min-height: 300px;
}

.contact-image{
    width: 210px;
    height: 254px;
    -o-object-fit: cover;
       object-fit: cover;
}

.contact-info-home{
    text-align: start;
}

.container-video {
    position: relative;
    width: 100vw;
    height: 100vh;
}

.container-video2 {
    position: relative;
    width: 100vw;
    height: 100vh;
}

.container-video-text{
    position: absolute;
    width: 100%;
    height: 90%;
    z-index: 0;
    
}

.container-video-arrow2{
    position: absolute;
    width: 100%;
    height: 10%;
    z-index: 0;
}

.video-line2{
    min-height: 2px;
    opacity: 20%;
    background-color: #e6e6e6;
    margin-top: 92vh;
}

.video-arrow2{
    text-align: center;
    opacity: 20%;
    margin-top: 20px;
}

.container-video-text > .main-text-video{
    text-align: center;
    margin-top: 45vh;
    margin-left: 2%;
    margin-right: 2%;
    color: #fff;
    font-weight: 600;
    font-size: 30px;
    opacity: 0.6;
    user-select: none;
}

.container-video-text > .secondary-text-video{
    text-align: center;
    margin-top: 10px;
    margin-left: 2%;
    margin-right: 2%;
    color: #fff;
    font-weight: 600;
    font-size: 22px;
    opacity: 0.6;
    user-select: none;
}
  
.container-video > .bg-video {
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-video{
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.container-video-over-text{
    width: 100%;
    height: 90%;
    z-index: 0;
}

.container-video-over-arrow{
    width: 100%;
    height: 10%;
    z-index: 0;
}

.container-video-over-text > .text-title {
    text-align: center;
    position: absolute;
    opacity: 60%;
    inset: 0px 20px 0px 20px;
    /* inset: 2em 50px 20px; */
    display: grid;
    place-items: center;
    /* background-color: #000; */
    color: #fff;
    font-weight: 600;
    font-size: 30px;
    /* font-family: sans-serif; */
    mix-blend-mode: normal;
    user-select: none;
}

.container-video-over-text> .text-subtitle {
    text-align: center;
    position: absolute;
    opacity: 60%;
    inset: 120px 20px 0px 30px;
    display: grid;
    place-items: center;
    /* background-color: #000; */
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    /* font-family: sans-serif; */
    mix-blend-mode: normal;
    user-select: none;
}

.video-line{
    min-height: 2px;
    opacity: 5%;
    background-color: #e6e6e6;
}

.video-arrow{
    text-align: center;
    opacity: 10%;
    margin-top: 20px;
}

.centered-content
{
    max-width: 1280px;
}

.about-home-image-container
{
    max-width: 640px;
}

.about-home-text-container
{
    max-width: 640px;
}

.about-image-home
{
    width: 512px;
    height: 600px;
    max-width: 512px;
    max-height: 600px;
    -o-object-fit: cover;
       object-fit: cover;
}

.about-text-home-container
{
    max-width: 640px;
}

.about-text-home-button{
    /* text-align: left; */
    margin-left: 5%;
    margin-right: 5%;
}

.about-text-home{
    margin-top: 0px;
    margin-left: 5%;
    margin-right: 5%;
}

.about-image
{
    max-width: 1280px;
    -o-object-fit: cover;
       object-fit: cover;
}

.about-text-container
{
    max-width: 1280px;
}

.about-title{
    margin-left: 2%;
    margin-right: 2%;
}

.justify-text{
    text-align: justify;
}


.about-text{
    margin-top: 10px;
    margin-left: 0%;
    margin-right: 0%;
    text-align: justify;
}

.terms-title{
    text-align: center;
    margin-left: 2%;
    margin-right: 2%;
}

.terms-text{
    margin-top: 10px;
    margin-left: 0%;
    margin-right: 0%;
}

.privacy-title{
    text-align: center;
    margin-left: 2%;
    margin-right: 2%;
}

.privacy-text{
    margin-top: 10px;
    margin-left: 0%;
    margin-right: 0%;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  
@-moz-keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}

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

@-o-keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}

@-ms-keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary,
.btn.btn-outline-primary:hover,
.btn.btn-outline-secondary:hover {
    color: #111111;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 25px 15px;
    color: #6b6b6b;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    /* color: var(--dark); */
    color:#ffffff;
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: #2f931100;
    border: 1px solid transparent;
    border-radius: 0;
    transition: box-shadow 0.15s ease-in-out
}

.nav-item{
    color: #6b6b6b;
}

.nav-link{
    color: #6b6b6b;
}

.flaglang
{
    margin-top: -5px;
    margin-left: 4px;
    width: 22px;
    height: 15px;
}

video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}

.overlay-top-video {
    min-height: 80vh;
  }

.overlay-bottom-video {
    min-height: 20vh;
  }

.overlay {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
.overlay h2 {
      color: rgb(255, 255, 255);
      font-weight: 600;
      mix-blend-mode:overlay;
      text-align: center;
}

.h2subtitle {
    /* background: #000 none repeat scroll 0 0; */
    color: rgb(255, 255, 255);
    font-weight: 600;
    font-size: .67em;
}

.partner-links{
    min-height: 45px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.product-item {
    /* box-shadow: 45px 45px 45px rgba(0, 0, 0, .07); */
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    width: 95%;
    margin-bottom: 20px;
    background-color: #ffffff;
    margin-left: 10px;
    margin-right: 10px;
}


.cookies-container{
    background-color: #111111de;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}

.cookies-description{
    color: #8f8f8f;
    font-size: small;
}

.cookies-description-href{
    font-size: small;
    margin-top: -2px;
    margin-left: -5px;
    color: #a8a8a8;
}

.cookies-button{
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    background-color: #ffffff86;
    color: #111111;
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
    border-radius: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    width: 100vw;
    height: 10vh;
    padding-top: 12rem;
    padding-bottom: 6rem;  
    max-height: 10vh;  

    background: url(../img/page-header2a.jpg) top center no-repeat;
    
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Section Header ***/
.section-header {
    position: relative;
    padding-top: 25px;
}

.section-header::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
}

.section-header::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 0px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
}

.section-header.text-start::before,
.section-header.text-start::after {
    left: 0;
    transform: translateX(0);
}


/*** Product ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}


/*** Products Home ***/

.product-item-home {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;    
    max-width: 400px;
    height: 520px;
    margin-bottom: 2%;
    background-color: #ffffff;
    margin-left: .5%;
    margin-right: .5%;
}

.product-feature-block-home{
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    min-height: 220px;
}

.product-item-home-bottom{
    position: relative;
    bottom: 0;
    margin-bottom: 0px;
    height: 40px;
}

.product-image-home{
    margin-top: 30px;
    margin-left: 20px;
    margin-right: 20px;
    max-width: 360px;
    height: 205px;
    -o-object-fit: cover;
       object-fit: cover;
}

.product-feature-text-home{
    font-size:small;
}

.product-item-home img {
    transition: .5s;
}

.product-item-home:hover img {
    transform: scale(1.05);
}

.product-item-home small a:hover {
    color: var(--primary) !important;    
}

.justify-row{
    justify-content: center !important;
}

.align-text-left{
    text-align: start;
    margin-left: 5px;
}

.align-text-right{
    text-align: end;
    margin-right: 5px;
}


/*** Products All ***/


.product-item-bottom{
    bottom: 0;
    margin-bottom: 0px;
    max-height: 50px;
    height: 40px;
}

.product-image{
    align-content: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
    max-width: 100%;
    scale: 0.95;
    min-height: 90%;
    -o-object-fit: cover;
       object-fit: cover;
}

.product-feature-text{
    font-size:small;
}

.product-price-text{
    font-size:medium;
    margin-top: 2rem;
}

.product-item img {
    transition: .5s;
}

.product-item:hover img {
    transform: scale(1.05);
}

.product-item small a:hover {
    color: var(--primary) !important;
}

.product-left-section{
    max-width: 30%;
}

.products-right-section{
    max-width: 70%;
}

.products-details{
    max-width: 200px;
    font-size: small;
}


.feature-row{
    justify-content: center !important;
}

.feature-item {
    vertical-align: middle;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    max-width: 400px;
    max-height: 600px;
    margin-bottom: 20px;
    background-color: #ffffff;
    margin-left: 10px;
    margin-right: 10px;
}

.feature-image-home
{
    margin-top: 30px;
    margin-left: 20px;
    margin-right: 20px;
    max-width: 360px;
    max-height: 230px;
    height: 205px;
    -o-object-fit: cover;
       object-fit: cover;
}

.feature-item:hover img {
    transform: scale(1.05);
}

.feature-item img {
    transition: .5s;
}

.feature-block-home{
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
    height: 200px;
}

/*==================================================
 * Partners Home
 * ===============================================*/

.partner-item-home {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    width: 300px;
    /* height: 300px; */
    /* margin-bottom: 20px; */
    background-color: #ffffff;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 1rem;
}

/* body::-webkit-scrollbar{
    display: none;
} */

.googleForm{
    height: 2000px;
    margin: auto;
    /* overflow: hidden; */
}


.clip-circle {
    clip-path: circle(75px at center);
}

.partner-image-home
{
    width: 200px;
    height: 176px;
}

.partner-description-home{
    margin-top: -0.8rem !important;
    line-height: 1.2;
}

.partner-links-home{
    margin-top: -0.5rem !important;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.partner-social-home{
    width: 30px;
    margin-left: 3px;
    margin-right: 3px;
    text-align: center;
}

.partner-social-phone-container-home{
    width: 150px;
    margin-left: 3px;
    margin-right: 3px;
}

.partner-social-phone-icon-home{
    width: 30px;
    height: 30px;
}

.partner-social-phone-text-home{
    width: 120px;
    height: 30px;   
}

.partners-viewall{
    max-width: 240px;
    margin-top: 1rem;
}

/*==================================================
 * Partners Page
 * ===============================================*/

 /* .partner-container{
    max-width: 70%;
 } */

.partner-item-left{
    /* width: 180; */
    text-align: center;
}

.partner-item-right{
    /* width: 420px; */
    text-align: center;
}

.partner-item {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    /* width: 600px; */
    /* height: 300px; */
    background-color: #ffffff;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 1rem;
}

.partner-image
{
    text-align: center;
    width: 150px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.partner-links-home{
    margin-top: 0rem !important;
}

.partner-link{
    max-width: 2rem;
}

.partner-social{
    width: 30px;
    margin-top: 10px;
    margin-left: 3px;
    margin-right: 3px;
    margin-bottom: 10px;
}

.partner-social-phone-container{
    width: 150px;
    margin-top: 10px;
    margin-left: 3px;
    margin-right: 3px;
    margin-bottom: 10px;
}

.partner-social-phone-icon{
    width: 30px;
    height: 30px;
    /* margin-top: 10px;
    margin-left: 3px;
    margin-right: 3px;
    margin-bottom: 10px; */
}

.partner-social-phone-text{
    width: 120px;
    height: 30px;    
    /* margin-top: 10px;
    margin-left: 3px;
    margin-right: 3px;
    margin-bottom: 10px; */
}

.align-text-left{
    text-align: start;
}


.buttons-outline{
    border: 2px solid;
    border-color: #727272;
}


@media only screen and (orientation: portrait){
    .googleForm{
        height: 2000px;
        margin: auto;
        /* overflow: hidden; */
    }

    .contact-info-home{
        text-align: center;
    }

    .contact-info-social{
        justify-content: center;
    }

    .contact-image{
        width: 210px;
        height: 254px;
        -o-object-fit: cover;
           object-fit: cover;
        margin-bottom: 20px;
    }
    

    .video-line2{
        min-height: 2px;
        opacity: 20%;
        background-color: #e6e6e6;
        margin-top: 90vh;
    }
    
    .video-arrow2{
        text-align: center;
        opacity: 20%;
        margin-top: 20px;
    }
    
    .container-video-text > .main-text-video{
        text-align: center;
        margin-top: 40vh;
        margin-left: 5%;
        margin-right: 5%;
        color: #fff;
        font-weight: 600;
        font-size: 25px;
        opacity: 0.6;
        user-select: none;
    }
    
    .container-video-text > .secondary-text-video{
        text-align: center;
        margin-top: 10px;
        margin-left: 5%;
        margin-right: 5%;
        color: #fff;
        font-weight: 600;
        font-size: 20px;
        opacity: 0.6;
        user-select: none;
    }

    .container-video-over-text > .text-title {
        text-align: center;
        position: absolute;
        opacity: 60%;
        inset: 0px 20px 0px 20px;
        /* inset: 2em 50px 20px; */
        display: grid;
        place-items: center;
        /* background-color: #000; */
        color: #fff;
        font-weight: 600;
        font-size: 20px;
        /* font-family: sans-serif; */
        mix-blend-mode: normal;
        user-select: none;
    }
    
    .container-video-over-text> .text-subtitle {
        text-align: center;
        position: absolute;
        opacity: 60%;
        inset: 130px 20px 0px 30px;
        display: grid;
        place-items: center;
        /* background-color: #000; */
        color: #fff;
        font-weight: 600;
        font-size: 15px;
        /* font-family: sans-serif; */
        mix-blend-mode: normal;
        user-select: none;
    }

    .product-details-icon{
        display:none;
    }

    .product-item-home {
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;    
        max-width: 400px;
        height: 540px;
        margin-bottom: 2%;
        background-color: #ffffff;
        margin-left: .5%;
        margin-right: .5%;
    }
    
    .product-feature-block-home{
        margin-top: 10px;
        margin-left: 10px;
        margin-right: 10px;
        min-height: 240px;
    }

    .about-home-text-container
    {
        max-width: 640px;
        margin-top: 2rem;
    }
    .about-text-home-button{
        text-align: center;
        padding-left: 2rem;
        padding-right: 2rem;
        margin-left: 5%;
        margin-right: 5%;
    }    
}


@media (max-width: 768px) {
    .cookies-container{
        display: none;
    }
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }    

    .contact-info-home{
        text-align: center;
    }

    .contact-info-social{
        justify-content: center;
    }

    .contact-image{
        width: 210px;
        height: 254px;
        -o-object-fit: cover;
           object-fit: cover;
        margin-bottom: 20px;
    }
}

@media (min-width: 992px) {
    
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }    

    .product-container{
        max-width: 70%;
     }

    .partner-container{
        max-width: 70%;
     }

    .partner-title{
        margin-top: 20px;
        text-align: left;
    }

    .partner-description{
        margin-top: 5px;
        text-align: left;
        line-height: 1.1;
    }

    .partner-description-long{
        margin-top: 0px;
        /* text-align: left; */
        min-height: 50px;
        text-align: justify;

        /* test 3*/
    }

    .partner-links{
        min-height: 45px;           
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: start;
        align-items: flex-start;
    }

    .product-item {
        /* box-shadow: 45px 45px 45px rgba(0, 0, 0, .07); */
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        width: 95%;
        margin-bottom: 20px;
        background-color: #ffffff;
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (min-width:400) {
    .product-container{
        max-width: 90%;
     }
}

@media (min-width:768) {

    .partner-container{
        max-width: 90%;
     }

     .product-container{
        max-width: 90%;
     }

     .partner-title{
        margin-top: 20px;
        text-align: center;
    }

    .partner-description{
        margin-top: 5px;
        text-align: center;
        line-height: 1.1;
    }

    .partner-description-long{
        margin-top: 0px;
        /* text-align: left; */
        min-height: 50px;
        text-align: justify;
    }

    .partner-links{
        min-height: 45px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: start;
        align-items: flex-start;
    }
    .product-item {
        /* box-shadow: 45px 45px 45px rgba(0, 0, 0, .07); */
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        width: 95%;
        margin-bottom: 20px;
        background-color: #ffffff;
        margin-left: 20px;
        margin-right: 20px;
    }
}



@media (min-width:1301px){
    .partner-container{
        max-width: 50%;
     }

     .product-container{
        max-width: 50%;
     }

     .partner-title{
        margin-top: 20px;
        text-align: left;
    }

    .partner-description{
        margin-top: 10px;
        text-align: left;
        line-height: 1.1;
    }
    .partner-description2{
        margin-top: 5px;
        text-align: left;
        line-height: 0.5;
        font-size: small;
    }

    .partner-description-long{
        margin-top: 0px;
        /* text-align: left; */
        min-height: 50px;
        text-align: justify;
    }

    .partner-links{
        min-height: 45px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: start;
        align-items: flex-start;
    }
}


/*==================================================
 * Effect 2
 * ===============================================*/
 .effect2
 {
   position: relative;
 }
 .effect2:before, .effect2:after
 {
   z-index: -1;
   position: absolute;
   content: "";
   bottom: 15px;
   left: 10px;
   width: 50%;
   top: 80%;
   max-width:300px;
   background: #777;
   -webkit-box-shadow: 0 15px 10px #777;
   -moz-box-shadow: 0 15px 10px #777;
   box-shadow: 0 15px 10px #777;
   -webkit-transform: rotate(-3deg);
   -moz-transform: rotate(-3deg);
   -o-transform: rotate(-3deg);
   -ms-transform: rotate(-3deg);
   transform: rotate(-3deg);
 }
 .effect2:after
 {
   -webkit-transform: rotate(3deg);
   -moz-transform: rotate(3deg);
   -o-transform: rotate(3deg);
   -ms-transform: rotate(3deg);
   transform: rotate(3deg);
   right: 10px;
   left: auto;
 }



/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-item.center .testimonial-item i {
    color: var(--secondary) !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    color: #999999;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #999999;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #999999;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}