* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    letter-spacing: 1px;
    font-weight: 300;
    box-sizing: border-box;
    --card-clr: #2c3141;
	--body-clr: #131418;
	--primary-clr: #f0bf6a;
	--heading-clr: #dadada;
	--text-clr: #767a86;
  }
  html, body {
    width: 100%;
    overflow-x: hidden;
}

  #main {
    width: 100%;
    height: 100vh;
    position: relative;
  }
  #main video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .main-text a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    color: #fff;
  }
  .down a:hover {
    
    background: rgba(255, 255, 255, 0);
    border-radius: 3px;
    color: #fff;
  }
  .down{
    width:100%;
    text-align:center;
  }
  .main-text{
    position: absolute;
    left: 13%;
    top: 62%;
    transform: translate(-13%,-52%);
    font-family: "Asap", sans-serif;
  }
  .main-text h2{

    font-weight: 500;
    font-size: 30px;
    color: #e0ffff;
  }
  .main-text h1{
    font-size: 50px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    color: #fff;
  }
  .main-text p{
    font-size: 20px;
    color: #e0ffff;
    margin: 25px 0px 25px;
    line-height: 50px;
  }
  .main-text a{
    width: 150px;
    height: 40px;
    outline: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 200;
    padding: 1rem;
  }
  .btn{
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0ffff;
    font-family: "Asap", sans-serif;
  }
  nav {
    height: 6rem;
    width: 100vw;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    position: fixed;
    z-index: 10;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 3s ease; /* Додана анімація для зміни фонового кольору */
}

.scrolled {
  background-color: #131418; /* Фоновий колір при прокручуванні вниз */
}

  .logo {
    padding: 1vh 1vw;
    text-align: center;
  }
  .logo img {
    height: 5rem;
    width: 7rem;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    width: 88vw;
    padding: 0 0.7vw;
    justify-content: space-evenly;
    align-items: center;
    text-transform: uppercase;
  }
  .nav-links li a {
    color: #f2f5f7;
    text-decoration: none;
    margin: 0 0.7vw;
  }
  .nav-links li a:hover {
    color: #61dafb;
  }
  .nav-links li {
    position: relative;
  }
  .nav-links li a::before {
    content: "";
    display: block;
    height: 3px;
    width: 0%;
    background-color: #61dafb;
    position: absolute;
    transition: all ease-in-out 250ms;
    margin: 0 0 0 10%;
  }
  .nav-links li a:hover::before {
    width: 80%;
  }
  
  .hamburger div {
    width: 30px;
    height: 3px;
    background: #f2f5f7;
    margin: 5px;
    transition: all 0.3s ease;
  }
  .hamburger {
    display: none;
  }
  
  @media screen and (max-width: 800px) {
    nav {
      position: fixed;
      z-index: 3;
    }
    .hamburger {
      display: block;
      position: absolute;
      cursor: pointer;
      right: 5%;
      top: 50%;
      transform: translate(-5%, -50%);
      z-index: 2;
      transition: all 0.7s ease;
    }
    .nav-links {
      position: fixed;
      background: #131418;
      height: 100vh;
      width: 100%;
      flex-direction: column;
      clip-path: circle(50px at 90% -20%);
      -webkit-clip-path: circle(50px at 90% -10%);
      transition: all 1s ease-out;
      pointer-events: none;
    }
    .nav-links.open {
      clip-path: circle(1000px at 90% -10%);
      -webkit-clip-path: circle(1000px at 90% -10%);
      pointer-events: all;
    }
    .nav-links li {
      opacity: 0;
    }
    .nav-links li:nth-child(1) {
      transition: all 0.5s ease 0.2s;
    }
    .nav-links li:nth-child(2) {
      transition: all 0.5s ease 0.4s;
    }
    .nav-links li:nth-child(3) {
      transition: all 0.5s ease 0.6s;
    }
    .nav-links li:nth-child(4) {
      transition: all 0.5s ease 0.7s;
    }
    .nav-links li:nth-child(5) {
      transition: all 0.5s ease 0.8s;
    }
    li.fade {
      opacity: 1;
    }
  }
  @media screen and (max-width: 480px) {
    .main-text {
        left: 5%;
        top: 30%;
        transform: translate(0, 0);
        
    }

    .main-text h2 {
        font-size: 24px;
    }

    .main-text h1 {
        font-size: 40px;
    }

    .main-text p {
        font-size: 16px;
        line-height: 30px;
    }

    .main-text a {
        width: 120px;
        height: 30px;
        font-size: 14px;
    }

}

.search-product{
  width: 100%;
    display:inline-block;
    background: #cecdcd;
}
.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    padding: 20px;
    box-sizing: border-box;
}

.container img {
    width: 100%;
    height: auto;
    display: block;
}

.container #blogs {
    width: 100%;
    max-width: 1200px;
    padding: 40px;
    box-sizing: border-box;
}

#blogs .blogs-container {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
}

.blogs-container h1 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    color: #333;
    margin: 20px 0;
    letter-spacing: 1px;
}

.blogs-container .swiper {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 20px 0;
}

.swiper .blog {
    position: relative;
    max-width: 600px;
    padding: 20px;
    font-size: 16px;
    font-weight: 500;
    margin: 10px auto;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.blog:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.blog a {
    text-decoration: none;
    color: inherit;
}

.blog::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f4e7d1 0%, #dcc4a9 100%);
    border-radius: 15px;
    z-index: -1;
}

.blog .blog-img {
    width: 100%;
    max-width: 400px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

.blog:hover .blog-img {
    transform: scale(1.05);
}

.blog .blog-content {
    padding: 15px 0 10px;
}

.blog-content .title {
    font-size: 18px;
    font-weight: bold;
    color: #444;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.blog:hover .blog-content .title {
    color: #555;
}

.blog-content .short-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    opacity: 0.9;
}

.swiper .swiper-scrollbar {
    --swiper-scrollbar-bottom: 5px;
    --swiper-scrollbar-drag-bg-color: #999;
    --swiper-scrollbar-size: 6px;
    margin-top: 10px;
}

  /* Загальний стиль для обох секцій */
.carbon, .carbon2 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  width: 100%;
  height: 350px;
  background-position: center center;
  background-size: cover;
}

/* Установки для секції .carbon */
.carbon {
  background-image: url('../image/cta1.jpg');
}

/* Установки для секції .carbon2 */
.carbon2 {
  background-image: url('../image/cta3.jpg');
}

/* Стиль для вмісту секцій */
.carbon .content, .carbon2 .content {
  width: 55%;
  padding: 90px 0 0 30px;
}

/* Стиль для абзаців */
.carbon p, .carbon2 p {
  margin: 10px 0 20px;
}

/* Загальні стилі для темного фону */
.dark {
  color: #fff;
}

/* Стиль для кнопок */
.btn-с {
  cursor: pointer;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 15px;
  color: #fff;
  background: transparent;
  transition: background 0.3s ease;
}

.btn-с:hover {
  background: rgba(255, 255, 255, 0.1);
}

    
.cta-section {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 30px;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-heading {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-subheading {
  font-size: 1.5rem;
  margin-bottom: 30px;
}
  .cta-button {
    position: relative;
    display: inline-block;
    padding: 18px 35px;
    border: 2px solid #fefefe;
    text-transform: uppercase;
    color: #fefefe;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 5px;
  }
  
  .cta-button::before, .cta-button::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% - 2px);
    background-color: #000000;
    transition: 0.3s ease-out;
  }
  
  .cta-button::before {
    transform: scaleY(1);
  }
  @media (max-width: 768px) {
    .cta .button {
        width: calc(100% - 2rem); /* Врахуйте padding батьківського контейнера */
        max-width: none;
        font-size: 16px; /* Зменшіть розмір тексту для кнопки */
    }

  
}

  .cta-wrapper {
    width: 100%;
    max-width: 100vw; /* Забороняє вихід за межі екрану */
    overflow-x: hidden; /* Запобігає горизонтальному прокручуванню */
}

  .cta-button::after {
    height: calc(100% - 50px);
    transform: scaleY(1);
  }
  
  .cta-button:hover::before {
    transform: translateY(-25px);
    height: 0;
  }
  
  .cta-button:hover::after {
    transform: scaleX(0);
    transition-delay: 0.15s;
  }
  
  .cta-button:hover {
    border: 2px solid #fefefe;
  }
  
  .cta-button span {
    position: relative;
    z-index: 3;
  }
  
  .cta-section button {
    text-decoration: none;
    border: none;
    background-color: transparent;
  }
  
  /* Додаткові стилі для покращення доступності та адаптивності */
  @media (max-width: 768px) {
    .cta-heading {
      font-size: 2rem;
    }
  
    .cta-subheading {
      font-size: 1.4rem;
    }
  
    .cta-button {
      padding: 12px 25px;
      font-size: 16px;
    }
  }
  
  .section-testimonial {
    background-color: #ffffff; /* Білий фон */
    padding: 20px; /* Внутрішні відступи */
    width: 100%; /* Ширина на всю доступну область */
    max-height: 90vh; /* Максимальна висота відносно висоти вікна */
    height: auto; /* Адаптивна висота залежно від вмісту */
    box-sizing: border-box; /* Врахування внутрішніх відступів у ширині/висоті */
    overflow: auto; /* Прокрутка, якщо вміст перевищує висоту */
  }
  
  /* Для мобільних пристроїв */
  @media (max-width: 768px) {
    .section-testimonial {
      padding: 10px; /* Зменшення відступів для мобільних пристроїв */
      max-height: none; /* Відміна обмеження висоти */
      height: auto; /* Автоматичне коригування висоти */
    }
  }
  
  /* Для великих екранів */
  @media (min-width: 1200px) {
    .section-testimonial {
      max-width: 80%; /* Обмеження ширини для великих екранів */
      margin: 0 auto; /* Центрування блоку */
      padding: 30px; /* Більше відступів для просторих екранів */
    }
  }
  
.testimonials-section .section-header{
  z-index: 999;
  max-width: 700px;
  text-align: center;
  margin: 30px auto 30px;
}
.section-header h1{
  position: relative;
  font-size: 36px;
  color: #000000;
  font-weight: 600;
}
.testimonials-container{
  position: relative;
}
.testimonials-container .testimonial-card{
  padding: 20px;
}
.testimonial-card .test-card-body{
  background-color: #ffffff;
  box-shadow: 2px 2px 20px rgba(48, 47, 47, 0.2);
  padding: 20px;
}
.test-card-body .quote{
  display: flex;
  align-items: center;
}
.test-card-body .quote i{
  font-size: 45px;
  color: #1f1f1f;
  margin-right: 20px;
}
.test-card-body .quote h2{
  color: #1f1f1f;
}
.test-card-body p{
  margin: 10px 0px 15px;
  font-size: 14px;
  line-height: 1.5;
  color: #000000;
}
.test-card-body .ratings{
  margin-top: 20px;
}
.test-card-body .ratings i{
  font-size: 17px;
  color: var(--primary-clr);
  cursor: pointer;
}
.testimonial-card .profile{
  display: flex;
  align-items: center;
  margin-top: 25px;
}
.profile .profile-image{
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}
.profile .profile-image img{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.profile .profile-desc{
  display: flex;
  flex-direction: column;
}
.profile-desc span:nth-child(1){
  font-size: 24px;
  font-weight: bold;
  color: #000000;
}
.profile-desc span:nth-child(2){
  font-size: 15px;
  color: #494848;;
}
.owl-nav{
  position: absolute;
  right: 20px;
  bottom: -10px;
}
.owl-nav button{
  border-radius: 50% !important;
}
.owl-nav .owl-prev i,
.owl-nav .owl-next i{
  padding: 10px !important;
  border-radius: 50%;
  font-size: 18px !important;
  background-color: var(--card-clr) !important;
  color:#ffffff;
  cursor: pointer;
  transition: 0.4s;
}
.owl-nav .owl-prev i:hover,
.owl-nav .owl-next i:hover{
  background-color: #ffffff !important;
  color: #e9e9e9;
}
.owl-dots{
  margin-top: 15px;
}
.owl-dots .owl-dot span{
  background-color: #434753 !important;
  padding: 6px !important;
}
.owl-dot.active span{
  background-color: #000000 !important;
}
  @media (max-width: 767px) {
    .carbon {
      height: 450px;
    }
    .carbon2 {
      height: 450px;
    }
    .carbon .content {
      padding: 20px 0 0 30px;
    }
    .carbon .content {
      width: 85%;
    }
    .cta-button::before,
    .cta-button::after {
      display: none; /* Ховаємо ефекти на телефонах */
    }
  
    .cta-button:hover {
      border: 2px solid #fefefe;
    }
  }
  .arrow-7 {
    margin: 40px auto 10px auto;
    width: 38px;
    height: 100px;
}
.arrow-7 span {
    display: block;
    width: 30px;
    height: 30px;
    border-bottom: 5px solid #ffffff;
    border-right: 5px solid #ffffff;
    transform: rotate(45deg);
    margin: -16px 0;
    animation: arrow-7 2s infinite;
}
.arrow-7 span:nth-child(2){
    animation-delay: -0.2s;
}
.arrow-7 span:nth-child(3){
    animation-delay: -0.4s;
}
.delivery {
  background-color: #ffffff; /* Білий фон */
  height: auto; /* Автоматична висота */
  min-height: 70vh; /* Мінімальна висота 70% від висоти вікна */
  padding: 20px; /* Внутрішні відступи */
  width: 100%; /* Повна ширина */
  max-width: 1200px; /* Обмеження ширини для великих екранів */
  margin: 0 auto; /* Центрування блоку */
  box-sizing: border-box; /* Включення відступів у розрахунок розмірів */
  overflow: auto; /* Прокрутка, якщо вміст перевищує висоту */
  transition: all 0.3s ease; /* Плавний перехід стилів при зміні */
}

/* Для мобільних пристроїв */
@media (max-width: 768px) {
  .delivery {
    padding: 15px; /* Зменшені відступи для зручності на мобільних */
    min-height: 50vh; /* Зменшена мінімальна висота */
  }
}

/* Для планшетів */
@media (min-width: 769px) and (max-width: 1199px) {
  .delivery {
    padding: 20px; /* Залишити стандартні відступи */
    min-height: 60vh; /* Оптимальна висота для планшетів */
    max-width: 90%; /* Трохи зменшена ширина для гарного вигляду */
  }
}

/* Для великих екранів */
@media (min-width: 1200px) {
  .delivery {
    padding: 40px; /* Збільшені відступи для великих екранів */
    min-height: 80vh; /* Збільшена мінімальна висота */
    max-width: 80%; /* Обмеження ширини для зручності */
  }
}

.delivery h1 {
  font-weight: 600;
  text-align: center;
  font-size: 36px;
  color: #000000;
  margin-bottom: 20px;
}

.delivery p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.delivery main {
  min-width: 320px;
  max-width: 900px;
  padding: 50px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.delivery .tabs {
  display: flex;
  justify-content: space-around;
  margin-bottom: 30px;
}

.delivery input {
  display: none;
}

.delivery label {
  display: inline-block;
  padding: 15px 25px;
  font-weight: 600;
  text-align: center;
  color: #bbb;
  border: 1px solid transparent;
  background-color: #f8f8f8;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.delivery label:hover {
  color: #555;
  background-color: #eaeaea;
}

input:checked + label {
  color: #555;
  border: 1px solid #ddd;
  border-top: 2px solid #ff9900;
  background-color: #fff;
}

.delivery section {
  display: none;
  padding-top: 20px;
  border-top: 1px solid #efefef;
}

.delivery section p {
  margin-top: 10px;
}

#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3,
#tab4:checked ~ #content4 {
  display: block;
}

#content1, #content2, #content3, #content4 {
  padding: 20px 0;
}

@media screen and (max-width: 650px) {
  .delivery p {
    font-size: 16px;
  }

  .delivery label {
    font-size: 14px;
    padding: 12px 18px;
  }

  .delivery label:before {
    font-size: 20px;
    margin-right: 8px;
  }
}

@media screen and (max-width: 480px) {
  .delivery main {
    padding: 20px;
  }

  .delivery label {
    font-size: 14px;
    padding: 10px 15px;
  }
}

@media screen and (max-width: 400px) {
  label {
    padding: 15px;
  }
}

.centroassoluto {
  width: 100%;
  text-align: center;  
}

.centroassoluto p {font-family: 'Montserrat', sans-serif;
font-size: 12px; }
.centroassoluto h2 {font-family: 'Montserrat', sans-serif;
  color: #808080;
  font-size: 36px; }

@media only screen and (min-width: 768px) {
.ftC {
  float: left;
  display: flex;
  flex-direction: COLUMN;
  justify-content: space-around;
  margin: 0; 
  text-align: center;
  vertical-align: middle;
  width: 100%;
  height: calc(50vh);
  min-height: calc(50vh);
  background-color: #f3f3f3;
  }
}

@media only screen and (max-width: 768px) {
.ftC {
    display: flex;
  flex-direction: COLUMN;
  justify-content: space-around;
  margin: 0; 
  text-align: center;
  width: 100%;
  height: 60vh;
  min-height: 60vh;
  background-color: #f3f3f3;
  }
}

.ftC a {color: #808080; text-decoration: none; font-weight:bold;}

@media only screen and (min-width: 768px) { .sparisci {display: block;} }
@media only screen and (max-width: 768px) { .sparisci {display: none;} }
@media only screen and (min-width: 768px) { .sparisci2 {display: none;} }
@media only screen and (max-width: 768px) { .sparisci2 {display: block;} }




.ftC p {margin: 0px; color: #808080;}

.ftcontatti {display:flex; justify-content: center;}

@media only screen and (max-width: 768px) {
.colonnacontatti { width: 100%; padding-left: 10px;
                                 padding-right: 10px;
                                   padding-top: 10px;
                                 padding-bottom: 10px; 
  display: flex;
  flex-direction: column;
  justify-content: center;
}
}
@media only screen and (min-width: 768px) {
.colonnacontatti { width: 30%;
                                 padding-left: 10px;
                                 padding-right: 10px;
                                     padding-top: 0px;
                                 padding-bottom: 0px;                               
 }
}
 
@media only screen and (max-width: 768px) {
.orizcontatti {
display: flex;
 flex-direction:column;
justify-content: center;
}}

@media only screen and (min-width: 768px) {
.orizcontatti {
display: flex;

justify-content: space-around;

}}


.stroke-solid {
stroke-dashoffset: 0;
stroke-dashArray: 300;
stroke-width: 2px;
transition: stroke-dashoffset 0.8s ease,  opacity 0.5s ease;
}

.stroke-under {
stroke-dashoffset: 00;
stroke-dashArray: 300;
stroke-width: 1px;
}

.st0 {  fill: #808080;
 display:inline-block;
  border:0;
  position: absolute;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1); 
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1); 
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1);
  transition: all 200ms ease-in;
transform-origin: 50% 50%;
  transform: scale(1);   
}


#play:hover .stroke-solid {
opacity: 1;
stroke-dashoffset: -300;
}

#play:hover .st0 {
fill: #202020;
  -webkit-transition: all 100ms ease-in;
  -webkit-transform: scale(1.05);
  -ms-transition: all 100ms ease-in;
  -ms-transform: scale(1.05);   
  -moz-transition: all 100ms ease-in;
  -moz-transform: scale(1.05);
  transition: all 100ms ease-in;
 transform-origin: 50% 50%;
  transform: scale(1.05);
}

#play {
cursor: pointer;
}





.orizcont {
margin-top: 102px;
display: flex;
justify-content: space-around;

}


.vl {
  border-left: 1px solid #dadada;
}
.ol {
  border-top: 1px solid #dadada;
  width: 100%;
}

.fill-height-or-more {
min-height: 100%;
display: flex;
flex-direction: column-reverse;
}
.fill-height-or-more > div {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
}
/* based on https://dribbble.com/shots/2792525-Rel-Acoustics/attachments/571167 */
/* main styles */


blockquote {
  font: 1.1em/2 'Playfair Display', serif;
  font-style: italic;
  margin: 0 0 2em 0;
}

.img1 {  
  /* could use `object-fit: cover;` on an img, but tricky*/
  background: url('../image/img2.jpg');
  background-size: cover;
}

.img2 {  
  background: url('../image/product1.png');
  background-size: cover;
}
.img12 {  
  /* could use `object-fit: cover;` on an img, but tricky*/
  background: url('../image/img12.jpg');
  background-size: cover;
}

.img22 {  
  background: url('../image/product2.png');
  background-size: cover;
}
.img13 {  
  /* could use `object-fit: cover;` on an img, but tricky*/
  background: url('../image/garbuz_ukr_bp.png');
  background-size: cover;
}

.img23 {  
  background: url('../image/product3.png');
  background-size: cover;
}
.img14 {  
  /* could use `object-fit: cover;` on an img, but tricky*/
  background: url('../image/garbuz_gladiator_f1.png');
  background-size: cover;
}

.img24 {  
  background: url('../image/product4.png');
  background-size: cover;
}
.img3 {  
  /* https://elements.envato.com/gradient-network-wave-backgrounds-L5PGKP */
  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/210284/waves.jpg);
  background-size: cover;
}

.strapline::before {
  content: '';
  display: block;
  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/210284/wavy.svg) repeat-x;
  background-size: cover;
  width: 20%;
  height: .5em;
  position: absolute;
  top: -3em;
  left: 40%;
}

.cta h1 {    
  font: bold 3em/1 'Playfair Display', serif;
  margin: 0 0 20px 0;
  position: relative;
}


.button {
  margin-top: 20px;
  display: inline-block;
  color: white;
  text-decoration: none;
  background: #292929;
  padding: .8em 1.5em;
  width: 100%;
}

.button:hover {
  background: black;
}


/* grid */

.grid1 {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  padding: 20px;
}

.img2 {
  height: 400px;
}
.img22,.img23, .img24 {
  height: 400px;
}
.strapline {
  margin-top: 100px;
  position: relative;
}

@media only screen and (min-width: 750px) {
  
  .grid1 {
    grid-template-columns: 3fr 6fr 1fr 5fr 10fr 2fr;
    grid-template-rows: 100px auto 15px auto auto;
    padding: 0;
  }

  .img1 {  
    grid-column: 1 / 3;
    grid-row: 2 / 5;
  }

  .img2 {  
    grid-column: 2 / 4;
    grid-row: 3 / 6;
  }
  .img12 {  
    grid-column: 1 / 3;
    grid-row: 2 / 5;
  }

  .img22 {  
    grid-column: 2 / 4;
    grid-row: 3 / 6;
  }
  .img13 {  
    grid-column: 1 / 3;
    grid-row: 2 / 5;
  }

  .img23 {  
    grid-column: 2 / 4;
    grid-row: 3 / 6;
  }
  .img14 {  
    grid-column: 1 / 3;
    grid-row: 2 / 5;
  }

  .img24 {  
    grid-column: 2 / 4;
    grid-row: 3 / 6;
  }
  .img3 {  
    grid-column: 5 / 7;
    grid-row: 4 / 6;
  }

  .strapline {
    grid-column: 3 / 6;
    grid-row: 2 / 3;

    padding: 0 16%;
    text-align: center;
    margin: 0;
  }

  .cta-wrapper {
    grid-column: 4 / 6;
    grid-row: 4 / 6;
  }

    .cta {
      padding: 100px 0 100px 10%;
    }
  
  .cta h1 {    
    font-size: 4em;
  }
  
  .button {
    width: auto;
  }

}
  
@media only screen and (min-width: 1100px) {
  
    .cta {
      padding: 100px 0 100px 20%;
    }
  
  .cta h1::before {
    content: '';
    display: block;
    height: 1em;
    width: 1em;
    /* https://elements.envato.com/retro-badges-7B35YA */
    background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/210284/badge.svg) no-repeat center center;
    background-size: 80%;
    position: absolute;
    left: -120px;
    top: 0;
  }
  
  
}
@media only screen and (min-width: 768px) {
.ol {display: none;}
}

@media only screen and (max-width: 768px) {
.vl {display: none;}
.orizcont { 
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    }
  
.fill-height-or-more > div {
display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.fill-height-or-more {
display: flex; padding: 20px;
    flex-direction: column;
    justify-content: space-around;
}

}
.some-area {  padding-left: 10px;
  padding-right: 10px;}

@keyframes arrow-7 {
    0%{
        opacity: 0;
        transform: translate(0,-20px) rotate(45deg);
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        transform: translate(0,20px) rotate(45deg);
    }
}
  @media (max-width: 1200px) {
    .blogs-container .swiper {
      width: 80%;
    }
  }
  
  @media (max-width: 900px) {
    .container #blogs {
      padding: 60px 80px;
    }
  
    .blogs-container .swiper {
      width: 50%;
    }
  }
  
  @media (max-width: 765px) {
    .blogs-container .swiper {
      width: 70%;
    }
  }
  
  @media (max-width: 550px) {
    .container #blogs {
      padding: 40px;
    }
  
    .blogs-container h1 {
      font-size: 24px;
    }
  
    .blogs-container .swiper {
      width: 80%;
    }
  
    .blog-content .date-category {
      font-size: 12px;
    }
  }

  @media (max-width: 768px) {
    .centroassoluto h2 {
      padding-bottom: 20px;
      font-size: 24px; 
    }
    .cta-content {
      padding: 20px;
    }

    .cta-heading {
      font-size: 2rem;
    }

    .cta-subheading {
      font-size: 1.2rem;
    }

    .cta-button {
      padding: 10px 20px;
      font-size: 1rem;
    }
  }
  .banner-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.banner {
    background: linear-gradient(-55deg, #ff7675 29%, #d63031 29.1%, #d63031 68%, #ff7675 68.1%);
    border-radius: 5px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.discount-icon {
    flex: 1 1 250px;
    padding: 15px;
    text-align: center;
    max-width: 300px;
}

.banner-container .content {
    flex: 1 1 250px;
    text-align: center;
    padding: 10px;
    text-transform: uppercase;
}

.banner-container .content span {
    color: #eee;
    font-size: 25px;
}

.banner-container .content h3 {
    color: #fff;
    font-size: 40px;
}

.banner-container .content p {
    color: #eee;
    font-size: 20px;
    padding: 10px 0;
}

.banner-container .content .btn {
    display: block;
    height: 40px;
    width: 150px;
    line-height: 40px;
    background: #fff;
    color: #d63031;
    margin: 5px auto;
    text-decoration: none;
    border-radius: 3px;
    text-align: center;
}

.product-image {
    position: relative;
    bottom: -33px;
    padding: 10px;
    flex: 1 1 250px;
    max-width: 100%;
}

@media (max-width: 768px) {
    .product-image {
        display: none;
    }
}
