/* fonts */
@import url("https://fonts.googleapis.com/css?family=Poppins:400,700,800&display=swap");
/* variables */
/*KEYFRAMES*/
@-webkit-keyframes moveDown {
  from {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes moveDown {
  from {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

/*CLASES*/
.animated {
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
}

.animated.opacity {
  opacity: 0;
}

.animated.opacity.in {
  opacity: 1;
}

.animated.opacity-up {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
}

.animated.opacity-up.in {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.animated.opacity-arrow {
  opacity: 0;
  -webkit-transform: translateY(-50px) rotate(90deg);
  transform: translateY(-50px) rotate(90deg);
}

.animated.opacity-arrow.in {
  opacity: 1;
  -webkit-transform: translateY(0px) rotate(90deg);
  transform: translateY(0px) rotate(90deg);
}

.animated.opacity-down {
  opacity: 0;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
}

.animated.opacity-down.in {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.animated.opacity-right {
  opacity: 0;
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
}

.animated.opacity-right.in {
  opacity: 1;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.animated.opacity-left {
  opacity: 0;
  -webkit-transform: translateX(50px);
  transform: translateX(50px);
}

.animated.opacity-left.in {
  opacity: 1;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.animated.scale {
  -webkit-transform: scale(0);
  transform: scale(0);
}

.animated.scale.in {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.animated.scale.uni-view {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

@media (min-width: 768px) {
  .animated.opacity-arrow {
    opacity: 0;
    -webkit-transform: translateX(-50px) rotate(0deg);
    transform: translateX(-50px) rotate(0deg);
  }
  .animated.opacity-arrow.in {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  font-family: "Poppins", sans-serif;
}

.header-section {
  position: relative;
}

.header-section .fullpageMenu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100vh;
  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: #57CBCC;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 100;
}

.header-section .fullpageMenu.active {
  top: 0;
  z-index: 100;
}

.header-section .fullpageMenu .banner {
  display: none;
  position: relative;
  min-width: 600px;
  height: 100%;
}

.header-section .fullpageMenu .banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.header-section .fullpageMenu .nav {
  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;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.header-section .fullpageMenu .nav ul {
  position: relative;
}

.header-section .fullpageMenu .nav ul li {
  list-style: none;
  padding: 0 20px;
  margin: 5px 0;
  overflow: hidden;
}

.header-section .fullpageMenu .nav ul li a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 3em;
  font-weight: 700;
  line-height: 1em;
  padding-top: 12px;
  display: inline-block;
  text-transform: uppercase;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.header-section .fullpageMenu .nav ul li a:before {
  content: attr(data-text);
  position: absolute;
  bottom: -100%;
  left: 0;
  color: #fff;
}

.header-section .fullpageMenu .nav ul li:hover a {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.header-section .menuicon {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: url("./../assets/menu-icon.png");
  background-size: 40px;
  background-repeat: no-repeat;
  cursor: pointer;
  background-position: 10px;
  z-index: 100;
}

.header-section .menuicon.active {
  background: url("./../assets/menu-close.png");
  background-size: 40px;
  background-repeat: no-repeat;
  cursor: pointer;
  background-position: 10px;
}

@media (min-width: 992px) {
  .header-section .fullpageMenu .banner {
    display: block;
  }
  .header-section .fullpageMenu .nav ul li a {
    font-size: 4em;
  }
}

footer {
  z-index: -10;
}

footer .footer-top {
  background: #FFC853;
  padding-top: 60px;
  padding-bottom: 60px;
}

footer .footer-top .footer-bg {
  position: relative;
}

footer .footer-top .footer-bg .footer-wording {
  position: absolute;
  left: 0;
  top: 50px;
  bottom: 0;
}

footer .footer-top .footer-bg .footer-wording h3 {
  text-align: center;
  font-size: 25px;
  color: #000;
  font-weight: 700;
}

footer .footer-top .footer-bg .footer-wording p {
  text-align: center;
  color: #000;
  font-size: 14px;
}

footer .footer-top .footer-bg .footer-wording a {
  /* display: block;
  margin: 0 auto;
  text-decoration: none;
  text-align: center;
  margin-top: 20px;
  color: #000;
  border: 2px solid #000;
  width: 120px;
  padding: 7px; */
}



footer .footer-top .footer-bg .footer-wording ul{
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  list-style: none;
  padding-left: 0;
  padding-top: 20px;
  justify-content: center;
}

footer .footer-top .footer-bg .footer-wording ul li{
  padding: 12px 15px;
}

footer .footer-top .footer-bg .footer-wording ul li a{
  color: #000;
  border: 1px solid #FFC853 ;
  text-decoration: none;
  padding: 10px 20px ;
}

footer .footer-top .footer-bg .footer-wording a:hover {
  color: #FFC853;
  border: 1px solid #000 ;
  text-decoration: none;
  background: #000;
}

footer .footer-bottom {
  background: #000;
  padding-top: 30px;
  padding-bottom: 30px;
}

footer .footer-bottom ul {
  text-align: center;
  /* margin-left: 0; */
  padding-left: 0;
}

footer .footer-bottom ul li {
  list-style: none;
  padding: 7px;
}

footer .footer-bottom ul li a {
  color: #fff;
  text-decoration: none;
}

footer .footer-bottom ul li a:hover {
  border-bottom: 2px solid #FFC853;
  padding-bottom: 2px;
}

@media (min-width: 768px) {
  footer .footer-top .footer-bg .footer-wording {
    left: 0;
    right: 0;
  }
  footer .footer-top .footer-bg .footer-wording h3 {
    font-size: 45px;
    padding-bottom: 20px;
  }
  footer .footer-top .footer-bg .footer-wording p {
    font-size: 18px;
  }
  footer .footer-top .footer-bg .footer-wording a {
    margin-top: 30px;
  }
  footer .footer-bottom ul li {
    display: inline;
    padding: 15px;
  }
}

@media (min-width: 1200px) {
  footer .footer-top {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  footer .footer-top .footer-bg .footer-wording h3 {
    font-size: 50px;
  }
  footer .footer-top .footer-bg .footer-wording p {
    font-size: 20px;
  }
}

.banner-landing {
  height: 600px;
  background-size: cover;
  position: relative;
  background: url("./../assets/banner-landing.png");
  z-index: 1;
}

.banner-landing .banner-wording {
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  bottom: auto;
}

.banner-landing .banner-wording img {
  width: 80%;
  margin: 0 auto;
}

.banner-landing .banner-wording h1 {
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
}

.banner-landing .banner-wording h1 span {
  display: block;
}

.banner-landing .banner-wording p {
  margin-top: 25px;
  margin-bottom: 25px;
  text-align: center;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
}

.banner-landing .banner-wording .btn-banner {
  position: absolute;
  text-align: center;
  color: #fff;
  text-decoration: none;
  border: 1px solid #fff;
  padding: 7px;
  display: block;
  margin: 0 auto;
  width: 160px;
  font-size: 14px;
  top: 280px;
  left: 0;
  right: 0;
}

.banner-landing .banner-wording .btn-banner:hover {
  background: #fff;
  color: #333333;
}

.banner-landing .middle {
  position: absolute;
  top: 443px;
  left: 45%;
}

.banner-landing .middle .mouse {
  width: 30px;
  height: 45px;
  border: 4px solid #ffffff;
  border-radius: 60px;
}

.banner-landing .middle .mouse::before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 30px;
  background: #ffffff;
  left: 27%;
  border-radius: 50%;
  opacity: 1;
  -webkit-animation: mouse 2s infinite;
          animation: mouse 2s infinite;
}

@-webkit-keyframes mouse {
  from {
    opacity: 1;
    top: 10px;
  }
  to {
    opacity: 0;
    top: 35px;
  }
}

@keyframes mouse {
  from {
    opacity: 1;
    top: 10px;
  }
  to {
    opacity: 0;
    top: 35px;
  }
}

@media (min-width: 768px) {
  .banner-landing .banner-wording {
    top: 110px;
    left: 50px;
  }
  .banner-landing .banner-wording img {
    width: 30%;
    display: initial;
  }
  .banner-landing .banner-wording h1 {
    font-size: 50px;
    text-align: left;
  }
  .banner-landing .banner-wording p {
    text-align: left;
    font-size: 22px;
    line-height: 1.2;
  }
  .banner-landing .banner-wording p span {
    display: block;
  }
  .banner-landing .banner-wording .btn-banner {
    float: left;
    font-size: 16px;
    left: 0;
    right: auto;
    top: 310px;
  }
  .banner-landing .middle {
    top: 510px;
    left: 50%;
  }
}

@media (min-width: 992px) {
  .banner-landing .banner-wording {
    top: 80px;
  }
  .banner-landing .banner-wording h1 {
    font-size: 70px;
  }
  .banner-landing .banner-wording p {
    font-size: 30px;
    padding-bottom: 30px;
  }
  .banner-landing .banner-wording .btn-banner {
    top: 360px;
  }
}

@media (min-width: 1200px) {
  .banner-landing {
    height: 100vh;
  }
  .banner-landing .banner-wording {
    left: 30px;
  }
  .banner-landing .banner-wording .btn-banner {
    top: 390px;
  }
  .banner-landing .middle {
    left: 50%;
  }
}

@media (min-width: 1440px) {
  .banner-landing .banner-wording {
    padding-top: 180px;
  }
  .banner-landing .banner-wording img {
    float: right;
    margin-top: -10px;
    width: 40%;
  }
  .banner-landing .banner-wording .btn-banner {
    top: 460px;
  }
  .banner-landing .middle {
    top: 800px;
  }
}

.first-section {
  position: relative;
  z-index: -1;
}

.first-section .bg-1 {
  display: none;
}

.first-section .bg-2 {
  display: none;
}

.first-section h2 {
  padding-top: 25px;
  padding-bottom: 25px;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
}

.first-section h2 span {
  display: block;
}

.first-section p {
  text-align: center;
  font-weight: 300;
  font-size: 16px;
}

.first-section .bg-mobile {
  margin-top: 25px;
  height: 270px;
  background: url("./../assets/fs-bg-2.png");
  background-size: cover;
}

.first-section .services .first {
  height: 386px;
  padding-top: 20px;
  padding-bottom: 20px;
  background: #ec0974;
  opacity: 0.8;
}

.first-section .services .first img {
  display: block;
  margin: 0 auto;
  height: 80px;
  margin-bottom: 20px;
}

.first-section .services .first h3 {
  text-align: center;
  color: #fff;
}

.first-section .services .first p {
  font-size: 14px;
  color: #fff;
}

.first-section .services .second {
  height: 386px;
  background: #8dc73f;
  padding-top: 20px;
  padding-bottom: 20px;
  opacity: 0.8;
}

.first-section .services .second img {
  display: block;
  margin: 0 auto;
  height: 80px;
  margin-bottom: 20px;
}

.first-section .services .second h3 {
  text-align: center;
  color: #fff;
}

.first-section .services .second p {
  font-size: 14px;
  color: #fff;
}

.first-section .services .third {
  height: 386px;
  background: #27aae2;
  padding-top: 20px;
  padding-bottom: 20px;
  opacity: 0.8;
}

.first-section .services .third img {
  display: block;
  margin: 0 auto;
  height: 80px;
  margin-bottom: 20px;
}

.first-section .services .third h3 {
  text-align: center;
  color: #fff;
}

.first-section .services .third p {
  font-size: 14px;
  color: #fff;
}

.first-section .services .fourth {
  height: 386px;
  background: #4b2f93;
  padding-top: 20px;
  padding-bottom: 20px;
  opacity: 0.8;
}

.first-section .services .fourth img {
  display: block;
  margin: 0 auto;
  height: 80px;
  margin-bottom: 20px;
}

.first-section .services .fourth h3 {
  text-align: center;
  color: #fff;
}

.first-section .services .fourth p {
  font-size: 14px;
  color: #fff;
}

@media (min-width: 768px) {
  .first-section .bg-mobile {
    background-position: center top 95%;
  }
}

@media (min-width: 992px) {
  .first-section .bg-1 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 50%;
    display: block;
  }
  .first-section .bg-2 {
    display: block;
    background: url("./../assets/fs-bg-2.png");
    background-repeat: no-repeat;
    background-position: center top 90%;
    background-size: cover;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 321px;
  }
  .first-section h2 {
    text-align: left;
    font-size: 30px;
    padding-bottom: 10px;
    padding-top: 20px;
  }
  .first-section p {
    font-size: 14px;
    text-align: left;
  }
  .first-section .services {
    margin-top: 25px;
  }
  .first-section .services .services-row .first,
  .first-section .services .services-row .second,
  .first-section .services .services-row .third,
  .first-section .services .services-row .fourth {
    height: 310px;
  }
  .first-section .services .services-row .first img,
  .first-section .services .services-row .second img,
  .first-section .services .services-row .third img,
  .first-section .services .services-row .fourth img {
    height: 50px;
  }
  .first-section .services .services-row .first h3,
  .first-section .services .services-row .second h3,
  .first-section .services .services-row .third h3,
  .first-section .services .services-row .fourth h3 {
    font-size: 16px;
    text-align: center;
  }
  .first-section .services .services-row .first p,
  .first-section .services .services-row .second p,
  .first-section .services .services-row .third p,
  .first-section .services .services-row .fourth p {
    font-size: 11px;
    text-align: center;
  }
}

@media (min-width: 1200px) {
  .first-section .bg-1 {
    height: 533px;
  }
  .first-section .bg-2 {
    height: 533px;
  }
  .first-section h2 {
    font-size: 60px;
  }
  .first-section p {
    font-size: 18px;
    font-weight: 300;
  }
  .first-section .services {
    margin-top: 65px;
  }
  .first-section .services .services-row .first,
  .first-section .services .services-row .second,
  .first-section .services .services-row .third,
  .first-section .services .services-row .fourth {
    height: 366px;
  }
  .first-section .services .services-row .first img,
  .first-section .services .services-row .second img,
  .first-section .services .services-row .third img,
  .first-section .services .services-row .fourth img {
    height: 70px;
  }
  .first-section .services .services-row .first h3,
  .first-section .services .services-row .second h3,
  .first-section .services .services-row .third h3,
  .first-section .services .services-row .fourth h3 {
    margin-bottom: 10px;
    margin-top: 0px;
    font-size: 20px;
  }
  .first-section .services .services-row .first p,
  .first-section .services .services-row .second p,
  .first-section .services .services-row .third p,
  .first-section .services .services-row .fourth p {
    font-size: 14px;
  }
}

@media (min-width: 1300px) {
  .first-section .services .services-row .first h3,
  .first-section .services .services-row .second h3,
  .first-section .services .services-row .third h3,
  .first-section .services .services-row .fourth h3 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .first-section .services .services-row .first p,
  .first-section .services .services-row .second p,
  .first-section .services .services-row .third p,
  .first-section .services .services-row .fourth p {
    font-size: 13px;
  }
}

@media (min-width: 1440px) {
  .first-section h2 {
    font-size: 60px;
  }
  .first-section p {
    font-size: 18px;
  }
  .first-section .services .services-row .first,
  .first-section .services .services-row .second,
  .first-section .services .services-row .third,
  .first-section .services .services-row .fourth {
    padding-top: 35px;
    height: 467px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .first-section .services .services-row .first img,
  .first-section .services .services-row .second img,
  .first-section .services .services-row .third img,
  .first-section .services .services-row .fourth img {
    height: 110px;
  }
  .first-section .services .services-row .first h3,
  .first-section .services .services-row .second h3,
  .first-section .services .services-row .third h3,
  .first-section .services .services-row .fourth h3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 25px;
    margin-top: 25px;
  }
  .first-section .services .services-row .first p,
  .first-section .services .services-row .second p,
  .first-section .services .services-row .third p,
  .first-section .services .services-row .fourth p {
    font-size: 15px;
    text-align: center;
  }
}

.second-section {
  background: #fff;
  position: relative;
  z-index: -1;
}

.second-section .bg-1,
.second-section .bg-2 {
  display: none;
}

.second-section h3 {
  padding-top: 25px;
  padding-bottom: 25px;
  font-weight: 700;
  font-size: 30px;
  text-align: center;
}

.second-section h3 span {
  display: block;
}

.second-section p {
  text-align: center;
  font-weight: 300;
  font-size: 16px;
}

.second-section .bg-mobile {
  margin-top: 25px;
  height: 270px;
  background: url("./../assets/community-bg.png");
  background-size: cover;
}

.third-section {
  background: #fff;
  position: relative;
  z-index: -1;
}

.third-section .bg-3,
.third-section .bg-4 {
  display: none;
}

.third-section h3 {
  padding-top: 25px;
  padding-bottom: 25px;
  font-weight: 700;
  font-size: 30px;
  text-align: center;
}

.third-section h3 span {
  display: block;
}

.third-section p {
  text-align: center;
  font-weight: 300;
  font-size: 16px;
}

.third-section .bg-mobile {
  margin-top: 25px;
  height: 270px;
  background: url("./../assets/communications-bg.png");
  background-size: cover;
}

.fourth-section {
  background: #fff;
  position: relative;
  z-index: -1;
}

.fourth-section .bg-1,
.fourth-section .bg-2 {
  display: none;
}

.fourth-section h3 {
  padding-top: 25px;
  padding-bottom: 25px;
  font-weight: 700;
  font-size: 30px;
  text-align: center;
}

.fourth-section h3 span {
  display: block;
}

.fourth-section p {
  text-align: center;
  font-weight: 300;
  font-size: 16px;
}

.fourth-section .bg-mobile {
  margin-top: 25px;
  height: 270px;
  background: url("./../assets/business-bg.png");
  background-size: cover;
}

.fifth-section {
  background: #fff;
  position: relative;
  z-index: -1;
}

.fifth-section .bg-3,
.fifth-section .bg-4 {
  display: none;
}

.fifth-section h3 {
  padding-top: 25px;
  padding-bottom: 25px;
  font-weight: 700;
  font-size: 30px;
  text-align: center;
}

.fifth-section h3 span {
  display: block;
}

.fifth-section p {
  text-align: center;
  font-weight: 300;
  font-size: 16px;
}

.fifth-section .bg-mobile {
  margin-top: 25px;
  height: 270px;
  background: url("./../assets/trade-show-bg.png");
  background-size: cover;
}

@media (min-width: 992px) {
  .second-section .bg-1 {
    display: block;
    background: url("./../assets/community-bg.png");
    background-repeat: no-repeat;
    background-position: center top 90%;
    background-size: cover;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 50%;
    display: block;
    height: 300px;
  }
  .second-section .bg-2 {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50%;
  }
  .second-section h3 {
    padding-bottom: 0;
    padding-top: 20px;
    font-size: 28px;
    text-align: left;
  }
  .second-section p {
    text-align: left;
    font-size: 14px;
  }
  .second-section .rigth {
    padding-top: 35px;
  }
  .second-section .rigth h3 {
    text-align: right;
  }
  .second-section .rigth p {
    text-align: right;
  }
  .third-section {
    margin-top: 20px;
  }
  .third-section .bg-3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
  }
  .third-section .bg-4 {
    display: block;
    background: url("./../assets/communications-bg.png");
    background-repeat: no-repeat;
    background-position: center top 90%;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    display: block;
    height: 300px;
  }
  .third-section h3 {
    padding-bottom: 0;
    padding-top: 60px;
    font-size: 28px;
    text-align: right;
  }
  .third-section p {
    text-align: right;
    font-size: 14px;
  }
  .fourth-section {
    margin-top: 70px;
  }
  .fourth-section .bg-1 {
    display: block;
    background: url("./../assets/business-bg.png");
    background-repeat: no-repeat;
    background-position: center top 90%;
    background-size: cover;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 50%;
    display: block;
    height: 300px;
  }
  .fourth-section .bg-2 {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50%;
  }
  .fourth-section h3 {
    padding-bottom: 0;
    padding-top: 20px;
    font-size: 28px;
    text-align: left;
  }
  .fourth-section p {
    text-align: left;
    font-size: 14px;
  }
  .fourth-section .rigth {
    padding-top: 35px;
  }
  .fourth-section .rigth h3 {
    text-align: right;
  }
  .fourth-section .rigth p {
    text-align: right;
  }
  .fifth-section {
    margin-top: 40px;
  }
  .fifth-section .bg-3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
  }
  .fifth-section .bg-4 {
    display: block;
    background: url("./../assets/trade-show-bg.png");
    background-repeat: no-repeat;
    background-position: center top 90%;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    display: block;
    height: 300px;
  }
  .fifth-section h3 {
    padding-bottom: 0;
    padding-top: 60px;
    font-size: 28px;
    text-align: right;
  }
  .fifth-section p {
    text-align: right;
    font-size: 14px;
  }
  .fifth-section .rigth {
    margin-bottom: 20px;
  }
}

@media (min-width: 1200px) {
  .second-section .bg-1 {
    height: 400px;
  }
  .second-section .left {
    padding-top: 20px;
  }
  .second-section .rigth {
    padding-top: 100px;
  }
  .third-section {
    margin-top: 100px;
  }
  .third-section .bg-4 {
    height: 400px;
  }
  .fourth-section {
    margin-top: 170px;
  }
  .fourth-section .bg-1 {
    height: 400px;
  }
  .fourth-section .left {
    padding-top: 20px;
  }
  .fourth-section .rigth {
    padding-top: 100px;
  }
  .fifth-section {
    margin-top: 120px;
    margin-top: 100px;
  }
  .fifth-section .bg-4 {
    height: 400px;
  }
  .fifth-section .rigth {
    margin-bottom: 120px;
  }
}

@media (min-width: 1440px) {
  .second-section .bg-1 {
    height: 450px;
  }
  .second-section .left {
    padding-top: 20px;
  }
  .second-section .rigth {
    padding-top: 100px;
  }
  .second-section h3 {
    font-size: 50px;
  }
  .second-section p {
    font-size: 16px;
  }
  .third-section {
    margin-top: 63px;
  }
  .third-section p {
    font-size: 16px;
  }
  .third-section h3 {
    font-size: 50px;
  }
  .third-section .bg-4 {
    height: 450px;
  }
  .fourth-section {
    margin-top: 162px;
  }
  .fourth-section .bg-1 {
    height: 450px;
  }
  .fourth-section .left {
    padding-top: 20px;
  }
  .fourth-section .rigth {
    padding-top: 100px;
  }
  .fourth-section h3 {
    font-size: 50px;
  }
  .fourth-section p {
    font-size: 16px;
  }
  .fifth-section {
    margin-top: 84px;
  }
  .fifth-section p {
    font-size: 16px;
  }
  .fifth-section h3 {
    font-size: 50px;
  }
  .fifth-section .bg-4 {
    height: 450px;
  }
  .fifth-section .rigth {
    margin-bottom: 85px;
  }
}
/*# sourceMappingURL=main.css.map */


@media(min-width: 768px){
  footer .footer-top .footer-bg .footer-wording ul{
    text-align: center;
      display: flex;
      flex-wrap: nowrap;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      list-style: none;
      padding-left: 0;
      padding-top: 25px;
  }
}

.banner-wording ul{
  display: flex;
  flex-direction: column;
  margin-top: -70px;
  list-style: none;
  align-items: flex-start;
  padding-bottom: 15px;
}

.banner-wording ul li{
  list-style: none;
}

.banner-wording ul li a{
  color: #fff;
}


@media(min-width: 768px){
  .banner-wording ul{
    display: flex;
    flex-direction: row;
    margin-top: -70px;
    list-style: none;
    align-items: flex-start;
    padding-bottom: 15px;
    padding-left: 0;
  }

  .banner-wording ul li{
    list-style: none;
    padding: 0 25px 0 0;
  }
}

@media(min-width: 992px){
  .banner-wording ul{
    margin-top: -40px;
  }

  .banner-wording ul li a{
    font-size: 16px;
  }
}


@media(min-width: 1440px){
  .banner-wording ul{
    position: absolute;
    top: 0;
  }
}