/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");
* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  transition: all 0.3s linear;
}

:root {
  --select-border: $primary;
  --select-focus: $secondary;
  --select-arrow: var(--select-border);
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 9rem;
}
html::-webkit-scrollbar {
  width: 0.5rem;
}
html::-webkit-scrollbar-track {
  background: #022f46;
}
html::-webkit-scrollbar-thumb {
  background: #219ebc;
}

body {
  background: whitesmoke;
  overflow-x: hidden;
  position: relative;
}

@keyframes anchorDrop {
  0% {
    opacity: 0.5;
    top: 1%;
  }
  60% {
    opacity: 1;
    top: 84%;
  }
  80% {
    top: 81%;
  }
  90% {
    top: 84%;
  }
  95% {
    top: 83%;
  }
  100% {
    top: 86%;
  }
}
.anchorDrop {
  animation-name: anchorDrop;
}

section {
  padding: 3rem 8%;
}

.section {
  padding: 3rem 8%;
}

.heading {
  font-size: 1.5rem;
  color: #022f46;
  padding-left: 45px;
  position: relative;
  margin-bottom: 0.5rem;
}
.heading::before {
  content: "";
  position: absolute;
  width: 35px;
  height: 35px;
  background: url("../images/main/life-saver.png") no-repeat center center/cover;
  top: 0;
  left: 0;
  z-index: 9;
}
.heading.heading-light {
  color: #b7b7b7 !important;
}
.heading.heading-white {
  color: #fff !important;
}

.heading-simple {
  font-size: 1.5rem;
  color: #022f46;
  position: relative;
  margin-bottom: 0.5rem;
}
.heading-simple.heading-light {
  color: #b7b7b7 !important;
}
.heading-simple.heading-white {
  color: #fff !important;
}

.body-text {
  font-size: 1rem;
  color: rgb(99, 99, 99);
  margin-bottom: 1.5rem;
}
.body-text.body-text-light {
  color: #fff !important;
}

.text-primary {
  color: #022f46 !important;
}

.text-light {
  color: #CECECE !important;
}

.text-info {
  color: #219ebc !important;
}

.text-muted {
  color: #EBECED !important;
}

.btn {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 5rem;
  cursor: pointer;
}
.btn:hover {
  background-color: white;
}

.btn-simple {
  display: block;
  text-align: center;
  padding: 0.8rem 2rem;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
}

.btn-small {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  border-radius: 5px;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: #035078;
}
.btn-primary:hover {
  background-color: #fff;
  color: #022f46;
}

.btn-danger {
  color: #fff;
  background: #E63946;
}
.btn-danger:hover {
  background-color: #fff;
  color: #022f46;
}

.btn-info {
  color: #fff;
  background: #219ebc;
}
.btn-info:hover {
  background-color: #fff;
  color: #022f46;
}

.btn-warning {
  color: #fff;
  background: #FB8500;
}
.btn-warning:hover {
  background-color: #fff;
  color: #022f46;
}

hr {
  height: 0.3rem;
  background-color: #022f46;
  margin-top: 3rem;
}

.paragraph-shadow {
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
  padding: 1rem;
}

#menu-btn {
  font-size: 2rem;
  display: none;
  color: #fff;
  cursor: pointer;
}

#menu-anchor {
  display: none;
  top: 10%;
  left: 2%;
}

#lang-btn {
  cursor: pointer;
}

#modal {
  display: none;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  overflow: hidden;
}
#modal .modal-container {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.6);
  z-index: 1001;
}
#modal .modal-container #close-btn {
  position: absolute;
  right: 1rem;
  top: 1rem;
  color: white;
  font-size: 40px;
  font-weight: bold;
  background: #022f46;
  padding: 0 0.5rem;
  cursor: pointer;
  border-radius: 1rem;
}
#modal .modal-container #close-btn:hover {
  background-color: white;
  color: #022f46;
}
#modal .modal-content {
  position: absolute;
  height: 90%;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  overflow-x: hidden;
  overflow-y: scroll;
  z-index: 1002;
}
#modal .modal-content .modal-content-image {
  height: 90%;
  width: auto;
  text-align: center;
}
#modal .modal-content .modal-content-image img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
#modal.modal-open {
  display: block;
}

nav {
  position: fixed;
  z-index: 10;
  width: 100%;
  background: #022f46;
  padding: 0 9%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
nav .logo {
  height: 3.5rem;
  color: white;
  font-weight: bold;
}
nav .logo span {
  line-height: 3.5rem;
}
nav .logo img {
  height: 100%;
  width: auto;
  padding: 0.5rem 0.5rem;
}
nav menu {
  background: #022f46;
  flex-grow: 1;
  text-align: end;
  display: flex;
  flex-direction: row;
  align-items: center;
}
nav menu .navigation {
  flex-grow: 1;
}
nav menu .navigation .menu-item {
  list-style: none;
  display: inline-block;
}
nav menu .navigation .menu-item .menu-item-link {
  font-size: 0.8rem;
  font-weight: bold;
  color: #fff;
  padding: 0.5rem 0.8rem;
}
nav menu .navigation .menu-item .menu-item-link:hover {
  color: #FFB703;
}
nav menu .navigation .menu-item.navigation-lang {
  position: relative;
}
nav menu .navigation .menu-item.navigation-lang .lang-item {
  font-size: 0.8rem;
  font-weight: bold;
  color: #fff;
  padding: 0.5rem 0.8rem;
}
nav menu .navigation .menu-item.navigation-lang .lang-item svg,
nav menu .navigation .menu-item.navigation-lang .lang-item span,
nav menu .navigation .menu-item.navigation-lang .lang-item i {
  vertical-align: middle;
}
nav menu .navigation .menu-item.navigation-lang .lang-item svg {
  margin-right: 0.3rem;
}
nav menu .navigation .menu-item.navigation-lang .lang-item:hover {
  color: #FFB703;
}
nav menu .navigation .menu-item.navigation-lang .navigation-lang-options {
  position: absolute;
  top: 140%;
  left: 0;
  right: 0;
  background: rgba(2, 47, 70, 0.8);
  display: flex;
  flex-direction: column;
  align-items: start;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
nav menu .navigation .menu-item.navigation-lang .navigation-lang-options .lang-item {
  padding: 0.5rem;
  width: 100%;
}
nav menu .navigation .menu-item.navigation-lang .navigation-lang-options .lang-item:hover {
  background: #022f46;
  color: #fff !important;
}
nav menu .navigation .menu-item.navigation-lang .navigation-lang-options.collapsed {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
          clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
nav menu .navigation-extra {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
nav menu .navigation-extra .navigation-extra-link {
  font-size: 0.8rem;
  color: #fff;
  font-weight: bold;
  padding: 0.5rem 1rem;
  margin-left: 0.5rem;
  border-radius: 1rem;
}
nav menu .navigation-extra .navigation-extra-link.crew-world-link {
  background: #FB8500;
}
nav menu .navigation-extra .navigation-extra-link.find-job-link {
  background: #219ebc;
}
nav menu .navigation-extra .navigation-extra-link.find-crew-link {
  background: #E63946;
}
nav menu .navigation-extra .navigation-extra-link:hover {
  background: #fff;
  color: #022f46;
}

/* Fading animation */
.fade-effect {
  animation-name: fade-effect;
  animation-duration: 2.5s;
}

@keyframes fade-effect {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
header {
  width: 100%;
  height: 55vh;
  margin-top: 55px;
  overflow: hidden;
}
header.isHomeFalse {
  height: 35vh;
}
header .header-container {
  height: 100%;
  position: relative;
}
header .header-container .header-slides {
  height: 100%;
}
header .header-container .header-slides img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header .header-container .header-slides .header-slides-text {
  color: #f2f2f2;
  font-size: 1.5rem;
  padding: 8px 12px;
  position: absolute;
  bottom: 10%;
  width: 100%;
  text-align: start;
}
header .header-container .header-slides .header-slides-text .header-slides-text-link {
  display: block;
  width: 90%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
header .header-container .header-slides .header-slides-text .header-slides-text-link p {
  display: inline-block;
  background-color: rgba(2, 47, 70, 0.8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
}
header .header-container .header-slides .header-slides-text .header-slides-text-link p:first-child {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
header .header-container .slide-control {
  cursor: pointer;
  position: absolute;
  top: 45%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 38px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
header .header-container .slide-control.prev {
  border-radius: 0 3px 3px 0;
}
header .header-container .slide-control.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
header .header-container .slide-control:hover {
  background-color: rgba(2, 47, 70, 0.5);
}
header .header-container .page-header {
  height: 100%;
}
header .header-container .page-header img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header .header-container .page-header .page-header-text {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  color: #f2f2f2;
  padding: 10px 12px;
  background-color: rgba(17, 17, 17, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
header .header-container .page-header .page-header-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
header .header-container .page-header .page-header-text p {
  background-color: #022f46;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 1.5rem;
}
header .header-container .page-header .page-header-text p:first-of-type {
  margin-bottom: 0.5rem;
}
@keyframes rotateServicesWheel {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(160deg);
  }
  50% {
    transform: rotate(-200deg);
  }
  75% {
    transform: rotate(90deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes arrow {
  0% {
    font-size: rotate(-0.5deg);
  }
  50% {
    transform: rotate(0.5deg);
  }
  100% {
    transform: rotate(-0.5deg);
  }
}
main .services {
  background: rgb(2, 47, 70);
  background: linear-gradient(180deg, rgb(2, 47, 70) 0%, rgb(32, 79, 117) 100%, rgb(255, 255, 255) 100%);
}
main .services .services-container {
  position: relative;
}
main .services .services-container .services-items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
}
main .services .services-container .services-items .services-item {
  width: 45%;
  margin-bottom: 1rem;
  text-align: start;
}
main .services .services-container .services-items .services-item .services-item-link {
  background: #fff;
  color: #022f46;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 2rem;
  border: 0.2rem solid #022f46;
  border: 1px solid white;
}
main .services .services-container .services-items .services-item .services-item-link svg {
  padding: 5px 5px 5px 0;
  font-weight: bold;
  width: 50px !important;
  height: 50px !important;
  fill: #219ebc;
}
main .services .services-container .services-items .services-item .services-item-link i {
  font-size: 2rem;
  color: #219ebc;
}
main .services .services-container .services-items .services-item .services-item-link span {
  font-size: 1rem;
}
main .services .services-container .services-items .services-item .services-item-link:hover {
  color: orange;
}
main .services .services-container .services-items .services-item .services-item-link:hover span {
  letter-spacing: 0.5px;
}
main .services .services-container .services-items .services-item:nth-child(odd) .services-item-link {
  flex-direction: row;
  padding-left: 1rem;
}
main .services .services-container .services-items .services-item:nth-child(odd) .services-item-link i,
main .services .services-container .services-items .services-item:nth-child(odd) .services-item-link svg {
  margin-right: 0.8rem;
}
main .services .services-container .services-items .services-item:nth-child(even) .services-item-link {
  flex-direction: row-reverse;
  padding-right: 1rem;
}
main .services .services-container .services-items .services-item:nth-child(even) .services-item-link i,
main .services .services-container .services-items .services-item:nth-child(even) .services-item-link svg {
  margin-left: 0.8rem;
}
main .services .services-container .ship-steering-wheel {
  background: url("../images/main/compass-logo.png"), rgba(255, 255, 255, 0.8);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 250px;
  width: 250px;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  text-align: center;
}
main .services .services-container .ship-steering-wheel img {
  height: 80%;
  margin-top: 10%;
  width: auto;
  animation: rotateServicesWheel 10s linear infinite;
}
main .home-about .home-about-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
main .home-about .home-about-container .home-about-container-item {
  width: 45%;
}
main .home-about .home-about-container .home-about-container-item .compass {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: center;
  border-radius: 50%;
}
main .home-about .home-about-container .home-about-container-item .compass:before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  bottom: 15px;
  left: 50%;
  border-style: solid;
  border-width: 24px 12px 0 12px;
  border-color: #022f46 transparent transparent transparent;
  transform: translateX(-50%);
  transition: bottom 1s linear;
  z-index: 1;
}
main .home-about .home-about-container .home-about-container-item .compass:after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}
main .home-about .home-about-container .home-about-container-item .compass .compass-container {
  width: 350px;
  height: 350px;
  position: relative;
  display: grid;
  align-items: center;
  justify-items: center;
  transition: all 1s linear;
  border: 20px solid #022f46;
  background: #fff;
  border-radius: 50%;
}
main .home-about .home-about-container .home-about-container-item .compass .compass-container:before {
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 15px solid #EBECED;
}
main .home-about .home-about-container .home-about-container-item .compass .compass-container .compass-container-item {
  width: 25px;
  height: 25px;
  position: absolute;
  display: grid;
  align-content: start;
  justify-content: center;
  justify-items: center;
  padding-bottom: 225px;
  transform: rotate(0deg);
  transition: all 1s linear;
}
main .home-about .home-about-container .home-about-container-item .compass .compass-container .compass-container-item a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  margin-top: -25px;
  transform: rotate(0deg);
  transition: transform 1s linear;
  color: #8ECAE6;
  font-size: 25px;
  font-weight: bold;
  text-decoration: none;
  text-shadow: 1px 1px 2px #fff, -1px -1px 2px #fff;
}
main .home-about .home-about-container .home-about-container-item .compass .compass-container .compass-container-item span {
  display: inline-block;
  width: 0;
  transition: all 1s linear;
  margin-top: 25px;
  border-width: 0 10px 95px 10px;
  border-bottom-color: #CECECE;
  border-left-color: transparent;
  border-right-color: transparent;
  border-top-color: transparent;
  border-style: solid;
}
main .home-about .home-about-container .home-about-container-item .compass .compass-arrow {
  position: absolute;
  width: 25%;
  height: 65%;
  display: grid;
  justify-items: center;
  border-radius: 50%;
}
main .home-about .home-about-container .home-about-container-item .compass .compass-arrow .compass-arrow-top {
  position: relative;
}
main .home-about .home-about-container .home-about-container-item .compass .compass-arrow .compass-arrow-top:before, main .home-about .home-about-container .home-about-container-item .compass .compass-arrow .compass-arrow-top:after {
  position: absolute;
  display: block;
  top: 0;
  content: "";
  width: 0;
  height: 0;
}
main .home-about .home-about-container .home-about-container-item .compass .compass-arrow .compass-arrow-top:after {
  border-style: solid;
  border-width: 0 23px 113.75px 0;
  border-color: transparent transparent #3aa3d4 transparent;
}
main .home-about .home-about-container .home-about-container-item .compass .compass-arrow .compass-arrow-top:before {
  right: 100%;
  border-style: solid;
  border-width: 0 0 113.75px 23px;
  border-color: transparent transparent #8ECAE6 transparent;
}
main .home-about .home-about-container .home-about-container-item .compass .compass-arrow .compass-arrow-bottom {
  position: relative;
}
main .home-about .home-about-container .home-about-container-item .compass .compass-arrow .compass-arrow-bottom:before, main .home-about .home-about-container .home-about-container-item .compass .compass-arrow .compass-arrow-bottom:after {
  position: absolute;
  content: "";
  bottom: 0;
  width: 0;
  height: 0;
}
main .home-about .home-about-container .home-about-container-item .compass .compass-arrow .compass-arrow-bottom:after {
  border-style: solid;
  border-width: 113.75px 23px 0 0;
  border-color: #1e678a transparent transparent transparent;
}
main .home-about .home-about-container .home-about-container-item .compass .compass-arrow .compass-arrow-bottom:before {
  right: 100%;
  border-style: solid;
  border-width: 113.75px 0 0 23px;
  border-color: #2887b3 transparent transparent transparent;
}
main .home-about .home-about-container .home-about-container-item .compass:hover .compass-arrow {
  animation: 0.25s ease-in arrow infinite;
}
main .home-about .home-about-container .home-about-container-item .compass:hover .compass-container .compass-container-item a {
  animation: 1s linear pulse;
}
main .home-about .home-about-container .home-about-container-item .compass_content {
  position: relative;
  padding: 60px 0;
  width: 100%;
}
main .home-about .home-about-container .home-about-container-item .compass_content .compass_content-container {
  height: 100%;
}
main .home-about .home-about-container .home-about-container-item .compass_content .compass_content-container .compass_content-container-item {
  visibility: hidden;
  width: 100%;
  height: 0;
  left: 0;
  top: 0;
  transition: left 1s linear, opacity 1s linear;
}
main .home-about .home-about-container .home-about-container-item .compass_content .compass_content-container .compass_content-container-item.active {
  visibility: visible;
  width: 100%;
  height: 100%;
}
main .home-about .home-about-container .home-about-container-item .compass_content .compass_content-container .compass_content-container-item.active .item-header:before {
  bottom: 100%;
}
main .home-about .home-about-container .home-about-container-item .compass_content .compass_content-container .compass_content-container-item p {
  line-height: 1.4;
}
main .home-about .home-about-container .home-about-container-item .compass_content .compass_content-container .compass_content-container-item .item-header {
  position: relative;
  background: #022f46;
  color: #60cae3;
  padding: 20px;
  text-align: center;
  margin-bottom: 30px;
}
main .home-about .home-about-container .home-about-container-item .compass_content .compass_content-container .compass_content-container-item .item-header:before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  bottom: 100%;
  border-style: solid;
  border-width: 0 25px 25px 25px;
  border-color: transparent transparent #022f46 transparent;
  transform: translateX(-50%);
  transition: bottom 1s linear;
  z-index: -1;
}
main .home-about .home-about-container .home-about-container-item .compass_content .compass_content-container .compass_content-container-item .item-header h2 {
  font-size: 24px;
}
main .home-about .home-about-container .home-about-container-item .compass_content .compass_content-container .compass_content-container-item .item-header p {
  padding-top: 20px;
}
main .home-about .home-about-container .home-about-container-item .compass_content .compass_content-container .compass_content-container-item .desc {
  background: rgba(2, 47, 70, 0.8);
  color: #fff;
  padding: 20px;
  text-align: center;
  border: 1px solid #022f46;
  position: relative;
}
main .home-about .home-about-container .home-about-container-item .compass_content .compass_content-container .compass_content-container-item .desc:after {
  position: absolute;
  content: "";
  display: inline-block;
  bottom: 100%;
  width: 2px;
  height: 50px;
  background: rgba(2, 47, 70, 0.8);
  z-index: -1;
}
main .home-about .home-about-container .home-about-container-item .compass_content .compass_content-container .compass_content-container-item .item-long-content {
  display: grid;
  grid-template-columns: 152px 1fr;
  align-content: center;
  grid-gap: 20px;
}
main .home-about .home-about-container .home-about-container-item .compass_content .compass_content-container .compass_content-container-item .item-long-content .desc {
  display: grid;
  align-content: center;
  justify-content: center;
  justify-items: center;
  align-items: center;
}
main .home-about .home-about-container .home-about-container-item .compass_content .compass_content-container .compass_content-container-item .item-long-content .desc:before {
  position: absolute;
  content: "";
  display: inline-block;
  left: 100%;
  width: 50px;
  height: 2px;
  background: #B9B8DB;
  z-index: -1;
}
main .home-about .home-about-container .home-about-container-item .compass_content .compass_content-container .compass_content-container-item .item-long-content .longdesc {
  background: #fff;
  padding: 10px;
  border: 1px solid #022f46;
}
main .home-brochure .home-brochure-container .home-brochure-container-items {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
main .home-brochure .home-brochure-container .home-brochure-container-items .home-brochure-container-item {
  position: relative;
  width: 50%;
}
main .home-brochure .home-brochure-container .home-brochure-container-items .home-brochure-container-item h2 {
  font-size: 30px;
}
main .home-brochure .home-brochure-container .home-brochure-container-items .home-brochure-container-item span {
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
}
main .home-brochure .home-brochure-container .home-brochure-container-items .home-brochure-container-item p {
  margin-top: 1rem;
  color: #fff;
}
main .home-brochure .home-brochure-container .home-brochure-container-items .home-brochure-container-item:first-child {
  background: #035078;
}
main .home-brochure .home-brochure-container .home-brochure-container-items .home-brochure-container-item:first-child h2 {
  color: #FFB703;
}
main .home-brochure .home-brochure-container .home-brochure-container-items .home-brochure-container-item:last-child {
  background: #e9a600;
}
main .home-brochure .home-brochure-container .home-brochure-container-items .home-brochure-container-item:last-child h2 {
  color: #022f46;
}
main .home-partners .home-partners-container {
  width: 100%;
  height: 150px;
}
main .home-partners .home-partners-container .swiper.partnersSwiper {
  width: 100%;
  height: 100%;
}
main .home-partners .home-partners-container .swiper.partnersSwiper .swiper-wrapper .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
main .home-partners .home-partners-container .swiper.partnersSwiper .swiper-wrapper .swiper-slide a {
  width: 100%;
  height: 90%;
}
main .home-partners .home-partners-container .swiper.partnersSwiper .swiper-wrapper .swiper-slide a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(90%);
}
main .home-partners .home-partners-container .swiper.partnersSwiper .swiper-wrapper .swiper-slide a:hover img {
  filter: grayscale(0%);
}
main .home-jobs {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/slider/slide-3.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  background-attachment: fixed;
}
main .home-jobs .heading {
  display: inline-block;
}
main .home-jobs .heading::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: url("../images/main/fire-icon.svg") no-repeat center center/cover;
  top: 0;
  left: 0;
  z-index: 9;
}
main .home-jobs .home-jobs-container {
  width: 100%;
  height: 300px;
}
main .home-jobs .home-jobs-container .swiper.jobsSwiper {
  width: 100%;
  height: 100%;
}
main .home-jobs .home-jobs-container .swiper.jobsSwiper .swiper-wrapper .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(2, 47, 70, 0.8);
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 2rem;
  padding-left: 0.5rem;
}
main .home-jobs .home-jobs-container .swiper.jobsSwiper .swiper-wrapper .swiper-slide .home-jobs-item .home-jobs-item-heading {
  color: #fff;
  margin-bottom: 0.5rem;
}
main .home-jobs .home-jobs-container .swiper.jobsSwiper .swiper-wrapper .swiper-slide .home-jobs-item .home-jobs-item-vessel {
  color: #CECECE;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
main .home-jobs .home-jobs-container .swiper.jobsSwiper .swiper-wrapper .swiper-slide .home-jobs-item .home-jobs-item-vessel strong {
  color: #fff;
}
main .home-jobs .home-jobs-container .swiper.jobsSwiper .swiper-wrapper .swiper-slide .home-jobs-item .home-jobs-item-salary_location {
  color: #219ebc;
  margin-bottom: 0.5rem;
  font-weight: bolder;
  font-size: 1rem;
}
main .home-jobs .home-jobs-container .swiper.jobsSwiper .swiper-wrapper .swiper-slide .home-jobs-item .home-jobs-item-learn_more {
  margin-bottom: 0.5rem;
  color: #CECECE;
}
main .home-jobs .home-jobs-container .swiper.jobsSwiper .swiper-wrapper .swiper-slide:hover {
  background-color: rgba(17, 17, 17, 0.6);
}
main .home-jobs .home-jobs-container-buttons {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
main .home-facts .home-facts-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 1rem;
}
main .home-facts .home-facts-container .home-facts-container-item {
  margin-bottom: 1rem;
}
main .home-facts .home-facts-container .home-facts-container-item h4 {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 1rem;
  color: rgba(2, 47, 70, 0.8);
}
main .home-facts .home-facts-container .home-facts-container-item .home-facts-counter {
  position: relative;
  width: 160px;
  height: 160px;
  margin-bottom: 1rem;
}
main .home-facts .home-facts-container .home-facts-container-item .home-facts-counter .home-facts-counter-outer {
  width: 160px;
  height: 160px;
  padding: 20px;
  box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15), -6px -6px -10px -1px rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}
main .home-facts .home-facts-container .home-facts-container-item .home-facts-counter .home-facts-counter-outer .home-facts-counter-inner {
  height: 120px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: inset 4px 4px 6px -1px rgba(0, 0, 0, 0.2), inset -4px -4px 6px -1px rgba(255, 255, 255, 0.7), -0.5px -0.5px 0px rgb(255, 255, 255), 0.5px 0.5px 0px rgba(0, 0, 0, 0.15), 0px 12px 10px -10px rgba(0, 0, 0, 0.05);
}
main .home-facts .home-facts-container .home-facts-container-item .home-facts-counter .home-facts-counter-outer .home-facts-counter-inner .home-facts-counter-number {
  font-size: 30px;
  font-weight: 600;
  color: #555;
}
main .home-facts .home-facts-container .home-facts-container-item .home-facts-counter svg {
  position: absolute;
  bottom: 0;
  left: 0;
}
main .home-facts .home-facts-container .home-facts-container-item .home-facts-counter svg circle {
  fill: none;
  stroke: url(#GradientColor);
  stroke-width: 20px;
  stroke-dasharray: 450;
  stroke-dashoffset: 450;
  animation: factCounter 4s linear forwards;
}
@keyframes factCounter {
  100% {
    stroke-dashoffset: 0;
  }
}
main .home-accr {
  background: #022f46;
}
main .home-accr .home-accr-container h3 {
  color: #CECECE;
  margin-bottom: 1rem;
}
main .home-accr .home-accr-container .home-accr-container-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
main .home-accr .home-accr-container .home-accr-container-items .home-accr-container-item {
  width: 48%;
}
main .home-accr .home-accr-container .home-accr-container-items .home-accr-container-item.left p {
  color: #fff;
}
main .home-accr .home-accr-container .home-accr-container-items .home-accr-container-item.left .accr-awards {
  display: flex;
  align-items: start;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 2rem;
}
main .home-accr .home-accr-container .home-accr-container-items .home-accr-container-item.left .accr-awards img {
  width: 30%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 0.1rem solid #fff;
  margin-right: 2rem;
}
main .home-accr .home-accr-container .home-accr-container-items .home-accr-container-item.right .swiper.accrSwiper {
  width: 100%;
  height: 100%;
}
main .home-accr .home-accr-container .home-accr-container-items .home-accr-container-item.right .swiper.accrSwiper .swiper-wrapper .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
main .home-accr .home-accr-container .home-accr-container-items .home-accr-container-item.right .swiper.accrSwiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .home-accr .home-accr-container .home-accr-container-items .home-accr-container-item.right .swiper.accrSwiper .swiper-wrapper .swiper-slide .accr-zoom-link {
  display: none;
  position: absolute;
  top: 3%;
  bottom: 3%;
  left: 3%;
  right: 3%;
  align-items: center;
  justify-content: center;
  background-color: rgba(2, 47, 70, 0.5);
}
main .home-accr .home-accr-container .home-accr-container-items .home-accr-container-item.right .swiper.accrSwiper .swiper-wrapper .swiper-slide .accr-zoom-link i {
  color: #fff;
  font-size: 2.5rem;
}
main .home-accr .home-accr-container .home-accr-container-items .home-accr-container-item.right .swiper.accrSwiper .swiper-wrapper .swiper-slide:hover .accr-zoom-link {
  display: flex;
  z-index: 5;
}
main .home-accr .home-accr-container .home-accr-container-items .home-accr-container-item.right .swiper.accrSwiper .swiper-button-next,
main .home-accr .home-accr-container .home-accr-container-items .home-accr-container-item.right .swiper.accrSwiper .swiper-button-prev {
  color: #022f46 !important;
}
main .about-specialties .about-specialties-container .about-container-specialties-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
main .about-specialties .about-specialties-container .about-container-specialties-items .about-container-specialties-item {
  width: 20%;
  margin-bottom: 1.5rem;
  padding: 1.5rem 0.5rem 0rem 0.5rem;
  text-align: center;
  border-radius: 2rem;
}
main .about-specialties .about-specialties-container .about-container-specialties-items .about-container-specialties-item .about-container-specialties-item-link {
  display: inline-block;
  vertical-align: middle;
}
main .about-specialties .about-specialties-container .about-container-specialties-items .about-container-specialties-item .about-container-specialties-item-link img {
  height: 100px;
  width: 100px;
  background-color: #fff;
  border-radius: 100%;
  border: 0.2rem solid #219ebc;
  padding: 0.5rem;
}
main .about-specialties .about-specialties-container .about-container-specialties-items .about-container-specialties-item .about-container-specialties-item-link span {
  display: block;
}
main .about-specialties .about-specialties-container .about-container-specialties-items .about-container-specialties-item:hover {
  background: #022f46;
}
main .about-specialties .about-specialties-container .about-container-specialties-items .about-container-specialties-item:hover .about-container-specialties-item-link span {
  color: #EBECED !important;
}
main .about-whatwedo {
  background: rgb(2, 47, 70);
  background: linear-gradient(180deg, rgb(2, 47, 70) 0%, rgb(32, 79, 117) 100%, rgb(255, 255, 255) 100%);
  color: #CECECE;
}
main .about-whatwedo h3 {
  color: #219ebc;
  margin-bottom: 0.5rem;
}
main .about-whatwedo span {
  color: #219ebc;
  font-weight: bold;
}
main .about-corevalues .about-corevalues-container .about-corevalues-container-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
main .about-corevalues .about-corevalues-container .about-corevalues-container-items .about-corevalues-container-item {
  width: 50%;
}
main .about-corevalues .about-corevalues-container .about-corevalues-container-items .about-corevalues-container-item ul li {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 1rem;
  width: 90%;
}
main .about-corevalues .about-corevalues-container .about-corevalues-container-items .about-corevalues-container-item ul li img {
  width: 50px;
  height: 50px;
  padding: 0.5rem;
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  background: #219ebc;
  margin-right: 1rem;
}
main .about-corevalues .about-corevalues-container .about-corevalues-container-items .about-corevalues-container-item ul li:hover img {
  border-radius: 10%;
  transform: scale(1.2);
}
main .about-corevalues .about-corevalues-container .about-corevalues-container-items .about-corevalues-container-item h3 {
  text-align: center;
  padding: 0.2rem 0rem;
  margin-bottom: 1rem;
}
main .about-corevalues .about-corevalues-container .about-corevalues-container-items .about-corevalues-container-item p {
  width: 90%;
}
main .about-corevalues .about-corevalues-container .about-corevalues-container-items .about-corevalues-container-item:first-child h3:first-of-type {
  background: #035078;
  color: #FFB703;
}
main .about-corevalues .about-corevalues-container .about-corevalues-container-items .about-corevalues-container-item:last-child h3:first-of-type {
  background: #e9a600;
  color: #022f46;
}
main .accreditations-body {
  background-image: url(../sea-under-blue-sky.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
main .accreditations-body .accreditations-body-container {
  background: linear-gradient(180deg, rgb(2, 47, 70) 0%, rgb(32, 79, 117) 100%, rgb(255, 255, 255) 100%);
  padding: 1rem;
}
main .accreditations-body .accreditations-body-container img {
  height: 120px;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 2rem;
}
main .accreditations-certificates .accreditations-certificates-container {
  padding-top: 1rem;
}
main .accreditations-certificates .accreditations-certificates-container .accreditations-certificates-container-items {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-evenly;
  align-content: stretch;
}
main .accreditations-certificates .accreditations-certificates-container .accreditations-certificates-container-items .accreditations-certificates-container-item {
  width: 20%;
  position: relative;
  cursor: pointer;
  border: 0.2rem solid #022f46;
  overflow: hidden;
  padding: 0.5rem;
}
main .accreditations-certificates .accreditations-certificates-container .accreditations-certificates-container-items .accreditations-certificates-container-item .certificate-zoom-link {
  display: none;
  position: absolute;
  top: 3%;
  bottom: 3%;
  left: 3%;
  right: 3%;
  align-items: center;
  justify-content: center;
  background-color: rgba(2, 47, 70, 0.5);
}
main .accreditations-certificates .accreditations-certificates-container .accreditations-certificates-container-items .accreditations-certificates-container-item .certificate-zoom-link i {
  color: #fff;
  font-size: 2.5rem;
}
main .accreditations-certificates .accreditations-certificates-container .accreditations-certificates-container-items .accreditations-certificates-container-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .accreditations-certificates .accreditations-certificates-container .accreditations-certificates-container-items .accreditations-certificates-container-item:hover .certificate-zoom-link {
  display: flex;
  z-index: 5;
}
main .vacancies-body .vacancies-body-container,
main .vacancies-body .jobs-table-wrapper {
  background: rgba(17, 17, 17, 0.6);
  width: 100%;
  overflow: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: auto;
}
main .vacancies-body .vacancies-body-container .jobs-table,
main .vacancies-body .jobs-table-wrapper .jobs-table {
  width: 100%;
  border-collapse: collapse;
}
main .vacancies-body .vacancies-body-container .jobs-table thead tr th,
main .vacancies-body .jobs-table-wrapper .jobs-table thead tr th {
  padding: 8px 12px;
  text-align: left;
  border: 1px solid #ddd;
  background-color: #022f46;
  color: white;
  text-align: center;
}
main .vacancies-body .vacancies-body-container .jobs-table tbody,
main .vacancies-body .jobs-table-wrapper .jobs-table tbody {
  background: #fff;
}
main .vacancies-body .vacancies-body-container .jobs-table tbody tr td,
main .vacancies-body .jobs-table-wrapper .jobs-table tbody tr td {
  padding: 8px;
  text-align: left;
  border: 2px solid #219ebc;
}
main .vacancies-body .vacancies-body-container .jobs-table tbody tr td.cell-centered,
main .vacancies-body .jobs-table-wrapper .jobs-table tbody tr td.cell-centered {
  text-align: center;
}
main .vacancies-body .vacancies-body-container .jobs-table tbody tr td.cell-right,
main .vacancies-body .jobs-table-wrapper .jobs-table tbody tr td.cell-right {
  text-align: end;
}
main .vacancies-body .vacancies-body-container .jobs-table tbody tr td:nth-child(2),
main .vacancies-body .jobs-table-wrapper .jobs-table tbody tr td:nth-child(2) {
  min-width: 250px;
}
main .vacancies-body .vacancies-body-container .jobs-table tbody tr:hover,
main .vacancies-body .jobs-table-wrapper .jobs-table tbody tr:hover {
  background-color: #035078;
  color: #fff;
}
main .vacancies-body .vacancies-body-container .jobs-table tfoot,
main .vacancies-body .jobs-table-wrapper .jobs-table tfoot {
  background-color: #4a524a;
  color: white;
}
main .vacancies-guarantee .vacancies-guarantee-container {
  padding-top: 2rem;
}
main .vacancies-guarantee .vacancies-guarantee-container .vacancies-guarantee-container-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
main .vacancies-guarantee .vacancies-guarantee-container .vacancies-guarantee-container-items .vacancies-guarantee-container-item {
  padding: 0.5rem;
  text-align: center;
  width: 25%;
}
main .vacancies-guarantee .vacancies-guarantee-container .vacancies-guarantee-container-items .vacancies-guarantee-container-item img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 0.8rem;
}
main .vacancies-guarantee .vacancies-guarantee-container .vacancies-guarantee-container-items .vacancies-guarantee-container-item:hover img {
  transform: scale(1.1);
}
main .howitworks-body .howitworks-body-container .howitworks-body-container-items {
  display: flex;
}
main .howitworks-body .howitworks-body-container .howitworks-body-container-items .howitworks-body-container-item {
  text-align: center;
  padding: 0.5rem 0rem;
  transition: 1s;
  cursor: pointer;
}
main .howitworks-body .howitworks-body-container .howitworks-body-container-items .howitworks-body-container-item h1 {
  color: #fff;
  padding: 0rem 2rem;
}
main .howitworks-body .howitworks-body-container .howitworks-body-container-items .howitworks-body-container-item.left {
  background: #035078;
}
main .howitworks-body .howitworks-body-container .howitworks-body-container-items .howitworks-body-container-item.right {
  background: #e9a600;
}
main .howitworks-body .howitworks-body-container .howitworks-body-container-items .howitworks-body-container-item.selectedProcedure {
  flex-grow: 1;
}
main .howitworks-body .howitworks-swiper {
  width: 100%;
  height: 600px;
}
main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .swiper-v {
  background: turquoise;
}
main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-clients {
  width: 100%;
  height: 100%;
  background: #035078;
}
main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-clients .swiper-wrapper .swiper-slide {
  background: #035078;
}
main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-clients .swiper-pagination {
  background: #e9a600;
  padding: 0.3rem 0.8rem;
  border-radius: 1rem;
}
main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-clients .swiper-pagination .swiper-pagination-bullet {
  background-color: #035078 !important;
}
main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-applicants {
  width: 100%;
  height: 100%;
  background: #e9a600;
}
main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-applicants .swiper-wrapper .swiper-slide {
  background: #e9a600;
}
main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-applicants .swiper-pagination {
  background: #035078;
  padding: 0.3rem 0.8rem;
  border-radius: 1rem;
}
main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-applicants .swiper-pagination .swiper-pagination-bullet {
  background-color: #e9a600 !important;
}
main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-clients .swiper-wrapper .swiper-slide .howitworks-swiper-slide-container,
main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-applicants .swiper-wrapper .swiper-slide .howitworks-swiper-slide-container {
  display: flex;
  flex-direction: row;
  justify-content: start;
  height: 100%;
  align-items: center;
}
main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-clients .swiper-wrapper .swiper-slide .howitworks-swiper-slide-container .howitworks-swiper-slide-image,
main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-applicants .swiper-wrapper .swiper-slide .howitworks-swiper-slide-container .howitworks-swiper-slide-image {
  width: 50%;
}
main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-clients .swiper-wrapper .swiper-slide .howitworks-swiper-slide-container .howitworks-swiper-slide-image img,
main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-applicants .swiper-wrapper .swiper-slide .howitworks-swiper-slide-container .howitworks-swiper-slide-image img {
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-clients .swiper-wrapper .swiper-slide .howitworks-swiper-slide-container .howitworks-swiper-slide-body,
main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-applicants .swiper-wrapper .swiper-slide .howitworks-swiper-slide-container .howitworks-swiper-slide-body {
  width: 40%;
  text-align: start;
}
main .contacts-map .contacts-map-container {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
main .contacts-map .contacts-map-container .contacts-map-container-item {
  width: 48%;
  margin-bottom: 0.8rem;
  border-radius: 1rem;
}
main .contacts-map .contacts-map-container .contacts-map-container-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}
main .contacts-map .contacts-map-container .contacts-map-container-item .contacts-map-container-item-list li {
  list-style: none;
  margin-bottom: 1rem;
}
main .contacts-map .contacts-map-container .contacts-map-container-item .contacts-map-container-item-list li strong {
  display: block;
}
main .contacts-map .contacts-map-container .contacts-map-container-item .contacts-map-container-item-list li a {
  color: unset;
  letter-spacing: 0.05rem;
}
main .contacts-map .contacts-map-container .contacts-map-container-item .contacts-map-container-item-list li a:hover {
  color: #219ebc;
}
main .contacts-google {
  background: #022f46;
}
main .uploadcv .uploadcv-container .uploadcv-container-items {
  display: flex;
  flex-direction: row;
}
main .uploadcv .uploadcv-container .uploadcv-container-items .uploadcv-container-item {
  background: coral;
  width: 300px;
  height: 300px;
  margin-right: 2rem;
  text-align: center;
  border-radius: 1rem;
  overflow: hidden;
}
main .uploadcv .uploadcv-container .uploadcv-container-items .uploadcv-container-item:hover .uploadcv-container-item-button span:first-child {
  font-size: 1.8rem;
  text-shadow: 2px 7px 5px rgba(0, 0, 0, 0.3), 0px -4px 10px rgba(255, 255, 255, 0.3);
}
main .uploadcv .uploadcv-container .uploadcv-container-items .uploadcv-container-item:hover .uploadcv-container-item-button span:last-child {
  display: none;
}
main .uploadcv .uploadcv-container .uploadcv-container-items .uploadcv-container-item.uploadcv-container-item-apply {
  background-image: url(../images/uploadcv/apply-btn-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
main .uploadcv .uploadcv-container .uploadcv-container-items .uploadcv-container-item.uploadcv-container-item-feedback {
  background-image: url(../images/uploadcv/feedback-btn-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
main .uploadcv .uploadcv-container .uploadcv-container-items .uploadcv-container-item #btn-apply {
  background-color: rgba(2, 47, 70, 0.8);
  color: #fff;
}
main .uploadcv .uploadcv-container .uploadcv-container-items .uploadcv-container-item #btn-feedback {
  background-color: rgba(255, 183, 3, 0.8);
  color: #022f46;
}
main .uploadcv .uploadcv-container .uploadcv-container-items .uploadcv-container-item .uploadcv-container-item-button {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0rem 0.5rem;
}
main .uploadcv .uploadcv-container .uploadcv-container-items .uploadcv-container-item .uploadcv-container-item-button span {
  display: inline-block;
  vertical-align: middle;
}
main .uploadcv .uploadcv-container .uploadcv-container-items .uploadcv-container-item .uploadcv-container-item-button span:first-child {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
main .insurance-travel .insurance-travel-container {
  background: #035078;
  padding: 2rem;
  border-radius: 1rem;
}
main .insurance-travel .insurance-travel-container .insurance-travel-container-items .insurance-travel-container-item.website-screenshot {
  width: 50%;
  float: left;
  margin: 0.5rem 1rem 0rem 0rem;
  position: relative;
}
main .insurance-travel .insurance-travel-container .insurance-travel-container-items .insurance-travel-container-item.website-screenshot .insurance-travel-img-hover {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 0%;
  background: rgba(2, 47, 70, 0.5);
  border-radius: 1rem;
  position: absolute;
  top: 3.5%;
  left: 5%;
}
main .insurance-travel .insurance-travel-container .insurance-travel-container-items .insurance-travel-container-item.website-screenshot:hover .insurance-travel-img-hover {
  height: 90%;
}
main .insurance-travel .insurance-travel-container .insurance-travel-container-items .insurance-travel-container-item img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  margin-bottom: 0rem !important;
}
main .insurance-travel .insurance-travel-container .insurance-travel-container-items p {
  text-align: justify;
}
main .insurance-travel .insurance-travel-container h3 {
  color: #FFB703 !important;
}
main .insurance-travel .insurance-travel-container ul {
  color: #fff;
}
main .insurance-travel .insurance-travel-container ul li {
  display: inline-block;
  list-style: none;
  margin: 0 1rem 1rem 0;
}
main .insurance-travel .insurance-travel-container ul li strong {
  display: block;
}
main .insurance-travel .insurance-travel-container ul li a {
  color: unset;
  letter-spacing: 0.05rem;
  padding: 0rem 1rem;
}
main .insurance-travel .insurance-travel-container ul li a:hover {
  color: #fff;
  background: #022f46;
}
main .insurance-travel.andTravel {
  background-image: url(../images/travelandinsurance/polaris-web.webp) !important;
}
main .insurance-travel.andTravel .insurance-container .insurance-container-items img {
  background: #8ECAE6;
}
main .insurance-travel.andTravel .insurance-container ul li a:hover {
  background: #219ebc;
}
main .payroll .payroll-container {
  padding: 1rem;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
  border-radius: 1rem;
}
main .payroll .payroll-container .payroll-container-header {
  display: flex;
  flex-direction: row;
  align-items: center;
}
main .payroll .payroll-container .payroll-container-header .payroll-container-header-item svg {
  margin-right: 1rem;
}
main .payroll .payroll-container ul li {
  list-style-position: inside;
}
main .payroll .payroll-container ul li:first-child {
  list-style-type: none;
  color: #219ebc;
}
main .payroll-system .payroll-system-container {
  padding-top: 2rem;
  background: whitesmoke;
}
main .payroll-system .payroll-system-container .payroll-system-container-items {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}
main .payroll-system .payroll-system-container .payroll-system-container-items .payroll-system-container-item {
  width: 30%;
  background: white;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
  padding: 1rem 1rem 0.5rem 1rem;
  border-radius: 2rem;
  min-height: 265px;
}
main .payroll-system .payroll-system-container .payroll-system-container-items .payroll-system-container-item .payroll-system-container-item-top {
  width: 120px;
  height: 120px;
  margin: auto;
  background: #EBECED;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
main .payroll-system .payroll-system-container .payroll-system-container-items .payroll-system-container-item .payroll-system-container-item-top img {
  display: block;
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}
main .payroll-system .payroll-system-container .payroll-system-container-items .payroll-system-container-item .payroll-system-container-item-bottom {
  margin-top: 0.5rem;
}
main .payroll-system .payroll-system-container .payroll-system-container-items .payroll-system-container-item .payroll-system-container-item-bottom p {
  max-lines: 3;
}
main .payroll-system .payroll-system-container .payroll-system-container-items .payroll-system-container-item:nth-child(4) {
  width: 36%;
}
main .payroll-system .payroll-system-container .payroll-system-container-items .payroll-system-container-item:nth-child(5) {
  width: 36%;
}
main .payroll-system .payroll-system-container .payroll-system-container-items .payroll-system-container-item:hover {
  background: #FFB703;
}
main .payroll-system .payroll-system-container .payroll-system-container-items .payroll-system-container-item:hover .payroll-system-container-item-top {
  background: #022f46;
}
main .payroll-system .payroll-system-container .payroll-system-container-items .payroll-system-container-item:hover .payroll-system-container-item-top img {
  filter: brightness(0);
  filter: invert(1);
  transform: rotate(360deg) scale(1.5);
}
main .payroll-system .payroll-system-container .payroll-system-container-items .payroll-system-container-item:hover .payroll-system-container-item-bottom h3 {
  color: #fff !important;
}
main .payroll-system .payroll-system-container .payroll-system-container-items .payroll-system-container-item:hover .payroll-system-container-item-bottom p {
  color: #111 !important;
}
main .payroll-whyus {
  background: #022f46;
}
main .payroll-whyus .payroll-whyus-container {
  padding-top: 2rem;
}
main .payroll-whyus .payroll-whyus-container .payroll-whyus-container-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
main .payroll-whyus .payroll-whyus-container .payroll-whyus-container-items .payroll-whyus-container-item {
  text-align: center;
  width: 15%;
  background: #023650;
}
main .payroll-whyus .payroll-whyus-container .payroll-whyus-container-items .payroll-whyus-container-item img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 0.8rem;
  filter: invert(1);
  color: white;
}
main .payroll-whyus .payroll-whyus-container .payroll-whyus-container-items .payroll-whyus-container-item p {
  color: #219ebc !important;
  font-weight: 900;
}
main .payroll-whyus .payroll-whyus-container .payroll-whyus-container-items .payroll-whyus-container-item:hover img {
  transform: scale(1.1);
}
@keyframes seawaveEffect {
  0% {
    background-position: 0 0;
  }
  20% {
    background-position: 100px 0;
  }
  40% {
    background-position: 200px 0;
  }
  60% {
    background-position: 150px 0;
  }
  80% {
    background-position: 100px 0;
  }
  100% {
    background-position: 0px 0;
  }
}
footer {
  position: relative;
  margin-top: 4rem;
  background: #022f46;
}
footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -30px;
  height: 31px;
  background-image: url("../images/main/footer-wave-custom.png");
  background-repeat: repeat-x;
  animation: seawaveEffect 20s linear infinite;
}
footer .footer-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
}
footer .footer-container .footer-container-item {
  width: 25%;
  padding: 0 1rem;
  color: #fff;
  font-size: 0.8rem;
}
footer .footer-container .footer-container-item h3 {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
footer .footer-container .footer-container-item.footer-about img {
  width: 90%;
  height: auto;
  background: white;
  padding: 0.5rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
}
footer .footer-container .footer-container-item.footer-links ul li {
  list-style: none;
  position: relative;
  margin-bottom: 1rem;
}
footer .footer-container .footer-container-item.footer-links ul li:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.1rem;
  background: #8ECAE6;
  bottom: -0.5rem;
  right: 0;
}
footer .footer-container .footer-container-item.footer-links ul li a {
  color: white;
  padding: 0.5rem 0.5rem 0rem 0rem;
}
footer .footer-container .footer-container-item.footer-links ul li a:hover {
  color: #FFB703;
  padding: 0.5rem;
}
footer .footer-container .footer-container-item.footer-recruitment .btn-danger {
  margin-bottom: 1rem;
}
footer .footer-container .footer-container-item.footer-contacts a {
  color: white;
}
footer .footer-container .footer-container-item.footer-contacts .footer-contacts-general li {
  list-style: none;
  margin-bottom: 1rem;
}
footer .footer-container .footer-container-item.footer-contacts .footer-contacts-general li > a i {
  font-size: 1.5rem;
  margin-right: 1rem;
  display: inline-block;
}
footer .footer-container .footer-container-item.footer-contacts .footer-contacts-general li > a:hover {
  color: #FFB703;
  font-size: 1rem;
}
footer .footer-container .footer-container-item.footer-contacts .footer-contacts-general li > a:hover i {
  transform: rotate(360deg);
  margin-right: 1.5rem;
}
footer .footer-container .footer-container-item.footer-contacts .footer-contacts-general li.footer-contacts-social {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
footer .footer-container .footer-container-item.footer-contacts .footer-contacts-general li.footer-contacts-social > a {
  display: inline-block;
  background: white;
  margin-right: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
}
footer .footer-container .footer-container-item.footer-contacts .footer-contacts-general li.footer-contacts-social > a i {
  color: #022f46;
  line-height: 3rem;
  font-size: 2rem;
}
footer .footer-container .footer-container-item.footer-contacts .footer-contacts-general li.footer-contacts-social > a:hover i {
  color: #FFB703;
  font-size: 3rem;
}

@media (max-width: 1440px) {
  nav {
    padding: 0 3%;
  }
}
@media (max-width: 1270px) {
  #menu-btn {
    display: block;
    margin-left: 1rem;
  }
  header {
    height: 40vh;
  }
  nav .logo {
    flex-grow: 1;
  }
  nav menu {
    z-index: 11;
    flex-grow: 0;
  }
  nav menu .navigation {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    background: #022f46;
    position: absolute;
    width: 100%;
    left: 0;
    top: 99%;
    text-align: center;
    padding: 1rem 0;
  }
  nav menu .navigation .menu-item.navigation-lang {
    position: unset;
    display: inline-flex;
  }
  nav menu .navigation .menu-item.navigation-lang .lang-item i {
    display: none;
  }
  nav menu .navigation .menu-item.navigation-lang .navigation-lang-options {
    position: unset;
    top: unset;
    left: unset;
    right: unset;
    flex-direction: row;
    align-items: unset;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  nav menu .navigation .menu-item.navigation-lang .navigation-lang-options .lang-item {
    display: inline-flex;
    align-items: center;
  }
  nav menu .navigation .menu-item.navigation-lang .navigation-lang-options .lang-item:hover {
    color: #FFB703;
  }
  nav menu .navigation .menu-item.navigation-lang .navigation-lang-options.collapsed {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
            clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  nav menu .navigation .menu-item.navigation-lang.navigation-lang .navigation-lang-options.neverCollapsed {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
  }
  nav.expanded menu .navigation {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@media (max-width: 991px) {
  section {
    padding: 2.5rem 1.25rem;
  }
  .section {
    padding: 2.5rem 1.25rem;
  }
  header {
    height: 30vh;
  }
  header.isHomeFalse {
    height: 25vh;
  }
  header .header-container .header-slides .header-slides-text {
    font-size: 1rem;
  }
  header .header-container .header-slides .header-slides-text .header-slides-text-link p:first-child {
    font-size: 1.5rem;
  }
  main .services .services-container .ship-steering-wheel {
    height: 200px;
    width: 200px;
  }
  main .home-about .home-about-container .home-about-container-item {
    width: 100%;
  }
  main .payroll-whyus .payroll-whyus-container .payroll-whyus-container-items .payroll-whyus-container-item {
    width: 30%;
    margin-bottom: 1rem;
  }
  main .payroll-whyus .payroll-whyus-container .payroll-whyus-container-items .payroll-whyus-container-item img {
    width: 65px;
    height: 65px;
  }
  footer .footer-container {
    flex-wrap: wrap;
  }
  footer .footer-container .footer-container-item {
    width: 45%;
    margin-bottom: 2rem;
  }
  footer .footer-container .footer-container-item:first-child img {
    width: 100%;
  }
  #modal .modal-container #close-btn {
    font-size: 30px;
  }
  #modal .modal-content {
    height: 80%;
    top: 10%;
    left: 5%;
    right: 5%;
    bottom: 5%;
    transform: unset;
  }
}
@media (max-width: 768px) {
  section {
    padding: 1.5rem 1rem;
  }
  .section {
    padding: 1.5rem 1rem;
  }
  #menu-anchor {
    position: absolute;
    z-index: 12;
    animation-duration: 2s;
    animation-fill-mode: both;
  }
  #menu-anchor.anchorDrop {
    display: block;
  }
  header {
    height: 30vh;
  }
  header .header-container .header-slides .header-slides-text {
    font-size: 1rem;
    right: 0;
    top: unset;
    bottom: 0;
    height: 100%;
    background: rgba(2, 47, 70, 0.5);
  }
  header .header-container .header-slides .header-slides-text .header-slides-text-link {
    width: 80%;
    height: 100%;
    justify-content: center;
  }
  header .header-container .header-slides .header-slides-text .header-slides-text-link p {
    background: unset;
  }
  header .header-container .header-slides .header-slides-text .header-slides-text-link p:first-child {
    font-size: 1.5rem;
  }
  header .header-container .page-header .page-header-text h1 {
    font-size: 2.2rem;
  }
  header .header-container .page-header .page-header-text p {
    font-size: 1.2rem;
  }
  nav .logo {
    flex-grow: 1;
  }
  nav menu {
    position: absolute;
    top: 99%;
    left: 0;
    flex-direction: column;
    align-items: end;
    flex-grow: 0;
    width: 100%;
    padding: 0.5rem 2%;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  nav menu .navigation {
    -webkit-clip-path: none;
            clip-path: none;
    position: unset;
    text-align: end;
    padding: unset;
  }
  nav menu .navigation .menu-item {
    display: block;
    margin-bottom: 1.5rem;
    position: relative;
  }
  nav menu .navigation .menu-item:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.1rem;
    background: #8ECAE6;
    bottom: -0.5rem;
    right: 0;
  }
  nav menu .navigation .menu-item .menu-item-link {
    font-size: 1rem;
  }
  nav menu .navigation-extra {
    flex-direction: column;
    align-items: flex-end;
  }
  nav menu .navigation-extra .navigation-extra-link {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  nav.expanded menu {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  main .services {
    padding: unset;
  }
  main .services .services-container .services-items {
    padding-top: unset;
  }
  main .services .services-container .services-items .services-item {
    width: 50%;
    margin-bottom: unset;
  }
  main .services .services-container .services-items .services-item .services-item-link {
    border-radius: unset;
    border: 0.1rem solid #fff;
    text-align: center !important;
    color: #fff;
  }
  main .services .services-container .services-items .services-item:nth-child(odd) .services-item-link {
    flex-direction: column;
    padding-left: 0rem;
    background: #022f46;
  }
  main .services .services-container .services-items .services-item:nth-child(odd) .services-item-link i,
  main .services .services-container .services-items .services-item:nth-child(odd) .services-item-link svg {
    margin-right: 0rem;
  }
  main .services .services-container .services-items .services-item:nth-child(even) .services-item-link {
    flex-direction: column;
    padding-right: 0rem;
    background: #1e678a;
  }
  main .services .services-container .services-items .services-item:nth-child(even) .services-item-link i,
  main .services .services-container .services-items .services-item:nth-child(even) .services-item-link svg {
    margin-left: 0rem;
  }
  main .services .services-container .ship-steering-wheel {
    display: none;
  }
  main .home-brochure .home-brochure-container .home-brochure-container-items {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
  }
  main .home-brochure .home-brochure-container .home-brochure-container-items .home-brochure-container-item {
    position: relative;
    width: 100%;
  }
  main .home-accr {
    background: #022f46;
  }
  main .home-accr .home-accr-container h3 {
    margin-bottom: 1.5rem;
  }
  main .home-accr .home-accr-container .home-accr-container-items .home-accr-container-item {
    width: 100%;
    margin-bottom: 2rem;
  }
  main .about-specialties .about-specialties-container .about-container-specialties-items .about-container-specialties-item {
    width: 50%;
  }
  main .about-corevalues .about-corevalues-container .about-corevalues-container-items .about-corevalues-container-item {
    width: 100%;
    margin-bottom: 2rem;
  }
  main .about-corevalues .about-corevalues-container .about-corevalues-container-items .about-corevalues-container-item:last-child {
    margin-bottom: 1rem;
  }
  main .vacancies-guarantee .vacancies-guarantee-container .vacancies-guarantee-container-items .vacancies-guarantee-container-item img {
    width: 80px;
    height: 80px;
  }
  main .howitworks-body .howitworks-body-container .howitworks-body-container-items .howitworks-body-container-item h1 {
    font-size: 1.2rem;
  }
  main .howitworks-body .howitworks-swiper {
    height: 650px;
  }
  main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-clients .swiper-wrapper .swiper-slide .howitworks-swiper-slide-container .howitworks-swiper-slide-image,
  main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-applicants .swiper-wrapper .swiper-slide .howitworks-swiper-slide-container .howitworks-swiper-slide-image {
    width: 40%;
  }
  main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-clients .swiper-wrapper .swiper-slide .howitworks-swiper-slide-container .howitworks-swiper-slide-body,
  main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-applicants .swiper-wrapper .swiper-slide .howitworks-swiper-slide-container .howitworks-swiper-slide-body {
    width: 50%;
  }
  main .contacts-map .contacts-map-container {
    margin-top: 1rem;
  }
  main .contacts-map .contacts-map-container .contacts-map-container-item {
    width: 100%;
    padding: 0rem 1rem;
  }
  main .contacts-map .contacts-map-container .contacts-map-container-item.paragraph-shadow {
    padding: 1rem;
    margin: 0 1rem;
  }
  main .uploadcv .uploadcv-container .uploadcv-container-items {
    display: flex;
    flex-direction: column;
  }
  main .uploadcv .uploadcv-container .uploadcv-container-items .uploadcv-container-item {
    border-radius: unset;
    width: 100%;
    margin-bottom: 1rem;
    height: 150px;
  }
  main .insurance-travel .insurance-travel-container {
    padding: 0.5rem 1rem;
    border-radius: 1rem;
  }
  main .insurance-travel .insurance-travel-container .insurance-travel-container-items .insurance-travel-container-item.website-screenshot {
    float: unset;
    width: 100%;
  }
  main .insurance-travel .insurance-travel-container .insurance-travel-container-items .insurance-travel-container-item.website-screenshot .insurance-travel-img-hover {
    width: 98%;
    left: 1%;
  }
  main .insurance-travel .insurance-travel-container .insurance-travel-container-items .insurance-travel-container-item p {
    margin-top: 0.5rem;
  }
  main .payroll-system .payroll-system-container .payroll-system-container-items .payroll-system-container-item {
    width: 45% !important;
  }
  footer .footer-container {
    flex-direction: column;
  }
  footer .footer-container .footer-container-item {
    width: 100%;
    margin-bottom: 3rem;
    font-size: 1rem;
  }
  footer .footer-container .footer-container-item.footer-contacts .footer-contacts-general li.footer-contacts-social {
    margin-top: 2rem;
  }
}
@media (max-width: 550px) {
  header .header-container .page-header .page-header-text h1 {
    font-size: 2rem;
  }
  header .header-container .page-header .page-header-text p {
    font-size: 1rem;
  }
  main .services .services-container .services-items {
    align-items: baseline;
  }
  main .services .services-container .services-items .services-item {
    width: 33.333%;
  }
  main .services .services-container .services-items .services-item .services-item-link {
    border: unset;
    min-height: 90px;
  }
  main .services .services-container .services-items .services-item .services-item-link span {
    font-size: 0.75rem;
  }
  main .services .services-container .services-items .services-item:nth-child(odd) .services-item-link i,
  main .services .services-container .services-items .services-item:nth-child(odd) .services-item-link svg {
    margin-right: 0rem;
  }
  main .services .services-container .services-items .services-item:nth-child(even) .services-item-link i,
  main .services .services-container .services-items .services-item:nth-child(even) .services-item-link svg {
    margin-left: 0rem;
  }
  main .accreditations-certificates .accreditations-certificates-container {
    padding-top: 1rem;
  }
  main .accreditations-certificates .accreditations-certificates-container .accreditations-certificates-container-items .accreditations-certificates-container-item {
    width: 40%;
    margin-bottom: 1rem;
  }
  main .vacancies-guarantee .vacancies-guarantee-container .vacancies-guarantee-container-items .vacancies-guarantee-container-item {
    width: 50%;
    margin-bottom: 0.5rem;
  }
  main .vacancies-guarantee .vacancies-guarantee-container .vacancies-guarantee-container-items .vacancies-guarantee-container-item img {
    width: 75px;
    height: 75px;
  }
  main .howitworks-body .howitworks-body-container .howitworks-body-container-items .howitworks-body-container-item h1 {
    font-size: 1rem;
  }
  main .howitworks-body .howitworks-swiper {
    height: 600px;
  }
  main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-clients .swiper-wrapper .swiper-slide .howitworks-swiper-slide-container,
  main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-applicants .swiper-wrapper .swiper-slide .howitworks-swiper-slide-container {
    flex-direction: column;
    justify-content: unset;
  }
  main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-clients .swiper-wrapper .swiper-slide .howitworks-swiper-slide-container .howitworks-swiper-slide-image,
  main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-applicants .swiper-wrapper .swiper-slide .howitworks-swiper-slide-container .howitworks-swiper-slide-image {
    width: 100%;
    height: unset;
    max-height: 250px;
  }
  main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-clients .swiper-wrapper .swiper-slide .howitworks-swiper-slide-container .howitworks-swiper-slide-image img,
  main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-applicants .swiper-wrapper .swiper-slide .howitworks-swiper-slide-container .howitworks-swiper-slide-image img {
    height: 100%;
    width: 75%;
    padding-top: 10p;
  }
  main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-clients .swiper-wrapper .swiper-slide .howitworks-swiper-slide-container .howitworks-swiper-slide-body,
  main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-applicants .swiper-wrapper .swiper-slide .howitworks-swiper-slide-container .howitworks-swiper-slide-body {
    width: 100%;
  }
  main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-clients .swiper-wrapper .swiper-slide .howitworks-swiper-slide-container .howitworks-swiper-slide-body h3,
  main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-applicants .swiper-wrapper .swiper-slide .howitworks-swiper-slide-container .howitworks-swiper-slide-body h3 {
    text-align: center;
  }
  main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-clients .swiper-wrapper .swiper-slide .howitworks-swiper-slide-container .howitworks-swiper-slide-body p,
  main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-applicants .swiper-wrapper .swiper-slide .howitworks-swiper-slide-container .howitworks-swiper-slide-body p {
    padding: 0rem 1rem;
  }
  main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-clients .swiper-pagination.swiper-pagination-vertical,
  main .howitworks-body .howitworks-swiper .swiper-wrapper .swiper-slide .howitworks-swiper-applicants .swiper-pagination.swiper-pagination-vertical {
    top: 120px !important;
  }
  main .uploadcv .uploadcv-container .uploadcv-container-items .uploadcv-container-item {
    height: 200px;
  }
  main .payroll .payroll-container {
    padding: 1rem;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
    border-radius: 1rem;
  }
  main .payroll .payroll-container .payroll-container-header {
    flex-direction: column;
    align-items: start;
  }
  main .payroll .payroll-container .payroll-container-header svg {
    margin-right: unset;
  }
  main .payroll-system .payroll-system-container .payroll-system-container-items .payroll-system-container-item {
    width: 100% !important;
  }
  main .payroll-whyus .payroll-whyus-container .payroll-whyus-container-items .payroll-whyus-container-item {
    width: 45%;
  }
  main .payroll-whyus .payroll-whyus-container .payroll-whyus-container-items .payroll-whyus-container-item img {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 450px) {
  header .header-container .header-slides .header-slides-text {
    font-size: 0.8rem;
  }
  header .header-container .header-slides .header-slides-text .header-slides-text-link p:first-child {
    font-size: 1.2rem;
  }
  main .about-specialties .about-specialties-container .about-container-specialties-items .about-container-specialties-item {
    margin-bottom: unset;
  }
  main .about-specialties .about-specialties-container .about-container-specialties-items .about-container-specialties-item .about-container-specialties-item-link span {
    font-size: 0.8rem;
  }
  main .about-corevalues .about-corevalues-container .about-corevalues-container-items .about-corevalues-container-item ul li {
    font-size: 0.8rem;
  }
  main .contacts-map .contacts-map-container {
    margin-top: 0.5rem;
  }
  main .contacts-map .contacts-map-container .contacts-map-container-item {
    width: 100%;
    padding: unset;
  }
  main .contacts-map .contacts-map-container .contacts-map-container-item.paragraph-shadow {
    margin: unset;
  }
  main .payroll-whyus .payroll-whyus-container .payroll-whyus-container-items .payroll-whyus-container-item {
    width: 90%;
  }
  main .payroll-whyus .payroll-whyus-container .payroll-whyus-container-items .payroll-whyus-container-item img {
    width: 65px;
    height: 65px;
  }
}
@media (max-width: 385px) {
  main .about-specialties .about-specialties-container .about-container-specialties-items .about-container-specialties-item {
    width: 100%;
    margin-bottom: unset;
  }
  main .accreditations-certificates .accreditations-certificates-container .accreditations-certificates-container-items .accreditations-certificates-container-item {
    width: 60%;
  }
  main .vacancies-guarantee .vacancies-guarantee-container .vacancies-guarantee-container-items .vacancies-guarantee-container-item {
    width: 100%;
  }
  main .vacancies-guarantee .vacancies-guarantee-container .vacancies-guarantee-container-items .vacancies-guarantee-container-item img {
    width: 60px;
    height: 60px;
  }
  main .howitworks-body .howitworks-body-container .howitworks-body-container-items .howitworks-body-container-item h1 {
    font-size: 0.8rem;
  }
  main .howitworks-body .howitworks-swiper {
    height: 550px;
  }
}
.div1 {
  background-color: #8ECAE6;
}

.div2 {
  background-color: #219ebc;
}

.div3 {
  background-color: #022f46;
}

.div4 {
  background-color: #FFB703;
}

.div5 {
  background-color: #FB8500;
}

.div6 {
  background-color: #E63946;
}/*# sourceMappingURL=style.css.map */