* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "VAGRoundedStd";
  src: url("VAGRoundedStd-Black.ttf") format("opentype"),
    url("VAGRoundedStd-Black.woff") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "VAGRoundedStd";
  src: url("VAGRoundedStd-Thin.ttf") format("opentype"),
    url("VAGRoundedStd-Thin.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  font-family: "VAGRoundedStd";
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

/* header CSS */

/* .header-box {
  border-bottom: 1px solid black;
} */

.header {
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}

.logo {
  max-height: 90px;
  max-width: 150px;
  cursor: pointer;
}

.menu-icon {
  font-size: 45px;
  color: #666666;
  cursor: pointer;
  margin: 0;
}

/* main content CSS */

.main-box {
  padding: 40px 0;
}

.title {
  font-weight: 800;
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}

.subtitle {
  font-weight: 800;
  font-size: 18px;
  text-align: center;
  margin: 0;
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 24px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.icon {
  background-color: black;
  color: white;
  font-size: 36px;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.contect-box {
  margin: 0;
}

.contact-title {
  font-weight: bold;
  font-size: 20px;
  margin-top: 15px;
  margin-bottom: 10px;
}

.contact-text {
  font-size: 16px;
  max-width: 300px;
  margin: 0;
}

.contact-text a {
  color: black;
  text-decoration: none;
}

@media (min-width: 768px) {
  .icon {
    height: 90px;
    width: 90px;
  }
  .contact-wrapper {
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    margin-top: 32px;
  }
  .contact-title {
    font-size: 24px;
  }

  .contact-item {
    width: 25%;
  }
}

@media (min-width: 1080px) {
  .title {
    font-size: 45px;
  }

  .contact-wrapper {
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    margin-top: 40px;
  }

  .title {
    font-size: 36px;
  }

  .contact-item {
    width: 33%;
  }
  .contact-title {
    font-size: 24px;
  }
  .contact-text {
    font-size: 18px;
  }
}

/* footer CSS */

.footer {
  background-color: #000000;
  position: fixed;
  margin-top: 50px;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.footer-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
}

.footer-menu li a {
  color: gray;
  text-decoration: none;
}

.footer-menu li a:hover {
  text-decoration: underline;
}

/* privacy-policy CSS */

.bottom-banner {
  width: 100%;
  float: left;
  margin-bottom: 40px;
}

.small-banner-img {
  width: 100%;
}

.page-heading {
  text-align: center;
  color: #666666;
  font-size: 46px;
  margin-bottom: 25px;
  font-family: "VAGRoundedStd";
}

.page-intor-text {
  font-size: 16px;
}

.text-page-bg {
  padding: 30px;
  background: #e4efe4;
  border-radius: 10px;
  margin-bottom: 150px;
}

.page-text.privacy {
  text-align: left;
  line-height: 26px;
  font-size: 14px;
  margin-bottom: 15px;
}

.page-subheading {
  font-size: 22px;
  margin-top: 15px;
}

.text-page-list {
  text-align: left;
  line-height: 26px;
  font-size: 14px;
  margin-bottom: 15px;
  margin-left: 40px;
  /* list-style-position: inside; */
}
