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

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
}

h2,
h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1869FE;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}
h3 i {
  margin-right: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: #333;
}

ul {
  list-style-type: none;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

section, footer {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  section, footer {
    padding: 4rem 0;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #1869FE;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 0.5rem;
  transition: all 0.3s ease-in-out;
  margin-top: 2em;
}
@media (max-width: 768px) {
  .cta-button {
    font-size: 1rem;
  }
}
.cta-button:hover {
  opacity: 0.8;
}

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

.mobile_menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgb(77, 138, 252);
  z-index: 101;
  padding: 3rem 2rem;
  transition: top 0.3s ease-in-out;
}
.mobile_menu.active {
  top: 0;
}
.mobile_menu .logo {
  width: 70%;
  margin-bottom: 2rem;
}
.mobile_menu .close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #fff;
  font-size: 20px;
}
.mobile_menu a {
  display: block;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

header {
  padding: 2rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(24, 105, 254, 0.5);
}
@media (max-width: 768px) {
  header {
    padding: 1rem 0;
  }
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .container .logo {
  height: 30px;
}
@media (max-width: 768px) {
  header .container .logo {
    height: 25px;
  }
}
header .container nav {
  display: flex;
}
@media (max-width: 768px) {
  header .container nav {
    display: none;
  }
}
header .container nav a {
  margin-left: 1rem;
  font-weight: 700;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
s header .container nav a:hover {
  opacity: 0.8;
}
header .burger_menu {
  display: none;
  color: white;
  font-size: 20px;
}
@media (max-width: 768px) {
  header .burger_menu {
    display: block;
  }
}

footer {
  background-color: #051024;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  footer .flx {
    flex-direction: column;
  }
}
footer .flx > * {
  color: #fff;
}
footer .flx > *:first-child {
  width: 40%;
}
@media (max-width: 768px) {
  footer .flx > *:first-child {
    width: 100%;
    margin-bottom: 2rem;
  }
}
footer .flx > *:last-child i, footer .flx > *:nth-child(2) i {
  margin-right: 0.5rem;
}
@media (max-width: 768px) {
  footer .flx > * {
    width: 100%;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
}
footer .contact_info a {
  color: #fff;
}
footer .contact_text img {
  width: 50%;
  margin-bottom: 1rem;
}
footer .copyright {
  text-align: center;
  padding: 1rem 0;
  background: #0b162b;
  color: #dbdbdb;
  margin-top: 2rem;
}
footer .copyright p {
  margin-bottom: 0;
}

#hero {
  height: 100vh;
  background: url("./imgs/03.jpg") no-repeat center center/cover;
}
@media (max-width: 768px) {
  #hero {
    height: 80vh;
  }
}
#hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
}
#hero h1 {
  font-size: 4rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
}
@media (max-width: 768px) {
  #hero h1 {
    font-size: 2rem;
  }
}
#hero p {
  font-size: 1.5rem;
  color: #1869FE;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  #hero p {
    font-size: 1.2rem;
  }
}
#hero p i {
  margin-right: 0.5rem;
}

#about .flx {
  -moz-column-gap: 4%;
       column-gap: 4%;
}
@media (max-width: 768px) {
  #about .flx {
    flex-direction: column-reverse;
  }
}
#about .flx .img {
  max-height: 600px;
  overflow: hidden;
  box-shadow: 2px 2px 8px 6px rgba(0, 0, 0, 0.2);
}
#about .flx > * {
  width: 48%;
}
@media (max-width: 768px) {
  #about .flx > * {
    width: 100%;
  }
}

#services {
  text-align: center;
  background-color: rgba(24, 105, 254, 0.1);
}
#services h3 + p {
  font-size: 1.2rem;
}
#services ul {
  padding: 3em;
  box-shadow: 2px 2px 10px 6px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  -moz-column-gap: 4%;
       column-gap: 4%;
  align-items: flex-start;
  margin-top: 2em;
  background-color: #fff;
}
@media (max-width: 768px) {
  #services ul {
    flex-direction: column;
    padding: 2em;
  }
}
#services ul li {
  width: 22%;
}
@media (max-width: 768px) {
  #services ul li {
    width: 100%;
    margin-bottom: 2rem;
  }
}
#services ul li img {
  height: 50px;
  width: 50px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #services ul li img {
    height: 60px;
    width: 60px;
  }
}
#services ul li span {
  font-size: 1.2em;
  padding: 0.5em 0;
  margin-bottom: 0.5em;
  font-weight: 700;
  display: inline-block;
  border-bottom: 2px solid #1869FE;
}
#services ul li p {
  font-size: 0.9em;
}

#import {
  background: url("./imgs/arr_l.svg") left bottom -12px no-repeat;
}
@media (max-width: 768px) {
  #import {
    background-size: 40%;
  }
}
#import .flx {
  -moz-column-gap: 4%;
       column-gap: 4%;
  align-items: flex-start;
}
@media (max-width: 768px) {
  #import .flx {
    flex-direction: column;
  }
}
#import .flx .img {
  box-shadow: 2px 2px 8px 6px rgba(0, 0, 0, 0.2);
}
#import .flx .img img {
  margin-bottom: -5px;
}
#import .flx > * {
  width: 48%;
}
@media (max-width: 768px) {
  #import .flx > * {
    width: 100%;
  }
}

#export {
  background: url("./imgs/arr_r.svg") rgba(24, 105, 254, 0.1) right -8px bottom -12px no-repeat;
}
@media (max-width: 768px) {
  #export {
    background-size: 40%;
  }
}
#export .flx {
  -moz-column-gap: 4%;
       column-gap: 4%;
  align-items: flex-start;
}
@media (max-width: 768px) {
  #export .flx {
    flex-direction: column-reverse;
  }
}
#export .flx .img {
  box-shadow: 2px 2px 8px 6px rgba(0, 0, 0, 0.2);
}
#export .flx .img img {
  margin-bottom: -5px;
}
#export .flx > * {
  width: 48%;
}
@media (max-width: 768px) {
  #export .flx > * {
    width: 100%;
  }
}

#transport {
  text-align: center;
}
#transport h3 + p {
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  #transport h3 + p {
    font-size: 1rem;
  }
}
#transport .slider {
  width: 100%;
}
#transport .slide {
  position: relative;
  height: 500px;
  display: flex;
  padding: 0 2em;
}
@media (max-width: 768px) {
  #transport .slide {
    flex-direction: column;
    padding: 1em;
    height: unset;
  }
}
#transport .slide .img {
  width: 65%;
  height: 100%;
  flex-shrink: 0;
  box-shadow: 2px 2px 10px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  #transport .slide .img {
    width: 100%;
    height: 200px;
  }
}
#transport .info {
  height: 100%;
  background-color: #fff;
  width: 50%;
  padding: 2em;
  box-shadow: 2px 2px 10px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 768px) {
  #transport .info {
    width: 100%;
    padding: 1em;
  }
}
#transport .info::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 80px;
  background: linear-gradient(to left, #fff, transparent);
  right: 100%;
  top: 0;
}
@media (max-width: 768px) {
  #transport .info::before {
    display: none;
  }
}
#transport .info h3 {
  font-size: 1.5em;
}
@media (max-width: 768px) {
  #transport .info h3 {
    font-size: 1.2em;
  }
}
@media (max-width: 768px) {
  #transport .info p {
    font-size: 1em;
    margin-bottom: 0;
  }
}
#transport .slick-dots li button:before {
  font-size: 10px;
  color: #1869FE;
}
#transport .slick-dots {
  bottom: 0;
  padding-top: 1em;
  position: relative;
}
#transport .slick-track {
  margin: 15px 0;
}

#contact-form {
  padding-top: 0;
  background: url("./imgs/form_bg.svg") top center no-repeat;
  background-size: 100%;
}
@media (max-width: 768px) {
  #contact-form {
    background: url("./imgs/form_bg.svg") center center no-repeat;
    background-size: 100%;
  }
}
#contact-form h3, #contact-form p {
  text-align: center;
}
#contact-form p {
  font-size: 1.2em;
}
#contact-form form {
  width: 50%;
  margin: 2em auto 0;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 2%;
       column-gap: 2%;
  padding: 2em;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  #contact-form form {
    width: 80%;
  }
}
#contact-form input, #contact-form textarea {
  width: 100%;
  padding: 0.5rem;
  border: 2px solid #a8c6ff;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}
#contact-form input::-moz-placeholder, #contact-form textarea::-moz-placeholder {
  color: #d6d6d6;
}
#contact-form input::placeholder, #contact-form textarea::placeholder {
  color: #d6d6d6;
}
#contact-form input:focus, #contact-form textarea:focus {
  outline: none;
  border-color: #1869FE;
}
#contact-form input.error, #contact-form textarea.error {
  border-color: #ff5959;
}
#contact-form textarea {
  height: 10rem;
  resize: none;
}
@media (max-width: 768px) {
  #contact-form textarea {
    height: 8rem;
  }
}
#contact-form input {
  width: 32%;
}
@media (max-width: 768px) {
  #contact-form input {
    width: 100%;
  }
  #contact-form input:not(:last-of-type) {
    margin-bottom: 1em;
  }
}
#contact-form button {
  border: none;
  padding: 1em;
  background: #1869FE;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0.5rem;
  margin: 1em auto 0;
  display: block;
  text-transform: uppercase;
  cursor: pointer;
}

.dark_bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.dark_bg.active {
  display: flex;
}
.dark_bg .popup {
  background: #fff;
  padding: 2em;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: relative;
}
.dark_bg .popup .close {
  position: absolute;
  top: 2em;
  right: 2em;
  cursor: pointer;
}
.dark_bg .popup .close i {
  font-size: 1.5em;
}
.dark_bg .popup .popup_content {
  font-size: 1.3em;
  text-align: center;
}
.dark_bg .popup .popup_content i {
  font-size: 80px;
  color: #1869FE;
  display: block;
}/*# sourceMappingURL=style.css.map */