* {
  margin: 0;
  padding: 0;
  z-index: 2;
}

html {
  min-height: 100%;
  font-size: 14px;
}

body {
  height: 100%;
  font-family: "Nunito", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: "Comfortaa", sans-serif;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
}

.header-text-blue {
  color: #379EFF;
}

:root {
  --blue: #379EFF;
  --white: #ffffff;
  --grey: #333;
  --dark-blue: #081F46;
  --light-blue: #EEF9FF;
}

ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.default-button {
  padding: 0.63rem 1.575rem;
  border: 0;
  border-radius: 90px;
  box-shadow: 0 20px 40px 0 rgba(41, 112, 250, 0.2);
  font-size: 1.2rem;
}

.button-gradient-blue {
  background: linear-gradient(90deg, rgb(103, 181, 255) 0%, rgb(77, 134, 255) 100%);
  color: #fff;
}

.button-white {
  background-color: var(--white);
  color: var(--dark-blue);
}

.stroke-button {
  background-color: transparent;
  border-radius: 90px;
  padding: 0.5rem 2rem;
  box-shadow: none;
  border: 2px solid var(--blue);
  color: var(--blue);
}
.stroke-button i {
  color: var(--dark-blue);
}

.submit-button {
  display: flex;
  width: fit-content;
  padding: 0.5rem 5rem;
  margin-left: auto;
  margin-right: 0.75rem;
  margin-top: 1rem;
  transition: 0.3s;
}
.submit-button:hover {
  transition: 0.3s;
  transform: scale(1.05);
}

a {
  text-decoration: none;
  outline: none;
}

img {
  width: 100%;
  height: 100%;
}

.default-input {
  border-radius: 1rem;
  height: 2.1rem;
  border: 1px solid #E4E5E7;
  padding: 0.5rem 1rem;
  outline: none;
}
.default-input:focus {
  border: 1px solid var(--blue);
}

.default-select {
  border-radius: 1rem;
  height: 2.1rem;
  border: 1px solid #E4E5E7;
  padding: 0 0.5rem;
  outline: none;
}
.default-select:focus {
  border: 1px solid var(--blue);
}

.default-textarea {
  border-radius: 0.5rem;
  border: 1px solid #E4E5E7;
  padding: 0.5rem 1rem;
  outline: none;
  resize: none;
}
.default-textarea:focus {
  border: 1px solid var(--blue);
}

.required-input {
  position: absolute;
  right: 0.5rem;
  top: -0.5rem;
  color: red;
  font-size: 1.15rem;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.choices {
  padding-left: 1.25rem;
}
.choices-coolers {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: 1px solid var(--blue);
}
.choices-item label {
  padding-left: 0.5rem;
}

.container-default {
  max-width: 90.72rem;
  height: 100%;
  margin: 0 auto;
}

.container-1200 {
  max-width: 75.6rem;
  height: 100%;
  margin: 0 auto;
}

.container-1100 {
  max-width: 69.3rem;
  height: 100%;
  margin: 0 auto;
}

.container-1000 {
  max-width: 63rem;
  height: 100%;
  margin: 0 auto;
}

.header {
  height: 6.3rem;
  padding: 0.63rem 0;
}
.header .logo img {
  max-height: 5rem;
  width: auto;
}
.header .header-menu ul {
  display: flex;
  justify-content: center;
}
.header .header-menu ul li {
  font-size: 1rem;
  padding-right: 1.5rem;
}
.header .header-menu ul li a {
  color: var(--dark-blue);
  position: relative;
  padding: 0.2rem 0.3rem;
  transition: 0.4s;
}
.header .header-menu ul li a:hover {
  transition: 0.4s;
  color: var(--blue);
}
.header-phone {
  color: var(--dark-blue);
  justify-content: end;
}
.header-phone__inner {
  width: fit-content;
  position: relative;
}
.header-phone__inner:hover i {
  transition: 0.3s;
  color: var(--blue);
}
.header-phone__inner i {
  transition: 0.3s;
}
.header-phone__number {
  font-size: 0.9rem;
  padding: 0.2rem 0.5rem;
  color: var(--dark-blue);
}
.header-phone__number:hover {
  color: var(--dark-blue);
}
.header-phone__number span {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  left: 0;
  bottom: -0.1rem;
  background-color: var(--blue);
  border-radius: 10px;
  display: none;
}

.main-block-wrapper {
  position: relative;
}
.main-block-wrapper .main-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.main-block-wrapper .cta {
  margin-top: 3rem;
}
.main-block-wrapper .cta-img {
  text-align: end;
  position: relative;
}
.main-block-wrapper .cta-img__arrow {
  width: fit-content;
  position: absolute;
  left: -25%;
  bottom: -40%;
}
.main-block-wrapper .cta-img__arrow img {
  max-width: 22rem;
}
.main-block-wrapper .cta-img__bottles {
  max-width: 90%;
}
.main-block-wrapper .cta-text {
  margin-top: 3rem;
}
.main-block-wrapper .cta-text__header {
  font-size: 3rem;
  font-weight: 700;
  line-height: 4rem;
  margin-bottom: 1.5rem;
  color: var(--dark-blue);
}
.main-block-wrapper .cta-text__description {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 0.3rem;
}
.main-block-wrapper .cta-text__description:before {
  content: "";
  position: absolute;
  display: block;
  left: 0.3rem;
  top: 0;
  width: 0.25rem;
  height: 1.26rem;
  background-color: var(--blue);
  border-radius: 20%;
}
.main-block-wrapper .cta-buttons {
  padding-left: 0.3rem;
}
.main-block-wrapper .cta-buttons__order {
  margin-right: 1.75rem;
}
.main-block-wrapper .cta-buttons__order, .main-block-wrapper .cta-buttons__more {
  transition: 0.3s;
  display: inline-block;
}
.main-block-wrapper .cta-buttons__order:hover, .main-block-wrapper .cta-buttons__more:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

.main-block-wrapper .cta-buttons__order:hover{
  color: #fff;
}

.products {
  margin-top: 15rem;
  margin-bottom: 12rem;
  position: relative;
  padding-bottom: 3rem;
}
.products-bg {
  position: absolute;
  left: 0;
  bottom: 0;
}
.products-header {
  margin-bottom: 1rem;
}
.products-subheader {
  font-family: "Comfortaa", sans-serif;
  color: var(--dark-blue);
  margin-bottom: 3rem;
  font-size: 1.26rem;
  display: block;
}
.products-item {
  background-color: #fff;
  height: 100%;
  border-radius: 1rem;
  box-shadow: 0 20px 40px 0 rgba(41, 112, 250, 0.2);
  width: 85%;
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.products-item__img {
  max-height: 12.6rem;
  width: auto;
  margin-bottom: 1.5rem;
}
.products-item__img.pump-image {
  max-height: 8.19rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
}
.products-item__header {
  font-size: 1.2rem;
  font-family: "Comfortaa", sans-serif;
  font-weight: 500;
  color: var(--dark-blue);
  margin-bottom: 0.4rem;
}
.products-item__subheader {
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}
.products-item__rate {
  margin-bottom: 1.75rem;
}
.products-item__rate i {
  padding: 0 0.1rem;
  color: var(--dark-blue);
}
.products-item__button {
  font-size: 1rem;
  transition: 0.3s;
}
.products-item__button i {
  font-size: 0.9rem;
  margin-right: 0.2rem;
}
.products-item__button:hover {
  transition: 0.3s;
  border-color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 40px 0 rgba(41, 112, 250, 0.2);
}

.services {
  padding: 0 1.3rem;
  display: flex;
  justify-content: center;
}
.services-padding {
  background-color: var(--white);
  box-shadow: 0 0 40px 0 rgba(41, 112, 250, 0.2);
  border-radius: 1rem;
  padding: 5rem 0;
  width: 100%;
}
.services-image {
  padding-right: 0;
}
.services-image img {
  max-width: 90%;
}
.services-info__header {
  margin-bottom: 3rem;
}
.services-info__item {
  position: relative;
  margin-bottom: 3rem;
}
.services-info__item:before {
  content: "";
  width: 3.15rem;
  height: 3.15rem;
  background-color: var(--light-blue);
  position: absolute;
  left: 0.7rem;
  top: -0.6rem;
  border-radius: 50%;
}
.services-info__item i {
  font-size: 2rem;
}
.services-info__item span {
  font-size: 1.26rem;
  margin-left: 5rem;
  font-weight: 600;
  position: relative;
  font-family: "Comfortaa", sans-serif;
}
.services-info__item span:before {
  position: absolute;
  content: "";
  width: 0.25rem;
  height: 1.7rem;
  background-color: var(--blue);
  left: -1rem;
  top: 0;
  border-radius: 2px;
}
.services-info__button {
  transition: 0.3s;
  width: fit-content;
}
.services-info__button a {
  padding: 0.63rem 4.4rem;
  color: #fff;
}
.services-info__button:hover {
  transition: 0.3s;
  transform: translateY(-5px);
}
.services-info__button:hover a {
  color: #fff;
}

.safety {
  position: relative;
  padding: 15rem 0;
  margin-top: 5rem;
}
.safety-bg {
  position: absolute;
  left: 0;
  bottom: 0;
}
.safety-image img {
  max-width: 85%;
}
.safety-info__header {
  line-height: 2.75rem;
  margin-bottom: 1.26rem;
}
.safety-info__subheader {
  font-size: 1.26rem;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 3rem;
}
.safety-info__description {
  padding-right: 1.6rem;
  margin-bottom: 3rem;
}
.safety-info__link {
  padding: 0.5rem 0;
  font-size: 1.26rem;
}
.safety-info__link:hover i {
  animation: arrow-move ease-in 0.7s infinite;
}
.safety-info__link i {
  margin-left: 0.75rem;
  color: var(--dark-blue);
}

.cooler {
  position: relative;
  margin-top: 3rem;
  margin-bottom: 15rem;
}
.cooler-image img {
  max-width: 85%;
}
.cooler-info__header {
  line-height: 2.75rem;
  margin-bottom: 3rem;
}
.cooler-info__description {
  padding-right: 1.6rem;
  margin-bottom: 1.5rem;
}
.cooler-info__description b {
  font-size: 1.26rem;
}
.cooler-info__button {
  margin-top: 2rem;
  padding: 0.63rem 4.4rem;
  transition: 0.3s;
  display: inline-block;
}
.cooler-info__button:hover {
  transition: 0.3s;
  transform: translateY(-5px);
  color: #fff;
}

.composition {
  margin-bottom: 15rem;
}
.composition-image {
  padding: 0 6rem;
  text-align: left;
}
.composition-image img {
  max-width: 75%;
  animation: bottle-rotate 4.5s linear infinite;
}
.composition-info {
  display: flex;
  align-items: center;
}
.composition-info_item {
  position: relative;
}
.composition-info_item img {
  position: absolute;
  left: -3rem;
  top: -2rem;
  max-width: 7rem;
  height: auto;
  z-index: -1;
}
.composition-info_item span {
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
}
.composition-info_item__number {
  color: var(--blue);
}

.privileges {
  position: relative;
  padding: 14.2rem 0;
}
.privileges-bg {
  position: absolute;
  left: 0;
  bottom: 0;
}
.privileges-item {
  padding: 2rem;
  background-color: #fff;
  box-shadow: 0 20px 40px 0 rgba(41, 112, 250, 0.2);
  border-radius: 1rem;
  text-align: center;
  height: 100%;
}
.privileges-item img {
  max-width: 6.5rem;
  height: auto;
  margin-bottom: 2rem;
}
.privileges-item__truck {
  max-width: 8rem !important;
  height: auto;
  margin-bottom: 0.6rem !important;
}
.privileges-item__header {
  margin-bottom: 0.85rem;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
}
.privileges-item__description {
  font-size: 1rem;
}

.clients-inner {
  padding: 0 7.1rem;
}
.clients-text__subheader {
  font-size: 1.4rem;
  letter-spacing: 1.5px;
}
.clients-swiper {
  margin-bottom: 14rem;
}
.clients .swiper-wrapper {
  overflow: visible;
}
.clients .swiper-wrapper .swiper-slide {
  background-color: #fff;
  border: 1px solid #379eff;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.clients .swiper-wrapper .swiper-slide img {
  max-width: 80%;
  height: auto;
}
.clients .swiper-button-next {
  right: 3rem;
}
.clients .swiper-button-prev {
  left: 3rem;
}

.contact {
  position: relative;
  margin-bottom: 7rem;
  color: var(--dark-blue);
}
.contact h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-left: 1rem;
  position: relative;
  color: var(--dark-blue);
}
.contact h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 1.5rem;
  background-color: var(--blue);
  border-radius: 1.5rem;
}
.contact-bg {
  position: absolute;
  left: 0;
  bottom: 0;
}
.contact-map {
  background-color: #fff;
  padding: 1.4rem;
  box-shadow: 0 20px 40px 0 rgba(41, 112, 250, 0.2);
  border-radius: 1rem;
}
.contact-info__office {
  margin-bottom: 1.5rem;
  background-color: #fff;
  padding: 1.4rem;
  box-shadow: 0 20px 40px 0 rgba(41, 112, 250, 0.2);
  border-radius: 1rem;
}
.contact-info__office i {
  font-size: 1.5rem;
  margin-left: -0.3rem;
}
.contact-info__office span {
  margin-left: 0.4rem;
  display: block;
  color: var(--dark-blue);
  font-weight: 500;
}
.contact-info__days {
  background-color: #fff;
  padding: 1.4rem;
  box-shadow: 0 20px 40px 0 rgba(41, 112, 250, 0.2);
  border-radius: 1rem;
}
.contact-info__days span {
  display: block;
  color: var(--dark-blue);
  font-weight: 500;
}

.footer {
  padding-top: 18.4rem;
  padding-bottom: 4rem;
  position: relative;
}
.footer-bg {
  position: absolute;
  left: 0;
  bottom: 0;
}
.footer-header {
  font-weight: 600;
  padding-left: 1rem;
  margin-bottom: 1.75rem;
  font-size: 1.4rem;
  position: relative;
}
.footer-header:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 1.5rem;
  background-color: var(--blue);
  border-radius: 1.5rem;
}
.footer-menu__inner {
  position: relative;
}
.footer-menu__inner:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 110%;
  background-color: var(--white);
  opacity: 0.45;
}
.footer-menu__side a {
  font-size: 1rem;
  color: var(--white);
  transition: 0.3s;
  margin-bottom: 0.7rem;
}
.footer-menu__side a:hover {
  transition: 0.3s;
  color: var(--blue);
}
.footer-social__item {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.6rem;
  background-color: var(--blue);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
  margin-bottom: 1.5rem;
}
.footer-copyright {
  padding: 1rem 0;
  font-size: 0.85rem;
  margin-top: 5.6rem;
  position: relative;
}
.footer-copyright:after {
  content: "";
  position: absolute;
  width: 110%;
  height: 1px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background-color: var(--white);
  opacity: 0.45;
}
.footer-copyright a {
  margin-left: 0.5rem;
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
  transition: 0.4s;
}
.footer-copyright a:hover {
  transition: 0.4s;
  color: var(--blue);
}

@keyframes bottle-shake {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bottle-rotate {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(0);
  }
  75% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes arrow-move {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateY(0);
  }
}