@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
}

.wrapper {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

@media (max-width: 767px) {
  .wrapper {
    padding: 0 20px;
  }
}

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

button {
  border: none;
  outline: none;
  background-color: transparent;
  font-family: "Poppins", sans-serif;
  font-size: 21px;
  font-weight: 600;
  color: #fff;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn-turquoise {
  padding: 14px 30px;
  border-radius: 7px;
  background-color: #00bec9;
  border: 3px solid transparent;
}

.btn-turquoise:hover {
  background-color: #fff;
  color: #00bec9;
}

.btn-transparent {
  padding: 14px 30px;
  border-radius: 7px;
  border: 3px solid #fff;
}

.btn-transparent:hover {
  background-color: #00bec9;
  color: #fff;
  border: 3px solid #00bec9;
}

.btn-yellow {
  padding: 14px 30px;
  border-radius: 7px;
  border: 3px solid transparent;
  background-color: #fcc302;
}

.btn-yellow:hover {
  background-color: transparent;
  border: 3px solid #fcc302;
  color: #fcc302;
}

.btn-buy-now {
  background-color: #00bec9;
  font-size: 25px;
  border-radius: 30px;
  padding: 10px 46px;
}

.btn-buy-now:hover {
  background-color: #fff;
  color: #00bec9;
}

.scroll-to-top-btn {
  background-color: #747474;
  height: 35px;
  width: 48px;
  text-align: center;
  border-radius: 4px 4px 0 0;
  position: fixed;
  bottom: 0;
  right: 75px;
  z-index: 99;
  opacity: 0;
  transition: 0.2s ease;
}

.scroll-to-top-btn.displayed {
  opacity: 0.8;
}

.scroll-to-top-btn:hover i {
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .scroll-to-top-btn {
    display: none;
  }
}

.header {
  background-color: #daac00;
  padding: 30px 0;
}

@media (max-width: 767px) {
  .header {
    padding: 20px 0;
  }
}

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

@media (min-width: 768px) and (max-width: 1200px) {
  .header__logo {
    order: -1;
  }
}

@media (max-width: 767px) {
  .header__logo {
    width: 80%;
  }
}

.header__toggler {
  display: none;
}

@media (max-width: 767px) {
  .header__toggler {
    display: block;
  }
}

.header__bar {
  width: 35px;
  height: 3px;
  background-color: #00bec9;
  display: block;
  margin-bottom: 5px;
  transition: 0.2s ease;
}

.header__bar:first-child.active {
  transform: rotate(-45deg);
}

.header__bar:nth-child(2).active {
  display: none;
}

.header__bar:nth-child(3).active {
  transform: rotate(45deg);
  position: relative;
  bottom: 8px;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .header__nav {
    order: 2;
    flex: 0 0 100%;
    margin: 50px auto 0;
  }
}

@media (max-width: 767px) {
  .header__nav {
    opacity: 0;
    height: 0;
    transition: 0.8s cubic-bezier(0.075, 0.82, 0.265, 1);
  }

  .header__nav.active {
    opacity: 1;
    margin-top: 50px;
    height: auto;
  }
}

.header__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  direction: row;
}

@media (min-width: 1024px) and (max-width: 1200px) {
  .header__list {
    padding: 0 20%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .header__list {
    padding: 0 10%;
  }
}

.header__item {
  margin-right: 45px;
}

.header__item:last-child {
  margin-right: 0;
}

@media (max-width: 767px) {
  .header__item {
    flex: 0 0 100%;
    padding: 0 0 30px 50px;
  }
}

.header__link {
  font-size: 29px;
  font-weight: 500;
  color: #fff;
  position: relative;
}

.header__link::after {
  content: "";
  background-color: #00bec9;
  height: 3px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -10px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease-in;
}

.header__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header__form {
  box-shadow: 7.512px 14.127px 14.94px 3.06px rgba(74, 74, 74, 0.1);
}

@media (min-width: 768px) and (max-width: 1200px) {
  .header__form {
    order: 1;
  }
}

@media (max-width: 767px) {
  .header__form {
    display: none;
  }
}

.header__input {
  width: 203px;
  padding: 15px;
  background-color: #fcc302;
  border: none;
  outline: none;
  font-size: 21px;
  color: #fff;
}

.header__input::placeholder {
  font-size: 21px;
  color: #fff;
  letter-spacing: 0.5px;
}

.header__button {
  padding: 12px 25px;
  background-color: #00bec9;
  position: relative;
  left: -3px;
}

.header__button:hover {
  background-color: #008e96;
}

.header__search-icon {
  position: relative;
  top: 5px;
}

.section1 {
  background-color: #fcc302;
  padding: 90px 0 80px;
}

.section1 .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  direction: row;
}

.section1__text {
  flex: 0 0 650px;
}

@media (max-width: 1023px) {
  .section1__text {
    flex: 0 0 100%;
  }
}

.section1__img-container {
  flex: 0 0 calc(100% - 750px);
}

@media (min-width: 768px) and (max-width: 1023px) {
  .section1__img-container {
    flex: 0 0 300px;
  }
}

@media (max-width: 1023px) {
  .section1__img-container {
    flex: 0 0 250px;
    margin: 40px auto 0;
  }
}

.section1__img {
  max-width: 100%;
  width: 100%;
}

.section1__heading {
  font-size: 67px;
  font-weight: 600;
  color: #fff;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .section1__heading {
    font-size: 57px;
  }
}

@media (max-width: 767px) {
  .section1__heading {
    font-size: 45px;
    letter-spacing: 0;
  }
}

.section1__content {
  font-size: 29px;
  color: #fff;
  margin: 50px 0;
}

@media (max-width: 767px) {
  .section1__content {
    font-size: 24px;
  }
}

.section1 .btn-turquoise {
  margin-right: 30px;
}

@media (max-width: 767px) {
  .section1 .btn-turquoise {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .section1 .btn-transparent {
    display: none;
  }
}

.section2 {
  padding: 140px 0;
}

@media (max-width: 767px) {
  .section2 {
    padding: 70px 0;
  }
}

.section2 .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  direction: row;
}

.section2__text {
  flex: 0 0 48%;
}

@media (max-width: 767px) {
  .section2__text {
    flex: 0 0 100%;
  }
}

.section2__img-side {
  flex: 0 0 44%;
  position: relative;
}

@media (max-width: 767px) {
  .section2__img-side {
    flex: 0 0 90%;
    margin: 40px auto 0;
  }
}

.section2__img-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  direction: row;
  height: 480px;
  background: linear-gradient(rgba(218, 172, 0, 0.569), rgba(218, 172, 0, 0.569)), url("../images/section2-img.png");
  background-size: cover;
  z-index: 1;
}

.section2__orange-block {
  width: 252px;
  height: 206px;
  background-color: #fcc302;
  position: absolute;
  left: -30px;
  bottom: -30px;
  z-index: -1;
}

@media (max-width: 767px) {
  .section2__orange-block {
    left: -20px;
    bottom: -20px;
  }
}

.section2__heading {
  font-size: 50px;
  font-weight: 600;
  color: #313243;
}

@media (max-width: 767px) {
  .section2__heading {
    font-size: 45px;
  }
}

.section2__content {
  font-size: 29px;
  color: #313243;
  margin: 50px 0;
}

@media (max-width: 767px) {
  .section2__content {
    font-size: 24px;
  }
}

.section3 {
  background-color: #fcc302;
  padding: 100px 0;
  color: #fff;
  text-align: center;
}

.section3__heading {
  font-size: 75px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .section3__heading {
    font-size: 45px;
  }
}

.section3__content {
  font-size: 33px;
  margin: 50px 0 100px;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .section3__content {
    margin: 50px 0 0;
  }
}

@media (max-width: 767px) {
  .section3__content {
    font-size: 24px;
    margin: 50px 0 0;
  }
}

.section3__cols-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  direction: row;
}

.section3__col {
  flex: 30%;
  padding: 20px;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .section3__col {
    flex: 0 0 48%;
    padding: 0;
    margin: 50px auto 0;
  }
}

@media (max-width: 767px) {
  .section3__col {
    flex: 0 0 100%;
    padding: 0;
    margin: 50px auto 0;
  }
}

.section3__col-heading {
  font-size: 38px;
  font-weight: 600;
  margin: 50px 0 20px;
}

@media (max-width: 767px) {
  .section3__col-heading {
    font-size: 30px;
    margin: 25px 0 15px;
  }
}

.section3__col-content {
  font-size: 25px;
}

@media (max-width: 767px) {
  .section3__col-content {
    font-size: 20px;
  }
}

.section3__img-container {
  border: 6px solid #fff;
  background-color: #fff;
  width: 342px;
  height: 353px;
  overflow: hidden;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .section3__img-container {
    margin: 20px auto 0;
  }
}

@media (max-width: 767px) {
  .section3__img-container {
    width: 280px;
    margin: 20px auto 0;
  }
}

.section3__img {
  max-width: 100%;
  width: auto;
  height: 100%;
  object-fit: cover;
}

.section4 {
  padding: 140px 0;
  text-align: right;
}

@media (max-width: 767px) {
  .section4 {
    padding: 70px 0;
  }
}

.section4 .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  direction: row;
}

.section4__text {
  flex: 0 0 48%;
}

@media (max-width: 767px) {
  .section4__text {
    flex: 0 0 100%;
  }
}

.section4__img-side {
  flex: 0 0 44%;
  position: relative;
}

@media (max-width: 767px) {
  .section4__img-side {
    flex: 0 0 90%;
    margin: 0;
  }
}

.section4__img-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  direction: row;
  height: 480px;
  background: linear-gradient(rgba(218, 172, 0, 0.569), rgba(218, 172, 0, 0.569)), url("../images/section4-img.png");
  background-size: cover;
  z-index: 1;
}

.section4__orange-block {
  width: 252px;
  height: 206px;
  background-color: #fcc302;
  position: absolute;
  right: -30px;
  bottom: -30px;
  z-index: -1;
}

@media (max-width: 767px) {
  .section4__orange-block {
    right: -20px;
    bottom: -20px;
  }
}

.section4__heading {
  font-size: 50px;
  font-weight: 600;
  color: #313243;
}

@media (max-width: 767px) {
  .section4__heading {
    font-size: 45px;
    margin-top: 40px;
  }
}

.section4__content {
  font-size: 29px;
  color: #313243;
  margin: 50px 0;
}

@media (max-width: 767px) {
  .section4__content {
    font-size: 24px;
  }
}

.section5 {
  background-color: #fcc302;
  padding: 115px 0;
  color: #fff;
  text-align: center;
}

@media (max-width: 1023px) {
  .section5 {
    padding: 70px 0;
  }
}

.section5__heading {
  font-size: 75px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .section5__heading {
    font-size: 45px;
  }
}

.section5__content {
  font-size: 33px;
  margin: 50px 0 100px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .section5__content {
    margin: 50px 0;
  }
}

@media (max-width: 767px) {
  .section5__content {
    font-size: 24px;
    margin: 50px 0 0;
  }
}

.section5__cols-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  direction: row;
}

.section5__col {
  flex: 0 0 30%;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .section5__col {
    flex: 0 0 48%;
    margin: 50px auto 0;
  }
}

@media (max-width: 767px) {
  .section5__col {
    flex: 0 0 100%;
    margin-top: 50px;
  }
}

.section5__price {
  margin: 40px auto 30px;
  font-size: 42px;
  font-weight: 600;
  padding: 0 10%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  direction: row;
  max-width: 348px;
}

@media (max-width: 767px) {
  .section5__price {
    font-size: 32px;
    margin: 20px auto;
  }
}

.section5__number {
  padding: 0 10px;
  position: relative;
}

.section5__line {
  width: 100%;
  height: 4px;
  border: none;
  background-color: #fff;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 45%;
}

.section5__img-container {
  border: 6px solid #fff;
  background-color: #fff;
  width: 342px;
  height: 353px;
  overflow: hidden;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .section5__img-container {
    width: 280px;
    margin: 0 auto;
  }
}

.section5__img {
  max-width: 100%;
  width: auto;
  height: 100%;
  object-fit: cover;
}

.team {
  padding: 145px 0 140px;
  color: #313243;
  text-align: center;
}

@media (max-width: 1023px) {
  .team {
    padding: 70px 0;
  }
}

.team__heading2 {
  font-size: 75px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .team__heading2 {
    font-size: 45px;
  }
}

.team__content {
  font-size: 33px;
  margin: 50px 0 100px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .team__content {
    margin: 50px 0;
  }
}

@media (max-width: 767px) {
  .team__content {
    font-size: 24px;
    margin: 50px 0 0;
  }
}

.team__cols-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  direction: row;
}

.team__col {
  flex: 0 0 33%;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .team__col {
    flex: 0 0 48%;
    margin: 50px auto 0;
  }
}

@media (max-width: 767px) {
  .team__col {
    flex: 0 0 100%;
    margin-top: 50px;
  }
}

.team__img {
  max-width: 100%;
}

.team__headings {
  margin: 40px 0 30px;
}

.team__heading3 {
  font-size: 29px;
  font-weight: bold;
}

.team__heading4 {
  font-size: 24px;
  text-transform: uppercase;
}

.team__link {
  display: inline-block;
  background-color: #daac00;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-right: 15px;
  line-height: 35px;
  color: #fff;
  border: 1px solid transparent;
}

.team__link:hover {
  color: #daac00;
  background-color: #fff;
  border: 1px solid #daac00;
}

.counter {
  padding: 160px 0;
  background: linear-gradient(rgba(252, 195, 2, 0.8), rgba(252, 195, 2, 0.8)), url(../images/counter-bg.png);
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
}

@media (max-width: 1023px) {
  .counter {
    padding: 0 0 70px;
  }
}

.counter .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  direction: row;
}

.counter__col {
  flex: 0 0 30%;
}

@media (max-width: 1023px) {
  .counter__col {
    flex: 0 0 100%;
    margin-top: 70px;
  }
}

.counter__heading4 {
  font-size: 42px;
  font-weight: 500;
  margin: 60px 0 30px;
}

@media (max-width: 767px) {
  .counter__heading4 {
    font-size: 35px;
    margin: 30px 0;
  }
}

.counter__heading3 {
  font-size: 37px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .counter__heading3 {
    font-size: 30px;
    letter-spacing: 1px;
  }
}

.posts {
  padding: 140px 0;
  text-align: center;
  color: #313243;
}

@media (max-width: 1023px) {
  .posts {
    padding: 70px 0;
  }
}

.posts__heading {
  font-size: 75px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .posts__heading {
    font-size: 45px;
  }
}

.posts__content {
  font-size: 33px;
  margin: 50px 0 100px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .posts__content {
    margin: 50px 0;
  }
}

@media (max-width: 767px) {
  .posts__content {
    font-size: 24px;
    margin: 50px 0 0;
  }
}

.posts__posts-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  direction: row;
}

.posts__post {
  flex: 0 0 30%;
  box-shadow: 5.634px 10.595px 42.33px 8.67px rgba(74, 74, 74, 0.1);
}

@media (min-width: 768px) and (max-width: 1023px) {
  .posts__post {
    flex: 0 0 48%;
    margin: 50px auto 0;
  }
}

@media (max-width: 767px) {
  .posts__post {
    flex: 0 0 100%;
    margin-top: 50px;
  }
}

.posts__img {
  max-width: 100%;
  width: 100%;
}

.posts__body {
  padding: 30px;
  text-align: left;
}

.posts__heading3 {
  font-size: 25px;
  font-weight: 600;
}

.posts__date {
  font-size: 16px;
  text-transform: uppercase;
  color: #00bec9;
  margin: 20px 0 30px;
}

.posts__link {
  font-size: 21px;
  font-weight: 500;
  color: #00bec9;
  display: inline-block;
  margin-top: 30px;
}

.posts__link:hover {
  color: #313243;
  letter-spacing: 1px;
}

.footer {
  background-color: #343434;
  padding: 150px 0 190px;
  color: #fff;
}

@media (max-width: 1023px) {
  .footer {
    padding: 50px 0;
  }
}

.footer .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  direction: row;
}

.footer__col {
  flex: 1;
}

.footer__col:last-child {
  flex: 2;
  text-align: right;
}

@media (min-width: 600px) and (max-width: 1023px) {
  .footer__col:last-child {
    flex: 0 0 70%;
    margin-left: 0;
  }
}

@media (max-width: 1023px) {
  .footer__col:last-child {
    text-align: left;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer__col {
    flex: 0 0 48%;
    margin: 50px auto 0;
  }
}

@media (max-width: 767px) {
  .footer__col {
    flex: 0 0 100%;
    margin-top: 50px;
  }
}

.footer__heading {
  font-size: 37px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .footer__heading {
    font-size: 30px;
  }
}

.footer__list {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .footer__list {
    margin-top: 30px;
  }
}

.footer__item {
  margin-top: 20px;
}

.footer__link {
  font-size: 25px;
  color: #fff;
  position: relative;
}

.footer__link::after {
  content: "";
  background-color: #00bec9;
  height: 3px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -10px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease-in;
}

.footer__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

@media (max-width: 767px) {
  .footer__link {
    font-size: 20px;
  }
}

.footer__social-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  line-height: 40px;
  text-align: center;
  margin-right: 15px;
  border: 1px solid transparent;
  color: #343434;
  font-size: 20px;
}

.footer__social-link:hover {
  border: 1px solid #008e96;
  color: #00bec9;
}

.footer__content {
  font-size: 25px;
}

@media (max-width: 767px) {
  .footer__content {
    font-size: 20px;
    margin-top: 5px;
  }
}

.footer__form {
  margin: 50px 0;
  height: 90px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  direction: row;
}

@media (max-width: 767px) {
  .footer__form {
    height: 50px;
  }
}

.footer__input {
  flex: 0 0 80%;
  height: 100%;
  background-color: #fcc302;
  border: none;
  outline: none;
  padding: 0 20px;
  color: #fff;
  font-size: 22px;
}

@media (max-width: 767px) {
  .footer__input {
    font-size: 14px;
  }
}

.footer__button {
  flex: 0 0 20%;
  height: 100%;
  background-color: #00bec9;
  font-size: 32px;
}

.footer__button:hover {
  background-color: #008e96;
  font-size: 40px;
}

/*# sourceMappingURL=style.css.map */