* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  transition: all 0.2s;
}

.container {
  width: 1200px; 
  max-width: 95%;
  margin: 0 auto;
}

body {
  font-family: 'Tilda Sans';
}

.main {
  padding-bottom: 65px;
  padding-top: 30px;
  background: url("../images/main/bg.jpg") center center no-repeat;
  background-size: cover;
}

.title {
  font-size: 48px;
  font-weight: 300;
  line-height: 140%;
  text-transform: uppercase;
  color: #1F1F1F;
}

.title span {
  font-weight: 500;
}

.main-content {
  max-width: 680px;
  margin-top: 90px;
}

.main__title {
  margin-bottom: 32px;
}

.main__descr {
  font-size: 20px;
  font-weight: 300;
  line-height: 140%;
  margin-bottom: 30px;
  color: #1F1F1F;
}


.button {
  border: none;
  outline: none;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  padding: 0 65px;
  border-radius: 16px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  background: rgb(0,206,209);
  background: linear-gradient(130deg, rgba(0,206,209,1) 0%, rgba(0,204,204,1) 50%, rgba(13,232,222,1) 100%);
  font-family: 'Tilda Sans';
  box-shadow: 0px 4px 0px rgba(56, 150, 151, 100%);
}

.button:hover {
  color: #ffffff !important;
}

.items {
  margin-top: 65px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  gap: 16px;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.04);
}

.item-text {
  font-size: 20px;
  color: #1F1F1F;
  line-height: 140%;
  font-weight: 600;
}

.center {
  text-align: center;
}

@media screen and (min-width: 320px) and (max-width: 767px) {

  .main { 
    background: url("../images/main/mob-bg.jpg") center center no-repeat;
    background-size: cover;
  }

  .main__descr {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .main__title {
    margin-bottom: 20px;
  }

  .button {
    font-size: 16px;
    height: 65px;
    padding: 0 35px;
  }
  
  .items {
    margin-top: 40px;
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
  }

  .item {
    padding: 15px;
    gap: 12px;
    background: rgba(255, 255, 255, 0.3);
  }

  .item-text {
    font-size: 16px;
  }  

  .title {
    font-size: 28px;
  }

  .logo {
    width: 120px;
  }

  .header-social-text {
    display: none;
  }

  .header {
    flex-wrap: wrap;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px;
  }
}

@media screen and (min-width: 320px) and (max-width: 1023px) {
  .header-text, .footer-text {
    display: none;
  }

  .header-contact a {
    font-size: 16px;
  }
}








.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-text {
  margin-right: auto;
  margin-left: 25px;
}

.header-social {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
}

.header-social .icons {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
}

.header-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.header-contact-text {
  font-size: 14px;
  color: #1F1F1F;
}

.header-contact a {
  font-size: 24px;
  font-weight: 700;
  color: #1F1F1F;
}

a:hover {
  color: #389697;
}

@media screen and (min-width: 320px) and (max-width: 1023px) {
  .header-contact a {
    font-size: 16px;
  }
}





.slider-section {
  padding: 90px 0;
}

.slider-title {
  margin-bottom: 60px;
}

.slider-descr {
  font-size: 20px;
  font-weight: 300;
  color: #1F1F1F;
}

.slider-descr span {
  font-weight: 500;
}

.slider-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.slider {
  margin-bottom: 30px;
}

.gallery-item {
  display: inline-flex !important;
  justify-content: center;
}

.gallery-item img {
  border-radius: 16px;
}

.slick-arrow {
  width: 50px;
  height: 50px;
  background: #00CED1;
  border-radius: 100%;
  z-index: 5;
}

.slick-arrow::before {
  display: none;
}

.slick-prev {
  left: -70px;
}

.slick-next {
  right: -50px;
}


.footer {
  background: #F7F5F5;
}

.footer-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}

.footer-text {
  margin-right: auto;
  margin-left: 35px;
}

.footer-social {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}



@media screen and (min-width: 320px) and (max-width: 767px) {
  .footer-block {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }

  .slider-descr {
    font-size: 16px;
  }

  .slider-section {
    padding: 45px 0;
  }

  .slider-title {
    margin-bottom: 30px;
  }

  .slick-prev {
    left: 0;
  }

  .slick-next {
    right: 0;
  }
}