@import url("https://fonts.googleapis.com/css2?family=Asap:wght@400;500;600;700&display=swap");
.btn-orange {
  background: none;
  border: 2px solid #ffc31a;
  color: #ffc31a;
  font-size: 14px;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-weight: 600;
  letter-spacing: 1px;
}

.btn-orange::after {
  background: #ffc31a;
  content: '';
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-orange::before {
  background: #fff;
  content: '';
  position: absolute;
  z-index: -1;
}

.btn-orange:hover {
  color: #fff;
}

.btn-orange-1:hover::after {
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.btn-orange-1::after {
  height: 0;
  left: 50%;
  top: 50%;
  width: 0;
}

.text-primary {
  color: #ffc31a !important;
}

.text-secondary {
  color: #c4c4c4 !important;
}

.text-grey {
  color: #212121 !important;
}

h1 {
  font-size: 55px;
  font-family: 'Asap', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
}

h2 {
  font-size: 45px;
  font-family: 'Asap', sans-serif;
  font-weight: 600;
  line-height: 1;
}

h3 {
  font-size: 33px;
  font-family: 'Asap', sans-serif;
  font-weight: 600;
  line-height: 1;
}

h4 {
  font-size: 20px;
  font-family: 'Asap', sans-serif;
  font-weight: 600;
  line-height: 1;
}

@media (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 35px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 28px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 25px;
  }
  h3 {
    font-size: 23px;
  }
  h4 {
    font-size: 18px;
  }
}

@media (min-width: 321px) and (max-width: 480px) {
  h1 {
    font-size: 33px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 25px;
  }
  h4 {
    font-size: 18px;
  }
}

@media (max-width: 320px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 25px;
  }
  h4 {
    font-size: 18px;
  }
}

/* GLOBAL CSS */
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Asap', sans-serif;
  font-weight: 400;
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

hr {
  border: none;
}

/* NAVBAR */
.navbar {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 20px 0;
  background-color: transparent;
}

.navbar .nav-link {
  color: #fff;
  margin: 0 5px;
  padding: 12px 0;
  font-weight: 400;
}

.navbar .nav-link:hover {
  color: #ffc31a;
  text-decoration: none;
}

.navbar .navbar-brand {
  color: #ffc31a;
  font-size: 25px;
  margin-top: -5px;
}

.navbar .nav-item-drop {
  position: relative;
}

.navbar .nav-item-drop i {
  font-size: 12px;
  margin-left: 3px;
}

.navbar .nav-item .drop-items {
  background-color: #212121;
  padding: 15px;
  border-top: 2px solid #ffc31a;
  position: absolute;
  min-width: 160px;
  margin-left: 10px;
  display: none;
}

.navbar .nav-item .drop-items li {
  font-size: 13px;
  text-transform: uppercase;
  list-style: none;
  margin-bottom: 3px;
}

.navbar .nav-item .drop-items li a {
  color: #fff;
  display: block;
  font-weight: 400;
}

.navbar .nav-item .drop-items li a:hover {
  color: #ffc31a;
}

.navbar .nav-item .drop-items li:last-of-type {
  margin-bottom: 0;
}

.navbar .nav-item:hover .drop-items {
  display: block;
}

/* Change navbar styling on scroll */
.navbar.active {
  margin-top: 0;
  background-color: #fff;
  padding: 5px 0;
}

.navbar.active .nav-link {
  color: black;
}

.navbar.active .nav-link:hover {
  color: #ffc31a;
  text-decoration: none;
}

.navbar.active .navbar-brand {
  color: #ffc31a;
}

.navbar.active .mobile-nav {
  color: black;
}

.navbar.active .mobile-nav img {
  width: 30px;
}

.navbar.active .mobile-nav img.icon-menu-2 {
  display: block;
}

.navbar.active .mobile-nav img.icon-menu-1 {
  display: none;
}

.dropdown:hover .dropdown-menu {
  display: block;
  margin-left: 10px;
  margin-top: -2px;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
}

/* Change navbar styling on small viewports */
@media (max-width: 991.98px) {
  .navbar .navbar-brand {
    margin-left: 15px;
  }
  .navbar .mobile-nav {
    display: block !important;
    color: #fff !important;
  }
  .navbar .mobile-nav img {
    width: 30px;
  }
  .navbar .mobile-nav img.icon-menu-2 {
    display: none;
  }
}

/* MOBILE MENU */
.mobile-nav {
  margin-right: 10px;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1111;
  top: 0;
  left: 0;
  background-color: #212121;
  overflow-x: hidden;
}

.overlay .overlay-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

.overlay .overlay-content a {
  padding: 6px;
  text-decoration: none;
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  display: block;
  text-transform: uppercase;
}

.overlay .overlay-content a:hover {
  color: #ffc31a;
}

.overlay .overlay-content ul {
  border-top: 1px solid rgba(255, 195, 26, 0.4);
  border-bottom: 1px solid rgba(255, 195, 26, 0.4);
  border-radius: 0;
  width: 200px;
}

.overlay .overlay-content ul li {
  list-style: none;
}

.overlay .overlay-content ul li a {
  text-transform: capitalize;
}

.overlay .closebtn {
  position: absolute;
  top: 0px;
  right: 25px;
  font-size: 60px;
  color: #fff;
  z-index: 111111;
}

.mobile-links {
  border: 1px solid #fff;
  width: 50%;
  border-radius: 5px;
  margin: 0 auto;
}

.mobile-links li {
  list-style: none;
}

.mobile-links li a {
  font-size: 12px;
}

.mobile-nav {
  display: none;
}

@media (max-width: 320px) {
  .overlay .overlay-content a {
    padding: 4px;
    text-decoration: none;
    font-size: 12px;
    color: #fff;
    font-weight: 400;
    display: block;
    text-transform: uppercase;
  }
}

/* HERO */
.hero {
  background-image: url("../images/hero.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 80vh;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero__box {
  position: relative;
  z-index: 1;
  min-height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero__content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero__content h1 {
  color: #fff;
  margin-bottom: 30px;
}

.hero__content h4 {
  color: #fff;
  margin-bottom: 40px;
}

.hero__content ul {
  margin-bottom: 0;
}

.hero__content ul li {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}

.hero__content ul li a {
  width: 180px;
  height: 60px;
}

.hero__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero__image img {
  max-width: 100%;
  height: 350px;
}

/* CONFIDENCE */
.confidence {
  background-color: #212121;
  padding: 80px 0;
  position: relative;
}

.confidence .padding-confidence {
  padding: 15px;
}

.confidence__title h2 {
  color: #fff;
  margin-bottom: 25px;
}

.confidence__title p {
  color: #fff;
  margin-bottom: 60px;
}

.confidence__box {
  border-top: 2px solid #ffc31a;
  padding: 25px;
}

.confidence__box h4 {
  color: #ffc31a;
  margin-bottom: 20px;
}

.confidence__box p {
  color: #fff;
  margin-bottom: 0;
}

/* DEVICES */
.devices {
  padding: 80px 0;
  position: relative;
  background-color: #eeeeee;
}

.devices::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/cta.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
}

.devices .padding-devices {
  padding: 15px;
}

.devices__title {
  position: relative;
  z-index: 11;
}

.devices__title h2 {
  color: #212121;
  margin-bottom: 60px;
}

.devices__box {
  z-index: 11;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 350px;
  position: relative;
}

.devices__box span {
  position: absolute;
  font-size: 85px;
  right: 10px;
  top: -20px;
  color: #eeeeee;
  font-weight: 800;
  opacity: 0.1;
}

.devices__box h3 {
  color: #212121;
  margin-bottom: 20px;
  background-color: #ffc31a;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 25px;
}

.devices__box p {
  color: #fff;
  margin-bottom: 30px;
}

.devices__box a {
  font-size: 12px;
  font-weight: 600;
  color: #ffc31a;
  letter-spacing: 1px;
}

.devices__box a img {
  width: 16px;
  margin-left: 10px;
}

.devices__blur {
  width: 100%;
  min-height: 350px;
  -webkit-box-shadow: 0 0 15px #eeeeee;
          box-shadow: 0 0 15px #eeeeee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px;
  position: relative;
  z-index: 11;
  background-image: -webkit-gradient(linear, left top, right top, from(#212121), to(rgba(33, 33, 33, 0.5)));
  background-image: linear-gradient(to right, #212121, rgba(33, 33, 33, 0.5));
}

/* CHOOSE */
.choose {
  background-color: #212121;
  padding: 80px 0;
  position: relative;
}

.choose__content {
  margin-top: 40px;
}

.choose__content h2 {
  color: #fff;
  margin-bottom: 20px;
}

.choose__content p {
  color: #fff;
  margin-bottom: 20px;
}

.choose__content ul {
  margin-bottom: 0;
  list-style: none;
}

.choose__content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #fff;
  border-bottom: 1px solid #ffc31a;
  padding-bottom: 10px;
}

.choose__content ul li img {
  position: absolute;
  left: 0;
  top: 3px;
  width: 14px;
}

.choose__image img {
  max-width: 100%;
  height: auto;
}

/* PRIORITY */
.priority {
  padding: 80px 0;
  position: relative;
}

.priority::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/cta.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
}

.priority .padding-priority {
  padding: 15px;
}

.priority__title {
  position: relative;
  z-index: 11;
}

.priority__title h2 {
  color: #212121;
  margin-bottom: 20px;
}

.priority__title p {
  color: #212121;
  margin-bottom: 60px;
}

.priority__box {
  background-color: #212121;
  position: relative;
  z-index: 11;
}

.priority__box ::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/priority.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
}

.priority__content {
  width: 100%;
  min-height: 250px;
  position: relative;
  text-align: center;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.priority__content img {
  width: 60px;
  margin-bottom: 20px;
}

.priority__content h4 {
  color: #fff;
}

/* TESTIMONIALS */
.testimonials {
  background-image: url("../images/cta.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
  height: auto;
}

.testimonials .testimonials-bg {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  padding: 80px 0;
}

.testimonials .testimonials-bg .carousel .carousel-inner {
  width: 100%;
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.testimonials .testimonials-bg .carousel .carousel-inner .carousel-item .carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  top: -75px;
  margin: 0 160px;
}

.testimonials .testimonials-bg .carousel .carousel-inner .carousel-item .carousel-caption h5 span {
  color: #ffc31a;
  font-size: 16px;
}

.testimonials .testimonials-bg .carousel .carousel-indicators li.active {
  background-color: #ffc31a;
}

.testimonials__title {
  text-align: center;
}

.testimonials__title h2 {
  color: #fff;
}

/* FOOTER */
.footer {
  background-color: #212121;
  padding-top: 80px;
  position: relative;
}

.footer::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/footer.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer__content .box-text {
  position: relative;
}

.footer__content .box-text .footer-logo {
  color: #ffc31a;
  font-weight: 500;
  font-size: 35px;
}

.footer__content .box-text p {
  color: #fff;
  padding-right: 60px;
  margin-top: 20px;
  font-size: 14px;
}

.footer__content .box-text h5 {
  color: #ffc31a;
  margin-bottom: 20px;
}

.footer__content .box-text ul li {
  list-style: none;
  margin-bottom: 5px;
}

.footer__content .box-text ul li a {
  color: #fff;
  font-size: 14px;
}

.footer__content .box-text ul li a:hover {
  color: #ffc31a;
}

.footer__content .box-1 {
  width: 40%;
  margin-top: -15px;
}

.footer__content .box-2 {
  width: 20%;
}

.footer__content .box-3 {
  width: 20%;
}

.footer__content .box-4 {
  width: 20%;
}

.footer__risk {
  margin-top: 30px;
  margin-bottom: 50px;
}

.footer__risk p {
  color: #fff;
  font-size: 12px;
}

.footer__rights ul {
  background-color: black;
  padding: 15px;
}

.footer__rights ul li {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
  font-size: 14px;
  color: #fff;
}

.footer__rights ul li a {
  font-size: 14px;
  color: #ffc31a;
}

.footer__rights ul li a:hover {
  color: #fff;
}

/* RESPONSIVE HOME PAGE */
@media (min-width: 992px) and (max-width: 1199px) {
  .choose__content {
    margin-top: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero__image img {
    height: 275px;
  }
  .choose__content {
    margin-top: 0;
  }
  .choose__image {
    margin-top: 30px;
  }
  .testimonials .testimonials-bg .carousel .carousel-inner .carousel-item .carousel-caption {
    margin: 0;
  }
  .footer__content .box-1 {
    width: 50%;
  }
  .footer__content .box-2 {
    width: 50%;
  }
  .footer__content .box-3 {
    width: 50%;
  }
  .footer__content .box-4 {
    width: 50%;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .hero .hero-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .hero__image {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 40px;
  }
  .hero__image img {
    height: 200px;
  }
  .choose__content {
    margin-top: 0;
  }
  .choose__image {
    margin-top: 30px;
  }
  .testimonials .testimonials-bg .carousel .carousel-inner .carousel-item .carousel-caption {
    margin: 0;
  }
  .footer__content .box-1 {
    width: 50%;
  }
  .footer__content .box-2 {
    width: 50%;
  }
  .footer__content .box-3 {
    width: 50%;
  }
  .footer__content .box-4 {
    width: 50%;
  }
}

@media (min-width: 321px) and (max-width: 480px) {
  .hero .hero-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .hero__box {
    padding: 100px 0 40px 0;
  }
  .hero__image {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 40px;
  }
  .hero__image img {
    height: 200px;
  }
  .hero__content ul li:first-of-type {
    margin-bottom: 10px;
  }
  .confidence {
    padding: 40px 0;
  }
  .confidence__title p {
    margin-bottom: 30px;
  }
  .devices {
    padding: 40px 0;
  }
  .devices__title h2 {
    margin-bottom: 30px;
  }
  .choose {
    padding: 40px 0;
  }
  .choose__content {
    margin-top: 0;
  }
  .choose__image {
    margin-top: 30px;
  }
  .priority {
    padding: 60px 0 40px 0;
  }
  .priority__title p {
    margin-bottom: 30px;
  }
  .testimonials__title h2 br {
    display: none;
  }
  .testimonials .testimonials-bg {
    padding: 40px 0;
  }
  .testimonials .testimonials-bg .carousel .carousel-inner .carousel-item .carousel-caption {
    margin: 0;
  }
  .footer {
    padding-top: 40px;
  }
  .footer__content .box-1 {
    width: 100%;
  }
  .footer__content .box-2 {
    width: 100%;
  }
  .footer__content .box-3 {
    width: 100%;
  }
  .footer__content .box-4 {
    width: 100%;
  }
}

@media (max-width: 320px) {
  .hero .hero-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .hero__box {
    padding: 100px 0 40px 0;
  }
  .hero__image {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 40px;
  }
  .hero__image img {
    height: 200px;
  }
  .hero__content ul li:first-of-type {
    margin-bottom: 10px;
  }
  .confidence {
    padding: 40px 0;
  }
  .confidence__title p {
    margin-bottom: 30px;
  }
  .devices {
    padding: 40px 0;
  }
  .devices__title h2 {
    margin-bottom: 30px;
  }
  .devices__blur {
    padding: 25px;
  }
  .choose {
    padding: 40px 0;
  }
  .choose__content {
    margin-top: 0;
  }
  .choose__image {
    margin-top: 30px;
  }
  .priority {
    padding: 60px 0 40px 0;
  }
  .priority__title p {
    margin-bottom: 30px;
  }
  .testimonials .carousel-indicators {
    bottom: -20px;
  }
  .testimonials__title h2 br {
    display: none;
  }
  .testimonials .testimonials-bg {
    padding: 40px 0;
  }
  .testimonials .testimonials-bg .carousel .carousel-inner .carousel-item .carousel-caption {
    margin: 0;
  }
  .footer {
    padding-top: 40px;
  }
  .footer__content .box-1 {
    width: 100%;
  }
  .footer__content .box-2 {
    width: 100%;
  }
  .footer__content .box-3 {
    width: 100%;
  }
  .footer__content .box-4 {
    width: 100%;
  }
}

/* INNER PAGE / ASSETS */
.inner-hero {
  width: 100%;
  min-height: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url("../images/inner-hero.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.inner-hero::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.inner-hero__content {
  text-align: center;
  position: relative;
  z-index: 11;
}

.inner-hero__content h2 {
  color: #fff;
}

.inner-hero__content img {
  width: 30px;
  -webkit-animation: bounce 3s infinite;
  animation: bounce 3s infinite;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

/* ASSETS */
.assets {
  padding: 80px 0;
  position: relative;
}

.assets::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/cta.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
}

.assets .padding-assets {
  padding: 15px;
  margin: 0 auto;
}

.assets .assets-right {
  margin-left: auto;
  position: relative;
}

.assets__title {
  position: relative;
  z-index: 11;
}

.assets__title h2 {
  margin-bottom: 40px;
}

.assets__box {
  position: relative;
  z-index: 11;
  -webkit-box-shadow: 0 0 15px #eeeeee;
          box-shadow: 0 0 15px #eeeeee;
  background-image: -webkit-gradient(linear, left top, right top, from(#212121), to(rgba(33, 33, 33, 0.5)));
  background-image: linear-gradient(to right, #212121, rgba(33, 33, 33, 0.5));
}

.assets__box h3 {
  color: #212121;
  margin-bottom: 30px;
  font-size: 40px;
  background-color: #ffc31a;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
  margin-left: auto;
  margin-right: auto;
}

.assets__box p {
  color: #fff;
  font-weight: 600;
}

.assets__box .btn-assets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 20px;
}

.assets__box .btn-assets a {
  color: #fff;
  background-color: #ffc31a;
  padding: 10px 25px;
  font-size: 14px;
  font-weight: 500;
}

.assets__text {
  position: relative;
  min-height: 510px;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.assets__platforms {
  position: relative;
  min-height: 485px;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* CTA */
.cta {
  padding: 80px 0;
  position: relative;
}

.cta::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/cta.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
}

.cta__content {
  position: relative;
  z-index: 11;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cta__content h3 {
  margin-bottom: 30px;
}

.cta__content a {
  width: 160px;
  height: 60px;
}

/* RESPONSIVE ASSETS */
@media screen and (max-width: 1024px) {
  .assets .assets-right::before {
    position: absolute;
    content: '';
    background-image: url("../images/curve-arrow-right.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100px;
    height: 100px;
    right: 180px;
    top: -115px;
  }
}

@media screen and (max-width: 992px) {
  .assets .assets-right::before {
    display: none;
  }
  .assets .assets-right::after {
    display: none;
  }
}

@media (min-width: 321px) and (max-width: 480px) {
  .assets {
    padding: 40px 0;
  }
  .assets__box .btn-assets {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .assets__box .btn-assets a {
    display: block;
    width: 100%;
  }
  .assets__box .btn-assets a:first-of-type {
    margin-bottom: 10px;
  }
  .assets__platforms {
    padding: 40px 20px;
  }
  .cta {
    padding: 40px 0;
  }
}

@media (max-width: 320px) {
  .assets {
    padding: 40px 0;
  }
  .assets__box .btn-assets {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .assets__box .btn-assets a {
    display: block;
    width: 100%;
  }
  .assets__box .btn-assets a:first-of-type {
    margin-bottom: 10px;
  }
  .cta {
    padding: 40px 0;
  }
}

/* PLATFORM */
.platform {
  position: relative;
  padding: 80px 0;
}

.platform::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/cta.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
}

.platform__image {
  position: relative;
  z-index: 11;
}

.platform__image img {
  max-width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}

.platform__image p {
  position: absolute;
  width: 535px;
  height: 450px;
  border: 15px solid #ffc31a;
  top: -30px;
  left: -30px;
  z-index: -1;
}

.platform__content {
  position: relative;
  z-index: 11;
}

.platform__content h3 {
  color: #212121;
  margin-bottom: 30px;
}

.platform__content p {
  margin-bottom: 30px;
  font-weight: 600;
}

.platform__content ul {
  margin-bottom: 0;
}

.platform__content ul li {
  list-style: none;
  display: inline-block;
  margin-right: 10px;
}

.platform__content ul li a {
  width: 220px;
  height: 60px;
}

.platform__advantages {
  position: relative;
  z-index: 11;
  margin-top: 60px;
  margin-bottom: 30px;
}

.platform__advantages h3 {
  color: #ffc31a;
}

.platform .padding-platform {
  padding: 15px;
}

.platform__box {
  padding: 25px;
  border-bottom: 2px solid #ffc31a;
  min-height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  text-align: center;
  z-index: 11;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background-color: #212121;
  color: #fff;
}

.platform__box:hover {
  background-color: transparent;
}

.platform__box:hover h4 {
  color: #212121;
}

/* RESPONSIVE PLATFORM */
@media (min-width: 992px) and (max-width: 1199px) {
  .platform__image p {
    width: 450px;
  }
  .platform__content ul li a {
    width: 200px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .platform .platform-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .platform__image {
    margin-top: 60px;
  }
  .platform__image p {
    width: 630px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .platform .platform-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .platform__image {
    margin-top: 60px;
  }
  .platform__image p {
    width: 500px;
  }
}

@media (min-width: 321px) and (max-width: 480px) {
  .platform {
    padding: 40px 0 80px 0;
  }
  .platform .platform-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .platform__content ul li {
    margin-right: 0;
  }
  .platform__content ul li:first-of-type {
    margin-bottom: 10px;
  }
  .platform__image {
    margin-top: 60px;
  }
  .platform__image img {
    height: 250px;
  }
  .platform__image p {
    width: 300px;
    height: 310px;
  }
}

@media (max-width: 320px) {
  .platform {
    padding: 40px 0 80px 0;
  }
  .platform .platform-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .platform__content ul li {
    margin-right: 0;
  }
  .platform__content ul li:first-of-type {
    margin-bottom: 10px;
  }
  .platform__image {
    margin-top: 60px;
  }
  .platform__image img {
    height: 250px;
  }
  .platform__image p {
    width: 300px;
    height: 310px;
  }
}

/* PLATFORM TRADING*/
.platform-trading {
  position: relative;
  padding: 80px 0;
}

.platform-trading::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/cta.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
}

.platform-trading__image {
  position: relative;
  z-index: 11;
}

.platform-trading__image img {
  max-width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}

.platform-trading__image p {
  position: absolute;
  width: 535px;
  height: 450px;
  border: 15px solid #ffc31a;
  top: -30px;
  left: -30px;
  z-index: -1;
}

.platform-trading__content {
  position: relative;
  z-index: 11;
}

.platform-trading__content h3 {
  color: #212121;
  margin-bottom: 30px;
}

.platform-trading__content p {
  margin-bottom: 30px;
}

.platform-trading__content ul {
  margin-bottom: 0;
}

.platform-trading__content ul li {
  list-style: none;
  display: inline-block;
  margin-right: 10px;
}

.platform-trading__content ul li a {
  width: 220px;
  height: 60px;
}

.platform-trading__advantages {
  position: relative;
  z-index: 11;
  margin-top: 60px;
  margin-bottom: 30px;
}

.platform-trading__advantages h3 {
  color: #ffc31a;
}

.platform-trading .padding-platform {
  padding: 15px;
}

.platform-trading__box {
  padding: 25px;
  border-bottom: 2px solid #ffc31a;
  min-height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  text-align: center;
  z-index: 11;
  background-color: #212121;
  color: #fff;
  overflow: hidden;
}

.platform-trading__box::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffc31a;
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.platform-trading__box:hover {
  border-bottom: 2px solid #212121;
}

.platform-trading__box:hover::after {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.platform-trading__box:hover h4 {
  color: #212121;
  z-index: 111;
}

/* RESPONSIVE PLATFORM */
@media (min-width: 992px) and (max-width: 1199px) {
  .platform-trading__image p {
    width: 450px;
  }
  .platform-trading__content ul li a {
    width: 200px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .platform-trading .order-mob-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .platform-trading .order-mob-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .platform-trading .order-mob-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .platform-trading__image {
    margin-top: 60px;
  }
  .platform-trading__image p {
    width: 630px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .platform-trading .order-mob-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .platform-trading .order-mob-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .platform-trading .order-mob-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .platform-trading__image {
    margin-top: 60px;
  }
  .platform-trading__image p {
    width: 500px;
  }
}

@media (min-width: 321px) and (max-width: 480px) {
  .platform-trading {
    padding: 40px 0 80px 0;
  }
  .platform-trading .order-mob-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .platform-trading .order-mob-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .platform-trading .order-mob-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .platform-trading__content ul li {
    margin-right: 0;
  }
  .platform-trading__content ul li:first-of-type {
    margin-bottom: 10px;
  }
  .platform-trading__image {
    margin-top: 60px;
  }
  .platform-trading__image img {
    height: 250px;
  }
  .platform-trading__image p {
    width: 300px;
    height: 310px;
  }
}

@media (max-width: 320px) {
  .platform-trading {
    padding: 40px 0 80px 0;
  }
  .platform-trading .order-mob-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .platform-trading .order-mob-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .platform-trading .order-mob-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .platform-trading__content ul li {
    margin-right: 0;
  }
  .platform-trading__content ul li:first-of-type {
    margin-bottom: 10px;
  }
  .platform-trading__image {
    margin-top: 60px;
  }
  .platform-trading__image img {
    height: 250px;
  }
  .platform-trading__image p {
    width: 300px;
    height: 310px;
  }
}

/* ABOUT US */
.inviting {
  padding: 80px 0;
  position: relative;
}

.inviting::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/cta.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
}

.inviting__title {
  position: relative;
  z-index: 11;
}

.inviting__title h2 {
  color: #212121;
  margin-bottom: 30px;
}

.inviting__title p {
  margin-bottom: 30px;
}

.inviting__image {
  position: relative;
  z-index: 11;
}

.inviting__image img {
  max-width: 100%;
}

/* NEED */
.need {
  padding: 80px 0;
  background-color: #212121;
}

.need__title h2 {
  color: #fff;
  margin-bottom: 40px;
}

.need .padding-need {
  padding: 15px;
}

.need__box {
  background-color: #fff;
  border-bottom: 2px solid #ffc31a;
  padding: 25px;
  min-height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
}

.need__box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #212121;
  -webkit-transform: translateY(250px);
          transform: translateY(250px);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.need__box:hover::after {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.need__box:hover p {
  color: #fff;
  z-index: 11;
}

.need__box img {
  width: 35px;
  margin-bottom: 15px;
  z-index: 1;
}

.need__box p {
  margin-bottom: 0;
}

/* SETS */
.sets {
  position: relative;
  padding: 80px 0;
}

.sets::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/cta.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
}

.sets__title {
  position: relative;
  z-index: 11;
}

.sets__title h2 {
  color: #212121;
  margin-bottom: 40px;
}

.sets__box {
  position: relative;
  z-index: 11;
  padding: 25px;
  border-bottom: 2px solid #212121;
}

.sets__box h4 {
  color: #ffc31a;
  margin-bottom: 20px;
}

.sets__box p {
  margin-bottom: 0;
}

/* RESPONSIVE ABOUT PAGE */
@media (min-width: 992px) and (max-width: 1199px) {
  .inviting__title {
    padding-top: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .inviting__title {
    padding-top: 0;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .inviting__title {
    padding-top: 0;
  }
}

@media (min-width: 321px) and (max-width: 480px) {
  .inviting {
    padding: 40px 0;
  }
  .inviting__title {
    padding-top: 0;
  }
  .need {
    padding: 40px 0;
  }
  .sets {
    padding: 40px 0;
  }
}

@media (max-width: 320px) {
  .inviting {
    padding: 40px 0;
  }
  .inviting__title {
    padding-top: 0;
  }
  .need {
    padding: 40px 0;
  }
  .sets {
    padding: 40px 0;
  }
}

/* PACKAGE TYPES */
.package-types {
  position: relative;
  padding: 80px 0;
}

.package-types .package-padding {
  padding: 15px;
}

.package-types::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/cta.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
}

.package-types__content {
  padding: 25px;
  border: 2px solid #212121;
  position: relative;
  overflow: hidden;
  z-index: 11;
  background-color: #212121;
  -webkit-box-shadow: 2px 2px 15px black;
          box-shadow: 2px 2px 15px black;
  min-height: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.package-types__content:hover {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
}

.package-types__content::after {
  position: absolute;
  content: '';
  width: 50px;
  height: 50px;
  background-color: #fff;
  left: -25px;
  top: -25px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.package-types__content::before {
  position: absolute;
  content: '';
  width: 50px;
  height: 50px;
  background-color: #fff;
  right: -25px;
  bottom: -25px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.package-types__content h4 {
  color: #fff;
  margin-bottom: 30px;
}

.package-types__content ul {
  margin-bottom: 0;
}

.package-types__content ul li {
  list-style: none;
  position: relative;
  padding-left: 30px;
  margin-bottom: 5px;
  font-size: 14px;
  color: #fff;
}

.package-types__content ul li img {
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
}

.package-types__content--prime {
  border: 2px solid #212121;
  background-color: #212121;
  -webkit-box-shadow: 0 0 15px #eeeeee inset;
          box-shadow: 0 0 15px #eeeeee inset;
  position: relative;
  overflow: hidden;
}

.package-types__content--prime::after {
  position: absolute;
  content: '';
  width: 50px;
  height: 50px;
  background-color: #ffc31a;
  right: -25px;
  top: -25px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.package-types__content--prime::before {
  position: absolute;
  content: '';
  width: 50px;
  height: 50px;
  background-color: #ffc31a;
  right: -25px;
  bottom: -25px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.package-types__content--prime h4 {
  color: #ffc31a;
}

.package-types__title {
  position: relative;
  z-index: 11;
}

.package-types__title h2 {
  color: #212121;
  margin-top: 40px;
  margin-bottom: 50px;
}

.package-types .padding-preferred {
  padding: 15px;
}

.package-types__preferred {
  position: relative;
  z-index: 11;
  background-color: #212121;
  padding: 25px;
  border-bottom: 2px solid #ffc31a;
  min-height: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.package-types__preferred h5 {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffc31a;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -25px;
}

.package-types__preferred h5 img {
  width: 35px;
}

.package-types__preferred h4 {
  color: #fff;
  margin-bottom: 20px;
}

.package-types__preferred p {
  margin-bottom: 0;
  color: #fff;
}

/* RESPONSIVE PACKAGE TYPES */
@media (min-width: 768px) and (max-width: 991px) {
  .package-types__content--prime {
    margin-top: 0;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .package-types__content--prime {
    margin-top: 0;
  }
}

@media (min-width: 321px) and (max-width: 480px) {
  .package-types {
    padding: 40px 0;
  }
  .package-types__content--prime {
    margin-top: 0;
  }
}

@media (max-width: 320px) {
  .package-types {
    padding: 40px 0;
  }
  .package-types__content--prime {
    margin-top: 0;
  }
}

/* CONTACT PAGE */
.contact-page {
  position: relative;
  padding: 80px 0;
}

.contact-page::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/cta.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
}

.contact-page__content {
  position: relative;
  z-index: 11;
}

.contact-page__content h2 {
  color: #212121;
  margin-bottom: 30px;
}

.contact-page__content p {
  margin-bottom: 30px;
}

.contact-page__content ul {
  margin-bottom: 30px;
}

.contact-page__content ul li {
  list-style: none;
  display: inline-block;
  margin-right: 5px;
}

.contact-page__content ul li a {
  width: 220px;
  height: 60px;
}

.contact-page__image {
  position: relative;
  z-index: 11;
}

.contact-page__image img {
  max-width: 100%;
}

/* RESPONSIVE CONTACT */
@media (min-width: 992px) and (max-width: 1199px) {
  .contact-page__content ul li:first-of-type {
    margin-bottom: 10px;
  }
}

@media (min-width: 321px) and (max-width: 480px) {
  .contact-page {
    padding: 40px 0;
  }
  .contact-page__content ul li:first-of-type {
    margin-bottom: 10px;
  }
}

@media (max-width: 320px) {
  .contact-page {
    padding: 40px 0;
  }
  .contact-page__content ul li:first-of-type {
    margin-bottom: 10px;
  }
}
/*# sourceMappingURL=style.css.map */