@font-face {
  font-family: "Expended";
  src: url("../fonts/Expanded-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Expended";
  src: url("../fonts/Expanded-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Expended";
  src: url("../fonts/Expanded-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

img {
  max-width: 100%;
}

.btn {
  background-color: #C0D2E6;
  color: #002D4A;
  border-radius: 27px;
  padding: 12px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  column-gap: 10px;
  transition: all 0.3s ease-in-out;
}
.btn:hover {
  background-color: #002D4A;
  color: #fff;
}

.btn-line {
  border: 1px solid #fff;
  background-color: transparent;
  border-radius: 27px;
  padding: 12px 15px;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.btn-line:hover {
  background-color: #fff;
  color: #002D4A;
}

.btn-line-blue {
  border: 1px solid #C0D2E6;
  background-color: transparent;
  border-radius: 27px;
  padding: 12px 15px;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #002D4A;
}
.btn-line-blue:hover {
  background-color: #002D4A;
  color: #fff;
}

.wpcf7-response-output {
  background-color: red;
  color: white;
  border-radius: 20px;
  border: 0px !important;
  font-size: 12px;
  padding: 10px 15px !important;
  text-align: center;
}

.wpcf7-not-valid-tip {
  font-size: 12px;
}

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

body {
  font-family: "Expended", sans-serif;
}
body .header {
  z-index: 500;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  transition: all 0.4s ease-in-out;
}
body .header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 25px;
  display: grid;
  grid-template-columns: 35% 1fr 15%;
  align-items: center;
  position: relative;
}
@media (min-width: 1200px) {
  body .header__container--logo .logo__container a img {
    max-width: 175px;
  }
}
body .header__container--nav {
  background-color: #fff;
  position: fixed;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease-in-out;
  top: -2000px;
  left: 0;
  height: 100%;
}
@media (min-width: 1200px) {
  body .header__container--nav {
    background-color: transparent;
    position: relative;
    top: 0;
    flex-direction: row;
  }
}
body .header__container--nav .nav__container {
  margin: 0;
  list-style: none;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (min-width: 1200px) {
  body .header__container--nav .nav__container {
    flex-direction: row;
    padding: 0px;
    column-gap: 35px;
  }
}
body .header__container--nav .nav__container > li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 0.3px solid rgba(0, 45, 74, 0.3);
  width: 60%;
  text-align: center;
}
@media (min-width: 1200px) {
  body .header__container--nav .nav__container > li {
    border-bottom: 0px;
    width: 100%;
    margin-bottom: 0px;
    padding-bottom: 0px;
  }
}
body .header__container--nav .nav__container > li > a {
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  color: #002D4A;
  text-decoration: none;
}
@media (min-width: 1200px) {
  body .header__container--nav .nav__container > li > a {
    color: #fff;
    display: inline-block;
    padding: 10px 0px;
  }
}
body .header__container--nav .nav__container > li:hover a {
  border-bottom: 1px solid #fff;
}
body .header__container--nav .nav__container > li > ul {
  display: none;
  list-style: none;
  padding: 0;
  margin: 15px 0px;
}
body .header__container--nav .nav__container > li > ul > li {
  padding-left: 15px;
  margin-bottom: 10px;
}
@media (min-width: 1200px) {
  body .header__container--nav .nav__container > li > ul > li {
    padding-left: 0px;
  }
}
body .header__container--nav .nav__container li.submenu {
  position: relative;
}
body .header__container--nav .nav__container li.submenu::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  margin-left: 10px;
  position: absolute;
  right: 20px;
  top: 4px;
  transition: all 0.4s ease-in-out;
}
@media (min-width: 1200px) {
  body .header__container--nav .nav__container li.submenu::after {
    right: -15px;
    top: 14px;
    color: #fff;
  }
}
@media (min-width: 1200px) {
  body .header__container--nav .nav__container li.submenu > ul {
    background-color: #fff;
    position: absolute;
    height: auto;
    top: 25px;
    min-width: 220px;
    padding: 20px 10px;
    border-radius: 20px;
  }
}
@media (min-width: 1200px) {
  body .header__container--nav .nav__container li.submenu > ul > li {
    border-bottom: 0.3px solid rgba(0, 45, 74, 0.3);
    padding-bottom: 10px;
  }
}
@media (min-width: 1200px) {
  body .header__container--nav .nav__container li.submenu > ul > li:last-child {
    border-bottom: 0px;
    padding-bottom: 0px;
  }
}
body .header__container--nav .nav__container li.submenu > ul > li a {
  color: #002D4A;
}
@media (min-width: 1200px) {
  body .header__container--nav .nav__container li.submenu > ul > li a {
    color: #002D4A;
    font-size: 14px;
    text-decoration: none;
  }
}
body .header__container--nav .nav__container li.submenu:hover > ul {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}
body .header__container--nav .nav__container li.submenu:hover::after {
  content: "\f106";
}
@media (min-width: 1200px) {
  body .header__container--nav .nav__container li.submenu:hover::after {
    color: #fff;
  }
}
body .header__container--nav .closeMenu {
  position: absolute;
  top: 20px;
  right: 30px;
}
@media (min-width: 1200px) {
  body .header__container--nav .closeMenu {
    display: none;
  }
}
body .header__container--nav .closeMenu i {
  font-size: 30px;
  color: #002D4A;
}
body .header__container--nav.show {
  top: 0;
}
body .header__container--btnMenu {
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 1200px) {
  body .header__container--btnMenu {
    display: none;
  }
}
body .header__container--action {
  display: flex;
  justify-content: flex-end;
}
body .header__container--action .action__container {
  display: flex;
  column-gap: 20px;
}
body .header__container--action .action__container--social a {
  color: #fff;
}
body .header__container--action .action__container--btn .btn__container a {
  background-color: #002D4A;
  color: #fff;
  padding: 8px 12px;
  border-radius: 23px;
  text-decoration: none;
  font-size: 14px;
}
body .header.scroll {
  background-color: #002D4A;
}
body .header.scroll .header__container {
  padding: 10px 25px;
}
body .header.scroll .header__container--action .action__container--btn .btn__container a {
  background-color: #fff;
  color: #002D4A;
  padding: 8px 12px;
  border-radius: 23px;
  text-decoration: none;
  font-size: 14px;
}
body .main {
  overflow: hidden;
}
body .main-home-hero-swiper .swiper-wrapper .swiper-slide {
  background-size: cover;
  background-position: center center;
  height: 100vh;
  position: relative;
}
@media (min-width: 1200px) {
  body .main-home-hero-swiper .swiper-wrapper .swiper-slide {
    min-height: 700px;
  }
}
body .main-home-hero-swiper .swiper-wrapper .swiper-slide-content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px 30px;
  position: relative;
  z-index: 100;
}
@media (min-width: 1200px) {
  body .main-home-hero-swiper .swiper-wrapper .swiper-slide-content .content-container-text {
    width: 60%;
    margin: 0px auto;
  }
}
body .main-home-hero-swiper .swiper-wrapper .swiper-slide-content .content-container-text h1 {
  text-align: center;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
}
@media (min-width: 1200px) {
  body .main-home-hero-swiper .swiper-wrapper .swiper-slide-content .content-container-text h1 {
    font-size: 55px;
  }
}
body .main-home-hero-swiper .swiper-wrapper .swiper-slide-content .content-container-text p {
  color: #fff;
  text-align: center;
  font-size: 14px;
  margin-top: 20px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1200px) {
  body .main-home-hero-swiper .swiper-wrapper .swiper-slide-content .content-container-text p {
    font-size: 16px;
    margin-top: 30px;
  }
}
body .main-home-hero-swiper .swiper-wrapper .swiper-slide-content .content-container-buttons {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 15px;
  justify-content: center;
}
@media (min-width: 1200px) {
  body .main-home-hero-swiper .swiper-wrapper .swiper-slide-content .content-container-buttons {
    width: 40%;
    margin: 50px auto;
  }
}
body .main-home-hero-swiper .swiper-wrapper .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
body .main-home-skills {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 30px 30px;
}
@media (min-width: 1200px) {
  body .main-home-skills .skills-container {
    border-bottom: 0.3px solid #C0D2E6;
    padding-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  body .main-home-skills .skills-container-item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
body .main-home-skills .skills-container-item .item-container {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 0.3px solid #C0D2E6;
}
@media (min-width: 1200px) {
  body .main-home-skills .skills-container-item .item-container {
    border-bottom: 0px;
  }
}
@media (min-width: 1200px) {
  body .main-home-skills .skills-container-item .item-container:nth-child(2) {
    border-left: 0.3px solid #C0D2E6;
    border-right: 0.3px solid #C0D2E6;
  }
}
@media (min-width: 1200px) {
  body .main-home-skills .skills-container-item .item-container {
    padding: 0px 60px 20px;
    margin-bottom: 0px;
  }
}
body .main-home-skills .skills-container-item .item-container-content .title-container {
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin-bottom: 15px;
}
body .main-home-skills .skills-container-item .item-container-content .title-container h3 {
  color: #002D4A;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 0;
}
body .main-home-skills .skills-container-item .item-container-content .text-container p {
  font-size: 14px;
  color: #7A7A7A;
  line-height: 1.8;
}
body .main-home-company {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 30px 50px;
}
@media (min-width: 1200px) {
  body .main-home-company {
    padding: 60px 30px;
  }
}
@media (min-width: 1200px) {
  body .main-home-company .company-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    column-gap: 80px;
  }
}
body .main-home-company .company-container-left {
  margin-bottom: 40px;
}
body .main-home-company .company-container-left .left-container-content h3 {
  font-size: 14px;
  color: #002D4A;
  margin-bottom: 20px;
  font-weight: 400;
}
body .main-home-company .company-container-left .left-container-content h2 {
  color: #1D5277;
  font-weight: 900;
  font-size: 30px;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  body .main-home-company .company-container-left .left-container-content h2 {
    font-size: 42px;
  }
}
body .main-home-company .company-container-left .left-container-content p {
  color: #7A7A7A;
  font-weight: 400;
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 20px;
}
body .main-home-company .company-container-left .left-container-content a {
  display: inline-flex;
}
@media (min-width: 1200px) {
  body .main-home-company .company-container-left .left-container-content a {
    padding: 15px 20px;
  }
}
body .main-home-values {
  max-width: 1200px;
  margin: 0 auto;
}
body .main-home-values .values-container {
  padding: 30px 30px 50px;
}
@media (min-width: 1200px) {
  body .main-home-values .values-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
body .main-home-values .values-container-item {
  padding: 25px 20px;
  border-bottom: 0.3px solid #C0D2E6;
}
@media (min-width: 1200px) {
  body .main-home-values .values-container-item {
    border-bottom: 0px;
    border-top: 0.3px solid #C0D2E6;
    padding: 30px 40px;
    margin-bottom: 0px;
  }
}
body .main-home-values .values-container-item img {
  margin-bottom: 15px;
}
body .main-home-values .values-container-item h3 {
  font-size: 18px;
  font-weight: 900;
  color: #1D5277;
  margin-bottom: 15px;
}
body .main-home-values .values-container-item p {
  color: #7A7A7A;
  font-weight: 400;
  line-height: 1.8;
  font-size: 14px;
}
@media (min-width: 1200px) {
  body .main-home-values .values-container-item:nth-child(2) {
    border-left: 0.3px solid #C0D2E6;
    border-right: 0.3px solid #C0D2E6;
  }
}
body .main-home-values .values-container-item.number {
  padding: 30px 40px;
}
@media (min-width: 1200px) {
  body .main-home-values .values-container-item.number {
    padding: 50px 70px;
  }
}
body .main-home-values .values-container-item.number h3 {
  font-size: 60px;
}
body .main-home-services .services-container-title {
  background-color: rgba(192, 210, 230, 0.15);
}
body .main-home-services .services-container-title .title-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 30px 100px;
}
@media (min-width: 1200px) {
  body .main-home-services .services-container-title .title-container {
    padding: 80px 30px 200px;
  }
}
body .main-home-services .services-container-title .title-container h2 {
  color: #002D4A;
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  body .main-home-services .services-container-title .title-container h2 {
    font-size: 40px;
    margin-bottom: 30px;
  }
}
body .main-home-services .services-container-title .title-container p {
  color: #7A7A7A;
  font-weight: 400;
  line-height: 1.8;
  font-size: 14px;
}
@media (min-width: 1200px) {
  body .main-home-services .services-container-title .title-container p {
    font-size: 16px;
  }
}
body .main-home-services .services-container-blocks {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 30px;
  margin-top: -80px;
}
@media (min-width: 1200px) {
  body .main-home-services .services-container-blocks {
    margin-top: -150px;
  }
}
@media (min-width: 1200px) {
  body .main-home-services .services-container-blocks .blocks-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    row-gap: 20px;
  }
}
body .main-home-services .services-container-blocks .blocks-container-item {
  padding: 40px 35px;
  border: 0.3px solid #A8A8A8;
  border-radius: 20px;
  background-color: #fff;
  transition: all 0.3s;
  margin-bottom: 30px;
  text-decoration: none;
}
body .main-home-services .services-container-blocks .blocks-container-item .item-container-icon {
  margin-bottom: 20px;
}
body .main-home-services .services-container-blocks .blocks-container-item .item-container-icon svg path {
  fill: #c0d2e6;
  stroke: #c0d2e6;
}
body .main-home-services .services-container-blocks .blocks-container-item .item-container h3 {
  color: #1D5277;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 15px;
}
body .main-home-services .services-container-blocks .blocks-container-item .item-container p {
  color: #7A7A7A;
  font-weight: 400;
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 20px;
}
body .main-home-services .services-container-blocks .blocks-container-item .item-container-arrow {
  transition: all 0.3s;
}
body .main-home-services .services-container-blocks .blocks-container-item .item-container-arrow svg path {
  fill: #c0d2e6;
}
body .main-home-services .services-container-blocks .blocks-container-item:hover {
  background-color: #002D4A;
}
body .main-home-services .services-container-blocks .blocks-container-item:hover .item-container-icon {
  margin-bottom: 20px;
}
body .main-home-services .services-container-blocks .blocks-container-item:hover .item-container-icon svg path {
  fill: #fff;
  stroke: #fff;
}
body .main-home-services .services-container-blocks .blocks-container-item:hover .item-container h3, body .main-home-services .services-container-blocks .blocks-container-item:hover .item-container p {
  color: #fff;
}
body .main-home-services .services-container-blocks .blocks-container-item:hover .item-container-arrow {
  transform: translateX(10px);
}
body .main-home-services .services-container-blocks .blocks-container-item:hover .item-container-arrow svg path {
  fill: #fff;
}
body .main-home-testimonials {
  background-color: rgba(192, 210, 230, 0.15);
}
body .main-home-testimonials .testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 30px;
}
@media (min-width: 1200px) {
  body .main-home-testimonials .testimonials-container {
    display: grid;
    grid-template-columns: 1fr 55%;
    column-gap: 100px;
  }
}
body .main-home-testimonials .testimonials-container-left {
  margin-bottom: 60px;
}
body .main-home-testimonials .testimonials-container-left .left-container-subtitle {
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  body .main-home-testimonials .testimonials-container-left .left-container-subtitle {
    margin-bottom: 20px;
  }
}
body .main-home-testimonials .testimonials-container-left .left-container-subtitle h3 {
  font-size: 14px;
  color: #002D4A;
  font-weight: 400;
}
body .main-home-testimonials .testimonials-container-left .left-container-title {
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  body .main-home-testimonials .testimonials-container-left .left-container-title {
    margin-bottom: 40px;
  }
}
body .main-home-testimonials .testimonials-container-left .left-container-title h2 {
  font-size: 35px;
  color: #1D5277;
  font-weight: 900;
}
@media (min-width: 1200px) {
  body .main-home-testimonials .testimonials-container-left .left-container-title h2 {
    font-size: 42px;
  }
}
body .main-home-testimonials .testimonials-container-left .left-container-pagination {
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  body .main-home-testimonials .testimonials-container-left .left-container-pagination {
    margin-bottom: 40px;
  }
}
body .main-home-testimonials .testimonials-container-left .left-container-pagination .pagination-container {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
body .main-home-testimonials .testimonials-container-left .left-container-pagination .pagination-container-right .right-container-numbers .current {
  font-size: 20px;
  color: #002D4A;
}
body .main-home-testimonials .testimonials-container-left .left-container-pagination .pagination-container-right .right-container-numbers .total {
  font-size: 20px;
  color: #C0D2E6;
}
body .main-home-testimonials .testimonials-container-left .left-container-pagination .pagination-container-right .right-container-numbers .separator {
  font-size: 20px;
  color: #002D4A;
}
body .main-home-testimonials .testimonials-container-left .left-container-arrows .arrows-container {
  display: flex;
  column-gap: 20px;
  justify-content: flex-start;
}
body .main-home-testimonials .testimonials-container-left .left-container-arrows .arrows-container-prev i, body .main-home-testimonials .testimonials-container-left .left-container-arrows .arrows-container-next i {
  font-size: 25px;
  color: #C0D2E6;
}
body .main-home-testimonials .testimonials-container-right .right-container-swiper .swiper-wrapper .swiper-slide-content-text {
  margin-bottom: 30px;
}
body .main-home-testimonials .testimonials-container-right .right-container-swiper .swiper-wrapper .swiper-slide-content-text p {
  color: #7A7A7A;
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 1200px) {
  body .main-home-testimonials .testimonials-container-right .right-container-swiper .swiper-wrapper .swiper-slide-content-who {
    margin-top: 70px;
  }
}
body .main-home-testimonials .testimonials-container-right .right-container-swiper .swiper-wrapper .swiper-slide-content-who .who-container {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
body .main-home-testimonials .testimonials-container-right .right-container-swiper .swiper-wrapper .swiper-slide-content-who .who-container-left .left-container {
  display: flex;
  column-gap: 15px;
}
body .main-home-testimonials .testimonials-container-right .right-container-swiper .swiper-wrapper .swiper-slide-content-who .who-container-left .left-container-social i {
  font-size: 32px;
  color: #002D4A;
}
body .main-home-testimonials .testimonials-container-right .right-container-swiper .swiper-wrapper .swiper-slide-content-who .who-container-left .left-container-data h3 {
  font-size: 16px;
  font-weight: 400;
}
body .main-home-testimonials .testimonials-container-right .right-container-swiper .swiper-wrapper .swiper-slide-content-who .who-container-left .left-container-data p {
  font-size: 11px;
}
body .main-home-testimonials .testimonials-container-right .right-container-swiper .swiper-wrapper .swiper-slide-content-who .who-container-right .right-container img {
  width: 32px;
}
body .main-home-partners {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 30px;
}
body .main-home-partners .partners-container-title {
  margin-bottom: 20px;
}
body .main-home-partners .partners-container-title h2 {
  font-size: 25px;
  color: #002D4A;
  font-weight: 900;
  margin-bottom: 0;
  text-align: center;
}
@media (min-width: 1200px) {
  body .main-home-partners .partners-container-title h2 {
    font-size: 40px;
  }
}
body .main-home-partners .partners-container-swiper .swiper-wrapper .swiper-slide-content {
  cursor: pointer;
}
body .main-home-partners .partners-container-swiper .swiper-wrapper .swiper-slide-content img {
  max-width: 150px;
  transition: all 0.4s ease-in-out;
  filter: grayscale(100%);
}
body .main-home-partners .partners-container-swiper .swiper-wrapper .swiper-slide-content:hover img {
  filter: grayscale(0%);
}
body .main-contact-cover {
  background-position: center center;
  background-size: cover;
  height: 240px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1200px) {
  body .main-contact-cover {
    height: 340px;
  }
}
body .main-contact-cover .cover-container {
  text-align: center;
  position: relative;
  z-index: 100;
}
body .main-contact-cover .cover-container-submenu {
  color: #fff;
  margin-bottom: 20px;
}
body .main-contact-cover .cover-container-submenu p {
  font-weight: 400;
  font-size: 13px;
}
body .main-contact-cover .cover-container-title h1 {
  color: #fff;
  font-weight: 900;
}
@media (min-width: 1200px) {
  body .main-contact-cover .cover-container-title h1 {
    font-size: 65px;
  }
}
body .main-contact-cover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
body .main-contact-form {
  padding: 50px 30px;
}
body .main-contact-form .form-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 30px;
  background-color: rgba(192, 210, 230, 0.15);
  border-radius: 13px;
}
@media (min-width: 1200px) {
  body .main-contact-form .form-container {
    padding: 50px 60px;
  }
}
body .main-contact-form .form-container-subtitle {
  margin-bottom: 15px;
}
body .main-contact-form .form-container-subtitle p {
  font-size: 12px;
  font-weight: 400;
  color: #C0D2E6;
}
@media (min-width: 1200px) {
  body .main-contact-form .form-container-subtitle p {
    font-size: 14px;
  }
}
body .main-contact-form .form-container-title {
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  body .main-contact-form .form-container-title {
    margin-bottom: 40px;
  }
}
body .main-contact-form .form-container-title h2 {
  font-size: 18px;
  font-weight: 900;
  color: #002D4A;
}
@media (min-width: 1200px) {
  body .main-contact-form .form-container-title h2 {
    font-size: 33px;
  }
}
body .main-contact-form .form-container form {
  margin-top: 30px;
}
@media (min-width: 1200px) {
  body .main-contact-form .form-container form .inputs-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 25px;
    row-gap: 25px;
  }
}
body .main-contact-form .form-container form .inputs-container-left .form-group {
  margin-bottom: 15px;
}
body .main-contact-form .form-container form .inputs-container-left .form-group input[type=text],
body .main-contact-form .form-container form .inputs-container-left .form-group input[type=email],
body .main-contact-form .form-container form .inputs-container-left .form-group input[type=tel] {
  border-radius: 7px;
  background-color: #fff;
  border: 0.3px solid #C0D2E6;
  height: 60px;
  padding: 0px 10px;
  width: 100%;
  color: rgba(0, 45, 74, 0.5);
  font-family: "Expended", sans-serif;
  font-size: 12px;
}
body .main-contact-form .form-container form .inputs-container-left .form-group input[type=text]::placeholder,
body .main-contact-form .form-container form .inputs-container-left .form-group input[type=email]::placeholder,
body .main-contact-form .form-container form .inputs-container-left .form-group input[type=tel]::placeholder {
  color: rgba(0, 45, 74, 0.5);
}
body .main-contact-form .form-container form .inputs-container-right .form-group {
  margin-bottom: 15px;
}
body .main-contact-form .form-container form .inputs-container-right .form-group input[type=text],
body .main-contact-form .form-container form .inputs-container-right .form-group input[type=email],
body .main-contact-form .form-container form .inputs-container-right .form-group input[type=tel] {
  border-radius: 7px;
  background-color: #fff;
  border: 0.3px solid #C0D2E6;
  height: 60px;
  padding: 0px 10px;
  width: 100%;
  color: rgba(0, 45, 74, 0.5);
  font-family: "Expended", sans-serif;
  font-size: 12px;
}
body .main-contact-form .form-container form .inputs-container-right .form-group input[type=text]::placeholder,
body .main-contact-form .form-container form .inputs-container-right .form-group input[type=email]::placeholder,
body .main-contact-form .form-container form .inputs-container-right .form-group input[type=tel]::placeholder {
  color: rgba(0, 45, 74, 0.5);
}
body .main-contact-form .form-container form .inputs-container-right .form-group select {
  border-radius: 7px;
  background-color: #fff;
  border: 0.3px solid #C0D2E6;
  height: 60px;
  padding: 0px 10px;
  width: 100%;
  color: rgba(0, 45, 74, 0.5);
  font-family: "Expended", sans-serif;
  font-size: 12px;
}
body .main-contact-form .form-container form .inputs-container-right .form-group select::placeholder {
  color: rgba(0, 45, 74, 0.5);
}
body .main-contact-form .form-container form .inputs-container-right .form-group textarea {
  border-radius: 7px;
  background-color: #fff;
  border: 0.3px solid #C0D2E6;
  padding: 10px 10px;
  width: 100%;
  height: 150px;
  font-family: "Expended", sans-serif;
  font-size: 12px;
}
@media (min-width: 1200px) {
  body .main-contact-form .form-container form .inputs-container-right .form-group textarea {
    height: 136px;
  }
}
body .main-contact-form .form-container form .inputs-container-right .form-group textarea::placeholder {
  color: rgba(0, 45, 74, 0.5);
}
body .main-contact-form .form-container form input[type=submit] {
  background-color: #C0D2E6;
  color: #002D4A;
  border-radius: 27px;
  padding: 12px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  column-gap: 10px;
  transition: all 0.3s ease-in-out;
  width: 100%;
  border-radius: 5px;
  background-color: #002D4A;
  color: #fff;
  border: 0px;
  font-size: 14px;
}
body .main-contact-form .form-container form input[type=submit]:hover {
  background-color: #002D4A;
  color: #fff;
}
@media (min-width: 1200px) {
  body .main-contact-form .form-container form input[type=submit] {
    height: 65px;
  }
}
body .main-contact-form .form-container form input[type=submit]:hover {
  background-color: #C0D2E6;
  color: #002D4A;
}
body .main-contact-map {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 30px;
}
body .main-contact-map .map-container-subtitle {
  margin-bottom: 20px;
}
body .main-contact-map .map-container-subtitle p {
  color: #9FC0E5;
  font-size: 12px;
  font-weight: 400;
}
body .main-contact-map .map-container-title {
  margin-bottom: 30px;
}
body .main-contact-map .map-container-title h3 {
  font-size: 22px;
  font-weight: 900;
  color: #002D4A;
}
@media (min-width: 1200px) {
  body .main-contact-map .map-container-title h3 {
    font-size: 33px;
  }
}
@media (min-width: 1200px) {
  body .main-contact-map .map-container-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 60px;
  }
}
body .main-contact-map .map-container-items .map-container-item .item-container {
  margin-bottom: 50px;
}
body .main-contact-map .map-container-items .map-container-item .item-container-iframe iframe {
  border-radius: 10px;
  height: 267px;
  width: 100%;
}
body .main-contact-map .map-container-items .map-container-item .item-container-icon {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
body .main-contact-map .map-container-items .map-container-item .item-container-text {
  margin-top: 15px;
  text-align: center;
}
body .main-contact-map .map-container-items .map-container-item .item-container-text p {
  font-size: 12px;
  color: #7A7A7A;
  line-height: 1.8;
}
body .main-about-cover {
  background-position: center center;
  background-size: cover;
  height: 240px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1200px) {
  body .main-about-cover {
    height: 340px;
  }
}
body .main-about-cover .cover-container {
  text-align: center;
  position: relative;
  z-index: 100;
}
body .main-about-cover .cover-container-submenu {
  color: #fff;
  margin-bottom: 20px;
}
body .main-about-cover .cover-container-submenu p {
  font-weight: 400;
  font-size: 13px;
}
body .main-about-cover .cover-container-title h1 {
  color: #fff;
  font-weight: 900;
}
@media (min-width: 1200px) {
  body .main-about-cover .cover-container-title h1 {
    font-size: 65px;
  }
}
body .main-about-cover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
body .main-about-about .about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 30px 25px;
}
@media (min-width: 1200px) {
  body .main-about-about .about-container {
    padding: 80px 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    column-gap: 50px;
  }
}
@media (min-width: 1200px) {
  body .main-about-about .about-container-left {
    order: 2;
  }
}
body .main-about-about .about-container-left .left-container-subtitle {
  margin-bottom: 15px;
}
body .main-about-about .about-container-left .left-container-subtitle p {
  font-size: 12px;
  font-weight: 400;
  color: #C0D2E6;
}
body .main-about-about .about-container-left .left-container-title {
  margin-bottom: 15px;
}
body .main-about-about .about-container-left .left-container-title h2 {
  color: #1D5277;
  font-weight: 900;
  font-size: 30px;
}
@media (min-width: 1200px) {
  body .main-about-about .about-container-left .left-container-title h2 {
    font-size: 42px;
  }
}
body .main-about-about .about-container-left .left-container-text p {
  color: #7A7A7A;
  font-weight: 400;
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 20px;
}
body .main-about-about .about-container-right {
  margin-top: 50px;
}
@media (min-width: 1200px) {
  body .main-about-about .about-container-right {
    margin-top: 0px;
  }
}
body .main-about-skills .skills-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px 30px;
}
body .main-about-skills .skills-container .skills-container-top {
  padding-top: 50px;
  border-top: 0.3px solid #C0D2E6;
}
@media (min-width: 1200px) {
  body .main-about-skills .skills-container .skills-container-top {
    padding-top: 0px;
  }
}
body .main-about-skills .skills-container .skills-container-top .top-container {
  border-bottom: 0.3px solid #C0D2E6;
}
@media (min-width: 1200px) {
  body .main-about-skills .skills-container .skills-container-top .top-container {
    border-bottom: 0px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 100px;
  }
}
body .main-about-skills .skills-container .skills-container-top .top-container .top-container-item {
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  body .main-about-skills .skills-container .skills-container-top .top-container .top-container-item {
    margin-bottom: 0px;
    padding: 50px 0px;
  }
}
@media (min-width: 1200px) {
  body .main-about-skills .skills-container .skills-container-top .top-container .top-container-item:nth-child(1) {
    border-right: 0.3px solid #C0D2E6;
  }
}
body .main-about-skills .skills-container .skills-container-top .top-container .top-container-item .item-container .item-container-title {
  margin-bottom: 20px;
}
body .main-about-skills .skills-container .skills-container-top .top-container .top-container-item .item-container .item-container-title h3 {
  color: #002D4A;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 0;
}
body .main-about-skills .skills-container .skills-container-top .top-container .top-container-item .item-container .item-container-list ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
body .main-about-skills .skills-container .skills-container-top .top-container .top-container-item .item-container .item-container-list ul li {
  font-size: 14px;
  color: #7A7A7A;
  line-height: 1.8;
  display: flex;
  column-gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}
body .main-about-skills .skills-container .skills-container-top .top-container .top-container-item .item-container .item-container-list ul li i {
  font-size: 12px;
}
body .main-about-skills .skills-container .skills-container-top .top-container .top-container-item .item-container .item-container-list ul li span {
  color: #7A7A7A;
  font-weight: 400;
  line-height: 1.2;
  font-size: 14px;
}
body .main-about-skills .skills-container .skills-container-bottom {
  padding-top: 25px;
}
@media (min-width: 1200px) {
  body .main-about-skills .skills-container .skills-container-bottom {
    padding-top: 0px;
  }
}
@media (min-width: 1200px) {
  body .main-about-skills .skills-container .skills-container-bottom .bottom-container .bottom-container-values .values-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 0.3px solid #C0D2E6;
  }
}
body .main-about-skills .skills-container .skills-container-bottom .bottom-container .bottom-container-values .values-container-item {
  padding: 25px 0px;
  border-bottom: 0.3px solid #C0D2E6;
}
@media (min-width: 1200px) {
  body .main-about-skills .skills-container .skills-container-bottom .bottom-container .bottom-container-values .values-container-item {
    border-bottom: 0px;
    border-top: 0.3px solid #C0D2E6;
    padding: 30px 40px;
    margin-bottom: 0px;
  }
}
body .main-about-skills .skills-container .skills-container-bottom .bottom-container .bottom-container-values .values-container-item img {
  margin-bottom: 15px;
}
body .main-about-skills .skills-container .skills-container-bottom .bottom-container .bottom-container-values .values-container-item h3 {
  font-size: 18px;
  font-weight: 900;
  color: #1D5277;
  margin-bottom: 15px;
}
body .main-about-skills .skills-container .skills-container-bottom .bottom-container .bottom-container-values .values-container-item p {
  color: #7A7A7A;
  font-weight: 400;
  line-height: 1.8;
  font-size: 14px;
}
@media (min-width: 1200px) {
  body .main-about-skills .skills-container .skills-container-bottom .bottom-container .bottom-container-values .values-container-item:nth-child(2) {
    border-left: 0.3px solid #C0D2E6;
    border-right: 0.3px solid #C0D2E6;
  }
}
body .main-about-skills .skills-container .skills-container-bottom .bottom-container .bottom-container-values .values-container-item.number {
  padding: 30px 40px;
}
@media (min-width: 1200px) {
  body .main-about-skills .skills-container .skills-container-bottom .bottom-container .bottom-container-values .values-container-item.number {
    padding: 50px 70px;
  }
}
body .main-about-skills .skills-container .skills-container-bottom .bottom-container .bottom-container-values .values-container-item.number h3 {
  font-size: 60px;
}
body .main-about-history .history-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px 30px;
}
body .main-about-history .history-container-title .title-container-subtitle {
  margin-bottom: 15px;
}
body .main-about-history .history-container-title .title-container-subtitle p {
  font-size: 12px;
  font-weight: 400;
  color: #002D4A;
}
body .main-about-history .history-container-title .title-container-title {
  margin-bottom: 30px;
}
body .main-about-history .history-container-title .title-container-title h2 {
  color: #1D5277;
  font-weight: 900;
  font-size: 30px;
}
@media (min-width: 1200px) {
  body .main-about-history .history-container-title .title-container-title h2 {
    font-size: 42px;
  }
}
body .main-about-history .history-container-video {
  height: 290px;
  background-size: cover;
  background-position: center center;
  border-radius: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .main-about-history .history-container-text {
  margin-top: 40px;
}
body .main-about-history .history-container-text p {
  color: #7A7A7A;
  font-weight: 400;
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 20px;
}
body .main-about-team .team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px 30px;
}
body .main-about-team .team-container-title {
  margin-bottom: 50px;
}
body .main-about-team .team-container-title h2 {
  color: #002D4A;
  font-weight: 900;
  font-size: 30px;
}
@media (min-width: 1200px) {
  body .main-about-team .team-container-title h2 {
    font-size: 42px;
  }
}
body .main-about-team .team-container-member {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  row-gap: 20px;
}
@media (min-width: 1200px) {
  body .main-about-team .team-container-member {
    grid-template-columns: repeat(4, 1fr);
  }
}
body .main-about-team .team-container-member .member-container {
  border: 0.3px solid #D2D2D2;
  border-radius: 16px;
  overflow: hidden;
}
body .main-about-team .team-container-member .member-container-img img {
  object-fit: cover;
}
body .main-about-team .team-container-member .member-container-text {
  padding: 15px 10px;
}
body .main-about-team .team-container-member .member-container-text h3 {
  text-align: center;
  font-size: 11px;
  color: #002D4A;
}
body .main-about-team .team-container-member .member-container-text p {
  font-size: 10px;
  color: #7A7A7A;
  text-align: center;
}
body .main-about-partners {
  background-color: rgba(192, 210, 230, 0.15);
  padding: 60px 0px;
}
body .main-about-partners .partners-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 30px;
}
body .main-about-partners .partners-container-title {
  margin-bottom: 20px;
}
body .main-about-partners .partners-container-title h2 {
  color: #002D4A;
  font-weight: 900;
  font-size: 28px;
  text-align: center;
}
@media (min-width: 1200px) {
  body .main-about-partners .partners-container-title h2 {
    font-size: 42px;
  }
}
body .main-about-partners .partners-container-subtitle {
  margin-bottom: 20px;
}
body .main-about-partners .partners-container-subtitle p {
  color: #7A7A7A;
  font-weight: 400;
  line-height: 1.8;
  font-size: 14px;
  text-align: center;
}
body .main-about-partners .partners-container-swiper .swiper-wrapper .swiper-slide-content {
  cursor: pointer;
}
body .main-about-partners .partners-container-swiper .swiper-wrapper .swiper-slide-content img {
  max-width: 150px;
  transition: all 0.4s ease-in-out;
  filter: grayscale(100%);
}
body .main-about-partners .partners-container-swiper .swiper-wrapper .swiper-slide-content:hover img {
  filter: grayscale(0%);
}
body .main-about-contact .contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 30px;
}
body .main-about-contact .contact-container-title h3 {
  color: #002D4A;
  font-weight: 900;
  font-size: 18px;
  text-align: center;
}
@media (min-width: 1200px) {
  body .main-about-contact .contact-container-title h3 {
    font-size: 32px;
    text-align: left;
  }
}
body .main-about-contact .contact-container-button {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
@media (min-width: 1200px) {
  body .main-about-contact .contact-container-button {
    justify-content: flex-start;
  }
}
body .main-about-contact .contact-container-button a {
  border: 1px solid #C0D2E6;
  background-color: transparent;
  border-radius: 27px;
  padding: 12px 15px;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #002D4A;
  display: inline-flex;
  column-gap: 10px;
  font-size: 11px;
  padding: 15px 30px;
}
body .main-about-contact .contact-container-button a:hover {
  background-color: #002D4A;
  color: #fff;
}
body .main-about-contact .contact-container-button a i {
  transition: all 0.3s ease-in-out;
}
body .main-about-contact .contact-container-button a:hover i {
  transform: translateX(5px);
}
body .main-service-cover {
  background-position: center center;
  background-size: cover;
  height: 240px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1200px) {
  body .main-service-cover {
    height: 340px;
  }
}
body .main-service-cover .cover-container {
  text-align: center;
  position: relative;
  z-index: 100;
}
body .main-service-cover .cover-container-submenu {
  color: #fff;
  margin-bottom: 20px;
}
body .main-service-cover .cover-container-submenu p {
  font-weight: 400;
  font-size: 13px;
}
body .main-service-cover .cover-container-title h1 {
  color: #fff;
  font-weight: 900;
}
@media (min-width: 1200px) {
  body .main-service-cover .cover-container-title h1 {
    font-size: 65px;
  }
}
body .main-service-cover .cover-container-description {
  margin-top: 30px;
}
body .main-service-cover .cover-container-description p {
  color: #fff;
}
body .main-service-cover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
body .main-service-content {
  padding: 50px 0px;
}
body .main-service-content .content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 30px;
  border-bottom: 0.3px solid #C0D2E6;
  padding-bottom: 30px;
}
body .main-service-content .content-container-title {
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  body .main-service-content .content-container-title {
    margin-bottom: 50px;
  }
}
body .main-service-content .content-container-title h3 {
  font-size: 28px;
  color: #1D5277;
  font-weight: 900;
}
@media (min-width: 1200px) {
  body .main-service-content .content-container-title h3 {
    font-size: 45px;
  }
}
body .main-service-content .content-container-image {
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  body .main-service-content .content-container-image {
    margin-bottom: 50px;
  }
}
body .main-service-content .content-container-text {
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  body .main-service-content .content-container-text {
    margin-bottom: 50px;
  }
}
body .main-service-content .content-container-text p {
  color: #7A7A7A;
  font-weight: 400;
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 20px;
}
body .main-service-bottom .bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 30px 50px;
}
body .main-service-bottom .bottom-container-title {
  margin-bottom: 30px;
}
body .main-service-bottom .bottom-container-title h4 {
  font-size: 24px;
  color: #1D5277;
}
body .main-service-bottom .bottom-container-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body .main-service-bottom .bottom-container-list ul li {
  margin-bottom: 15px;
}
body .main-service-bottom .bottom-container-list ul li i {
  font-size: 12px;
  color: #7A7A7A;
}
body .main-service-bottom .bottom-container-list ul li span {
  color: #7A7A7A;
  font-weight: 400;
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 20px;
}
body .footer {
  background-color: #002D4A;
  position: relative;
}
body .footer-logo {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 30px 20px;
  display: block;
}
@media (min-width: 1200px) {
  body .footer-logo {
    display: none;
  }
}
body .footer-logo .logo-container a img {
  max-width: 200px;
}
body .footer-logo .logo-container span {
  display: block;
  color: #fff;
  font-size: 10px;
  padding-left: 12px;
}
body .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 30px 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1200px) {
  body .footer-container {
    padding: 50px 30px;
  }
}
body .footer-container-left {
  margin-bottom: 40px;
}
@media (min-width: 1200px) {
  body .footer-container-left .left-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
body .footer-container-left .left-container-logo {
  margin-bottom: 30px;
  display: none;
}
@media (min-width: 1200px) {
  body .footer-container-left .left-container-logo {
    display: block;
  }
}
body .footer-container-left .left-container-logo .logo-container a img {
  max-width: 200px;
}
body .footer-container-left .left-container-logo .logo-container span {
  display: block;
  color: #fff;
  font-size: 10px;
  padding-left: 12px;
}
body .footer-container-left .left-container-nav .nav-container h3 {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
body .footer-container-left .left-container-nav .nav-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body .footer-container-left .left-container-nav .nav-container ul li {
  margin-bottom: 5px;
}
body .footer-container-left .left-container-nav .nav-container ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
}
body .footer-container-right .right-container-nav h3 {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (min-width: 1200px) {
  body .footer-container-right .right-container-nav .nav-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
body .footer-container-right .right-container-nav .nav-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body .footer-container-right .right-container-nav .nav-container ul li {
  margin-bottom: 5px;
}
body .footer-container-right .right-container-nav .nav-container ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
}
body .footer-container-right .right-container-nav .linkedin-container {
  margin-top: 20px;
}
body .footer-container-right .right-container-nav .linkedin-container a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
}
@media (min-width: 1200px) {
  body .footer-container-right .right-container-nav .linkedin-container a {
    justify-content: flex-end;
  }
}
body .footer-container-right .right-container-nav .linkedin-container a img {
  margin-right: 10px;
}
body .footer-copy .copy-container {
  max-width: 1200px;
  margin: 0 auto;
  margin: 30px auto 0px;
  border-top: 0.8px dotted rgba(255, 255, 255, 0.4);
  padding: 20px 0px;
}
@media (min-width: 1200px) {
  body .footer-copy .copy-container {
    display: flex;
    justify-content: space-between;
    padding: 40px 0px;
  }
}
body .footer-copy .copy-container-left p {
  color: #fff;
  font-size: 10px;
  text-align: center;
}
body .footer-copy .copy-container-right {
  margin-top: 30px;
  text-align: center;
}
@media (min-width: 1200px) {
  body .footer-copy .copy-container-right {
    display: flex;
    column-gap: 80px;
    margin-top: 0px;
  }
}
body .footer-copy .copy-container-right p {
  color: #fff;
  font-size: 10px;
  display: flex;
  justify-content: center;
  column-gap: 5px;
}
body .footer-copy .copy-container-right p a {
  color: #fff;
  text-decoration: none;
}
body .footer .scroll-up {
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
body .footer .scroll-up:hover {
  transform: scale(1.1);
}

/*# sourceMappingURL=styles.css.map */
