@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
.btn-primary {
  background-color: #4917AD;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  padding: 12px 25px;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.btn-primary:hover {
  opacity: 0.8;
  background-color: #4917AD;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.btn-primary:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.dark-bg {
  background-color: #1C1A27;
}

.white-bg {
  background-color: #F9F9F9;
}

@font-face {
  font-family: 'Gilroy-Light';
  src: url("../fonts/Gilroy-Light.ttf");
}

h1 {
  font-size: 55px;
  font-weight: 700;
  font-family: 'Gilroy-Light', sans-serif;
  text-transform: uppercase;
  line-height: 1.1;
}

h2 {
  font-size: 45px;
  font-weight: 700;
  font-family: 'Gilroy-Light', sans-serif;
  line-height: 1;
}

h3 {
  font-size: 33px;
  font-family: 'Gilroy-Light', sans-serif;
  line-height: 1;
  font-weight: 700;
}

h4 {
  font-size: 20px;
  font-family: 'Gilroy-Light', sans-serif;
  line-height: 1;
}

@media (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 45px;
  }
  h2 {
    font-size: 40px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 35px;
  }
}

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

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

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

body {
  font-family: 'Gilroy-Light';
  font-weight: 300;
  width: 100%;
  height: auto;
  background-color: #232a42;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

hr {
  border: none;
}

.container {
  max-width: 1250px;
}

/* BG HOME */
.bg-home {
  background-image: url("../images/home-background.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
}

/* NAVBAR */
.navbar {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 15px 40px;
  background-color: rgba(28, 26, 39, 0.8);
}

.navbar .nav-link {
  color: #ffffff;
  margin: 0 5px;
  padding: 12px 0;
  font-weight: 700;
  letter-spacing: 1px;
}

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

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

.navbar .navbar-nav {
  margin: 0 auto;
}

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

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

.navbar .nav-item .drop-items {
  background-color: #c2c3be;
  padding: 15px;
  border-top: 2px solid #9381fd;
  border-radius: 5px;
  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: black;
  display: block;
  font-weight: 700;
  letter-spacing: 1px;
}

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

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

.navbar .login__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.navbar .login__buttons ul li {
  display: inline-block;
}

.navbar .login__buttons ul li:first-of-type {
  margin-right: 10px;
}

.navbar .login__buttons form {
  margin-left: 15px;
}

.navbar .login__buttons form .form-group {
  margin-bottom: 0;
}

.navbar .login__buttons form .form-group .btn-language {
  outline: none;
  border-radius: 5px;
  border: 0;
  padding: 5px 10px;
  font-size: 14px;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 27px;
  transform: translateY(0.5px);
  -moz-transform: translateY(0.5px);
  -webkit-transform: translateY(0.5px);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 1px;
}

.navbar .login__buttons form .form-group .btn-language:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.navbar .login__buttons form .form-group .btn-language img {
  max-width: 20px;
  margin-right: 3px;
}

.navbar .login__buttons form .form-group .btn-language::after {
  display: none;
}

.navbar .login__buttons form .form-group .dropdown-menu {
  left: auto;
  top: 65px;
  z-index: 1111;
  min-width: auto;
  border: 0;
  border-radius: 5px;
  outline: 0;
  font-size: 14px;
  background-color: #fff;
}

.navbar .login__buttons form .form-group .dropdown-menu a {
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navbar .login__buttons form .form-group .dropdown-menu a img {
  max-width: 20px;
  margin-right: 3px;
}

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

/* Change navbar styling on scroll */
.navbar.active {
  margin-top: 0;
}

.navbar.active .nav-link {
  color: #ffffff;
}

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

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

.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: 1280px) {
  .navbar {
    padding: 15px 20px;
  }
  .navbar .nav-link {
    font-size: 14px;
  }
  .navbar .btn-primary {
    font-size: 14px;
  }
  .navbar .navbar-nav {
    margin-right: 15px;
  }
  .navbar .nav-item .drop-items li a {
    font-size: 14px;
  }
}

@media (max-width: 1150px) {
  .navbar {
    padding: 15px 20px;
  }
  .navbar .nav-link {
    font-size: 12px;
  }
  .navbar .btn-primary {
    font-size: 12px;
    padding: 10px 15px;
  }
  .navbar .navbar-nav {
    margin-right: 15px;
  }
  .navbar .nav-item .drop-items li a {
    font-size: 12px;
  }
}

@media (max-width: 1024px) {
  .navbar {
    padding: 15px 15px;
  }
  .navbar .nav-link {
    font-size: 10px;
  }
  .navbar .btn-primary {
    font-size: 10px;
    padding: 10px 15px;
  }
  .navbar .navbar-nav {
    margin-right: 15px;
  }
  .navbar .nav-item .drop-items li a {
    font-size: 10px;
  }
}

@media (max-width: 991.98px) {
  .navbar .navbar-brand {
    margin-left: 15px;
  }
  .navbar .mobile-nav {
    display: block !important;
    color: #fff !important;
    margin-left: auto;
    margin-right: 25px;
  }
  .navbar .mobile-nav img {
    width: 30px;
  }
  .navbar .mobile-nav img.icon-menu-2 {
    display: none;
  }
  .navbar .login__buttons form .form-group .dropdown-menu .dropdown-item {
    padding: 2px 15px !important;
  }
}

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

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1111;
  top: 0;
  left: 0;
  background-color: #1C1A27;
  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%;
  text-align: center;
  margin: 75px 0;
}

.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: #ffffff;
}

.overlay .overlay-content ul {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 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 .login-buttons {
  list-style: none;
  border-top: 0 !important;
  border-bottom: 0 !important;
  margin-top: 20px;
}

.overlay .login-buttons li {
  display: block;
  margin-bottom: 15px;
}

.overlay .menu-flags {
  list-style: none;
  border-top: 0 !important;
  border-bottom: 0 !important;
}

.overlay .menu-flags li {
  display: inline-block;
}

.overlay .menu-flags li a img {
  width: 25px;
}

.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: 480px) {
  .navbar {
    padding: 15px 0;
  }
  .navbar .login__buttons {
    display: none;
  }
  .navbar .mobile-nav {
    margin-right: 10px;
  }
}

@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;
  }
}

.home-bg {
  background-image: url("../images/home-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

canvas {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  opacity: 0.4;
}

/* HERO */
.hero {
  padding: 120px 0;
  overflow: hidden;
  position: relative;
}

.hero__content {
  position: relative;
  z-index: 22;
}

.hero__content h5 {
  color: #c2c3be;
}

.hero__content h1 {
  color: #ffffff;
  margin: 30px 0;
}

.hero__content h4 {
  color: #c2c3be;
}

.hero__content ul {
  list-style: none;
  margin-bottom: 0;
  margin-top: 50px;
}

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

.hero__img {
  position: relative;
  z-index: 22;
}

.hero__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: -50px;
  margin-left: -140px;
}

.hero__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 80px;
  position: relative;
  z-index: 22;
}

.hero__box ul {
  list-style: none;
  margin-right: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
}

.hero__box ul li {
  font-size: 18px;
  color: #ffffff;
}

.hero__box ul li img {
  width: 60px;
  margin-right: 20px;
}

/* EXPERIENCE */
.expert {
  padding: 80px 0;
}

.expert__content {
  padding-top: 130px;
}

.expert__content h2 {
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.expert__content p {
  color: #c2c3be;
}

.expert .service-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.expert__box {
  width: 150px;
  background-color: #1C1A27;
  padding: 15px;
  border-radius: 5px;
  margin: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.expert__box h4 {
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
  margin-left: 13px;
  margin-top: 15px;
}

.expert__box p {
  color: #c2c3be;
  margin-left: 13px;
  margin-bottom: 0;
  line-height: 1;
}

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

.expert__text {
  padding-left: 120px;
}

.expert__text h3 {
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.expert__text p {
  color: #c2c3be;
  margin-bottom: 40px;
}

.expert__text ul {
  list-style: none;
  margin-top: 40px;
  margin-bottom: 0;
}

.expert__text ul li {
  color: #c2c3be;
}

.expert__text ul li a {
  color: blue;
}

/* INNOVATION */
.innovation {
  padding: 80px 0;
}

.innovation__content h2 {
  color: #9381fd;
  margin-bottom: 80px;
  line-height: 1.2;
}

.innovation__content .box {
  width: 45%;
  float: left;
  margin-bottom: 30px;
}

.innovation__content .box img {
  width: 35px;
}

.innovation__content .box h4 {
  color: #ffffff;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
}

.innovation__content .box p {
  color: #c2c3be;
}

.innovation__content .box:nth-last-of-type(2) {
  margin-left: 45px;
}

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

/* PACKAGE */
.package {
  padding-top: 120px;
  padding-bottom: 80px;
  background-color: #F9F9F9;
}

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

.package .boxes {
  padding: 0 120px;
}

.package__title {
  text-align: center;
  margin-bottom: 40px;
}

.package__content {
  padding: 30px;
}

.package__content h5 {
  margin-bottom: 20px;
  padding-left: 10px;
}

.package__content h3 {
  margin-bottom: 40px;
  padding-left: 10px;
}

.package__content a {
  display: block;
  text-align: center;
  padding: 15px 10px;
  border: 1px solid black;
  border-radius: 5px;
}

.package__content a img {
  width: 20px;
}

.package__content ul {
  list-style: none;
  margin-bottom: 0;
  margin-top: 40px;
  padding-left: 10px;
}

.package__content ul li {
  margin-bottom: 10px;
  line-height: 1.2;
  font-weight: 700;
}

.package__content ul li span {
  color: #9381fd;
}

.package__content ul li:last-of-type {
  margin-bottom: 0;
}

.package__content.box-2 {
  border: 1px solid #9381fd;
  border-radius: 30px;
}

.package__content.box-2 h5 {
  text-align: center;
  color: #9381fd;
}

.package__content.box-2 h3 {
  text-align: center;
}

.package__content.box-2 a {
  border: 1px solid #eeeeee;
}

.package__content.box-3 {
  background-image: url("../images/packages.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
}

.package__content.box-3 h3 {
  text-align: center;
  color: #ffffff;
  padding-top: 46px;
}

.package__content.box-3 a {
  background-color: #9381fd;
  border: 1px solid transparent;
}

.package__content.box-3 ul li {
  color: #c2c3be;
}

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

.footer.footer-bottom {
  padding-top: 80px;
  background-color: #1C1A27;
}

.footer__secure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__secure ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__secure ul li {
  display: inline-block;
}

.footer__secure ul li img {
  width: 60px;
  margin-right: 15px;
}

.footer__investing iframe {
  height: 400px;
}

.footer__investing ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
}

.footer__investing ul li {
  font-weight: 700;
  font-size: 25px;
}

.footer__investing ul li p {
  font-weight: normal;
  line-height: 1.1;
  font-size: 20px;
  margin-top: 5px;
}

.footer__help {
  text-align: center;
}

.footer__help h2 {
  margin-bottom: 60px;
}

.footer__help img {
  width: 35%;
  margin-bottom: -60px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: 10px;
}

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

.footer__help .box .box-1 {
  position: relative;
}

.footer__help .box .box-1 ul {
  list-style: none;
  text-align: center;
  margin-bottom: 0;
}

.footer__help .box .box-1 ul li a {
  color: black;
  font-size: 20px;
  font-weight: 700;
}

.footer__question {
  text-align: center;
  padding-top: 80px;
}

.footer__question h3 {
  margin-bottom: 20px;
}

.footer__question ul {
  list-style: none;
  margin-bottom: 80px;
}

.footer__question ul li {
  display: inline-block;
  margin: 10px;
}

.footer__question ul li a img {
  width: 20px;
}

.footer__risk {
  padding-bottom: 40px;
  border-bottom: 1px solid #eeeeee;
}

.footer__risk p {
  padding: 0 30px;
  margin-top: 60px;
}

.footer__risk p span {
  color: #9381fd;
}

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

.footer__links .box h4 {
  margin-bottom: 20px;
  color: #ffffff;
}

.footer__links .box ul {
  list-style: none;
}

.footer__links .box ul li a {
  color: #c2c3be;
}

.footer__links .box ul li a:hover {
  color: #9381fd;
}

.footer__links .box.box-1 {
  width: 30%;
}

.footer__links .box.box-1 h3 {
  color: #ffffff;
}

.footer__links .box.box-1 ul {
  margin-top: 30px;
}

.footer__links .box.box-1 ul li {
  color: #ffffff;
}

.footer__links .box.box-1 ul li a {
  color: #c2c3be;
}

.footer__links .box.box-1 ul li a:hover {
  color: #9381fd;
}

.footer__links .box.box-2 {
  width: 23%;
}

.footer__links .box.box-3 {
  width: 23%;
}

.footer__links .box.box-4 {
  width: 23%;
}

.footer__links .box.box-5 {
  width: 23%;
}

.footer__rights p {
  text-align: right;
  margin: 40px 0;
  color: #ffffff;
}

/* RESPONSIVE HOME */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero__img img {
    margin: 0;
  }
  .hero__box ul {
    margin-right: 100px;
  }
  .expert {
    padding-top: 0;
  }
  .expert__content {
    padding-top: 100px;
  }
  .expert__text {
    padding-left: 0;
  }
  .expert__img img {
    width: 115%;
    transform: translateX(-150px);
    -moz-transform: translateX(0px);
    -webkit-transform: translateX(0px);
  }
  .package .boxes {
    padding: 0;
  }
  .innovation__img img {
    width: 100%;
  }
}

@media (min-height: 1366px) {
  canvas {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero {
    padding: 80px 0;
  }
  .hero__img {
    text-align: right;
  }
  .hero__img img {
    margin: 0;
    width: 70%;
    margin-top: 40px;
    margin-left: auto;
  }
  .hero__box ul {
    margin-right: 35px;
  }
  .expert {
    padding-top: 0;
  }
  .expert__img img {
    width: 80%;
  }
  .expert__content {
    padding-top: 40px;
  }
  .expert__text {
    padding-left: 0;
    margin-top: 40px;
  }
  .innovation {
    padding-top: 0;
  }
  .innovation__img {
    text-align: right;
  }
  .innovation__img img {
    width: 70%;
  }
  .package {
    padding-top: 80px;
    padding-bottom: 0;
  }
  .package .boxes {
    padding: 0;
  }
  .footer__investing ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .footer__investing ul li {
    width: 23%;
  }
  .footer__help img {
    width: 80%;
    -o-object-fit: cover;
       object-fit: cover;
    margin-top: -60px;
  }
  .footer__links {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer__links .box.box-1 {
    width: 33%;
    margin-bottom: 30px;
  }
  .footer__links .box.box-2 {
    width: 33%;
  }
  .footer__links .box.box-3 {
    width: 33%;
  }
  .footer__links .box.box-4 {
    width: 33%;
  }
  .footer__links .box.box-5 {
    width: 33%;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  canvas {
    display: none;
  }
  .hero {
    padding: 80px 0;
  }
  .hero__img {
    text-align: right;
  }
  .hero__img img {
    margin: 0;
    width: 70%;
    margin-top: 40px;
    margin-left: auto;
  }
  .hero__box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .hero__box ul {
    width: 50%;
    margin-right: 0;
  }
  .hero__box ul:nth-of-type(3) {
    margin-top: 20px;
  }
  .expert {
    padding-top: 0;
  }
  .expert__img img {
    width: 80%;
  }
  .expert__content {
    padding-top: 40px;
  }
  .expert__text {
    padding-left: 0;
    margin-top: 40px;
  }
  .innovation {
    padding-top: 0;
  }
  .innovation__img {
    text-align: right;
  }
  .innovation__img img {
    width: 70%;
  }
  .innovation__content .box {
    width: 100%;
  }
  .innovation__content .box:nth-of-type(2) {
    margin-left: 0;
  }
  .package {
    padding-top: 80px;
    padding-bottom: 0;
  }
  .package .boxes {
    padding: 0;
  }
  .footer__investing ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .footer__investing ul li {
    width: 23%;
  }
  .footer__help img {
    width: 80%;
    -o-object-fit: cover;
       object-fit: cover;
    margin-top: -60px;
  }
  .footer__links {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer__links .box.box-1 {
    width: 100%;
    margin-bottom: 30px;
  }
  .footer__links .box.box-2 {
    width: 50%;
    margin-bottom: 20px;
  }
  .footer__links .box.box-3 {
    width: 50%;
    margin-bottom: 20px;
  }
  .footer__links .box.box-4 {
    width: 50%;
  }
  .footer__links .box.box-5 {
    width: 50%;
  }
  .footer__question p br {
    display: none;
  }
  .footer__risk p {
    padding: 0;
  }
  .footer__rights p {
    text-align: left;
  }
  .footer__secure ul {
    width: 100%;
  }
  .footer__secure .open-account {
    margin: 40px 0;
  }
}

@media (min-width: 321px) and (max-width: 480px) {
  canvas {
    display: none;
  }
  .hero {
    padding: 40px 0;
  }
  .hero__img img {
    margin: 0;
    width: 100%;
    margin-top: 40px;
    margin-left: auto;
  }
  .hero__box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .hero__box ul {
    width: 100%;
    margin-right: 0;
  }
  .hero__box ul:nth-of-type(2) {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .hero__box ul:nth-of-type(3) {
    margin-top: 0;
  }
  .hero__content ul li:nth-of-type(2) {
    margin-top: 30px;
  }
  .expert {
    padding-top: 0;
  }
  .expert__img img {
    width: 100%;
  }
  .expert__content {
    padding-top: 40px;
  }
  .expert__text {
    padding-left: 0;
    margin-top: 40px;
  }
  .expert .service-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .innovation {
    padding-top: 0;
  }
  .innovation__img img {
    width: 100%;
  }
  .innovation__content .box {
    width: 100%;
  }
  .innovation__content .box:nth-of-type(2) {
    margin-left: 0;
  }
  .package {
    padding-top: 80px;
    padding-bottom: 0;
  }
  .package .boxes {
    padding: 0;
  }
  .footer.footer-bottom {
    padding-top: 40px;
  }
  .footer__investing ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .footer__investing ul li {
    width: 50%;
  }
  .footer__help img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    margin-top: -60px;
  }
  .footer__help .box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer__help .box .box-1 {
    border-right: 0;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__help .box .box-1::before {
    right: 0;
    left: 0;
    margin: 0 auto;
    top: -32px;
  }
  .footer__help .box .box-1 ul {
    padding-right: 0;
    text-align: center;
  }
  .footer__help .box .box-2::before {
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .footer__help .box .box-2 a {
    padding-left: 0;
    margin-top: 45px;
  }
  .footer__links {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer__links .box.box-1 {
    width: 100%;
    margin-bottom: 30px;
  }
  .footer__links .box.box-2 {
    width: 100%;
    margin-bottom: 20px;
  }
  .footer__links .box.box-3 {
    width: 100%;
    margin-bottom: 20px;
  }
  .footer__links .box.box-4 {
    width: 100%;
    margin-bottom: 20px;
  }
  .footer__links .box.box-5 {
    width: 100%;
  }
  .footer__question p br {
    display: none;
  }
  .footer__risk p {
    padding: 0;
  }
  .footer__rights p {
    text-align: left;
  }
  .footer__secure ul {
    width: 100%;
  }
  .footer__secure .open-account {
    margin: 40px 0;
  }
}

@media (max-width: 320px) {
  canvas {
    display: none;
  }
  .hero {
    padding: 40px 0;
  }
  .hero__img img {
    margin: 0;
    width: 100%;
    margin-top: 40px;
    margin-left: auto;
  }
  .hero__box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .hero__box ul {
    width: 100%;
    margin-right: 0;
  }
  .hero__box ul:nth-of-type(2) {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .hero__box ul:nth-of-type(3) {
    margin-top: 0;
  }
  .hero__content ul li:nth-of-type(2) {
    margin-top: 30px;
  }
  .expert {
    padding-top: 0;
  }
  .expert__img img {
    width: 100%;
  }
  .expert__content {
    padding-top: 40px;
  }
  .expert__text {
    padding-left: 0;
    margin-top: 40px;
  }
  .expert .service-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .innovation {
    padding-top: 0;
  }
  .innovation__img img {
    width: 100%;
  }
  .innovation__content .box {
    width: 100%;
  }
  .innovation__content .box:nth-of-type(2) {
    margin-left: 0;
  }
  .package {
    padding-top: 80px;
    padding-bottom: 0;
  }
  .package .boxes {
    padding: 0;
  }
  .footer.footer-bottom {
    padding-top: 40px;
  }
  .footer__investing ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .footer__investing ul li {
    width: 50%;
  }
  .footer__help img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    margin-top: -60px;
  }
  .footer__help .box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer__help .box .box-1 {
    border-right: 0;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__help .box .box-1::before {
    right: 0;
    left: 0;
    margin: 0 auto;
    top: -32px;
  }
  .footer__help .box .box-1 ul {
    padding-right: 0;
    text-align: center;
  }
  .footer__help .box .box-2::before {
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .footer__help .box .box-2 a {
    padding-left: 0;
    margin-top: 45px;
  }
  .footer__links {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer__links .box.box-1 {
    width: 100%;
    margin-bottom: 30px;
  }
  .footer__links .box.box-2 {
    width: 100%;
    margin-bottom: 20px;
  }
  .footer__links .box.box-3 {
    width: 100%;
    margin-bottom: 20px;
  }
  .footer__links .box.box-4 {
    width: 100%;
    margin-bottom: 20px;
  }
  .footer__links .box.box-5 {
    width: 100%;
  }
  .footer__question p br {
    display: none;
  }
  .footer__risk p {
    padding: 0;
  }
  .footer__rights p {
    text-align: left;
  }
  .footer__secure ul {
    width: 100%;
  }
  .footer__secure .open-account {
    margin: 40px 0;
  }
}

/* INNER PAGES */
.inner-pages {
  background-image: url("../images/inner-pages-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* TRADING INSTRUMENTS */
.trading-instruments {
  padding-top: 80px;
}

.trading-instruments__title h4 {
  color: #ffffff;
  margin-bottom: 40px;
}

.trading-instruments .instrument-box {
  padding: 15px;
  margin: auto;
}

.trading-instruments__content {
  background-color: #1C1A27;
  border-radius: 5px;
  padding: 20px 30px;
  min-height: 190px;
}

.trading-instruments__content ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.trading-instruments__content ul li {
  display: inline-block;
}

.trading-instruments__content ul li img {
  margin-right: 20px;
}

.trading-instruments__content ul li a {
  font-size: 30px;
  color: #ffffff;
  font-weight: 700;
}

.trading-instruments__content p {
  color: #c2c3be;
}

.trading-instruments__content.box-1 {
  -webkit-box-shadow: 0px 0px 20px 10px rgba(12, 205, 186, 0.25);
          box-shadow: 0px 0px 20px 10px rgba(12, 205, 186, 0.25);
}

.trading-instruments__content.box-2 {
  -webkit-box-shadow: 0px 0px 20px 10px rgba(45, 102, 243, 0.25);
          box-shadow: 0px 0px 20px 10px rgba(45, 102, 243, 0.25);
}

.trading-instruments__content.box-3 {
  -webkit-box-shadow: 0px 0px 20px 10px rgba(136, 114, 241, 0.25);
          box-shadow: 0px 0px 20px 10px rgba(136, 114, 241, 0.25);
}

.trading-instruments__content.box-4 {
  -webkit-box-shadow: 0px 0px 20px 10px rgba(247, 224, 156, 0.25);
          box-shadow: 0px 0px 20px 10px rgba(247, 224, 156, 0.25);
}

.trading-instruments__content.box-5 {
  -webkit-box-shadow: 0px 0px 20px 10px rgba(215, 154, 87, 0.25);
          box-shadow: 0px 0px 20px 10px rgba(215, 154, 87, 0.25);
}

.trading-instruments__content.box-6 {
  -webkit-box-shadow: 0px 0px 20px 10px rgba(234, 120, 94, 0.25);
          box-shadow: 0px 0px 20px 10px rgba(234, 120, 94, 0.25);
}

.trading-instruments__content.box-7 {
  -webkit-box-shadow: 0px 0px 20px 10px rgba(225, 135, 109, 0.25);
          box-shadow: 0px 0px 20px 10px rgba(225, 135, 109, 0.25);
}

.division {
  padding: 80px 0;
}

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

.division__choose .text {
  width: 30%;
  padding-left: 30px;
}

.division__choose .text h2 {
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.division__choose .text p {
  color: #c2c3be;
}

.division__choose img {
  width: 10%;
  -o-object-fit: contain;
     object-fit: contain;
}

.division__choose img:first-of-type {
  margin-top: 130px;
}

.division__choose img:last-of-type {
  margin-top: 245px;
}

.division__choose ul {
  width: 25%;
  list-style: none;
}

.division__choose ul li {
  color: #c2c3be;
}

.division__choose ul li img {
  width: 14px;
  margin-top: 0 !important;
  margin-right: 5px;
}

.division__choose ul:first-of-type {
  margin-top: 425px;
  padding-left: 20px;
}

.division__choose ul:last-of-type {
  margin-top: 240px;
  padding-left: 20px;
  margin-bottom: 0;
}

.division__choose ul:last-of-type li {
  margin-bottom: 84px;
}

.division__choose ul:last-of-type li:last-of-type {
  margin-bottom: 0;
}

/* RESPONSIVE TRADING INSTRUMENTS */
@media (min-width: 992px) and (max-width: 1050px) {
  .trading-instruments__content ul li a {
    font-size: 25px;
  }
  .division__choose ul:first-of-type {
    margin-top: 375px;
  }
  .division__choose ul:last-of-type li {
    margin-bottom: 62px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .trading-instruments__content ul li a {
    font-size: 25px;
  }
  .division__choose {
    margin-top: 0;
  }
  .division__choose .text {
    width: 100%;
    padding-left: 0;
  }
  .division__choose img {
    display: none;
  }
  .division__choose ul {
    margin-top: 0 !important;
    width: 50%;
    padding-left: 0 !important;
  }
  .division__choose ul li {
    margin-bottom: 0 !important;
  }
  .division__choose ul li img {
    display: inline-block;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .trading-instruments__content ul li a {
    font-size: 25px;
  }
  .division__choose {
    margin-top: 0;
  }
  .division__choose .text {
    width: 100%;
    padding-left: 0;
  }
  .division__choose img {
    display: none;
  }
  .division__choose ul {
    margin-top: 0 !important;
    width: 50%;
    padding-left: 0 !important;
  }
  .division__choose ul li {
    margin-bottom: 0 !important;
  }
  .division__choose ul li img {
    display: inline-block;
  }
}

@media (min-width: 321px) and (max-width: 480px) {
  .trading-instruments {
    padding-top: 40px;
  }
  .trading-instruments__content ul li a {
    font-size: 25px;
  }
  .division {
    padding: 40px 0;
  }
  .division__choose {
    margin-top: 0;
  }
  .division__choose .text {
    width: 100%;
    padding-left: 0;
  }
  .division__choose img {
    display: none;
  }
  .division__choose ul {
    margin-top: 0 !important;
    width: 100%;
    padding-left: 0 !important;
    margin-bottom: 0;
  }
  .division__choose ul li {
    margin-bottom: 0 !important;
  }
  .division__choose ul li img {
    display: inline-block;
  }
}

@media (max-width: 320px) {
  .trading-instruments {
    padding-top: 40px;
  }
  .trading-instruments__content ul li a {
    font-size: 25px;
  }
  .division {
    padding: 40px 0;
  }
  .division__choose {
    margin-top: 0;
  }
  .division__choose .text {
    width: 100%;
    padding-left: 0;
  }
  .division__choose img {
    display: none;
  }
  .division__choose ul {
    margin-top: 0 !important;
    width: 100%;
    padding-left: 0 !important;
    margin-bottom: 0;
  }
  .division__choose ul li {
    margin-bottom: 0 !important;
  }
  .division__choose ul li img {
    display: inline-block;
  }
}

/* TRADING PLATFORMS */
.trading-platforms {
  padding-top: 80px;
}

.trading-platforms__title h4 {
  color: #ffffff;
  margin-bottom: 40px;
}

.trading-platforms .platforms-box {
  padding: 15px;
  margin-left: auto;
}

.trading-platforms__content {
  background-color: #1C1A27;
  border-radius: 5px;
  padding: 20px 30px;
  min-height: 215px;
}

.trading-platforms__content ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.trading-platforms__content ul li {
  display: inline-block;
}

.trading-platforms__content ul li img {
  margin-right: 20px;
  width: 40px;
}

.trading-platforms__content ul li a {
  font-size: 30px;
  color: #ffffff;
  font-weight: 700;
}

.trading-platforms__content p {
  color: #c2c3be;
}

.trading-platforms__content.box-1 {
  -webkit-box-shadow: 0px 0px 20px 10px rgba(12, 205, 186, 0.25);
          box-shadow: 0px 0px 20px 10px rgba(12, 205, 186, 0.25);
}

.trading-platforms__content.box-2 {
  -webkit-box-shadow: 0px 0px 20px 10px rgba(142, 91, 64, 0.25);
          box-shadow: 0px 0px 20px 10px rgba(142, 91, 64, 0.25);
}

.trading-platforms__content.box-3 {
  -webkit-box-shadow: 0px 0px 20px 10px rgba(43, 58, 127, 0.25);
          box-shadow: 0px 0px 20px 10px rgba(43, 58, 127, 0.25);
}

.trading-platforms__content.box-4 {
  -webkit-box-shadow: 0px 0px 20px 10px rgba(5, 118, 114, 0.25);
          box-shadow: 0px 0px 20px 10px rgba(5, 118, 114, 0.25);
}

/* RESPONSIVE TRADING INSTRUMENTS */
@media (min-width: 992px) and (max-width: 1050px) {
  .trading-platforms__content ul li a {
    font-size: 25px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .trading-platforms__content {
    min-height: 280px;
  }
  .trading-platforms__content ul li a {
    font-size: 25px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .trading-platforms__content ul li a {
    font-size: 25px;
  }
}

@media (min-width: 321px) and (max-width: 480px) {
  .trading-platforms {
    padding-top: 40px;
  }
  .trading-platforms__content ul li a {
    font-size: 25px;
  }
}

@media (max-width: 320px) {
  .trading-platforms {
    padding-top: 40px;
  }
  .trading-platforms__content ul li a {
    font-size: 25px;
  }
}

/* PLATFORMS TRADING ALL */
.platforms-trading {
  padding-top: 80px;
}

.platforms-trading__content h4 {
  color: #c2c3be;
  margin-bottom: 40px;
}

.platforms-trading__content h2 {
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.2;
}

.platforms-trading__content p {
  color: #c2c3be;
}

.platforms-trading__content ul {
  list-style: none;
  margin-bottom: 0;
  margin-top: 50px;
}

.platforms-trading__content ul li {
  display: inline-block;
  margin-right: 15px;
}

.platforms-trading__img img {
  width: 100%;
}

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

.platforms-trading__img-mobile img {
  width: 65%;
}

/* MT4 Platforms */
.mt-platforms {
  padding: 80px 0;
}

.mt-platforms__content {
  background-image: url("../images/bg-icon.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 5px;
  padding: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.mt-platforms__content .text {
  width: 55%;
}

.mt-platforms__content .text h2 {
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.mt-platforms__content .text p {
  color: #c2c3be;
}

.mt-platforms__content .text .account {
  margin-top: 40px;
  margin-bottom: 15px;
}

.mt-platforms__content .img {
  width: 45%;
  text-align: right;
}

/* RESPONSIVE METATRADER4 */
@media (min-width: 992px) and (max-width: 1199px) {
  .platforms-trading__img img {
    margin: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .platforms-trading__img img {
    margin-top: 40px;
    width: 70%;
  }
  .mt-platforms {
    padding-top: 20px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .platforms-trading__img img {
    margin-top: 40px;
    width: 70%;
    margin-top: 40px;
  }
  .mt-platforms {
    padding-top: 20px;
  }
  .mt-platforms__content .text {
    width: 100%;
  }
  .mt-platforms__content .img {
    width: 100%;
    text-align: left;
    margin-top: 20px;
  }
}

@media (min-width: 321px) and (max-width: 480px) {
  .platforms-trading {
    padding-top: 40px;
  }
  .platforms-trading__content ul li:first-of-type {
    margin-bottom: 40px;
  }
  .platforms-trading__img {
    text-align: center;
  }
  .platforms-trading__img img {
    margin-top: 40px;
    margin-left: 0;
    width: 100%;
  }
  .mt-platforms {
    padding-top: 0px;
  }
  .mt-platforms__content {
    padding: 20px;
  }
  .mt-platforms__content .text {
    width: 100%;
  }
  .mt-platforms__content .img {
    width: 100%;
    text-align: left;
    margin-top: 20px;
  }
}

@media (max-width: 320px) {
  .platforms-trading {
    padding-top: 40px;
  }
  .platforms-trading__content ul li:first-of-type {
    margin-bottom: 40px;
  }
  .platforms-trading__img {
    text-align: center;
  }
  .platforms-trading__img img {
    margin-top: 40px;
    margin-left: 0;
    width: 100%;
  }
  .mt-platforms {
    padding-top: 0px;
  }
  .mt-platforms__content {
    padding: 20px;
  }
  .mt-platforms__content .text {
    width: 100%;
  }
  .mt-platforms__content .img {
    width: 100%;
    text-align: left;
    margin-top: 20px;
  }
}

/* INSTRUMENTS TRADING ALL */
.instruments-trading {
  padding-top: 80px;
}

.instruments-trading__content h4 {
  color: #c2c3be;
  margin-bottom: 40px;
}

.instruments-trading__content h2 {
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.2;
}

.instruments-trading__content p {
  color: #c2c3be;
}

.instruments-trading__content ul {
  list-style: none;
  margin-bottom: 0;
  margin-top: 50px;
}

.instruments-trading__content ul li {
  display: inline-block;
  margin-right: 15px;
}

.instruments-trading__img img {
  width: 100%;
}

/* RESPONSIVE METATRADER4 */
@media (min-width: 992px) and (max-width: 1199px) {
  .instruments-trading__img img {
    margin: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .instruments-trading__img img {
    margin-top: 40px;
    width: 70%;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .instruments-trading__img img {
    margin-top: 40px;
    width: 70%;
    margin-top: 40px;
  }
}

@media (min-width: 321px) and (max-width: 480px) {
  .instruments-trading {
    padding-top: 40px;
  }
  .instruments-trading__content ul li:first-of-type {
    margin-bottom: 40px;
  }
  .instruments-trading__img {
    text-align: center;
  }
  .instruments-trading__img img {
    margin-top: 40px;
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 320px) {
  .instruments-trading {
    padding-top: 40px;
  }
  .instruments-trading__content ul li:first-of-type {
    margin-bottom: 40px;
  }
  .instruments-trading__img {
    text-align: center;
  }
  .instruments-trading__img img {
    margin-top: 40px;
    margin-left: 0;
    width: 100%;
  }
}

/* NEWS */
.news {
  padding: 80px 0;
}

.news__title h4 {
  color: #ffffff;
  margin-bottom: 40px;
}

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

.news__box {
  background-color: #ffffff;
  border-radius: 5px;
  position: relative;
}

.news__box img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.news__box h6 {
  background-color: #ffffff;
  padding: 5px 10px;
  position: absolute;
  content: '';
  top: 10px;
  left: 10px;
}

.news__box h4 {
  font-weight: 600;
  padding: 20px 10px 0px 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  -webkit-box-orient: vertical;
  height: 76px;
  line-height: 24px;
}

.news__box h4 a {
  color: black;
}

.news__box h4 a:hover {
  color: #9381fd;
}

.news__box p {
  color: black;
  padding: 0 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  /* number of lines to show */
  -webkit-box-orient: vertical;
  height: 122px;
}

.news__box .button {
  padding: 0 10px 15px 10px;
}

.news__box .button a {
  color: #9381fd;
  font-weight: 600;
  letter-spacing: 1px;
}

.news__box .button a:hover {
  color: black;
}

/* RESPONSIVE NEWS */
@media (min-width: 321px) and (max-width: 480px) {
  .news {
    padding: 40px 0;
  }
}

@media (max-width: 320px) {
  .news {
    padding: 40px 0;
  }
  .news__box h4 {
    height: 70px;
  }
}

/* SINGLE POST */
.post {
  padding: 80px 0;
}

.post__content {
  padding: 0 200px;
}

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

.post__content h6 {
  color: #c2c3be;
  margin-top: 20px;
  margin-bottom: 15px;
}

.post__content h3 {
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.post__content p {
  color: #c2c3be;
}

.post__content ul {
  margin-left: 17px;
}

.post__content ul li {
  color: #c2c3be;
}

/* RESPONSIVE POST */
@media (min-width: 992px) and (max-width: 1199px) {
  .post__content {
    padding: 0 100px;
  }
}

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

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

@media (min-width: 321px) and (max-width: 480px) {
  .post {
    padding: 40px 0;
  }
  .post__content {
    padding: 0 0px;
  }
  .post__content img {
    height: 260px;
  }
}

@media (max-width: 320px) {
  .post {
    padding: 40px 0;
  }
  .post__content {
    padding: 0 0px;
  }
  .post__content img {
    height: 260px;
  }
}

/* ABOUT US */
.about-us {
  padding: 80px 0;
}

.about-us__title h4 {
  color: #ffffff;
  margin-bottom: 20px;
}

.about-us__title h2 {
  color: #ffffff;
  line-height: 1.2;
}

.about-us__title p {
  color: #c2c3be;
  margin-bottom: 60px;
}

.about-us .about-padding {
  padding: 15px;
}

.about-us__box {
  background-color: #1C1A27;
  border-radius: 5px;
  padding: 25px 20px;
}

.about-us__box h3 {
  color: #ffffff;
  margin-top: 20px;
  margin-bottom: 20px;
}

.about-us__box p {
  color: #c2c3be;
  margin-bottom: 0;
}

.about-us__content {
  margin-top: 60px;
  padding: 20px 0 30px 0;
}

.about-us__content p {
  color: #c2c3be;
}

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

.about-us__content ul li {
  color: #c2c3be;
}

.about-us__content ul li img {
  width: 15px;
  margin-right: 10px;
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
}

.about-us__content h4 {
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 1px;
}

.about-us__content .text {
  margin-bottom: 30px;
}

.about-us__content.border-box {
  border-right: 1px solid #c2c3be;
}

/* RESPONSIVE ABOUT */
@media (min-width: 768px) and (max-width: 991px) {
  .about-us__content {
    margin-top: 0;
  }
  .about-us__content.border-box {
    border-right: 0;
    margin-top: 30px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .about-us__content {
    margin-top: 0;
  }
  .about-us__content.border-box {
    border-right: 0;
    margin-top: 30px;
  }
}

@media (min-width: 321px) and (max-width: 480px) {
  .about-us {
    padding: 40px 0;
  }
  .about-us__content {
    margin-top: 0;
  }
  .about-us__content.border-box {
    border-right: 0;
    margin-top: 30px;
  }
}

@media (max-width: 320px) {
  .about-us {
    padding: 40px 0;
  }
  .about-us__content {
    margin-top: 0;
  }
  .about-us__content.border-box {
    border-right: 0;
    margin-top: 30px;
  }
}

/* CONTACT */
.contact {
  padding: 80px 0;
}

.contact__content {
  padding: 30px 0;
}

.contact__content h4 {
  color: #ffffff;
  margin-bottom: 30px;
}

.contact__content h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.contact__content p {
  color: #c2c3be;
}

.contact__content ul {
  list-style: none;
  margin-top: 50px;
}

.contact__content ul li {
  display: inline-block;
  margin-right: 15px;
}

.contact .border-box {
  border-left: 1px solid #c2c3be;
  padding: 70px 60px 0 60px;
  background-color: #1C1A27;
  border-radius: 5px;
}

/* RESPONSIVE CONTACT */
@media (min-width: 992px) and (max-width: 1199px) {
  .contact .border-box {
    padding: 60px 60px 0 60px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .contact__content {
    padding: 0;
  }
  .contact__content ul {
    margin-bottom: 50px;
  }
  .contact .border-box {
    padding: 0 15px;
    border-left: 0;
    background-color: transparent;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .contact__content {
    padding: 0;
  }
  .contact__content ul {
    margin-bottom: 50px;
  }
  .contact .border-box {
    padding: 0 15px;
    border-left: 0;
    background-color: transparent;
  }
}

@media (min-width: 321px) and (max-width: 480px) {
  .contact {
    padding: 40px 0;
  }
  .contact__content {
    padding: 0;
  }
  .contact__content ul {
    margin-bottom: 50px;
  }
  .contact__content ul li:first-of-type {
    margin-bottom: 30px;
  }
  .contact .border-box {
    padding: 0 15px;
    border-left: 0;
    background-color: transparent;
  }
}

@media (max-width: 320px) {
  .contact {
    padding: 40px 0;
  }
  .contact__content {
    padding: 0;
  }
  .contact__content ul {
    margin-bottom: 50px;
  }
  .contact__content ul li:first-of-type {
    margin-bottom: 30px;
  }
  .contact .border-box {
    padding: 0 15px;
    border-left: 0;
    background-color: transparent;
  }
}
/*# sourceMappingURL=style.css.map */