.container {
  max-width: 1020px;
  margin: auto;
  padding: 0 20px;
}
@media (max-width: 599px) {
  .container {
    padding: 0 15px;
  }
}
@media (max-width: 450px) {
  .container {
    padding: 0 12px;
  }
}

body {
  margin: 0;
  font-family: "Ubuntu", sans-serif;
}

.footer {
  padding: 50px 0;
  background: #2E3749;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}
@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
.footer-item h5 {
  color: white;
  font-size: 20px;
  margin: 0;
  margin-bottom: 15px;
}
.footer-item p {
  color: white;
  font-size: 14px;
  line-height: 1.3;
  margin: 0;
  margin-bottom: 25px;
}
.footer-item a {
  color: #FFFF00;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
}
.footer-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.footer-item ul li a {
  text-decoration: none;
  color: black;
}
.footer .copyright {
  text-align: center;
  margin: 0;
  font-size: 14px;
  padding-top: 50px;
}

.header {
  padding: 15px 0;
  width: 100%;
  z-index: 100;
  top: 0;
  transition: linear 0.2s all;
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-main__logo a {
  display: block;
}
.header-main__logo a img {
  height: 50px;
  width: 100%;
  transition: linear 0.2s all;
}
.header-main__menu #primary-menu ul {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .header-main__menu #primary-menu ul {
    transform: translateX(100%);
    display: grid;
    place-content: center;
    place-items: center;
    position: fixed;
    width: 100%;
    left: 0;
    background: #F8F8F8;
    height: 100vh;
    top: 0;
    transition: cubic-bezier(0.43, 0.76, 1, 1) 0.2s all;
    opacity: 0;
  }
}
.header-main__menu #primary-menu ul li a {
  text-decoration: none;
  color: black;
}
.header-main__menu .menu-toggle {
  display: none;
  cursor: pointer;
}
@media (max-width: 992px) {
  .header-main__menu .menu-toggle {
    display: block;
  }
}
.header-main__menu .menu-toggle .bar1, .header-main__menu .menu-toggle .bar2, .header-main__menu .menu-toggle .bar3 {
  width: 32px;
  height: 2px;
  background-color: #333;
  margin: 6px 0;
  transition: 0.4s;
}

.toggled-view .bar1 {
  transform: rotate(-45deg) translate(-4px, 4px);
}
.toggled-view .bar2 {
  opacity: 0;
}
.toggled-view .bar3 {
  transform: rotate(45deg) translate(-8px, -8px);
}
.toggled-view .header-main__menu #primary-menu ul {
  display: grid;
  place-content: center;
  place-items: center;
  position: fixed;
  width: 100%;
  left: 0;
  background: #F8F8F8;
  height: 100vh;
  top: 0;
  transform: translateX(0px);
  opacity: 1;
}

/* PAGES */
.hero {
  padding: 130px 0;
  background-image: url(../img/hero-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 600px) {
  .hero {
    padding: 80px 0;
  }
}
.hero a {
  color: white;
  text-transform: uppercase;
  font-size: 16px;
  text-decoration: none;
  font-weight: 400;
  background: #2E3749;
  padding: 15px 35px;
  line-height: 1.6;
  transition: linear 0.2s all;
}
.hero a:hover {
  background: #40495c;
  transition: linear 0.2s all;
}
.hero h1 {
  color: white;
  font-size: 60px;
  margin: 0;
  font-weight: 700;
  padding-bottom: 40px;
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 35px;
  }
}
.hero p {
  font-size: 24px;
  color: white;
  margin: 0;
  max-width: 650px;
  line-height: 1.5;
  font-weight: 400;
  padding-bottom: 50px;
}
@media (max-width: 600px) {
  .hero p {
    font-size: 20px;
  }
}

.services {
  padding-top: 48px;
  padding-bottom: 42px;
}
.services-item {
  text-decoration: none;
  box-shadow: 1px 5px 24px rgba(128, 128, 128, 0.3490196078);
  padding: 35px 25px;
}
.services-item__img {
  margin-bottom: 50px;
}
@media (max-width: 600px) {
  .services-item__img {
    margin-bottom: 20px;
  }
}
.services-item__img img {
  width: 100%;
}
.services-item h4 {
  color: #5B5B5B;
  width: 80%;
  font-size: 24px;
  margin: 0;
  text-decoration: none;
  padding-bottom: 25px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (max-width: 600px) {
  .services-item h4 {
    width: 100%;
    font-size: 20px;
    padding-bottom: 15px;
  }
}
.services-item p {
  color: #666666;
  width: 84%;
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  text-decoration: none;
  font-weight: 500;
}
@media (max-width: 600px) {
  .services-item p {
    width: 100%;
  }
}
.services-item__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 42px;
}
@media (max-width: 767px) {
  .services-item__wrap {
    grid-template-columns: 1fr;
  }
}
.services-row {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 600px) {
  .services-row {
    display: grid;
  }
}
.services-row img {
  width: 100%;
  height: 566px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 600px) {
  .services-row img {
    height: 250px;
  }
}
.services-row h3 {
  margin: 0;
  color: #1B9CFC;
  font-size: 60px;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 992px) {
  .services-row h3 {
    font-size: 40px;
  }
}
@media (max-width: 600px) {
  .services-row h3 {
    font-size: 30px;
  }
}
.services-row h4 {
  margin: 0;
  color: #1B9CFC;
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: 700;
}
@media (max-width: 992px) {
  .services-row h4 {
    font-size: 26px;
  }
}
@media (max-width: 600px) {
  .services-row h4 {
    margin-bottom: 15px;
  }
}
.services-row p {
  margin: 0;
  color: #666666;
  margin-bottom: 20px;
  line-height: 1.35;
  font-size: 18px;
  font-weight: 500;
}
.services-row span {
  color: #1B9CFC;
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.3;
}
.services-row .col-70 {
  width: 70%;
}
@media (max-width: 767px) {
  .services-row .col-70 {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .services-row .col-70 {
    width: 100%;
  }
}
.services-row .col-30 {
  width: 33%;
}
@media (max-width: 767px) {
  .services-row .col-30 {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .services-row .col-30 {
    width: 100%;
  }
}

.about {
  padding-top: 35px;
}
.about iframe {
  width: 100%;
}
.about .video {
  padding-bottom: 32px;
}
.about .video p {
  margin: 0;
}
.about .video img {
  width: 100%;
}
.about .video iframe {
  width: 100%;
  height: 470px;
}
@media (max-width: 600px) {
  .about .video iframe {
    height: 250px;
  }
}

.logos {
  padding: 90px 0;
  background-image: url(../img/logo-bcg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 600px) {
  .logos {
    padding: 45px 0;
  }
}
.logos-item {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 190px;
  margin: auto;
}
.logos-item img {
  width: 100%;
}
.logos-item__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .logos-item__wrap {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.quote {
  padding: 150px 0;
  background-image: url(../img/quote-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 600px) {
  .quote {
    padding: 100px 0;
  }
}
.quote p {
  color: white;
  font-size: 36px;
  font-style: italic;
  margin: 0;
  padding-bottom: 58px;
  line-height: 1.3;
  font-weight: 500;
}
@media (max-width: 767px) {
  .quote p {
    font-size: 30px;
  }
}
@media (max-width: 600px) {
  .quote p {
    font-size: 22px;
  }
}
.quote h5 {
  color: white;
  font-weight: bold;
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 600px) {
  .quote h5 {
    font-size: 22px;
  }
}

.values {
  padding-top: 90px;
  padding-bottom: 130px;
  background-image: url(../img/values-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 600px) {
  .values {
    padding: 40px 0;
  }
}
.values h2 {
  color: white;
  margin: 0;
  font-size: 60px;
}
@media (max-width: 600px) {
  .values h2 {
    font-size: 30px;
  }
}
.values-item h4 {
  color: white;
  margin: 0;
  font-size: 24px;
  text-transform: uppercase;
  padding-bottom: 8px;
}
@media (max-width: 600px) {
  .values-item h4 {
    font-size: 20px;
  }
}
.values-item p {
  color: white;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}
.values-item__wrap {
  padding-top: 85px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
@media (max-width: 600px) {
  .values-item__wrap {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }
}

.contact {
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .contact-box {
    width: 100%;
  }
}
.contact-box h3 {
  color: #1B9CFC;
  font-size: 60px;
  margin: 0;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .contact-box h3 {
    font-size: 40px;
  }
}
.contact-box p {
  margin: 0;
  color: #666666;
  margin-bottom: 20px;
  line-height: 1.35;
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
}
.contact-box span {
  color: #1B9CFC;
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.3;
}
.contact-box iframe {
  width: 100%;
}
@media (max-width: 767px) {
  .contact-box iframe {
    height: 300px;
  }
}
.contact-box--blue {
  background: #1B9CFC;
  padding: 25px;
}
@media (max-width: 767px) {
  .contact-box--blue {
    padding: 25px 15px;
  }
}
.contact-box--blue h5 {
  color: white;
  margin: 0;
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 1.3;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .contact-box--blue h5 {
    font-size: 20px;
  }
}
.contact-box--blue p {
  color: white;
  font-size: 18px;
  font-weight: 500;
}
.contact-box--blue a {
  color: #FFFF00;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}
.contact-box__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
@media (max-width: 767px) {
  .contact-box__wrap {
    display: flex;
    flex-flow: wrap;
  }
}

.h-47 img,
.h-47 iframe {
  height: 470px;
  width: 100%;
}
@media (max-width: 600px) {
  .h-47 img,
  .h-47 iframe {
    height: 250px;
  }
}

.h-56 img,
.h-56 iframe {
  height: 560px;
  width: 100%;
}
@media (max-width: 600px) {
  .h-56 img,
  .h-56 iframe {
    height: 250px;
  }
}

.col-70 p .col-30 p,
.h-47 p {
  margin-bottom: 0;
}

.mt-20 {
  margin-top: 20px !important;
}

.person {
  position: relative;
}
.person-img {
  display: flex;
}
@media (max-width: 600px) {
  .person-img img {
    height: auto;
  }
}
.person-name {
  position: absolute;
  bottom: 0;
  z-index: 1;
  margin: 0px;
  background: hsla(0, 0%, 0%, 0.5);
  width: 100%;
  right: 0;
}
.person-name p {
  color: white;
  margin: 0;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
}/*# sourceMappingURL=style.css.map */