/*
FONT
*/
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;300;400;600;700;800;900&display=swap");
/*
VARIABLES
*/
/*
@if $dark-theme {
    $primary-color: darken($primary-color, 60%);
    $primary-color: lighten($accent-color, 60%);
    $gray: darken($gray-color, 60%);
  }*/
.bg-primary {
  background-color: #005CA2 !important;
  color: white;
}

.bg-primary a {
  color: #005CA2;
}

.bg-primary a:hover {
  color: #005CA2;
}

@-webkit-keyframes slide {
  from {
    background-position: 0 0;
  }
  to {
    background-size: 110%;
  }
}

@keyframes slide {
  from {
    background-position: 0 0;
  }
  to {
    background-size: 110%;
  }
}

.about-services .wrapper {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@-webkit-keyframes zoomin {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoomin {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.img-round {
  border-radius: 100%;
}

/*GRID*/
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1400px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (max-width: 575.98px) {
  .hidden-xs {
    display: none;
  }
}

::-moz-selection {
  background: #005CA2;
  color: white;
}

::selection {
  background: #005CA2;
  color: white;
}

/*space*/
.m-0 {
  margin: 0px !important;
}

.p-0 {
  padding: 0px !important;
}

.m-1 {
  margin: 10px !important;
}

.p-1 {
  padding: 10px !important;
}

.m-2 {
  margin: 20px !important;
}

.p-2 {
  padding: 20px !important;
}

.m-3 {
  margin: 30px !important;
}

.p-3 {
  padding: 30px !important;
}

.m-4 {
  margin: 40px !important;
}

.p-4 {
  padding: 40px !important;
}

.m-5 {
  margin: 50px !important;
}

.p-5 {
  padding: 50px !important;
}

.m-6 {
  margin: 60px !important;
}

.p-6 {
  padding: 60px !important;
}

.m-7 {
  margin: 70px !important;
}

.p-7 {
  padding: 70px !important;
}

.m-8 {
  margin: 80px !important;
}

.p-8 {
  padding: 80px !important;
}

.m-9 {
  margin: 90px !important;
}

.p-9 {
  padding: 90px !important;
}

.m-10 {
  margin: 100px !important;
}

.p-10 {
  padding: 100px !important;
}

.mt-0 {
  margin-top: 0px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.mt-1 {
  margin-top: 10px !important;
}

.pt-1 {
  padding-top: 10px !important;
}

.mt-2 {
  margin-top: 20px !important;
}

.pt-2 {
  padding-top: 20px !important;
}

.mt-3 {
  margin-top: 30px !important;
}

.pt-3 {
  padding-top: 30px !important;
}

.mt-4 {
  margin-top: 40px !important;
}

.pt-4 {
  padding-top: 40px !important;
}

.mt-5 {
  margin-top: 50px !important;
}

.pt-5 {
  padding-top: 50px !important;
}

.mt-6 {
  margin-top: 60px !important;
}

.pt-6 {
  padding-top: 60px !important;
}

.mt-7 {
  margin-top: 70px !important;
}

.pt-7 {
  padding-top: 70px !important;
}

.mt-8 {
  margin-top: 80px !important;
}

.pt-8 {
  padding-top: 80px !important;
}

.mt-9 {
  margin-top: 90px !important;
}

.pt-9 {
  padding-top: 90px !important;
}

.mt-10 {
  margin-top: 100px !important;
}

.pt-10 {
  padding-top: 100px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.mb-1 {
  margin-bottom: 10px !important;
}

.pb-1 {
  padding-bottom: 10px !important;
}

.mb-2 {
  margin-bottom: 20px !important;
}

.pb-2 {
  padding-bottom: 20px !important;
}

.mb-3 {
  margin-bottom: 30px !important;
}

.pb-3 {
  padding-bottom: 30px !important;
}

.mb-4 {
  margin-bottom: 40px !important;
}

.pb-4 {
  padding-bottom: 40px !important;
}

.mb-5 {
  margin-bottom: 50px !important;
}

.pb-5 {
  padding-bottom: 50px !important;
}

.mb-6 {
  margin-bottom: 60px !important;
}

.pb-6 {
  padding-bottom: 60px !important;
}

.mb-7 {
  margin-bottom: 70px !important;
}

.pb-7 {
  padding-bottom: 70px !important;
}

.mb-8 {
  margin-bottom: 80px !important;
}

.pb-8 {
  padding-bottom: 80px !important;
}

.mb-9 {
  margin-bottom: 90px !important;
}

.pb-9 {
  padding-bottom: 90px !important;
}

.mb-10 {
  margin-bottom: 100px !important;
}

.pb-10 {
  padding-bottom: 100px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.ml-1 {
  margin-left: 10px !important;
}

.pl-1 {
  padding-left: 10px !important;
}

.ml-2 {
  margin-left: 20px !important;
}

.pl-2 {
  padding-left: 20px !important;
}

.ml-3 {
  margin-left: 30px !important;
}

.pl-3 {
  padding-left: 30px !important;
}

.ml-4 {
  margin-left: 40px !important;
}

.pl-4 {
  padding-left: 40px !important;
}

.ml-5 {
  margin-left: 50px !important;
}

.pl-5 {
  padding-left: 50px !important;
}

.ml-6 {
  margin-left: 60px !important;
}

.pl-6 {
  padding-left: 60px !important;
}

.ml-7 {
  margin-left: 70px !important;
}

.pl-7 {
  padding-left: 70px !important;
}

.ml-8 {
  margin-left: 80px !important;
}

.pl-8 {
  padding-left: 80px !important;
}

.ml-9 {
  margin-left: 90px !important;
}

.pl-9 {
  padding-left: 90px !important;
}

.ml-10 {
  margin-left: 100px !important;
}

.pl-10 {
  padding-left: 100px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.mr-1 {
  margin-right: 10px !important;
}

.pr-1 {
  padding-right: 10px !important;
}

.mr-2 {
  margin-right: 20px !important;
}

.pr-2 {
  padding-right: 20px !important;
}

.mr-3 {
  margin-right: 30px !important;
}

.pr-3 {
  padding-right: 30px !important;
}

.mr-4 {
  margin-right: 40px !important;
}

.pr-4 {
  padding-right: 40px !important;
}

.mr-5 {
  margin-right: 50px !important;
}

.pr-5 {
  padding-right: 50px !important;
}

.mr-6 {
  margin-right: 60px !important;
}

.pr-6 {
  padding-right: 60px !important;
}

.mr-7 {
  margin-right: 70px !important;
}

.pr-7 {
  padding-right: 70px !important;
}

.mr-8 {
  margin-right: 80px !important;
}

.pr-8 {
  padding-right: 80px !important;
}

.mr-9 {
  margin-right: 90px !important;
}

.pr-9 {
  padding-right: 90px !important;
}

.mr-10 {
  margin-right: 100px !important;
}

.pr-10 {
  padding-right: 100px !important;
}

@media (max-width: 576px) {
  .m-xs-0 {
    margin: 0px !important;
  }
  .p-xs-0 {
    padding: 0px !important;
  }
}

@media (max-width: 576px) {
  .m-xs-1 {
    margin: 10px !important;
  }
  .p-xs-1 {
    padding: 10px !important;
  }
}

@media (max-width: 576px) {
  .m-xs-2 {
    margin: 20px !important;
  }
  .p-xs-2 {
    padding: 20px !important;
  }
}

@media (max-width: 576px) {
  .m-xs-3 {
    margin: 30px !important;
  }
  .p-xs-3 {
    padding: 30px !important;
  }
}

@media (max-width: 576px) {
  .m-xs-4 {
    margin: 40px !important;
  }
  .p-xs-4 {
    padding: 40px !important;
  }
}

@media (max-width: 576px) {
  .m-xs-5 {
    margin: 50px !important;
  }
  .p-xs-5 {
    padding: 50px !important;
  }
}

@media (max-width: 576px) {
  .m-xs-6 {
    margin: 60px !important;
  }
  .p-xs-6 {
    padding: 60px !important;
  }
}

@media (max-width: 576px) {
  .m-xs-7 {
    margin: 70px !important;
  }
  .p-xs-7 {
    padding: 70px !important;
  }
}

@media (max-width: 576px) {
  .m-xs-8 {
    margin: 80px !important;
  }
  .p-xs-8 {
    padding: 80px !important;
  }
}

@media (max-width: 576px) {
  .m-xs-9 {
    margin: 90px !important;
  }
  .p-xs-9 {
    padding: 90px !important;
  }
}

@media (max-width: 576px) {
  .m-xs-10 {
    margin: 100px !important;
  }
  .p-xs-10 {
    padding: 100px !important;
  }
}

@media (max-width: 576px) {
  .mt-xs-0 {
    margin-top: 0px !important;
  }
  .pt-xs-0 {
    padding-top: 0px !important;
  }
}

@media (max-width: 576px) {
  .mt-xs-1 {
    margin-top: 10px !important;
  }
  .pt-xs-1 {
    padding-top: 10px !important;
  }
}

@media (max-width: 576px) {
  .mt-xs-2 {
    margin-top: 20px !important;
  }
  .pt-xs-2 {
    padding-top: 20px !important;
  }
}

@media (max-width: 576px) {
  .mt-xs-3 {
    margin-top: 30px !important;
  }
  .pt-xs-3 {
    padding-top: 30px !important;
  }
}

@media (max-width: 576px) {
  .mt-xs-4 {
    margin-top: 40px !important;
  }
  .pt-xs-4 {
    padding-top: 40px !important;
  }
}

@media (max-width: 576px) {
  .mt-xs-5 {
    margin-top: 50px !important;
  }
  .pt-xs-5 {
    padding-top: 50px !important;
  }
}

@media (max-width: 576px) {
  .mt-xs-6 {
    margin-top: 60px !important;
  }
  .pt-xs-6 {
    padding-top: 60px !important;
  }
}

@media (max-width: 576px) {
  .mt-xs-7 {
    margin-top: 70px !important;
  }
  .pt-xs-7 {
    padding-top: 70px !important;
  }
}

@media (max-width: 576px) {
  .mt-xs-8 {
    margin-top: 80px !important;
  }
  .pt-xs-8 {
    padding-top: 80px !important;
  }
}

@media (max-width: 576px) {
  .mt-xs-9 {
    margin-top: 90px !important;
  }
  .pt-xs-9 {
    padding-top: 90px !important;
  }
}

@media (max-width: 576px) {
  .mt-xs-10 {
    margin-top: 100px !important;
  }
  .pt-xs-10 {
    padding-top: 100px !important;
  }
}

@media (max-width: 576px) {
  .mb-xs-0 {
    margin-bottom: 0px !important;
  }
  .pb-xs-0 {
    padding-bottom: 0px !important;
  }
}

@media (max-width: 576px) {
  .mb-xs-1 {
    margin-bottom: 10px !important;
  }
  .pb-xs-1 {
    padding-bottom: 10px !important;
  }
}

@media (max-width: 576px) {
  .mb-xs-2 {
    margin-bottom: 20px !important;
  }
  .pb-xs-2 {
    padding-bottom: 20px !important;
  }
}

@media (max-width: 576px) {
  .mb-xs-3 {
    margin-bottom: 30px !important;
  }
  .pb-xs-3 {
    padding-bottom: 30px !important;
  }
}

@media (max-width: 576px) {
  .mb-xs-4 {
    margin-bottom: 40px !important;
  }
  .pb-xs-4 {
    padding-bottom: 40px !important;
  }
}

@media (max-width: 576px) {
  .mb-xs-5 {
    margin-bottom: 50px !important;
  }
  .pb-xs-5 {
    padding-bottom: 50px !important;
  }
}

@media (max-width: 576px) {
  .mb-xs-6 {
    margin-bottom: 60px !important;
  }
  .pb-xs-6 {
    padding-bottom: 60px !important;
  }
}

@media (max-width: 576px) {
  .mb-xs-7 {
    margin-bottom: 70px !important;
  }
  .pb-xs-7 {
    padding-bottom: 70px !important;
  }
}

@media (max-width: 576px) {
  .mb-xs-8 {
    margin-bottom: 80px !important;
  }
  .pb-xs-8 {
    padding-bottom: 80px !important;
  }
}

@media (max-width: 576px) {
  .mb-xs-9 {
    margin-bottom: 90px !important;
  }
  .pb-xs-9 {
    padding-bottom: 90px !important;
  }
}

@media (max-width: 576px) {
  .mb-xs-10 {
    margin-bottom: 100px !important;
  }
  .pb-xs-10 {
    padding-bottom: 100px !important;
  }
}

@media (max-width: 576px) {
  .ml-xs-0 {
    margin-left: 0px !important;
  }
  .pl-xs-0 {
    padding-left: 0px !important;
  }
}

@media (max-width: 576px) {
  .ml-xs-1 {
    margin-left: 10px !important;
  }
  .pl-xs-1 {
    padding-left: 10px !important;
  }
}

@media (max-width: 576px) {
  .ml-xs-2 {
    margin-left: 20px !important;
  }
  .pl-xs-2 {
    padding-left: 20px !important;
  }
}

@media (max-width: 576px) {
  .ml-xs-3 {
    margin-left: 30px !important;
  }
  .pl-xs-3 {
    padding-left: 30px !important;
  }
}

@media (max-width: 576px) {
  .ml-xs-4 {
    margin-left: 40px !important;
  }
  .pl-xs-4 {
    padding-left: 40px !important;
  }
}

@media (max-width: 576px) {
  .ml-xs-5 {
    margin-left: 50px !important;
  }
  .pl-xs-5 {
    padding-left: 50px !important;
  }
}

@media (max-width: 576px) {
  .ml-xs-6 {
    margin-left: 60px !important;
  }
  .pl-xs-6 {
    padding-left: 60px !important;
  }
}

@media (max-width: 576px) {
  .ml-xs-7 {
    margin-left: 70px !important;
  }
  .pl-xs-7 {
    padding-left: 70px !important;
  }
}

@media (max-width: 576px) {
  .ml-xs-8 {
    margin-left: 80px !important;
  }
  .pl-xs-8 {
    padding-left: 80px !important;
  }
}

@media (max-width: 576px) {
  .ml-xs-9 {
    margin-left: 90px !important;
  }
  .pl-xs-9 {
    padding-left: 90px !important;
  }
}

@media (max-width: 576px) {
  .ml-xs-10 {
    margin-left: 100px !important;
  }
  .pl-xs-10 {
    padding-left: 100px !important;
  }
}

@media (max-width: 576px) {
  .mr-xs-0 {
    margin-right: 0px !important;
  }
  .pr-xs-0 {
    padding-right: 0px !important;
  }
}

@media (max-width: 576px) {
  .mr-xs-1 {
    margin-right: 10px !important;
  }
  .pr-xs-1 {
    padding-right: 10px !important;
  }
}

@media (max-width: 576px) {
  .mr-xs-2 {
    margin-right: 20px !important;
  }
  .pr-xs-2 {
    padding-right: 20px !important;
  }
}

@media (max-width: 576px) {
  .mr-xs-3 {
    margin-right: 30px !important;
  }
  .pr-xs-3 {
    padding-right: 30px !important;
  }
}

@media (max-width: 576px) {
  .mr-xs-4 {
    margin-right: 40px !important;
  }
  .pr-xs-4 {
    padding-right: 40px !important;
  }
}

@media (max-width: 576px) {
  .mr-xs-5 {
    margin-right: 50px !important;
  }
  .pr-xs-5 {
    padding-right: 50px !important;
  }
}

@media (max-width: 576px) {
  .mr-xs-6 {
    margin-right: 60px !important;
  }
  .pr-xs-6 {
    padding-right: 60px !important;
  }
}

@media (max-width: 576px) {
  .mr-xs-7 {
    margin-right: 70px !important;
  }
  .pr-xs-7 {
    padding-right: 70px !important;
  }
}

@media (max-width: 576px) {
  .mr-xs-8 {
    margin-right: 80px !important;
  }
  .pr-xs-8 {
    padding-right: 80px !important;
  }
}

@media (max-width: 576px) {
  .mr-xs-9 {
    margin-right: 90px !important;
  }
  .pr-xs-9 {
    padding-right: 90px !important;
  }
}

@media (max-width: 576px) {
  .mr-xs-10 {
    margin-right: 100px !important;
  }
  .pr-xs-10 {
    padding-right: 100px !important;
  }
}

@media (max-width: 768pxm) {
  .m-sm-0 {
    margin: 0px !important;
  }
  .p-sm-0 {
    padding: 0px !important;
  }
}

@media (max-width: 768pxm) {
  .m-sm-1 {
    margin: 10px !important;
  }
  .p-sm-1 {
    padding: 10px !important;
  }
}

@media (max-width: 768pxm) {
  .m-sm-2 {
    margin: 20px !important;
  }
  .p-sm-2 {
    padding: 20px !important;
  }
}

@media (max-width: 768pxm) {
  .m-sm-3 {
    margin: 30px !important;
  }
  .p-sm-3 {
    padding: 30px !important;
  }
}

@media (max-width: 768pxm) {
  .m-sm-4 {
    margin: 40px !important;
  }
  .p-sm-4 {
    padding: 40px !important;
  }
}

@media (max-width: 768pxm) {
  .m-sm-5 {
    margin: 50px !important;
  }
  .p-sm-5 {
    padding: 50px !important;
  }
}

@media (max-width: 768pxm) {
  .m-sm-6 {
    margin: 60px !important;
  }
  .p-sm-6 {
    padding: 60px !important;
  }
}

@media (max-width: 768pxm) {
  .m-sm-7 {
    margin: 70px !important;
  }
  .p-sm-7 {
    padding: 70px !important;
  }
}

@media (max-width: 768pxm) {
  .m-sm-8 {
    margin: 80px !important;
  }
  .p-sm-8 {
    padding: 80px !important;
  }
}

@media (max-width: 768pxm) {
  .m-sm-9 {
    margin: 90px !important;
  }
  .p-sm-9 {
    padding: 90px !important;
  }
}

@media (max-width: 768pxm) {
  .m-sm-10 {
    margin: 100px !important;
  }
  .p-sm-10 {
    padding: 100px !important;
  }
}

@media (max-width: 768pxm) {
  .mt-sm-0 {
    margin-top: 0px !important;
  }
  .pt-sm-0 {
    padding-top: 0px !important;
  }
}

@media (max-width: 768pxm) {
  .mt-sm-1 {
    margin-top: 10px !important;
  }
  .pt-sm-1 {
    padding-top: 10px !important;
  }
}

@media (max-width: 768pxm) {
  .mt-sm-2 {
    margin-top: 20px !important;
  }
  .pt-sm-2 {
    padding-top: 20px !important;
  }
}

@media (max-width: 768pxm) {
  .mt-sm-3 {
    margin-top: 30px !important;
  }
  .pt-sm-3 {
    padding-top: 30px !important;
  }
}

@media (max-width: 768pxm) {
  .mt-sm-4 {
    margin-top: 40px !important;
  }
  .pt-sm-4 {
    padding-top: 40px !important;
  }
}

@media (max-width: 768pxm) {
  .mt-sm-5 {
    margin-top: 50px !important;
  }
  .pt-sm-5 {
    padding-top: 50px !important;
  }
}

@media (max-width: 768pxm) {
  .mt-sm-6 {
    margin-top: 60px !important;
  }
  .pt-sm-6 {
    padding-top: 60px !important;
  }
}

@media (max-width: 768pxm) {
  .mt-sm-7 {
    margin-top: 70px !important;
  }
  .pt-sm-7 {
    padding-top: 70px !important;
  }
}

@media (max-width: 768pxm) {
  .mt-sm-8 {
    margin-top: 80px !important;
  }
  .pt-sm-8 {
    padding-top: 80px !important;
  }
}

@media (max-width: 768pxm) {
  .mt-sm-9 {
    margin-top: 90px !important;
  }
  .pt-sm-9 {
    padding-top: 90px !important;
  }
}

@media (max-width: 768pxm) {
  .mt-sm-10 {
    margin-top: 100px !important;
  }
  .pt-sm-10 {
    padding-top: 100px !important;
  }
}

@media (max-width: 768pxm) {
  .mb-sm-0 {
    margin-bottom: 0px !important;
  }
  .pb-sm-0 {
    padding-bottom: 0px !important;
  }
}

@media (max-width: 768pxm) {
  .mb-sm-1 {
    margin-bottom: 10px !important;
  }
  .pb-sm-1 {
    padding-bottom: 10px !important;
  }
}

@media (max-width: 768pxm) {
  .mb-sm-2 {
    margin-bottom: 20px !important;
  }
  .pb-sm-2 {
    padding-bottom: 20px !important;
  }
}

@media (max-width: 768pxm) {
  .mb-sm-3 {
    margin-bottom: 30px !important;
  }
  .pb-sm-3 {
    padding-bottom: 30px !important;
  }
}

@media (max-width: 768pxm) {
  .mb-sm-4 {
    margin-bottom: 40px !important;
  }
  .pb-sm-4 {
    padding-bottom: 40px !important;
  }
}

@media (max-width: 768pxm) {
  .mb-sm-5 {
    margin-bottom: 50px !important;
  }
  .pb-sm-5 {
    padding-bottom: 50px !important;
  }
}

@media (max-width: 768pxm) {
  .mb-sm-6 {
    margin-bottom: 60px !important;
  }
  .pb-sm-6 {
    padding-bottom: 60px !important;
  }
}

@media (max-width: 768pxm) {
  .mb-sm-7 {
    margin-bottom: 70px !important;
  }
  .pb-sm-7 {
    padding-bottom: 70px !important;
  }
}

@media (max-width: 768pxm) {
  .mb-sm-8 {
    margin-bottom: 80px !important;
  }
  .pb-sm-8 {
    padding-bottom: 80px !important;
  }
}

@media (max-width: 768pxm) {
  .mb-sm-9 {
    margin-bottom: 90px !important;
  }
  .pb-sm-9 {
    padding-bottom: 90px !important;
  }
}

@media (max-width: 768pxm) {
  .mb-sm-10 {
    margin-bottom: 100px !important;
  }
  .pb-sm-10 {
    padding-bottom: 100px !important;
  }
}

@media (max-width: 768pxm) {
  .ml-sm-0 {
    margin-left: 0px !important;
  }
  .pl-sm-0 {
    padding-left: 0px !important;
  }
}

@media (max-width: 768pxm) {
  .ml-sm-1 {
    margin-left: 10px !important;
  }
  .pl-sm-1 {
    padding-left: 10px !important;
  }
}

@media (max-width: 768pxm) {
  .ml-sm-2 {
    margin-left: 20px !important;
  }
  .pl-sm-2 {
    padding-left: 20px !important;
  }
}

@media (max-width: 768pxm) {
  .ml-sm-3 {
    margin-left: 30px !important;
  }
  .pl-sm-3 {
    padding-left: 30px !important;
  }
}

@media (max-width: 768pxm) {
  .ml-sm-4 {
    margin-left: 40px !important;
  }
  .pl-sm-4 {
    padding-left: 40px !important;
  }
}

@media (max-width: 768pxm) {
  .ml-sm-5 {
    margin-left: 50px !important;
  }
  .pl-sm-5 {
    padding-left: 50px !important;
  }
}

@media (max-width: 768pxm) {
  .ml-sm-6 {
    margin-left: 60px !important;
  }
  .pl-sm-6 {
    padding-left: 60px !important;
  }
}

@media (max-width: 768pxm) {
  .ml-sm-7 {
    margin-left: 70px !important;
  }
  .pl-sm-7 {
    padding-left: 70px !important;
  }
}

@media (max-width: 768pxm) {
  .ml-sm-8 {
    margin-left: 80px !important;
  }
  .pl-sm-8 {
    padding-left: 80px !important;
  }
}

@media (max-width: 768pxm) {
  .ml-sm-9 {
    margin-left: 90px !important;
  }
  .pl-sm-9 {
    padding-left: 90px !important;
  }
}

@media (max-width: 768pxm) {
  .ml-sm-10 {
    margin-left: 100px !important;
  }
  .pl-sm-10 {
    padding-left: 100px !important;
  }
}

@media (max-width: 768pxm) {
  .mr-sm-0 {
    margin-right: 0px !important;
  }
  .pr-sm-0 {
    padding-right: 0px !important;
  }
}

@media (max-width: 768pxm) {
  .mr-sm-1 {
    margin-right: 10px !important;
  }
  .pr-sm-1 {
    padding-right: 10px !important;
  }
}

@media (max-width: 768pxm) {
  .mr-sm-2 {
    margin-right: 20px !important;
  }
  .pr-sm-2 {
    padding-right: 20px !important;
  }
}

@media (max-width: 768pxm) {
  .mr-sm-3 {
    margin-right: 30px !important;
  }
  .pr-sm-3 {
    padding-right: 30px !important;
  }
}

@media (max-width: 768pxm) {
  .mr-sm-4 {
    margin-right: 40px !important;
  }
  .pr-sm-4 {
    padding-right: 40px !important;
  }
}

@media (max-width: 768pxm) {
  .mr-sm-5 {
    margin-right: 50px !important;
  }
  .pr-sm-5 {
    padding-right: 50px !important;
  }
}

@media (max-width: 768pxm) {
  .mr-sm-6 {
    margin-right: 60px !important;
  }
  .pr-sm-6 {
    padding-right: 60px !important;
  }
}

@media (max-width: 768pxm) {
  .mr-sm-7 {
    margin-right: 70px !important;
  }
  .pr-sm-7 {
    padding-right: 70px !important;
  }
}

@media (max-width: 768pxm) {
  .mr-sm-8 {
    margin-right: 80px !important;
  }
  .pr-sm-8 {
    padding-right: 80px !important;
  }
}

@media (max-width: 768pxm) {
  .mr-sm-9 {
    margin-right: 90px !important;
  }
  .pr-sm-9 {
    padding-right: 90px !important;
  }
}

@media (max-width: 768pxm) {
  .mr-sm-10 {
    margin-right: 100px !important;
  }
  .pr-sm-10 {
    padding-right: 100px !important;
  }
}

@media (max-width: 992px) {
  .m-md-0 {
    margin: 0px !important;
  }
  .p-md-0 {
    padding: 0px !important;
  }
}

@media (max-width: 992px) {
  .m-md-1 {
    margin: 10px !important;
  }
  .p-md-1 {
    padding: 10px !important;
  }
}

@media (max-width: 992px) {
  .m-md-2 {
    margin: 20px !important;
  }
  .p-md-2 {
    padding: 20px !important;
  }
}

@media (max-width: 992px) {
  .m-md-3 {
    margin: 30px !important;
  }
  .p-md-3 {
    padding: 30px !important;
  }
}

@media (max-width: 992px) {
  .m-md-4 {
    margin: 40px !important;
  }
  .p-md-4 {
    padding: 40px !important;
  }
}

@media (max-width: 992px) {
  .m-md-5 {
    margin: 50px !important;
  }
  .p-md-5 {
    padding: 50px !important;
  }
}

@media (max-width: 992px) {
  .m-md-6 {
    margin: 60px !important;
  }
  .p-md-6 {
    padding: 60px !important;
  }
}

@media (max-width: 992px) {
  .m-md-7 {
    margin: 70px !important;
  }
  .p-md-7 {
    padding: 70px !important;
  }
}

@media (max-width: 992px) {
  .m-md-8 {
    margin: 80px !important;
  }
  .p-md-8 {
    padding: 80px !important;
  }
}

@media (max-width: 992px) {
  .m-md-9 {
    margin: 90px !important;
  }
  .p-md-9 {
    padding: 90px !important;
  }
}

@media (max-width: 992px) {
  .m-md-10 {
    margin: 100px !important;
  }
  .p-md-10 {
    padding: 100px !important;
  }
}

@media (max-width: 992px) {
  .mt-md-0 {
    margin-top: 0px !important;
  }
  .pt-md-0 {
    padding-top: 0px !important;
  }
}

@media (max-width: 992px) {
  .mt-md-1 {
    margin-top: 10px !important;
  }
  .pt-md-1 {
    padding-top: 10px !important;
  }
}

@media (max-width: 992px) {
  .mt-md-2 {
    margin-top: 20px !important;
  }
  .pt-md-2 {
    padding-top: 20px !important;
  }
}

@media (max-width: 992px) {
  .mt-md-3 {
    margin-top: 30px !important;
  }
  .pt-md-3 {
    padding-top: 30px !important;
  }
}

@media (max-width: 992px) {
  .mt-md-4 {
    margin-top: 40px !important;
  }
  .pt-md-4 {
    padding-top: 40px !important;
  }
}

@media (max-width: 992px) {
  .mt-md-5 {
    margin-top: 50px !important;
  }
  .pt-md-5 {
    padding-top: 50px !important;
  }
}

@media (max-width: 992px) {
  .mt-md-6 {
    margin-top: 60px !important;
  }
  .pt-md-6 {
    padding-top: 60px !important;
  }
}

@media (max-width: 992px) {
  .mt-md-7 {
    margin-top: 70px !important;
  }
  .pt-md-7 {
    padding-top: 70px !important;
  }
}

@media (max-width: 992px) {
  .mt-md-8 {
    margin-top: 80px !important;
  }
  .pt-md-8 {
    padding-top: 80px !important;
  }
}

@media (max-width: 992px) {
  .mt-md-9 {
    margin-top: 90px !important;
  }
  .pt-md-9 {
    padding-top: 90px !important;
  }
}

@media (max-width: 992px) {
  .mt-md-10 {
    margin-top: 100px !important;
  }
  .pt-md-10 {
    padding-top: 100px !important;
  }
}

@media (max-width: 992px) {
  .mb-md-0 {
    margin-bottom: 0px !important;
  }
  .pb-md-0 {
    padding-bottom: 0px !important;
  }
}

@media (max-width: 992px) {
  .mb-md-1 {
    margin-bottom: 10px !important;
  }
  .pb-md-1 {
    padding-bottom: 10px !important;
  }
}

@media (max-width: 992px) {
  .mb-md-2 {
    margin-bottom: 20px !important;
  }
  .pb-md-2 {
    padding-bottom: 20px !important;
  }
}

@media (max-width: 992px) {
  .mb-md-3 {
    margin-bottom: 30px !important;
  }
  .pb-md-3 {
    padding-bottom: 30px !important;
  }
}

@media (max-width: 992px) {
  .mb-md-4 {
    margin-bottom: 40px !important;
  }
  .pb-md-4 {
    padding-bottom: 40px !important;
  }
}

@media (max-width: 992px) {
  .mb-md-5 {
    margin-bottom: 50px !important;
  }
  .pb-md-5 {
    padding-bottom: 50px !important;
  }
}

@media (max-width: 992px) {
  .mb-md-6 {
    margin-bottom: 60px !important;
  }
  .pb-md-6 {
    padding-bottom: 60px !important;
  }
}

@media (max-width: 992px) {
  .mb-md-7 {
    margin-bottom: 70px !important;
  }
  .pb-md-7 {
    padding-bottom: 70px !important;
  }
}

@media (max-width: 992px) {
  .mb-md-8 {
    margin-bottom: 80px !important;
  }
  .pb-md-8 {
    padding-bottom: 80px !important;
  }
}

@media (max-width: 992px) {
  .mb-md-9 {
    margin-bottom: 90px !important;
  }
  .pb-md-9 {
    padding-bottom: 90px !important;
  }
}

@media (max-width: 992px) {
  .mb-md-10 {
    margin-bottom: 100px !important;
  }
  .pb-md-10 {
    padding-bottom: 100px !important;
  }
}

@media (max-width: 992px) {
  .ml-md-0 {
    margin-left: 0px !important;
  }
  .pl-md-0 {
    padding-left: 0px !important;
  }
}

@media (max-width: 992px) {
  .ml-md-1 {
    margin-left: 10px !important;
  }
  .pl-md-1 {
    padding-left: 10px !important;
  }
}

@media (max-width: 992px) {
  .ml-md-2 {
    margin-left: 20px !important;
  }
  .pl-md-2 {
    padding-left: 20px !important;
  }
}

@media (max-width: 992px) {
  .ml-md-3 {
    margin-left: 30px !important;
  }
  .pl-md-3 {
    padding-left: 30px !important;
  }
}

@media (max-width: 992px) {
  .ml-md-4 {
    margin-left: 40px !important;
  }
  .pl-md-4 {
    padding-left: 40px !important;
  }
}

@media (max-width: 992px) {
  .ml-md-5 {
    margin-left: 50px !important;
  }
  .pl-md-5 {
    padding-left: 50px !important;
  }
}

@media (max-width: 992px) {
  .ml-md-6 {
    margin-left: 60px !important;
  }
  .pl-md-6 {
    padding-left: 60px !important;
  }
}

@media (max-width: 992px) {
  .ml-md-7 {
    margin-left: 70px !important;
  }
  .pl-md-7 {
    padding-left: 70px !important;
  }
}

@media (max-width: 992px) {
  .ml-md-8 {
    margin-left: 80px !important;
  }
  .pl-md-8 {
    padding-left: 80px !important;
  }
}

@media (max-width: 992px) {
  .ml-md-9 {
    margin-left: 90px !important;
  }
  .pl-md-9 {
    padding-left: 90px !important;
  }
}

@media (max-width: 992px) {
  .ml-md-10 {
    margin-left: 100px !important;
  }
  .pl-md-10 {
    padding-left: 100px !important;
  }
}

@media (max-width: 992px) {
  .mr-md-0 {
    margin-right: 0px !important;
  }
  .pr-md-0 {
    padding-right: 0px !important;
  }
}

@media (max-width: 992px) {
  .mr-md-1 {
    margin-right: 10px !important;
  }
  .pr-md-1 {
    padding-right: 10px !important;
  }
}

@media (max-width: 992px) {
  .mr-md-2 {
    margin-right: 20px !important;
  }
  .pr-md-2 {
    padding-right: 20px !important;
  }
}

@media (max-width: 992px) {
  .mr-md-3 {
    margin-right: 30px !important;
  }
  .pr-md-3 {
    padding-right: 30px !important;
  }
}

@media (max-width: 992px) {
  .mr-md-4 {
    margin-right: 40px !important;
  }
  .pr-md-4 {
    padding-right: 40px !important;
  }
}

@media (max-width: 992px) {
  .mr-md-5 {
    margin-right: 50px !important;
  }
  .pr-md-5 {
    padding-right: 50px !important;
  }
}

@media (max-width: 992px) {
  .mr-md-6 {
    margin-right: 60px !important;
  }
  .pr-md-6 {
    padding-right: 60px !important;
  }
}

@media (max-width: 992px) {
  .mr-md-7 {
    margin-right: 70px !important;
  }
  .pr-md-7 {
    padding-right: 70px !important;
  }
}

@media (max-width: 992px) {
  .mr-md-8 {
    margin-right: 80px !important;
  }
  .pr-md-8 {
    padding-right: 80px !important;
  }
}

@media (max-width: 992px) {
  .mr-md-9 {
    margin-right: 90px !important;
  }
  .pr-md-9 {
    padding-right: 90px !important;
  }
}

@media (max-width: 992px) {
  .mr-md-10 {
    margin-right: 100px !important;
  }
  .pr-md-10 {
    padding-right: 100px !important;
  }
}

@media (max-width: 1200px) {
  .m-lg-0 {
    margin: 0px !important;
  }
  .p-lg-0 {
    padding: 0px !important;
  }
}

@media (max-width: 1200px) {
  .m-lg-1 {
    margin: 10px !important;
  }
  .p-lg-1 {
    padding: 10px !important;
  }
}

@media (max-width: 1200px) {
  .m-lg-2 {
    margin: 20px !important;
  }
  .p-lg-2 {
    padding: 20px !important;
  }
}

@media (max-width: 1200px) {
  .m-lg-3 {
    margin: 30px !important;
  }
  .p-lg-3 {
    padding: 30px !important;
  }
}

@media (max-width: 1200px) {
  .m-lg-4 {
    margin: 40px !important;
  }
  .p-lg-4 {
    padding: 40px !important;
  }
}

@media (max-width: 1200px) {
  .m-lg-5 {
    margin: 50px !important;
  }
  .p-lg-5 {
    padding: 50px !important;
  }
}

@media (max-width: 1200px) {
  .m-lg-6 {
    margin: 60px !important;
  }
  .p-lg-6 {
    padding: 60px !important;
  }
}

@media (max-width: 1200px) {
  .m-lg-7 {
    margin: 70px !important;
  }
  .p-lg-7 {
    padding: 70px !important;
  }
}

@media (max-width: 1200px) {
  .m-lg-8 {
    margin: 80px !important;
  }
  .p-lg-8 {
    padding: 80px !important;
  }
}

@media (max-width: 1200px) {
  .m-lg-9 {
    margin: 90px !important;
  }
  .p-lg-9 {
    padding: 90px !important;
  }
}

@media (max-width: 1200px) {
  .m-lg-10 {
    margin: 100px !important;
  }
  .p-lg-10 {
    padding: 100px !important;
  }
}

@media (max-width: 1200px) {
  .mt-lg-0 {
    margin-top: 0px !important;
  }
  .pt-lg-0 {
    padding-top: 0px !important;
  }
}

@media (max-width: 1200px) {
  .mt-lg-1 {
    margin-top: 10px !important;
  }
  .pt-lg-1 {
    padding-top: 10px !important;
  }
}

@media (max-width: 1200px) {
  .mt-lg-2 {
    margin-top: 20px !important;
  }
  .pt-lg-2 {
    padding-top: 20px !important;
  }
}

@media (max-width: 1200px) {
  .mt-lg-3 {
    margin-top: 30px !important;
  }
  .pt-lg-3 {
    padding-top: 30px !important;
  }
}

@media (max-width: 1200px) {
  .mt-lg-4 {
    margin-top: 40px !important;
  }
  .pt-lg-4 {
    padding-top: 40px !important;
  }
}

@media (max-width: 1200px) {
  .mt-lg-5 {
    margin-top: 50px !important;
  }
  .pt-lg-5 {
    padding-top: 50px !important;
  }
}

@media (max-width: 1200px) {
  .mt-lg-6 {
    margin-top: 60px !important;
  }
  .pt-lg-6 {
    padding-top: 60px !important;
  }
}

@media (max-width: 1200px) {
  .mt-lg-7 {
    margin-top: 70px !important;
  }
  .pt-lg-7 {
    padding-top: 70px !important;
  }
}

@media (max-width: 1200px) {
  .mt-lg-8 {
    margin-top: 80px !important;
  }
  .pt-lg-8 {
    padding-top: 80px !important;
  }
}

@media (max-width: 1200px) {
  .mt-lg-9 {
    margin-top: 90px !important;
  }
  .pt-lg-9 {
    padding-top: 90px !important;
  }
}

@media (max-width: 1200px) {
  .mt-lg-10 {
    margin-top: 100px !important;
  }
  .pt-lg-10 {
    padding-top: 100px !important;
  }
}

@media (max-width: 1200px) {
  .mb-lg-0 {
    margin-bottom: 0px !important;
  }
  .pb-lg-0 {
    padding-bottom: 0px !important;
  }
}

@media (max-width: 1200px) {
  .mb-lg-1 {
    margin-bottom: 10px !important;
  }
  .pb-lg-1 {
    padding-bottom: 10px !important;
  }
}

@media (max-width: 1200px) {
  .mb-lg-2 {
    margin-bottom: 20px !important;
  }
  .pb-lg-2 {
    padding-bottom: 20px !important;
  }
}

@media (max-width: 1200px) {
  .mb-lg-3 {
    margin-bottom: 30px !important;
  }
  .pb-lg-3 {
    padding-bottom: 30px !important;
  }
}

@media (max-width: 1200px) {
  .mb-lg-4 {
    margin-bottom: 40px !important;
  }
  .pb-lg-4 {
    padding-bottom: 40px !important;
  }
}

@media (max-width: 1200px) {
  .mb-lg-5 {
    margin-bottom: 50px !important;
  }
  .pb-lg-5 {
    padding-bottom: 50px !important;
  }
}

@media (max-width: 1200px) {
  .mb-lg-6 {
    margin-bottom: 60px !important;
  }
  .pb-lg-6 {
    padding-bottom: 60px !important;
  }
}

@media (max-width: 1200px) {
  .mb-lg-7 {
    margin-bottom: 70px !important;
  }
  .pb-lg-7 {
    padding-bottom: 70px !important;
  }
}

@media (max-width: 1200px) {
  .mb-lg-8 {
    margin-bottom: 80px !important;
  }
  .pb-lg-8 {
    padding-bottom: 80px !important;
  }
}

@media (max-width: 1200px) {
  .mb-lg-9 {
    margin-bottom: 90px !important;
  }
  .pb-lg-9 {
    padding-bottom: 90px !important;
  }
}

@media (max-width: 1200px) {
  .mb-lg-10 {
    margin-bottom: 100px !important;
  }
  .pb-lg-10 {
    padding-bottom: 100px !important;
  }
}

@media (max-width: 1200px) {
  .ml-lg-0 {
    margin-left: 0px !important;
  }
  .pl-lg-0 {
    padding-left: 0px !important;
  }
}

@media (max-width: 1200px) {
  .ml-lg-1 {
    margin-left: 10px !important;
  }
  .pl-lg-1 {
    padding-left: 10px !important;
  }
}

@media (max-width: 1200px) {
  .ml-lg-2 {
    margin-left: 20px !important;
  }
  .pl-lg-2 {
    padding-left: 20px !important;
  }
}

@media (max-width: 1200px) {
  .ml-lg-3 {
    margin-left: 30px !important;
  }
  .pl-lg-3 {
    padding-left: 30px !important;
  }
}

@media (max-width: 1200px) {
  .ml-lg-4 {
    margin-left: 40px !important;
  }
  .pl-lg-4 {
    padding-left: 40px !important;
  }
}

@media (max-width: 1200px) {
  .ml-lg-5 {
    margin-left: 50px !important;
  }
  .pl-lg-5 {
    padding-left: 50px !important;
  }
}

@media (max-width: 1200px) {
  .ml-lg-6 {
    margin-left: 60px !important;
  }
  .pl-lg-6 {
    padding-left: 60px !important;
  }
}

@media (max-width: 1200px) {
  .ml-lg-7 {
    margin-left: 70px !important;
  }
  .pl-lg-7 {
    padding-left: 70px !important;
  }
}

@media (max-width: 1200px) {
  .ml-lg-8 {
    margin-left: 80px !important;
  }
  .pl-lg-8 {
    padding-left: 80px !important;
  }
}

@media (max-width: 1200px) {
  .ml-lg-9 {
    margin-left: 90px !important;
  }
  .pl-lg-9 {
    padding-left: 90px !important;
  }
}

@media (max-width: 1200px) {
  .ml-lg-10 {
    margin-left: 100px !important;
  }
  .pl-lg-10 {
    padding-left: 100px !important;
  }
}

@media (max-width: 1200px) {
  .mr-lg-0 {
    margin-right: 0px !important;
  }
  .pr-lg-0 {
    padding-right: 0px !important;
  }
}

@media (max-width: 1200px) {
  .mr-lg-1 {
    margin-right: 10px !important;
  }
  .pr-lg-1 {
    padding-right: 10px !important;
  }
}

@media (max-width: 1200px) {
  .mr-lg-2 {
    margin-right: 20px !important;
  }
  .pr-lg-2 {
    padding-right: 20px !important;
  }
}

@media (max-width: 1200px) {
  .mr-lg-3 {
    margin-right: 30px !important;
  }
  .pr-lg-3 {
    padding-right: 30px !important;
  }
}

@media (max-width: 1200px) {
  .mr-lg-4 {
    margin-right: 40px !important;
  }
  .pr-lg-4 {
    padding-right: 40px !important;
  }
}

@media (max-width: 1200px) {
  .mr-lg-5 {
    margin-right: 50px !important;
  }
  .pr-lg-5 {
    padding-right: 50px !important;
  }
}

@media (max-width: 1200px) {
  .mr-lg-6 {
    margin-right: 60px !important;
  }
  .pr-lg-6 {
    padding-right: 60px !important;
  }
}

@media (max-width: 1200px) {
  .mr-lg-7 {
    margin-right: 70px !important;
  }
  .pr-lg-7 {
    padding-right: 70px !important;
  }
}

@media (max-width: 1200px) {
  .mr-lg-8 {
    margin-right: 80px !important;
  }
  .pr-lg-8 {
    padding-right: 80px !important;
  }
}

@media (max-width: 1200px) {
  .mr-lg-9 {
    margin-right: 90px !important;
  }
  .pr-lg-9 {
    padding-right: 90px !important;
  }
}

@media (max-width: 1200px) {
  .mr-lg-10 {
    margin-right: 100px !important;
  }
  .pr-lg-10 {
    padding-right: 100px !important;
  }
}

/*
CUSTOMIZE
*/
/* fallback */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/material.woff2) format("woff2");
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

body,
html {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1rem;
  color: black;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: 'liga', 'kern';
}

@media (max-width: 991.98px) {
  body {
    margin-top: 183px;
  }
}

div,
section,
header,
footer,
aside,
nav,
a,
p,
ul,
li,
input,
button,
img,
h1,
h2,
h3,
h4,
h5,
h6,
::after,
::before {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

h1 {
  color: #005CA2;
}

section {
  padding: 100px 0;
}

section ul {
  text-align: left;
}

section ul li {
  text-align: left;
}

section h2 {
  position: relative;
  color: #005CA2;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1.5px;
  font-size: 48px;
  margin-bottom: 70px;
  text-align: left;
  display: inline-block;
}

section h2.left-right-line {
  font-size: 22px;
  letter-spacing: 0;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 50px;
  display: table;
}

section h2.left-right-line:before, section h2.left-right-line:after {
  background-color: #005CA2;
  content: "";
  display: inline-block;
  height: 1px;
  position: relative;
  vertical-align: middle;
  width: 50%;
}

@media (max-width: 575.98px) {
  section h2.left-right-line:before, section h2.left-right-line:after {
    width: 20%;
  }
}

section h2.left-right-line:before {
  right: 0.5em;
  margin-left: -50%;
}

section h2.left-right-line:after {
  left: 0.5em;
  margin-right: -50%;
}

section h2.light:before, section h2.light:after {
  background-color: white;
}

section h2.only-right:before {
  background-color: transparent;
}

section p.lead {
  font-size: 32px !important;
  font-weight: 100 !important;
  margin-bottom: 20px !important;
}

@media (max-width: 575.98px) {
  section p.lead {
    font-size: 25px !important;
  }
}

a {
  color: #005CA2;
}

a:hover {
  color: #005CA2;
}

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

.badge-primary {
  color: #fff;
  background-color: #005CA2;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  padding: 25px 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 3px solid #ced4da;
  border-radius: .25rem;
  outline: 0px !important;
  -webkit-appearance: none;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.form-control:focus {
  border-color: black;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #bfc5cc !important;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #bfc5cc !important;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #bfc5cc !important;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #bfc5cc !important;
}

.dropdown-toggle-noicon .caret {
  height: 10px !important;
}

.dropdown-toggle-noicon::after {
  visibility: hidden;
}

#toTop {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 15px;
  cursor: pointer;
  width: 30px;
  z-index: 999;
}

#toTop img {
  vertical-align: baseline;
}

/*BTN*/
.btn {
  display: inline-block;
  font-weight: 800;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 2px solid transparent;
  padding: 6px 20px;
  font-size: 14px;
  line-height: 1.9;
  border-radius: 4px;
}

.btn:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.btn .material-icons {
  margin-top: 5px;
  margin-left: 20px;
}

.btn.btn-sm {
  padding: 2px 20px;
  font-size: 12px;
}

.btn-primary {
  color: #fff;
  background-color: #005CA2;
  border-color: #005CA2;
}

.btn-primary:hover {
  color: #fff;
  background-color: #005CA2;
  border-color: #005CA2;
}

.btn-primary:active {
  color: #fff !important;
  background-color: #005CA2 !important;
  border-color: #005CA2 !important;
}

.btn-primary-text {
  color: #005CA2;
  background-color: rgba(255, 255, 255, 0) !important;
  border-color: rgba(255, 255, 255, 0) !important;
  padding: 0;
  font-size: 18px;
}

.btn-primary-text:hover {
  color: #005CA2;
  background-color: rgba(255, 255, 255, 0) !important;
  border-color: rgba(255, 255, 255, 0) !important;
}

.btn-primary-text:active {
  color: #005CA2 !important;
  background-color: rgba(255, 255, 255, 0) !important;
  border-color: rgba(255, 255, 255, 0) !important;
}

.btn-outline-primary {
  color: #005CA2;
  border-color: #005CA2;
}

.btn-outline-primary:hover {
  color: #005CA2;
  border-color: #005CA2;
  background-color: rgba(255, 255, 255, 0);
  -webkit-box-shadow: inset 0 0 0px 1px #005CA2;
          box-shadow: inset 0 0 0px 1px #005CA2;
}

.btn-outline-primary:active {
  color: #005CA2 !important;
  border-color: #005CA2 !important;
  background-color: rgba(255, 255, 255, 0) !important;
  -webkit-box-shadow: inset 0 0 0px 1px #005CA2;
          box-shadow: inset 0 0 0px 1px #005CA2;
}

.btn-light {
  color: #005CA2;
  background-color: white;
  border-color: white;
}

.btn-light:hover {
  color: #005CA2;
  background-color: white;
  border-color: white;
}

.btn-light:active {
  color: #005CA2 !important;
  background-color: white !important;
  border-color: white !important;
}

.btn-outline-light {
  color: white;
  border-color: white;
}

.btn-outline-light:hover {
  color: white;
  border-color: white;
  background-color: rgba(255, 255, 255, 0) !important;
  -webkit-box-shadow: inset 0 0 0px 1px white;
          box-shadow: inset 0 0 0px 1px white;
}

.btn-outline-light:active {
  color: #005CA2 !important;
  border-color: #005CA2 !important;
  background-color: rgba(255, 255, 255, 0) !important;
  -webkit-box-shadow: inset 0 0 0px 1px #005CA2;
          box-shadow: inset 0 0 0px 1px #005CA2;
}

.show .btn-outline-primary {
  color: #005CA2 !important;
  border-color: #005CA2 !important;
  background: none !important;
}

.show .btn-outline-primary:hover {
  color: #005CA2 !important;
  border-color: #005CA2 !important;
  background-color: rgba(255, 255, 255, 0) !important;
  -webkit-box-shadow: inset 0 0 0px 1px #005CA2 !important;
          box-shadow: inset 0 0 0px 1px #005CA2 !important;
}

.show .btn-outline-primary:active {
  color: #005CA2 !important;
  border-color: #005CA2 !important;
  background-color: rgba(255, 255, 255, 0) !important;
  -webkit-box-shadow: inset 0 0 0px 1px #005CA2 !important;
          box-shadow: inset 0 0 0px 1px #005CA2 !important;
}

.btn-secondary {
  color: #005CA2;
  background-color: #005CA2;
  border-color: #005CA2;
}

.btn-secondary:hover {
  color: #005CA2;
  background-color: #005CA2;
  border-color: #005CA2;
}

.btn-white {
  color: #005CA2;
  background-color: white;
  border-color: white;
}

.btn-white:hover {
  color: #005CA2;
  background-color: white;
  border-color: white;
}

.btn-outline-white {
  color: white;
  border-color: white;
}

.btn-outline-white:hover {
  color: white;
  border-color: white;
  background-color: rgba(255, 255, 255, 0);
  -webkit-box-shadow: inset 0 0 0px 1px white;
          box-shadow: inset 0 0 0px 1px white;
}

.btn-outline-white:active {
  color: #005CA2 !important;
  border-color: #005CA2 !important;
  background-color: rgba(255, 255, 255, 0) !important;
  -webkit-box-shadow: inset 0 0 0px 1px #005CA2;
          box-shadow: inset 0 0 0px 1px #005CA2;
}

.btn-light {
  color: #005CA2;
  background-color: #fff;
  border-color: #fff;
}

.btn-light:hover {
  color: #005CA2;
  background-color: #fff;
  border-color: #fff;
}

.btn-lg {
  padding: 0.6rem 2.2rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: .3rem;
}

@media (max-width: 575.98px) {
  .btn-lg {
    padding: 0.4rem 1.8rem;
    font-size: 1rem;
  }
}

.btn-round {
  border-radius: 99px;
}

.btn.icon:after {
  content: ' \027F6';
  margin-left: 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.btn.icon:hover:after {
  content: ' \027F6';
  margin-left: 15px;
  padding-right: 5px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.btn.icon-left:before {
  content: ' \027F5';
  margin-right: 20px;
  font-size: 22px;
  line-height: 1;
}

@media (max-width: 1199.98px) {
  .btn.icon-left:before {
    margin-right: 10px;
  }
}

.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #005CA2;
  border-color: #005CA2;
}

.v-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 100%;
}

.bg-top {
  background-position: top center !important;
}

.bg-bottom {
  background-position: bottom center !important;
}

/*NavTabs*/
.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top: none;
  font-size: 1.2rem;
  font-weight: 400;
}

/*SWIPER*/
.swiper-container {
  width: 100%;
  height: 800px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  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;
}

.swiper-button-next,
.swiper-button-prev {
  top: 40%;
  background-color: #005CA2;
  padding: 30px;
  border-radius: 99px;
}

@media (max-width: 1199.98px) {
  .swiper-button-next,
  .swiper-button-prev {
    top: 48%;
    padding: 23px;
    border-radius: 139px;
  }
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 19px;
  color: white;
}

.swiper-basari-hikayeleri {
  width: 98%;
  height: 100%;
  padding: 0 2%;
}

.navbar {
  padding: 20px 0;
}

@media (max-width: 991.98px) {
  .navbar {
    background-color: white;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px;
    z-index: 99;
  }
}

@media (max-width: 991.98px) {
  .navbar .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 575.98px) {
  .navbar .container {
    padding-left: 0;
    padding-right: 0;
  }
}

.navbar .navbar-brand img {
  height: 85px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-brand img {
    height: 60px;
  }
}

.navbar .navbar-toggler {
  padding: 0;
  outline: none;
  border: 0px solid transparent;
}

.navbar .navbar-toggler img {
  height: 40px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav li {
    margin: 10px 0;
  }
}

.navbar .navbar-nav li a {
  color: #005CA2 !important;
  font-weight: 800;
  font-size: 21px;
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  margin-left: 30px !important;
  margin-right: 30px !important;
}

.navbar .navbar-nav li a:last-child {
  margin-right: 0 !important;
  padding: 10px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav li a:last-child {
    padding: 0;
  }
}

@media (max-width: 1199.98px) {
  .navbar .navbar-nav li a {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav li a {
    font-size: 22px;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

.navbar .navbar-nav li a.language {
  background-color: #005CA2 !important;
  color: white !important;
  font-size: 18px;
  font-weight: 800;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav li a.language {
    background-color: rgba(0, 0, 0, 0) !important;
    color: #005CA2 !important;
    font-size: 22px;
    font-weight: 800;
  }
}

.home-page .home-btn a {
  border-bottom: 2px solid #005CA2;
}

@media (max-width: 991.98px) {
  .home-page .home-btn a {
    border-bottom: 0 solid #005CA2;
  }
}

.about-us-page .about-us-btn a {
  border-bottom: 2px solid #005CA2;
}

@media (max-width: 991.98px) {
  .about-us-page .about-us-btn a {
    border-bottom: 0 solid #005CA2;
  }
}

.services-page .services-btn a {
  border-bottom: 2px solid #005CA2;
}

@media (max-width: 991.98px) {
  .services-page .services-btn a {
    border-bottom: 0 solid #005CA2;
  }
}

.countries-page .countries-btn a {
  border-bottom: 2px solid #005CA2;
}

@media (max-width: 991.98px) {
  .countries-page .countries-btn a {
    border-bottom: 0 solid #005CA2;
  }
}

.contact-us-page .contact-us-btn a {
  border-bottom: 2px solid #005CA2;
}

@media (max-width: 991.98px) {
  .contact-us-page .contact-us-btn a {
    border-bottom: 0 solid #005CA2;
  }
}

.service-detail-page .services-btn a {
  border-bottom: 2px solid #005CA2;
}

@media (max-width: 991.98px) {
  .service-detail-page .services-btn a {
    border-bottom: 0 solid #005CA2;
  }
}

.home-page {
  /* .light-logo {
        display: block !important;
    }

    .dark-logo {
        display: none !important;
    }
*/
}

.home-page .language {
  background-color: white !important;
  color: #005CA2 !important;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-repeat: no-repeat;
  background-size: cover !important;
  background-position: center center;
  margin-top: -136px;
  height: 700px;
  background-size: 100% 100%;
  -webkit-animation: shrink 30s infinite alternate;
  animation: shrink 30s infinite alternate;
}

@-webkit-keyframes shrink {
  from {
    background-size: 100% 100%;
  }
  to {
    background-size: 120% 120%;
  }
}

@keyframes shrink {
  from {
    background-size: 100% 100%;
  }
  to {
    background-size: 120% 120%;
  }
}

@media (max-width: 1199.98px) {
  header {
    height: 100.2%;
  }
}

@media (max-width: 575.98px) {
  header {
    height: 93%;
  }
}

header .container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .container .wrapper {
  vertical-align: middle;
}

header .container .wrapper h1 {
  text-align: center;
  color: white;
  font-size: 84px;
  line-height: .9;
  letter-spacing: -1.5px;
  font-weight: 900;
  margin-bottom: 20px;
}

@media (max-width: 575.98px) {
  header .container .wrapper h1 {
    font-size: 50px;
  }
}

header .container .wrapper p {
  text-align: center;
  color: white;
  font-size: 27px;
}

header.subpage-header .container {
  padding-left: 0;
}

header.subpage-header .wrapper {
  background-image: url("/img/page-title-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center left;
  margin-right: auto;
  padding-left: 15px;
  min-height: 300px;
  width: 559px;
}

@media (max-width: 575.98px) {
  header.subpage-header .wrapper {
    background-size: 90%;
    min-height: 270px;
  }
}

header.subpage-header .wrapper h1 {
  color: #005CA2;
  text-align: left;
}

header.subpage-header .wrapper p {
  color: black;
  text-align: left;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

ul li {
  font-size: 18px;
  line-height: 1.7;
}

@media (max-width: 1199.98px) {
  ul li {
    font-size: 15px;
  }
}

@media (max-width: 991.98px) {
  ul li {
    font-size: 18px;
  }
}

.service-detail-page h2 {
  position: relative;
  font-weight: 900;
  color: #005CA2;
  margin: 80px 0;
  font-size: 32px;
}

@media (max-width: 575.98px) {
  .service-detail-page h2 {
    margin-bottom: 60px;
    font-size: 28px;
  }
}

.service-detail-page h2::after {
  content: "";
  position: absolute;
  top: -43px;
  left: 0;
  width: 268px;
  height: 145px;
  background-image: url("/img/title-bg.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 70%;
  z-index: 9999;
  display: block;
}

.service-detail-page p {
  text-align: left;
  color: black;
  font-size: 24px;
}

@media (max-width: 575.98px) {
  .service-detail-page p {
    font-size: 22px;
  }
}

.service-detail-page p.lead {
  font-size: 29px;
  font-weight: 300;
}

@media (max-width: 1199.98px) {
  .service-detail-page p.lead {
    font-size: 23px;
  }
}

@media (max-width: 991.98px) {
  .service-detail-page p.lead {
    font-size: 20px;
  }
}

@media (max-width: 575.98px) {
  .service-detail-page p.lead {
    font-size: 20px;
  }
}

.service-detail-page p.italik {
  font-family: georgia;
  font-style: italic;
}

@media (max-width: 575.98px) {
  .service-detail-page p.italik {
    font-size: 19px;
  }
}

.service-detail-page .img-highlight {
  margin: 50px 0;
  width: 70%;
}

@media (max-width: 1199.98px) {
  .service-detail-page .img-highlight {
    width: 80%;
  }
}

@media (max-width: 575.98px) {
  .service-detail-page .img-highlight {
    width: 100%;
  }
}

.service-detail-page .service-header {
  padding: 0;
  margin: 113px 0 60px 0;
}

@media (max-width: 575.98px) {
  .service-detail-page .service-header {
    margin: 113px 0 30px 0;
  }
}

.service-detail-page .service-header h1 {
  position: relative;
  text-align: left;
  color: #005CA2;
  font-size: 110px;
  text-shadow: 5px 5px white;
  line-height: .9;
  letter-spacing: -1.5px;
  font-weight: 900;
  margin-bottom: 70px;
  z-index: 9;
}

@media (max-width: 1199.98px) {
  .service-detail-page .service-header h1 {
    font-size: 84px;
  }
}

@media (max-width: 991.98px) {
  .service-detail-page .service-header h1 {
    font-size: 64px;
  }
}

@media (max-width: 575.98px) {
  .service-detail-page .service-header h1 {
    font-size: 40px;
    margin-bottom: 10px;
  }
}

.service-detail-page .service-header h1.smaller {
  font-size: 86px;
}

@media (max-width: 1199.98px) {
  .service-detail-page .service-header h1.smaller {
    font-size: 52px;
  }
}

@media (max-width: 991.98px) {
  .service-detail-page .service-header h1.smaller {
    font-size: 43px;
  }
}

@media (max-width: 575.98px) {
  .service-detail-page .service-header h1.smaller {
    font-size: 40px;
    margin-bottom: 10px;
  }
}

.service-detail-page .service-header p {
  text-align: left;
  color: black;
  font-size: 27px;
  padding-right: 30px;
}

@media (max-width: 575.98px) {
  .service-detail-page .service-header p {
    padding-right: 0;
    font-size: 23px;
    line-height: 1.4;
    margin-bottom: 20px;
  }
}

.service-detail-page .service-header .pic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-repeat: no-repeat;
  background-size: cover !important;
  background-position: center center;
  margin-top: -113px;
  height: 550px;
  background-size: 100% 100%;
  -webkit-animation: shrink 30s infinite alternate;
  animation: shrink 30s infinite alternate;
}

@media (max-width: 575.98px) {
  .service-detail-page .service-header .pic {
    height: 200px;
    margin-top: 0;
  }
}

@media (max-width: 991.98px) {
  .service-detail-page .services-pic {
    margin-bottom: 30px;
  }
}

@media (max-width: 991.98px) {
  .service-detail-page .services-pic img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    width: 100%;
    height: 320px;
  }
}

@media (max-width: 575.98px) {
  .service-detail-page .services-pic img {
    height: 220px;
  }
}

.service-detail-page .vehicles .item {
  border: 3px solid #005CA2;
  color: #005CA2;
  text-align: center;
  padding: 20px 20px;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 800;
}

@media (max-width: 991.98px) {
  .service-detail-page .vehicles .item {
    font-size: 14px;
  }
}

.breadcrumb-nav {
  margin-top: -50px;
  margin-bottom: 70px;
}

@media (max-width: 575.98px) {
  .breadcrumb-nav {
    margin-bottom: 20px;
  }
}

.breadcrumb-nav .breadcrumb {
  background: none;
  padding: 0;
}

.breadcrumb-nav .breadcrumb .breadcrumb-item {
  font-size: 16px;
}

@media (max-width: 575.98px) {
  .breadcrumb-nav .breadcrumb .breadcrumb-item {
    font-size: 14px;
  }
}

.breadcrumb-nav .breadcrumb .breadcrumb-item a {
  color: black;
  font-size: 16px;
}

@media (max-width: 575.98px) {
  .breadcrumb-nav .breadcrumb .breadcrumb-item a {
    font-size: 14px;
  }
}

.breadcrumb-nav .breadcrumb .breadcrumb-item.active {
  color: black;
  font-weight: 700;
}

.home-spot {
  padding: 100px 0;
}

.home-spot h2 {
  display: block;
  text-align: center;
  margin: 0;
  font-size: 66px;
  font-weight: 800;
  letter-spacing: -3px;
  line-height: .8;
  margin-bottom: 20px;
}

@media (max-width: 575.98px) {
  .home-spot h2 {
    font-size: 56px;
  }
}

.home-spot p {
  text-align: center;
  margin: 0;
  font-size: 33px;
  font-weight: 600;
  line-height: 1.3;
}

@media (max-width: 575.98px) {
  .home-spot p {
    font-size: 23px;
  }
}

.home-about {
  padding-top: 0;
}

.home-about h3 {
  font-size: 40px;
  font-weight: 800;
  color: #005CA2;
  margin-bottom: 50px;
}

.home-about p {
  font-size: 30px;
  font-weight: 600;
  color: black;
  margin-bottom: 60px;
}

@media (max-width: 1199.98px) {
  .home-about p {
    font-size: 22px;
    margin-bottom: 40px;
  }
}

@media (max-width: 991.98px) {
  .home-about p {
    font-size: 22px;
  }
}

.iletisim {
  padding: 50px 0;
  text-align: center;
}

.iletisim .pic {
  margin-bottom: 30px;
}

.iletisim .pic img {
  width: 60%;
}

.iletisim h2 {
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  font-size: 38px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
}

.iletisim h2::after {
  background-image: none;
}

@media (max-width: 575.98px) {
  .iletisim h2 {
    font-size: 30px;
  }
}

.iletisim p {
  text-align: center;
  color: #7A7B7A;
}

@media (max-width: 575.98px) {
  .iletisim p {
    font-size: 20px;
  }
}

.iletisim .tel {
  display: block;
  text-align: center;
  color: black;
  font-size: 28px;
  font-weight: 800;
  text-decoration: none;
  margin-bottom: 30px;
}

.boxes h2 {
  display: block;
  text-align: center;
}

.boxes.bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.home-services {
  padding: 10px 0;
}

.home-services .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-services .item .pic {
  opacity: 1;
}

.home-services .item h3 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 20px;
  color: white;
  font-weight: 800;
  z-index: 9;
}

@media (max-width: 575.98px) {
  .home-services .item h3 {
    font-size: 13px;
  }
}

.home-services .item:hover .pic {
  opacity: .9;
}

.home-services .item:hover .pic img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.home-services .item:hover h3 {
  left: 30px;
}

.home-countries {
  padding: 120px 0;
  text-align: center;
  margin-top: 100px;
}

@media (max-width: 991.98px) {
  .home-countries {
    padding: 50px 0;
  }
}

@media (max-width: 575.98px) {
  .home-countries {
    padding: 50px 0;
    margin-top: 30px;
  }
}

.home-countries .item {
  width: 100%;
}

.home-countries .item h2 {
  font-size: 80px;
  color: white;
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 30px;
}

@media (max-width: 991.98px) {
  .home-countries .item h2 {
    font-size: 60px;
  }
}

@media (max-width: 575.98px) {
  .home-countries .item h2 {
    font-size: 32px;
    letter-spacing: 0;
  }
}

.home-countries .item h2::after {
  background-image: none;
}

.about-start {
  padding: 70px 0 10px 0;
}

.about-start .pic {
  margin-bottom: 50px;
}

@media (max-width: 575.98px) {
  .about-start .pic img {
    width: 90%;
  }
}

.about-start p {
  font-size: 23px;
  font-weight: 600;
  color: black;
  text-align: left;
  line-height: 1.6;
  margin-bottom: 60px;
}

.about-start p.lead {
  font-size: 31px !important;
}

@media (max-width: 575.98px) {
  .about-start p.lead {
    font-size: 26px !important;
    line-height: 1.4;
  }
}

.about-services {
  padding: 100px 0;
}

@media (max-width: 575.98px) {
  .about-services {
    padding: 60px 0 0 0;
  }
}

.about-services h2 {
  font-size: 99px;
  font-weight: 900;
  color: #005CA2;
  text-align: left;
  letter-spacing: -4px;
  margin-bottom: 20px;
}

@media (max-width: 575.98px) {
  .about-services h2 {
    font-size: 69px;
  }
}

.about-services p {
  font-size: 36px;
  font-weight: 500;
  color: black;
  text-align: left;
  line-height: 1.1;
  margin-bottom: 60px;
}

@media (max-width: 575.98px) {
  .about-services p {
    margin-bottom: 40px;
  }
}

.about-services .wrapper {
  background-size: 61%;
  background-position: center right;
}

@media (max-width: 575.98px) {
  .about-services .wrapper {
    background-size: 0;
  }
}

@media (max-width: 575.98px) {
  .about-services .wrapper .row {
    margin-bottom: 0 !important;
  }
}

.about-services .wrapper .white-box-top {
  position: absolute;
  right: -16px;
  bottom: -30px;
  height: 120%;
  width: 110%;
  background-color: white;
}

@media (max-width: 575.98px) {
  .about-services .wrapper .white-box-top {
    display: none;
  }
}

.about-services .wrapper .white-box-bottom {
  position: absolute;
  right: -15px;
  bottom: -30px;
  height: 120%;
  width: 110%;
  background-color: white;
}

@media (max-width: 575.98px) {
  .about-services .wrapper .white-box-bottom {
    display: none;
  }
}

.about-services .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
}

@media (max-width: 575.98px) {
  .about-services .item {
    margin-bottom: 30px;
  }
}

.about-services .item .pic {
  opacity: 1;
}

.about-services .item .pic img {
  width: 100%;
  height: 347px;
}

@media (max-width: 575.98px) {
  .about-services .item .pic img {
    width: 100%;
    height: 228px;
  }
}

@media (min-width: 991.98px) {
  .about-services .item .pic img {
    width: 100%;
    height: 228px;
  }
}

@media (min-width: 1200px) {
  .about-services .item .pic img {
    width: 100%;
    height: 347px;
  }
}

.about-services .item h3 {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 23px;
  color: white;
  font-weight: 900;
  z-index: 9;
}

@media (max-width: 1199.98px) {
  .about-services .item h3 {
    font-size: 18px;
  }
}

@media (max-width: 575.98px) {
  .about-services .item h3 {
    font-size: 19px;
  }
}

.about-services .item:hover .pic {
  opacity: .9;
}

.about-services .item:hover .pic img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.about-services .item:hover h3 {
  left: 30px;
}

.about-team {
  padding: 70px 0;
}

.about-team .pic {
  margin-bottom: 30px;
}

.about-team p {
  font-size: 24px;
  font-weight: 500;
  color: black;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 60px;
}

@media (max-width: 575.98px) {
  .about-team p {
    font-size: 21px;
    margin-bottom: 0;
  }
}

.maps p {
  text-align: center;
  color: #7A7B7A;
  margin-bottom: 50px !important;
}

.maps p.lead {
  text-align: center;
  color: black;
  margin-bottom: 50px !important;
}

.maps .maps-wrapper {
  margin-bottom: 70px;
}

.maps .maps-wrapper .btn {
  font-size: 16px;
  border-radius: 99px;
  border-width: 3px;
  padding: 4px 30px;
  margin-bottom: 20px;
}

@media (max-width: 1199.98px) {
  .contact-us-page .map {
    padding: 50px 0;
  }
}

@media (max-width: 575.98px) {
  .contact-us-page .map {
    padding: 20px 0;
  }
}

.contact-us-page .map iframe {
  width: 100%;
  height: 250px;
}

.contact-us-page .address-form {
  padding-top: 0;
}

@media (max-width: 575.98px) {
  .contact-us-page .address-form {
    padding-bottom: 30px;
  }
}

.contact-us-page .address-form .tel {
  display: block;
  font-size: 29px;
  font-weight: 800;
  margin-bottom: 10px;
  margin-bottom: 20px;
}

.contact-us-page .address-form .mail {
  font-weight: 600;
  text-decoration: underline;
}

.contact-us-page .address-form h3 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 30px;
}

@media (max-width: 575.98px) {
  .contact-us-page .address-form h3 {
    font-size: 28px;
    margin-top: 30px;
  }
}

.contact-us-page .address-form h4 {
  font-size: 18px;
  font-weight: 700;
  padding-top: 50px;
}

.services-page .start {
  padding: 100px 0;
}

@media (max-width: 575.98px) {
  .services-page .start {
    padding: 70px 0;
  }
}

@media (max-width: 575.98px) {
  .services-page .start p {
    margin-bottom: 0 !important;
  }
}

.services-services {
  padding: 10px 0;
}

@media (max-width: 575.98px) {
  .services-services {
    padding: 0;
  }
}

.services-services h2 {
  position: relative;
  font-size: 48px;
  text-align: left;
  color: black;
}

@media (max-width: 575.98px) {
  .services-services h2 {
    font-size: 32px;
    text-align: center;
    letter-spacing: -0.7px;
  }
}

.services-services .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  margin-bottom: 30px;
}

.services-services .item .pic {
  opacity: 1;
}

.services-services .item h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 28px;
  color: black;
  font-weight: 800;
  z-index: 9;
  height: 100%;
  padding-left: 40px;
  padding-right: 40px;
  background: #e2e2e2;
  background: -webkit-gradient(linear, left top, right top, from(#e2e2e2), to(white));
  background: linear-gradient(90deg, #e2e2e2 0%, white 100%);
}

@media (max-width: 1199.98px) {
  .services-services .item h3 {
    font-size: 23px;
  }
}

@media (max-width: 575.98px) {
  .services-services .item h3 {
    font-size: 18px;
  }
}

.services-services .item h3 span {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.services-services .item:hover img {
  -webkit-filter: brightness(1.3);
          filter: brightness(1.3);
}

.services-services .item:hover h3 {
  padding-left: 50px;
  padding-right: 30px;
}

.countries-page .maps {
  padding: 100px 0 0 0;
}

.countries-page .maps .maps-buttons {
  margin-bottom: 50px;
}

@media (max-width: 575.98px) {
  .countries-page .maps .maps-buttons .btn {
    padding: 4px 7px;
    font-size: 12px;
  }
}

.countries-page .maps .maps-wrapper .maritime,
.countries-page .maps .maps-wrapper .airway,
.countries-page .maps .maps-wrapper .railway {
  display: none;
}

/*FOOTER*/
footer {
  padding-bottom: 70px;
}

@media (max-width: 575.98px) {
  footer {
    text-align: center;
  }
}

footer hr {
  border: none;
  border-top: 1px solid #e6e6e6;
  padding-top: 50px;
}

footer .logo {
  margin-bottom: 30px;
}

footer .logo img {
  width: 80px;
}

footer .copyright {
  font-size: 12px;
  color: #7A7B7A;
  margin-bottom: 30px;
}

@media (max-width: 575.98px) {
  footer .dropup {
    margin-bottom: 30px;
  }
}

footer h3 {
  color: #005CA2;
  font-size: 16px !important;
  font-weight: 800 !important;
}

@media (max-width: 575.98px) {
  footer h3 {
    text-align: center;
  }
}

footer p {
  color: #7A7B7A !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

@media (max-width: 575.98px) {
  footer p {
    text-align: center;
  }
}

footer ul {
  list-style-type: none;
  padding: 0;
}

@media (max-width: 575.98px) {
  footer ul {
    text-align: center;
  }
}

footer ul li {
  margin-bottom: 5px;
}

footer ul li a {
  color: #7A7B7A;
  font-size: 13px;
  line-height: 1.3;
  display: block;
  font-weight: 600;
}

footer .social {
  text-align: right;
}

@media (max-width: 575.98px) {
  footer .social {
    text-align: center;
    margin-top: 30px;
  }
}

footer .social a img {
  height: 24px;
  margin-left: 5px;
}

@media (max-width: 991.98px) {
  footer .social a img {
    margin-left: 0;
    margin-bottom: 5px;
  }
}

@media (max-width: 991.98px) {
  footer .social a {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */