/*
* Prefixed by:
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 10 version
*/



@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gugi&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@600&display=swap');


:root {
    --header-height: 3rem;


    --hue-color: 220;
    --first-color-dark: hsl(var(--hue-color), 28%, 24%);
    /* --first-color-dark:hsl(var(--hue-color),50%, 36%); */
    --first-color: hsl(var(--hue-color), 69%, 61%);
    --first-color-second: hsl(var(--hue-color), 69%, 61%);
    --first-color-alt: hsl(var(--hue-color), 57%, 53%);
    --first-color-lighter: hsl(var(--hue-color), 92%, 85%);
    --title-color: hsl(var(--hue-color), 8%, 15%);
    --text-color: hsl(var(--hue-color), 8%, 45%);
    --text-color-light: hsl(var(--hue-color), 8%, 65%);
    --input-color: hsl(var(--hue-color), 70%, 96%);
    /* --body-color: hsl(var(--hue-color), 60%, 99%); */
    --body-color: hsl(var(--hue-color), 60%, 76%);
    --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
    --scroll-thumb-color: hsl(var(--hue-color), 12%, 80%);
    --container-color: #fff;

    --body-font: "Poppins", sans-serif;
    --custom-font: "Ubuntu", sans-serif;
    /* --quote-font: "Special Elite", cursive;  */
    --quote-font: "Staatliches", cursive; 

    --big-font-size: 2rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1.125rem;
    --normal-font-size: 0.938rem;
    --small-font-size: 0.813rem;
    --smaller-font-size: 0.75rem;

    --font-medium: 500;
    --font-semi-bold: 600;


    --mb-0-25: 0.25rem;
    --mb-0-5: 0.5rem;
    --mb-0-75: 0.75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;

    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;
}

* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: var(--body-font);
}

html{
    scroll-behavior: smooth;
}

body {
    font-size: var(--normal-font-size);
    background-color: #fff;
    color: var(--text-color);
    min-height: 110vh;
}

h1,h2,h3,h4 {
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
}

ul{
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

custom-a {
    font-family: 'Source Sans Pro', sans-serif !important;
    color: var(--first-color);
}
/* ---------------------BUTTONS------------------- */
.button {
    display: inline-block;
    background-color: var(--first-color);
    color: #fff;
    padding: 1rem;
    border-radius: .5rem;
    font-weight: var(--font-medium);
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.button:hover {
    background-color: var(--first-color-alt);
}

.button__icon {
    font-size: 1.25rem;
    margin-left: var(--mb-0-5);
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.button--flex {
    display: inline-block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.button--small {
    padding: .75rem 1rem;
}

.submit__button {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    cursor: pointer;
    -webkit-box-shadow: none;
            box-shadow: none;
}

.submit__button:hover > i {
    -webkit-transform: translateX(.25rem);
        -ms-transform: translateX(.25rem);
            transform: translateX(.25rem);
}

.scrollToTop-btn {
    display: block;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
  }
  
  .scrollToTop-btn:hover > .up-icon {
    -webkit-transform: translateY(-3px);
        -ms-transform: translateY(-3px);
            transform: translateY(-3px);
  }

  .scrollToTop-btn {
    z-index: 999;
    position: fixed;
    background: var(--first-color);
    color: #fff;
    width: 45px;
    height: 45px;
    right: 3%;
    bottom: 3%;
    font-size: 22px;
    text-align: center;
    line-height: 45px;
    border-radius: 3px;
    cursor: pointer;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  
  .scrollToTop-btn.active-scroll {
    opacity: 1;
    pointer-events: auto;
  }

  .menu-btn {
    display: none;
    position: absolute;
    background: url(../img/menu.png) no-repeat;
    background-size: 30px;
    background-position: center;
    width: 40px;
    height: 40px;
    right: 0;
    margin: 0 20px;
    cursor: pointer;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
  }

  .menu-btn.active {
    z-index: 999;
    background: url(../img/close1.png) no-repeat;
    background-size: 25px;
    background-position: center;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-filter: invert(1);
            filter: invert(1);
  }

/* ----------------MAIN ATTRIBUTES------------------ */

.container {
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

.grid {
    display: -ms-grid;
    display: grid;
    gap: 1.5rem;
}

.section {
    padding: 100px 200px;
}

.section__small {
    padding: 50px 50px 25px ;
}

.section__title {
    font-size: var(--h1-font-size);
    position: relative;
    color: var(--first-color);
    font-size: 2.2em;
    font-weight: var(--font-medium);
    margin-bottom: 60px;
}

.section__title::before {
    content: '';
    position: absolute;
    top: 56px;
    left: 50%;
    width: 140px;
    height: 4px;
    background-color: var(--first-color);
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}

/* .section__title::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 50%;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--first-color);
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
} */

.section__subtitle {
    display: block;
    font-size: var(--small-font-size);
    margin-bottom: var(--mb-3);
}

.section__title,
.section__subtitle {
    text-align: center;
}

.reveal {
    position: relative;
    -webkit-transform: translateY(50px);
        -ms-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
    -webkit-transition: all 1.5s ease;
    -o-transition: all 1.5s ease;
    transition: all 1.5s ease;
}

.reveal__active {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
}


/* HEADER */

.header {
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
}

.sticky {
    /* background-color:var(--first-color-dark); */
    background-color: #fff;
    -webkit-box-shadow: 0 -1px 4px rgb(0 0 0 / 60%);
            box-shadow: 0 -1px 4px rgb(0 0 0 / 60%);
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
}

.sticky .nav-link {
    color: #000;
}

.brand {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    padding: 20px 30px;
    font-size: var(--h1-font-size);
    font-weight: var(--font-semi-bold);
    text-transform: uppercase;
    color: #fff;
}


.brand__company-logo { 
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 5px;
   -webkit-transition: .3s ease;
   -o-transition: .3s ease;
   transition: .3s ease; 
}

.sticky .brand__company-logo {
    display: block;
    
}
.navigation {
    position: relative;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    padding: 20px 50px;
    padding-left: 0;
}

.navigation a {
    font-size: var(--h3-font-size);
    font-weight: var(--font-semi-bold);
    margin-left: var(--mb-1-5);
}

.nav-link  {
    color: #fff;   
}

.navigation a:hover {
    color: var(--first-color);
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}


/* MAIN */
.home {
    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;
    color: #fff;
    padding: 0 20px;   
}



.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    
    
   
}

.video-container img{
    display: none;
    -o-object-fit: cover;
       object-fit: cover;
}




.video-container video {
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -o-object-fit: cover;
       object-fit: cover;  
}

.videoHD {
    display: none;
}



.video-container:after {
    content: '';
    z-index: 1;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    position: absolute;
}

.home-logo {
    z-index: 2;
    padding: 100px 200px;
}

.social__media{
    position: absolute;
    top: 50%;
    right: 5%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: -webkit-max-content;
    -ms-grid-columns: max-content;
    grid-template-columns: -webkit-max-content;
    grid-template-columns: max-content;
    row-gap: 1rem;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    z-index: 3;
}

.social__media a {
    text-align: center;
}

.social-icon {
    color: #fff;
    font-size: 2rem;
    margin: 5px;
    -ms-grid-column-align: center;
        justify-self: center;
}

.social__media  a:hover {
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);

}

.social__media a:hover > .social-icon {
    color: var(--first-color);
}



.brand img {
    width: 20px;
    height: 20px;
    
}

.logo__hero {
    position: absolute;
    top: 50%;
    left: 5%;
    -webkit-transform: translate(-5%, -50%);
        -ms-transform: translate(-5%, -50%);
            transform: translate(-5%, -50%);
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 10px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 3;
    
}

.logo__img {
    width: 150px;
    height: 150px;

}

.logo__name {
    padding: 2px 3px;
}

.logo__title {
    font-size: 45px;
    text-transform: uppercase;
    color: #fff;  
    font-weight: 600;
    line-height: 45px;
}

font-custom {
    font-family: var(--custom-font);
    color: var(--first-color);
    
}

.logo__subtitle {
    color: #fff;
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.4px;
}

.logo__question {
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1.4px;
}


.loga {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;

}

.logo__mobile__photo {
    display: none;
}

/* ----------------------MOTTO SECTION------------------- */


.motto {
    background-color: #fff;
}

.motto.section__small {
    padding: 50px 25px;
}

/* .motto__content{
    color: #3f3f5a;
    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;
    border: 2px solid black;
    
} */
.motto__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;

}



blockquote {
    font-size: 2rem;
    max-width: 600px;
    line-height: 1.4;
    position: relative;
    margin: 0;
    padding: .5rem;    
   font-family: var(--quote-font); 
   display: -webkit-box; 
   display: -ms-flexbox; 
   display: flex;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
       -ms-flex-direction: column;
           flex-direction: column;
   
}

blockquote:before,
blockquote:after {
	position: absolute;
	color: var(--first-color);
	font-size: 8rem;
	width: 4rem;
	height: 4rem;
}

blockquote:before {
	content: '“';
	left: -6rem;
	top: -3rem;
}

blockquote:after {
	content: '”';
	right: -5rem;
	bottom: 1rem;
}

cite {
    line-height: 2;
    font-size: 15px;
    text-align: center;
}



.company__logo {
    width: 100%;
    height: 100%;
    /* background-color: var(--first-color); */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    

}

.logo__row {
    margin: auto;
    position: relative;
    padding: 5% 10%;
    width: 100%;
    height: 20%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.line__short {
    width: 15%;
    height: 80%;
    border-radius: 25%;
}

.line__long {
    width: 75%;
    height: 80%;
    border-radius: 5%;
}

#first {
    background-color: hsla(0, 83%, 40%, 1);
}

#second {
    background-color: var(--first-color);
}

#third {
    background-color: hsla(90, 61%, 49%, 1);
}

#fc {
    background-color: hsla(51, 85%, 57%, 1);
}






/* ----------------------ABOUT SECTION------------------- */

.about {
    background-color: var(--first-color-dark);
}

.about__content {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.about__img  {
    width: 45%;  
}

.about__img img {
    width: 100%;
    min-height: 450px;
    border-radius: 5%;
    -o-object-fit: cover;
       object-fit: cover;
}

.about__description {
   width: 45%;
   color: #fff;
}



.about__description p {
    text-align: justify;
}

.about__description h2 {
    font-size: 40px;
    color: #fff;
}
.about__description h3 {
    font-size: 30px;
    color: #fff;
}
@media (min-width: 768px){
    /* HEADER */
    .menu-button {
        display: none;
    }
}

.hero2 {
    background-position: center;
}
/* ----------------------BRANDS SECTION------------------- */ 
.brands__container {
    width: 80%;
    margin-left: auto;
    margin-right: auto;  
   
}

.brands__content  {
   
     display: -webkit-box;
   
     display: -ms-flexbox;
   
     display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; 

} 

.brands__content img {
    width: 50%;  
}

.slider {
    background-color: #fff;
    width: 960px;
    height: 200px;
    overflow: hidden;
    position: relative;
    margin: auto;
    /* box-shadow: 0 10px 20px -5px rgba(0,0,0,.5); */
    margin-bottom: 50px;
}

.slider::before, .slider::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background:-o-linear-gradient(left, #fff 0%, rgba(255, 255, 255,0) 100%);
    background:-webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255,0)));
    background:linear-gradient(to right, #fff 0%, rgba(255, 255, 255,0) 100%);
    z-index:2;
}

.slider::before {
    top: 0;
    left: 0;
}

.slider::after {
    top: 0;
    right: 0;
    -webkit-transform: rotateZ(180deg);
        -ms-transform: rotate(180deg);
            transform: rotateZ(180deg);
}

.slider .slider-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(250px * 56);
    -webkit-animation: scroll 240s infinite linear;
            animation: scroll 240s infinite linear;
}

.slider .slide img {
    width: 300px;
    height: auto;
    padding: 20px;
    
}

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0%);
                transform: translateX(0%);
    }

    100% {
        -webkit-transform: translateX(calc(-250px * 28));
                transform: translateX(calc(-250px * 28));
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0%);
                transform: translateX(0%);
    }

    100% {
        -webkit-transform: translateX(calc(-250px * 28));
                transform: translateX(calc(-250px * 28));
    }
}






/* ---------------------SERVICES SECTION------------------- */

.services {
    background-color: var(--first-color-dark);
}

.services__container {
    gap: 1.5rem;
    -ms-grid-columns: 1fr 1.5rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    
  }
  
  .services__content {
    position: relative;
    background-color: var(--container-color);
    padding: 3.5rem;
    border-radius: 0.25rem;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    text-align: center;
    
  }
  
  .services__content:hover {
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }

  
  
  .services__icon {
    display: block;
    font-size: 3rem;
    color: var(--first-color);
    margin-bottom: var(--mb-1);
   
    
  }
  
  .services__title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-1);
    font-weight: var(--font-medium);
  }
  
  .services__button {
    cursor: pointer;
    font-size: var(--small-font-size);
  }



  
  .services__button:hover .button__icon {
    -webkit-transform: translateX(0.25rem);
        -ms-transform: translateX(0.25rem);
            transform: translateX(0.25rem);
  }
  
  .services__modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    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;
    padding: 0 1rem;
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  
  .services__modal-content {
    position: relative;
    background-color: var(--container-color);
    padding: 3rem;
    border-radius: 0.5rem;
    text-align: center;
  }
  
  .services__modal-services {
    row-gap: 1rem;
    width: 100%;
  }
  
  .services__modal-service {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .services__modal-service p {
    text-align: start;
    margin-left: .25rem;
    font-size: 20px;
    line-height: 30px;
  } 
  
  .services__modal-title {
    /* font-size: var(--h3-font-size); */
    font-size: var(--h1-font-size);
    font-weight: var(--font-medium);
    margin-bottom: var(--mb-1-5);
  }
  
  .services__modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--first-color);
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
  }

  .services__modal-close:hover {
      color: rgb(21, 26, 92);
  }

  
  .services__modal-icon {
    color: var(--first-color);
    margin-right: var(--mb-0-25);
    font-size: 30px;
  }
.ribbon {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
}

.ribbon span {
    position: absolute;
    display: block;
    width: 200px;
    padding: 5px 0;
    background-color: rgba(241, 28, 28, 0.932);
    -webkit-box-shadow: 0 5px 10px rgba(241, 28, 28, 0.7);
            box-shadow: 0 5px 10px rgba(241, 28, 28, 0.7);
    color: #fff;
    font-family: var(--body-font);
    text-shadow: 0 1px 1px rgba(0, 0, 0, .2);
    text-align: center;
    z-index: 0;
}

.ribbon-top-left {
    top: 0px;
    left: 0px;
}

.ribbon-top-left::before,
.ribbon-top-left::after {
    border-top-color: transparent;
    border-left-color: transparent;
}

.ribbon-top-left::before {
    top: 0;
    right: 0;
}

.ribbon-top-left::after {
    bottom: 0;
    left: 0;
}

.ribbon-top-left span {
    right: 0px;
    top: 30px;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
  /* Active Modal */
  
  .active-modal {
    opacity: 1;
    visibility: visible;
  }

 


/* ----------------------TESTIMONIALS SECTION------------------- */



.testimonial__data,
  .testimonial__header {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
           
    
  }

  .testimonial__img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-right: 0.75rem;  
    margin-left: 0;
    margin-bottom: .25rem;
  }

  .testimonial__data,
  .testimonial__description {
    text-align: center;
  }

  .testimonial__name {
    font-size: 22px;
    font-weight: bold;
    
  }

  .testimonial__client{
    font-size:18px;
   
  }
  
  .testimonial__description {
    margin-bottom: 2.5rem;
    margin: auto;
    text-align: justify;
    padding: 10px 20px;
    width: 70%;
  }
  


.testimonial__icon-star {
    color: gold;
    margin-bottom: 15px;
  }



/* ----------------------CONTACT SECTION------------------- */  

.contact {
    background-color: var(--first-color-dark);
}

.contact__container {
    row-gap: 3rem;
}

.contact__information {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 2rem;
}

.contact__icon {
    font-size: 2rem;
    color: var(--first-color);
    margin-right: .75rem;
}

.contact__title {
    font-size: var(--h3-font-size);
    font-weight: var(--font-medium);
}

.contact__subtitle {
    font-size: var(--small-font-size);
    color: var(--text-color-light);
}

.contact__content {
    background-color: var(--input-color);
    border-radius: .5rem;
    border: 3px solid rgba(255,255,255,.7);
    padding: .75rem 1rem .25rem;
    
}

.contact__content:hover {
    border: 3px solid var(--first-color) !important;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.contact__content:focus-within {
    border: 3px solid var(--first-color) !important;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.contact__label {
    font-size: var(--small-font-size);
    color: var(--text-color);
}

.contact__input {
    width: 100%;
    background-color: var(--input-color);
    color: var(--text-color);
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    border: none;
    outline: none;
    padding: .25rem .5rem .5rem 0;
}

.contact__tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    margin-bottom: var(--mb-2);
}

.contact__button {
    font-size: var(--h3-font-size);
    font-weight: var(--font-medium);
    cursor: pointer;
}

.contact__button:hover {
    color: var(--first-color);
}

.contact__icon {
    font-size: 1.8rem;
    margin-right: var(--mb-0-25);
}

.contact [data-content] {
    display: none;
}

.contact__active[data-content] {
    display: block;
}

.contact__button {
    color: #fff;
}

.contact__active {
    color: var(--first-color);
} 

.contacts__content {
    border-radius: 10px;
    padding: 10px;
}

.calendar__size {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
}


/* ----------------------FOOTER------------------- */  

.footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: var(--first-color-dark);
    color: #fff;
    text-align: center;
    padding: 2em;
    
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
}

.copyright {
    font-size: 16px;
    margin-top: 5px;
}

.footer span a {
    color: var(--first-color-alt);
    font-weight: 600;
    text-decoration: none;
}

/* .social__media-footer {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    position: absolute;
    left: 5%;
} */

/* ----------------------COOKIES------------------- */  
/* Cookies */
@media screen and (max-width:32rem) {
    .cookies {
      text-align: center;
    }
  .button__cookie-accept,
  .button__cookie-decline,
  .cookie__link {
    width: 100%;
  }
  }
  
  
  .cookies-active {
    display: none !important;
  }
  .cookies {
    background-color:rgba(0, 0, 0, .3);
    color: #fff;
    padding: .5rem 10%;
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, .3);
            box-shadow: 0 10px 20px rgba(0, 0, 0, .3);
    width: 100vw;
    position: fixed;
    z-index: 1000;
    bottom: 0;
    font-size: 12px;
    display: none;
   
  }
  
  .display-cookies {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  @media screen and (max-width:64rem) {
    .cookie__message{
      width: 100%;
    }
    .button__cookie-accept,
  .button__cookie-decline,
  .cookie__link {
    margin: .5rem 1rem .5rem 0;
  }
    
  }
  .cookie__message {
    padding: .2rem 0;
    margin: 0;
    display: inline-block;
  }
  
  .button__cookie-accept,
  .button__cookie-decline,
  .cookie__link {
    padding: .3rem .8rem;
    border: 0;
    color: #000;
    
    -webkit-transition: all .15s ease;
    
    -o-transition: all .15s ease;
    
    transition: all .15s ease;
    cursor: pointer;
    display: inline-block;
    margin-right: 1rem;
  }
  
  .button__cookie-accept {
   background-color: #30dd6d; 
   
  }
  .button__cookie-decline {
    background-color: #e45126;
  }
  .cookie__link  {
    color: #fff;  
  }
  
  .button__cookie-accept:hover,
  .button__cookie-decline:hover {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
    color: rgb(242, 245, 196);  
  }
  .cookie__link:hover  {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
    color: rgb(242, 245, 196);  
  }
  
@media screen and (max-width:1370px) {
   .videoFullHD {
        display: none;
    }
    .videoHD {
        display: inherit;
    }
  
}

@media screen and (max-width:1250px) {
  
   
    .about.section {
        padding: 100px 100px;
    }
      .about__description h2 {
          font-size: 25px;
      }

      .about__description h3 {
          font-size: 20px;
      }

    .slider {
        background-color: #fff;
        width: 700px;
        height: 150px;
        overflow: hidden;
        position: relative;
        margin: auto;
        /* box-shadow: 0 10px 20px -5px rgba(0,0,0,.5); */
        margin-bottom:0;
    }
    .slider::before, .slider::after {
        content: '';
        position: absolute;
        width: 100px;
        height: 150px;
        background:-o-linear-gradient(left, #fff 0%, rgba(255, 255, 255,0) 100%);
        background:-webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255,0)));
        background:linear-gradient(to right, #fff 0%, rgba(255, 255, 255,0) 100%);
        z-index:2;
    }
    
    .slider::before {
        top: 0;
        left: 0;
    }
    
    .slider::after {
        top: 0;
        right: 0;
        -webkit-transform: rotateZ(180deg);
            -ms-transform: rotate(180deg);
                transform: rotateZ(180deg);
    }
    
    .slider .slider-track {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: calc(200px * 56);
        -webkit-animation: scroll 240s infinite linear;
                animation: scroll 240s infinite linear;
    }
    
    .slider .slide img {
        width: 200px;
        height: auto;
        padding: 15px;
    }
    
    @-webkit-keyframes scroll {
        0% {
            -webkit-transform: translateX(0%);
                    transform: translateX(0%);
        }
    
        100% {
            -webkit-transform: translateX(calc(-200px * 28));
                    transform: translateX(calc(-200px * 28));
        }
    }
    
    @keyframes scroll {
        0% {
            -webkit-transform: translateX(0%);
                    transform: translateX(0%);
        }
    
        100% {
            -webkit-transform: translateX(calc(-200px * 28));
                    transform: translateX(calc(-200px * 28));
        }
    }
    
  }

  @media screen and (max-width:1130px) {
      .services.section {
          padding: 100px 100px;
      }
  }


@media screen and (max-width:1024px) {

    .logo__hero {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
    }    
    .logo__img {
        width: 100px;
        height: 100px;
    }
    .logo__title {
        font-size: 30px;
        line-height: 30px;
        letter-spacing: 8px;
    }

    .logo__subtitle {
        font-size: 22px;
        letter-spacing: 12px;
    }

    .logo__question {
        font-size: 16px;
        letter-spacing: .25px;
    }

    .about.section {
        padding: 50px 20px;
    }
     .about__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .about__img {
        width: 100%;
        margin: auto;
    }

    .about__description {
        width: 100%;
        margin: auto;
        margin-top: 20px;
    }

    .contact__form {
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
      }

      blockquote {
        font-size: 1.5rem;
        max-width: 500px;
        line-height: 1.2;
    }

    blockquote:before {
        content: '“';
        left: -4rem;
        top: -2rem;
    }
    
    blockquote:after {
        content: '”';
        right: -4rem;
        bottom: -2rem;
    }
  
  }

@media screen and (min-width:850px) {
    .services__container {
        grid-template-columns: repeat(2, 400px);
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
      }
    
      .services__icon {
        font-size: 5rem;
     
      }
    
      .services__content {
        padding: 3rem 3rem 3rem 3rem;
        text-align: center;
      }
    
      .services__modal-content {
        width: 450px;
      }

    
}

@media screen and (max-width:850px) {

    .services__content h3 {
        margin-bottom: 50px;
    }

    .services__content .button {
        width: 90%;
        position: absolute;
        bottom: 10px;
        left: 50%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
    }

    .testimonial__img {
        margin-left: 0;
        margin-bottom: .25rem;
        width: 150px;
        height: 150px;
      }

      .services__modal-content {
        padding: 1.5rem;
      }


      .services__modal-service p {
        text-align: start;
        margin-left: .25rem;
        font-size: 15px;
        line-height: 20px;
      } 
      
      .services__modal-title {
        /* font-size: var(--h3-font-size); */
        font-size: var(--h3-font-size);
        font-weight: var(--font-medium);
        margin-bottom: var(--mb-1-5);
      }
      
      .services__modal-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
        color: var(--first-color);
        cursor: pointer;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
      }
      .services__modal-icon {
        color: var(--first-color);
        margin-right: var(--mb-0-25);
        font-size: 20px;
      }

      .section.contact {
          padding: 20px 10px !important;
      }

     
}

@media screen  and (max-width:768px) {

    .brand__company-logo {
        display: block;
    }
   
    
  .menu-btn {
    display: block;
  }
    
    .section {
        padding: 20px 10px;
    }

    .motto.section__small {
        padding: 40px 20px;
    }

    /* .motto {
        margin-top: -40px;
    } */
    /* HEADER */
    .header {
        padding: 12px 20px;
    }

    .sticky {
        padding: 10px 20px;
    }
   
    .sticky .menu-btn {
       background: url(../img/menu-black.png) no-repeat; 
    }

    .sticky .menu-btn.active {
        background: url(../img/close1.png) no-repeat; 
       
        
    }

    .navigation {
        display: none;
    }

    .navigation.active {
        z-index: 888;
        position: fixed;
        background-color: #fff;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-shadow: 0 5px 25px rgba(1, 1, 1, .15%);
                box-shadow: 0 5px 25px rgba(1, 1, 1, .15%);
        -webkit-transition: .5s ease;
        -o-transition: .5s ease;
        transition: .5s ease;
    }

    .navigation a {
        color: #000;
        font-size: var(--h2-font-size);
        margin: 10px;
        padding: 0 20px;
        border-radius: 20px;
    }

    .navigation a:hover {
        background-color: var(--first-color);
        color: #fff;
        -webkit-transition: .3s ease;
        -o-transition: .3s ease;
        transition: .3s ease;
    }
    .menu-button {
        position: relative;
        width: 30px;
        height: 30px;
        right: 0;
        margin: 0 30px;
        cursor: pointer;
        -webkit-transition: .3s ease;
        -o-transition: .3s ease;
        transition: .3s ease;
    }

    .icon {
        position: relative;
        font-size: 30px;
        color: #fff;
        left: 50%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
    }

    .menu-button.active {
        z-index: 999;
        -webkit-transition: .3s ease;
        -o-transition: .3s ease;
        transition: .3s ease;
        -webkit-filter: invert(1);
                filter: invert(1);
    }

    .social__media{
        position: absolute;
        top: 90%;
        left: 50%;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-column-gap: 1.5rem;
           -moz-column-gap: 1.5rem;
                column-gap: 1.5rem;
        -webkit-transition: .3s ease;
        -o-transition: .3s ease;
        transition: .3s ease;
        z-index: 4;
    }


    .social-icon {
        color: #fff;
        font-size: 1.7rem;
        margin: 2px;
        -ms-grid-column-align: center;
            justify-self: center;
    
    }
    
    .logo__hero {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        z-index: 4;
    }

    .logo__img {
        display: none;
    }

    .brand__company-logo { 
        width: 30px;
        height: 30px;
       
    }

    .scrollToTop-btn {
        z-index: 999;
        position: fixed;
        background: var(--first-color);
        color: #fff;
        width: 30px;
        height: 30px;
        right: 5%;
        bottom: 10px;
        font-size: 18px;
        text-align: center;
        line-height: 30px;
        border-radius: 3px;
        cursor: pointer;
        pointer-events: none;
        opacity: 0;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
      }


      blockquote {
        font-size: 1rem;
        max-width: 300px;
        line-height: 1;
        
    }

    blockquote:before,
    blockquote:after {
        font-size: 6rem;
        width: 4rem;
        height: 4rem;
}

blockquote:before {
    content: '“';
    left: -3rem;
    top: -1.5rem;
}

blockquote:after {
    content: '”';
    right: -3rem;
    bottom: -3rem;
}

cite {
    font-size: 10px;
    line-height: 2;
}

.video-container {
    display: none;
    /* transform: none;    */
}

.video-container video {
    display: none;
}
.video-container img {
    display: block;
    min-width: 100%;
    min-height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.slideshow-mobile {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.slideshow-mobile::after {
    content: '';
    z-index: 4;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    position: absolute;
}

.slideshow-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background:  no-repeat 50% 50%;
    background-size: cover;
    -webkit-animation-name: kenburns;
            animation-name: kenburns;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-duration: 22s;
            animation-duration: 22s;
    opacity: 1;
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
}

.slideshow-image:nth-child(1) {
    -webkit-animation-name: kenburns-1;
            animation-name: kenburns-1;
    z-index: 3;
}

.slideshow-image:nth-child(2) {
    -webkit-animation-name: kenburns-2;
            animation-name: kenburns-2;
    z-index: 2;
}
.slideshow-image:nth-child(3) {
    -webkit-animation-name: kenburns-3;
            animation-name: kenburns-3;
    z-index: 1;
}
.slideshow-image:nth-child(4) {
    -webkit-animation-name: kenburns-4;
            animation-name: kenburns-4;
    z-index: 0;
} 
@-webkit-keyframes kenburns-1 {
    0% {
        opacity: 1;
        -webkit-transform: scale(1.2);
                transform: scale(1.2);
   }
    1.5625% {
        opacity: 1;
   }
    23.4375% {
        opacity: 1;
   }
    26.5625% {
        opacity: 0;
        -webkit-transform: scale(1);
                transform: scale(1);
   }
    100% {
        opacity: 0;
        -webkit-transform: scale(1.2);
                transform: scale(1.2);
   }
    98.4375% {
        opacity: 0;
        -webkit-transform: scale(1.2117647059);
                transform: scale(1.2117647059);
   }
    100% {
        opacity: 1;
   }
} 
@keyframes kenburns-1 {
    0% {
        opacity: 1;
        -webkit-transform: scale(1.2);
                transform: scale(1.2);
   }
    1.5625% {
        opacity: 1;
   }
    23.4375% {
        opacity: 1;
   }
    26.5625% {
        opacity: 0;
        -webkit-transform: scale(1);
                transform: scale(1);
   }
    100% {
        opacity: 0;
        -webkit-transform: scale(1.2);
                transform: scale(1.2);
   }
    98.4375% {
        opacity: 0;
        -webkit-transform: scale(1.2117647059);
                transform: scale(1.2117647059);
   }
    100% {
        opacity: 1;
   }
}
@-webkit-keyframes kenburns-2 {
    23.4375% {
        opacity: 1;
        -webkit-transform: scale(1.2);
                transform: scale(1.2);
   }
    26.5625% {
        opacity: 1;
   }
    48.4375% {
        opacity: 1;
   }
    51.5625% {
        opacity: 0;
        -webkit-transform: scale(1);
                transform: scale(1);
   }
    100% {
        opacity: 0;
        -webkit-transform: scale(1.2);
                transform: scale(1.2);
   }
}
@keyframes kenburns-2 {
    23.4375% {
        opacity: 1;
        -webkit-transform: scale(1.2);
                transform: scale(1.2);
   }
    26.5625% {
        opacity: 1;
   }
    48.4375% {
        opacity: 1;
   }
    51.5625% {
        opacity: 0;
        -webkit-transform: scale(1);
                transform: scale(1);
   }
    100% {
        opacity: 0;
        -webkit-transform: scale(1.2);
                transform: scale(1.2);
   }
}
@-webkit-keyframes kenburns-3 {
    48.4375% {
        opacity: 1;
        -webkit-transform: scale(1.2);
                transform: scale(1.2);
   }
    51.5625% {
        opacity: 1;
   }
    73.4375% {
        opacity: 1;
   }
    76.5625% {
        opacity: 0;
        -webkit-transform: scale(1);
                transform: scale(1);
   }
    100% {
        opacity: 0;
        -webkit-transform: scale(1.2);
                transform: scale(1.2);
   }
}
@keyframes kenburns-3 {
    48.4375% {
        opacity: 1;
        -webkit-transform: scale(1.2);
                transform: scale(1.2);
   }
    51.5625% {
        opacity: 1;
   }
    73.4375% {
        opacity: 1;
   }
    76.5625% {
        opacity: 0;
        -webkit-transform: scale(1);
                transform: scale(1);
   }
    100% {
        opacity: 0;
        -webkit-transform: scale(1.2);
                transform: scale(1.2);
   }
}
@-webkit-keyframes kenburns-4 {
    73.4375% {
        opacity: 1;
        -webkit-transform: scale(1.2);
                transform: scale(1.2);
   }
    76.5625% {
        opacity: 1;
   }
    98.4375% {
        opacity: 1;
   }
    100% {
        opacity: 0;
        -webkit-transform: scale(1);
                transform: scale(1);
   }
}
@keyframes kenburns-4 {
    73.4375% {
        opacity: 1;
        -webkit-transform: scale(1.2);
                transform: scale(1.2);
   }
    76.5625% {
        opacity: 1;
   }
    98.4375% {
        opacity: 1;
   }
    100% {
        opacity: 0;
        -webkit-transform: scale(1);
                transform: scale(1);
   }
}


.brands__content img {
    width: 70%;  
}

.services.section {
    padding: 50px 50px 25px ;
}

.slider {
    background-color: #fff;
    width: 90%;
    height: 150px;
    overflow: hidden;
    position: relative;
    margin: auto;
    /* box-shadow: 0 10px 20px -5px rgba(0,0,0,.5); */
    margin-bottom: 50px;
}
.slider::before, .slider::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 150px;
    background:-o-linear-gradient(left, #fff 0%, rgba(255, 255, 255,0) 100%);
    background:-webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255,0)));
    background:linear-gradient(to right, #fff 0%, rgba(255, 255, 255,0) 100%);
    z-index:2;
}

.slider::before {
    top: 0;
    left: 0;
}

.slider::after {
    top: 0;
    right: 0;
    -webkit-transform: rotateZ(180deg);
        -ms-transform: rotate(180deg);
            transform: rotateZ(180deg);
}

.slider .slider-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(200px * 56);
    -webkit-animation: scroll 120s infinite linear;
            animation: scroll 120s infinite linear;
}

.slider .slide img {
    width: 200px;
    height: auto;
    padding: 15px;
   
}

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0%);
                transform: translateX(0%);
    }

    100% {
        -webkit-transform: translateX(calc(-200px * 28));
                transform: translateX(calc(-200px * 28));
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0%);
                transform: translateX(0%);
    }

    100% {
        -webkit-transform: translateX(calc(-200px * 28));
                transform: translateX(calc(-200px * 28));
    }
}

.services__content  h3{
    font-size: 15px;
}


}


@media screen and (max-width:600px) {

 

  
    .services__container {
        -ms-grid-columns: -webkit-max-content;
        -ms-grid-columns: max-content;
        grid-template-columns: -webkit-max-content;
        grid-template-columns: max-content;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
      }
    
      .services__content {
        padding-right: 3.5rem;
      }
    
      .services__modal {
        padding: 0.5rem;
      }
}
@media screen  and (max-width:440px)  {

    .logo__img {
        -ms-flex-item-align: end;
            align-self: flex-end;
        width: 60px;
        height: 60px;
    }

    .logo__hero {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        text-align: right;
    } 
 
    .logo__title {
        font-size: 25px;
        line-height: 25px;
        letter-spacing: 2px;
    }

    .logo__subtitle {
        font-size: 18px;
        letter-spacing: 5.3px;
    }

    .logo__question {
        font-size: 10px;
        letter-spacing: .45px;
    }

    .slider {
        background-color: #fff;
        width: 90%;
        height: 150px;
        overflow: hidden;
        position: relative;
        margin: auto;
        /* box-shadow: 0 10px 20px -5px rgba(0,0,0,.5); */
    }
    .slider::before, .slider::after {
        content: '';
        position: absolute;
        width: 25px;
        height: 150px;
        background:-o-linear-gradient(left, #fff 0%, rgba(255, 255, 255,0) 100%);
        background:-webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255,0)));
        background:linear-gradient(to right, #fff 0%, rgba(255, 255, 255,0) 100%);
        z-index:2;
    }
    
    .slider::before {
        top: 0;
        left: 0;
    }
    
    .slider::after {
        top: 0;
        right: 0;
        -webkit-transform: rotateZ(180deg);
            -ms-transform: rotate(180deg);
                transform: rotateZ(180deg);
    }
    
    .slider .slider-track {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: calc(40vw * 56);
        -webkit-animation: scroll 90s infinite linear;
                animation: scroll 90s infinite linear;
    }
    
    .slider .slide img {
        width: 40vw;
        height: auto;
        padding: 5px;
    }
    
    @-webkit-keyframes scroll {
        0% {
            -webkit-transform: translateX(0%);
                    transform: translateX(0%);
        }
    
        100% {
            -webkit-transform: translateX(calc(-40vw * 28));
                    transform: translateX(calc(-40vw * 28));
        }
    }
    
    @keyframes scroll {
        0% {
            -webkit-transform: translateX(0%);
                    transform: translateX(0%);
        }
    
        100% {
            -webkit-transform: translateX(calc(-40vw * 28));
                    transform: translateX(calc(-40vw * 28));
        }
    }

    .contact__tabs {
        justify-content:center;
        column-gap: 1.5rem;
    }

    .contact__button {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

}


@media screen and (max-width:500px) {
    .logo__name {
        display: none;
    }

    .logo__mobile__photo {
        display: block;
        z-index: 4;
        position: absolute;
        bottom: 20%;
        left: 50%;
        transform: translateX(-50%);
        width: 90vw;
        height: auto;
    }
}


@media screen and (max-width:400px){
 .card {
        width: 90%;
    }

    .container {
        margin-left: var(--mb-1);
        margin-right: var(--mb-1);
    }

    .brand__company-logo { 
        width: 25px;
        height: 25px;
       
    }

    .icon {
        font-size: 25px;
    }

    .menu-button {
      background-size: 20px;
      width: 30px;
      height: 30px;
      margin-right: 15px; 
    }
    .sticky {
      padding: 0;
    }
    .header {
        width: 100vw;
        padding-left: 0;
        padding-right: 0;
    }
    .navigation {
      padding: 0;
    }

    
    .testimonial__data,
  .testimonial__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .testimonial__img {
    margin-left: 0;
    margin-bottom: .25rem;
    width: 100px;
    height: 100px;
  }

  .testimonial__data,
  .testimonial__description {
    text-align: justify;
    width: 90%;
    margin: auto;
  }

  .contact.section {
    padding: 50px 20px;
  }


    blockquote {
        font-size: .75rem;
        max-width: 200px;
        line-height: .9;
        
    }

    blockquote:before,
    blockquote:after {
        font-size: 4rem;
        width: 4rem;
        height: 4rem;
    }

    blockquote:before {
    content: '“';
    left: -1.5rem;
    top: -.5rem;
    }

    blockquote:after {
    content: '”';
    right: -2.5rem;
    bottom: -3.5rem;
    }

    .services__content {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        padding: 20px;
   
    }

    .services__content span {
        position: relative;
        top: unset;
        left: unset;
        -webkit-transform: unset;
            -ms-transform: unset;
                transform: unset;
    }

    
    .ribbon {
        width: 50%;
        height: 50%;
        overflow: hidden;
        position: absolute;
    }
    
    .ribbon span {
        position: absolute;
        display: block;
        width: 180px;
        padding: 5px 0;
        background-color: rgba(241, 28, 28, 0.932);
        -webkit-box-shadow: 0 5px 10px rgba(241, 28, 28, 0.7);
                box-shadow: 0 5px 10px rgba(241, 28, 28, 0.7);
        color: #fff;
        font-family: var(--body-font);
        font-size: 11px;
        text-shadow: 0 1px 1px rgba(0, 0, 0, .2);
        text-align: center;
        z-index: 0;
    }
    
    .ribbon-top-left span {
        right: 0px;
        top: 20px;
        -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
                transform: rotate(-45deg);
    }

 
  }
  /*========== SCROLL BAR ==========*/
::-webkit-scrollbar {
    width: 0.6rem;
    background-color: var(--scroll-bar-color);
    border-radius: 0.5rem;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: var(--scroll-thumb-color);
    border-radius: 0.5rem;
  }
  ::-webkit-scrollbar-thumb:hover {
    background-color: var(--text-color-light);
  }

.active-link {
    color: var(--first-color) !important;
}

  .color-green {
      background-color: #000;
      color: #fff;
  }


  @-webkit-keyframes diagnoza {
      25% {
          color: rgb(189, 46, 74); ;
      }
      50% {
          color: rgb(154, 203, 49);
      }
      75% {
          color: rgb(237, 184, 80);
      }

  }


  @keyframes diagnoza {
      25% {
          color: rgb(189, 46, 74); ;
      }
      50% {
          color: rgb(154, 203, 49);
      }
      75% {
          color: rgb(237, 184, 80);
      }

  }

  .preload {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position:fixed;
    z-index: 100000;
    visibility: hidden;
    opacity: 0;
    width: 100vw;
    height: 100vh;
    top: 0;
    background-color: var(--first-color-dark);
    -webkit-transition: opacity .4s ease-in-out, visibility 0s .4s;
    -o-transition: opacity .4s ease-in-out, visibility 0s .4s;
    transition: opacity .4s ease-in-out, visibility 0s .4s;
  }
  
  .show-preloader {
    visibility: visible;
    opacity: 1;
  }
  
  .circle {
    background-color: var(--first-color);
    height: 10px;
    width: 10px;
    border-radius: 50%;
    display: inline-block;
    -webkit-animation: bounce-circles .7s infinite ease-in-out;
            animation: bounce-circles .7s infinite ease-in-out;
  }
  
  .preload .circle:nth-child(1) {
    -webkit-animation-delay: -.6s;
            animation-delay: -.6s;
  }
  .preload .circle:nth-child(2) {
    -webkit-animation-delay: -.5s;
            animation-delay: -.5s;
  }
  .preload .circle:nth-child(3) {
    -webkit-animation-delay: -.4s;
            animation-delay: -.4s;
  }
  .preload .circle:nth-child(4) {
    -webkit-animation-delay: -.3s;
            animation-delay: -.3s;
  }
  
  @-webkit-keyframes bounce-circles {
    0%,40%,100% {
      -webkit-transform: translateY(-10px);
              transform: translateY(-10px);
    }
    20% {
      -webkit-transform: translateY(-20px);
              transform: translateY(-20px);
    }
  }
  
  @keyframes bounce-circles {
    0%,40%,100% {
      -webkit-transform: translateY(-10px);
              transform: translateY(-10px);
    }
    20% {
      -webkit-transform: translateY(-20px);
              transform: translateY(-20px);
    }
  }
  
  .disable {
      color:rgb(131, 131, 131) !important;
      cursor: not-allowed;
  }