* {
  margin: 0;
  padding: 0;
  outline: none;
  text-decoration: none;
  box-sizing: border-box;
  border-collapse: collapse;
}
@font-face {
  font-family: "Minion Pro";
  /* Имя шрифта */
  src: url(../fonts/MinionPro-Regular.otf);
  /* Путь к файлу со шрифтом */
}
ul {
  padding-left: 17px;
}
.holder {
  max-width: 1410px;
  margin: 0 auto;
  padding: 15px;
}
.flex-container {
  display: flex;
}
.btn {
  cursor: pointer;
  border: none;
  user-select: none;
  white-space: nowrap;
  background: linear-gradient(90deg, #69C5FF 0%, #2183FF 93.75%);
  box-shadow: 0px 2px 8px rgba(0, 37, 77, 0.07);
  padding: 10px 20px;
}
header {
  background-color: #FFF;
}
header .holder nav {
  display: flex;
  justify-content: space-between;
  padding-right: 180px;
}
header .holder nav .burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
}
header .holder nav .burger span {
  background: #185C92;
  width: 37px;
  height: 2px;
  margin-bottom: 8px;
  transition: all 0.2s ease-in-out;
}
header .holder nav .burger span:last-child {
  margin: 0;
}
header .holder nav .burger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px) translateX(2px);
}
header .holder nav .burger.active span:nth-child(2) {
  display: none;
}
header .holder nav .burger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5px);
}
header .holder nav .logo {
  font-family: "Minion Pro";
  font-style: normal;
  font-weight: normal;
  font-size: 28.7568px;
  color: #185C92;
}
header .holder nav .menu_holder {
  display: flex;
  align-items: center;
}
header .holder nav .menu_holder .menu_item {
  margin: 0px 18px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #185C92;
  position: relative;
}
header .holder nav .menu_holder .menu_item::before {
  content: "\A";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #185C92;
  position: absolute;
  left: -13px;
  top: 5px;
  transition: 0.3s ease;
  display: none;
}
header .holder nav .menu_holder .menu_item:hover::before {
  display: block;
}
#banner {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
}
#banner #videobcg {
  position: absolute;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  height: auto;
  width: auto;
  z-index: -100;
}
#banner .holder .text_holder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#banner .holder .text_holder .line_1 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 42.0625px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 0px 3.50521px 16.6498px #0D456D;
}
#banner .holder .text_holder .line_2 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: bold;
  font-size: 42.0625px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 0px 3.50521px 16.6498px rgba(0, 0, 0, 0.67);
}
#banner .holder .text_holder .line_3 {
  font-family: "Minion Pro";
  font-style: normal;
  font-weight: 600;
  font-size: 42.0625px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 0px 3.50521px 16.6498px #111111;
  position: relative;
  max-width: 621.78px;
}
#banner .holder .text_holder .line_3::before {
  content: "";
  height: 1px;
  width: 112px;
  position: absolute;
  background-color: #FFF;
  right: -135px;
  top: 50%;
}
#banner .holder .text_holder .line_3::after {
  content: "";
  height: 1px;
  width: 112px;
  position: absolute;
  background-color: #FFF;
  left: -135px;
  top: 50%;
}
section.about_company_main {
  padding: 60px 0px;
}
section.about_company_main .holder {
  display: flex;
}
section.about_company_main .holder .text_holder {
  margin-left: 52px;
  margin-top: 20px;
}
section.about_company_main .holder .text_holder .title {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  color: #000000;
  position: relative;
  max-width: 255px;
}
section.about_company_main .holder .text_holder .title::before {
  content: "";
  height: 1px;
  width: 112px;
  position: absolute;
  background-color: #000;
  right: -135px;
  top: 50%;
}
section.about_company_main .holder .text_holder .text {
  margin-top: 25px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  color: #000000;
}
section.services_main .holder .title {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  color: #000000;
  position: relative;
  max-width: 200px;
}
section.services_main .holder .title::before {
  content: "";
  height: 1px;
  width: 112px;
  position: absolute;
  background-color: #000;
  right: -135px;
  top: 50%;
}
section.services_main .holder .service_holder {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
  margin-bottom: 30px;
}
section.services_main .holder .service_holder .block_1,
section.services_main .holder .service_holder .block_2 {
  position: relative;
  width: 100%;
  height: 100%;
}
section.services_main .holder .service_holder .block_1:hover .filtre,
section.services_main .holder .service_holder .block_2:hover .filtre {
  display: none;
}
section.services_main .holder .service_holder .block_1:hover .text,
section.services_main .holder .service_holder .block_2:hover .text {
  transform: translateY(-85px);
  font-size: 18px;
  left: calc(50% - 126px);
}
section.services_main .holder .service_holder .block_1 .filtre,
section.services_main .holder .service_holder .block_2 .filtre {
  background: #000000;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.66710434) 100%, rgba(0, 0, 0, 0.46262255) 100%, #00d4ff 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  transition: 0.5s ease;
  z-index: 1;
  top: 0px;
  left: 0px;
}
section.services_main .holder .service_holder .block_1 .text,
section.services_main .holder .service_holder .block_2 .text {
  transition: 0.5s ease;
  z-index: 2;
  top: 45%;
  left: calc(50% - 170px);
  position: absolute;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: bold;
  font-size: 26.6252px;
  line-height: 130%;
  text-align: center;
  color: #FFFFFF;
  text-shadow: 0px 5.24043px 17.6022px rgba(0, 0, 0, 0.96);
}
section.services_main .holder .service_holder img {
  width: 100%;
  display: block;
  height: 100%;
}
section.services_main .holder .btn {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: #FFFFFF !important;
  display: block;
  margin: auto;
  max-width: 220px;
  padding: 10px 60px;
}
section.services_main .holder .btn a {
  color: #FFFFFF !important;
}
section.profitable_main .holder .title {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: bold;
  font-size: 36px;
  max-width: 425px;
  color: #000000;
  position: relative;
}
section.profitable_main .holder .title::before {
  content: "";
  height: 1px;
  width: 112px;
  position: absolute;
  background-color: #000;
  right: -135px;
  top: 50%;
}
section.profitable_main .holder .block_holder {
  display: flex;
  justify-content: space-between;
  margin-top: 140px;
}
section.profitable_main .holder .block_holder .block_1,
section.profitable_main .holder .block_holder .block_2,
section.profitable_main .holder .block_holder .block_3 {
  transition: 0.4s ease;
  background: #FFFFFF;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  max-width: 369px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 120px 30px 120px;
  position: relative;
}
section.profitable_main .holder .block_holder .block_1 .number,
section.profitable_main .holder .block_holder .block_2 .number,
section.profitable_main .holder .block_holder .block_3 .number {
  transition: 0.4s ease;
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: 91.2305px;
  line-height: 107px;
  background: linear-gradient(90deg, #69C5FF 0%, #2183FF 93%, #8AA9D6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  top: -70px;
  left: 18px;
  z-index: -3;
}
section.profitable_main .holder .block_holder .block_1 .icon,
section.profitable_main .holder .block_holder .block_2 .icon,
section.profitable_main .holder .block_holder .block_3 .icon {
  margin-bottom: 50px;
  transition: 0.4s ease;
}
section.profitable_main .holder .block_holder .block_1 .text,
section.profitable_main .holder .block_holder .block_2 .text,
section.profitable_main .holder .block_holder .block_3 .text {
  transition: 0.4s ease;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: #000000;
  min-width: 285px;
}
section.profitable_main .holder .block_holder > div:hover .block_1,
section.profitable_main .holder .block_holder > div:hover .block_2,
section.profitable_main .holder .block_holder > div:hover .block_3 {
  background: linear-gradient(90deg, #69C5FF 0%, #2183FF 93.75%);
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-50px);
}
section.profitable_main .holder .block_holder > div:hover .block_1 .text,
section.profitable_main .holder .block_holder > div:hover .block_2 .text,
section.profitable_main .holder .block_holder > div:hover .block_3 .text {
  color: #FFF;
}
section.profitable_main .holder .block_holder > div:hover .block_1 .icon svg,
section.profitable_main .holder .block_holder > div:hover .block_2 .icon svg,
section.profitable_main .holder .block_holder > div:hover .block_3 .icon svg {
  fill: white;
  stroke: white;
}
section.profitable_main .holder .block_holder > div:hover .block_1 .icon svg path,
section.profitable_main .holder .block_holder > div:hover .block_2 .icon svg path,
section.profitable_main .holder .block_holder > div:hover .block_3 .icon svg path {
  fill: white;
  stroke: white;
}
section.profitable_main .holder .block_holder > div:hover .block_1 .number,
section.profitable_main .holder .block_holder > div:hover .block_2 .number,
section.profitable_main .holder .block_holder > div:hover .block_3 .number {
  z-index: -3;
  color: #FFFFFF;
  text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25);
  background: transparent;
  -webkit-background-clip: none;
  -webkit-text-fill-color: white;
}
section.form_main {
  padding: 80px 0px;
}
section.form_main .holder {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.form_main .holder .form_main {
  margin-left: 65px;
  transform: translateY(-30px);
}
section.form_main .holder .form_main form {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
}
section.form_main .holder .form_main form .title {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  color: #000000;
}
section.form_main .holder .form_main form .sub_title {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 130%;
  color: #000000;
  margin-top: 10px;
}
section.form_main .holder .form_main form input {
  background: #FFFFFF;
  border: 1.03351px solid #DFE3E9;
  padding: 10px 31px 10px 31px;
  margin: 8px 0px;
}
section.form_main .holder .form_main form .btn {
  max-width: 180px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 150%;
  text-align: center;
  color: #FFFFFF;
}
section.contact .holder .title_section {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  color: #000000;
  position: relative;
}
section.contact .holder .title_section::before {
  content: "";
  width: 112px;
  height: 1px;
  background-color: #2183FF;
  display: block;
  bottom: -8px;
  position: absolute;
}
section.contact .holder .contact_holder {
  display: flex;
  margin-top: 41px;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 50px;
}
section.contact .holder .contact_holder .block_contact .contact_item {
  display: flex;
  margin-bottom: 25px;
  margin-top: 20px;
}
section.contact .holder .contact_holder .block_contact .contact_item:first-child {
  min-height: 125px;
}
section.contact .holder .contact_holder .block_contact .contact_item .text_item {
  margin-left: 32px;
  display: flex;
  flex-direction: column;
}
section.contact .holder .contact_holder .block_contact .contact_item .text_item .title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: 21.4584px;
  color: #000000;
}
section.contact .holder .contact_holder .block_contact .contact_item .text_item .text {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: 21.4584px;
  line-height: 25px;
  color: #000000;
}
section.contact .holder .contact_holder .block_contact .contact_item .text_item .text_1 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: 21.4584px;
  line-height: 25px;
  max-width: 152px;
  color: #000000;
}
section.leader .holder {
  display: flex;
  justify-content: space-around;
}
section.leader .holder .leader_item .profile_holder {
  display: flex;
}
section.leader .holder .leader_item .profile_holder .image img {
  width: 100%;
}
section.leader .holder .leader_item .profile_holder .info {
  margin-left: 15px;
}
section.leader .holder .leader_item .profile_holder .info .title {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  color: #000000;
}
section.leader .holder .leader_item .profile_holder .info .subtitle {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: bold;
  font-size: 13px;
  line-height: 16px;
  position: relative;
  color: #000000;
  min-width: 258px;
}
section.leader .holder .leader_item .profile_holder .info .subtitle::before {
  content: "";
  position: absolute;
  width: 112px;
  height: 1px;
  background-color: #2183FF;
  bottom: -16px;
}
section.leader .holder .leader_item .profile_holder .info .holder_more_info .item_holder {
  margin-top: 43px;
}
section.leader .holder .leader_item .profile_holder .info .holder_more_info .item_holder .item {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 15px;
  color: #000000;
  margin: 3px 0px;
}
section.leader .holder .leader_item .profile_holder .info .holder_more_info .item_holder .item span {
  font-weight: bold;
}
section.leader .holder .leader_item .profile_holder .info .holder_more_info .item_holder .btn {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: #FFFFFF;
  padding: 10px 30px;
  margin-top: 13px;
  max-width: 186px;
  transition: all 2s ease;
  position: relative;
}
section.leader .holder .leader_item .profile_holder .info .holder_more_info .item_holder .btn:hover {
  background: linear-gradient(90deg, #2183FF 0%, #69C5FF 100%);
  box-shadow: 0px 2px 8px rgba(0, 37, 77, 0.07);
}
section.leader .holder .text_leader {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 170%;
  color: #000000;
  max-width: 490px;
  margin-top: 15px;
}
section.services_banner .holder {
  display: flex;
  justify-content: center;
}
section.services_banner .holder .block_1,
section.services_banner .holder .block_2 {
  transition: 0.4s ease;
  margin: 0px 10px;
  max-width: 500px;
  max-height: 500px;
}
section.services_banner .holder .block_1 .slider .slide img,
section.services_banner .holder .block_2 .slider .slide img {
  width: 100%;
}
section.services_banner .holder .block_1 .description,
section.services_banner .holder .block_2 .description {
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: 18.0242px;
  text-align: center;
  color: #FFFFFF;
  background: #2386FF;
  margin-top: -5px;
  padding: 16px 0px;
}
section.services_banner .holder .block_1:hover,
section.services_banner .holder .block_2:hover {
  transform: scale(1.05);
  box-shadow: 0px 4px 33px rgba(0, 0, 0, 0.25);
}
section.type_of_service {
  background: url(../img/bg_ship_owner.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-bottom: 80px;
}
section.type_of_service .holder .title_holder {
  background: #FFFFFF;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.07);
  padding: 50px 0px;
  background: url(../img/bg_title.jpg);
  background-repeat: no-repeat;
  background-position: center;
}
section.type_of_service .holder .title_holder .title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: 36px;
  text-align: center;
  color: #000000;
}
section.type_of_service .holder .service_item_holder {
  display: flex;
  justify-content: space-between;
  margin-top: 23px;
}
section.type_of_service .holder .service_item_holder .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 35px 20px;
  border-radius: 5px;
  min-width: 30%;
  position: relative;
  transition: 0.4s ease;
}
section.type_of_service .holder .service_item_holder .item:hover {
  box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
section.type_of_service .holder .service_item_holder .item:hover .btn {
  opacity: 1;
}
section.type_of_service .holder .service_item_holder .item:last-child::after {
  display: none;
}
section.type_of_service .holder .service_item_holder .item:after {
  content: "";
  width: 1px;
  height: 131px;
  position: absolute;
  right: -35px;
  top: calc(50% - 75px);
  display: block;
  background: #CBCBCB;
}
section.type_of_service .holder .service_item_holder .item .image {
  max-width: 188px;
  max-height: 188px;
  min-width: 188px;
  min-height: 188px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.type_of_service .holder .service_item_holder .item .title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
}
section.type_of_service .holder .service_item_holder .item .text {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 140%;
  margin-top: 15px;
  max-width: 318px;
  text-align: center;
  color: #000000;
}
section.type_of_service .holder .service_item_holder .item .btn {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  margin-top: 13px;
  color: #FFFFFF;
  opacity: 0;
  transition: 0.4s ease;
}
section.for_ship_owner {
  background: url(../img/bg_ship_owner_2.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-bottom: 180px;
}
section.for_ship_owner .holder .title_holder {
  background: #FFFFFF;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.07);
  padding: 50px 0px;
  background: url(../img/bg_title.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: #FFF;
}
section.for_ship_owner .holder .title_holder .title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: 36px;
  text-align: center;
  color: #000000;
}
section.for_ship_owner .holder .service_item_holder {
  display: flex;
  justify-content: space-between;
  margin-top: 23px;
}
section.for_ship_owner .holder .service_item_holder .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 35px 20px;
  border-radius: 5px;
  min-width: 30%;
  position: relative;
  transition: 0.4s ease;
}
section.for_ship_owner .holder .service_item_holder .item:hover {
  background: transparent;
  box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
section.for_ship_owner .holder .service_item_holder .item:hover .btn {
  opacity: 1;
}
section.for_ship_owner .holder .service_item_holder .item:last-child::after {
  display: none;
}
section.for_ship_owner .holder .service_item_holder .item:after {
  content: "";
  width: 1px;
  height: 131px;
  position: absolute;
  right: -15px;
  top: calc(50% - 75px);
  display: block;
  background: #CBCBCB;
}
section.for_ship_owner .holder .service_item_holder .item .image {
  max-width: 188px;
  max-height: 188px;
  min-width: 188px;
  min-height: 188px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.for_ship_owner .holder .service_item_holder .item .title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
}
section.for_ship_owner .holder .service_item_holder .item .text {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 140%;
  margin-top: 15px;
  max-width: 318px;
  text-align: center;
  color: #000000;
}
section.for_ship_owner .holder .service_item_holder .item .btn {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  margin-top: 13px;
  color: #FFFFFF;
  opacity: 0;
  transition: 0.4s ease;
}
.thanks_services .holder {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.thanks_services .holder .text {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: normal;
  font-size: 21px;
  line-height: 150%;
  text-align: center;
  max-width: 430px;
  color: #000000;
  position: relative;
}
.thanks_services .holder .text::after {
  content: "";
  width: 112px;
  height: 1px;
  background: #2183FF;
  display: block;
  position: absolute;
  top: -50px;
  left: calc(50% - 60px);
}
.thanks_services .holder .image {
  transform: translateY(-80px);
}
footer {
  padding: 35px 0px;
  background: #2B2B2B;
}
footer .holder .footer_menu {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  color: #FFFFFF;
  display: flex;
  justify-content: space-around;
}
footer .holder .footer_menu .block_1 .logo {
  color: #FFF;
}
footer .holder .footer_menu .block_1 .menu_item {
  font-family: "Montserrat";
  font-style: normal;
  margin: 20px 0px;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  color: #FFFFFF;
}
footer .holder .footer_menu .contact_block {
  display: flex;
  width: 100%;
  justify-content: center;
}
footer .holder .footer_menu .contact_block .block_2,
footer .holder .footer_menu .contact_block .block_3,
footer .holder .footer_menu .contact_block .block_4 {
  max-width: 170px;
  margin: 0px 80px;
}
footer .holder .footer_menu .contact_block .block_2 .item,
footer .holder .footer_menu .contact_block .block_3 .item,
footer .holder .footer_menu .contact_block .block_4 .item {
  margin-bottom: 20px;
}
footer .holder .footer_menu .contact_block .block_2 .item:nth-child(2) .text,
footer .holder .footer_menu .contact_block .block_3 .item:nth-child(2) .text,
footer .holder .footer_menu .contact_block .block_4 .item:nth-child(2) .text {
  min-height: 48px;
}
footer .holder .footer_menu .contact_block .block_2 .item .title,
footer .holder .footer_menu .contact_block .block_3 .item .title,
footer .holder .footer_menu .contact_block .block_4 .item .title {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  color: #FFFFFF;
}
footer .holder .footer_menu .contact_block .block_2 .item .text,
footer .holder .footer_menu .contact_block .block_3 .item .text,
footer .holder .footer_menu .contact_block .block_4 .item .text {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 140%;
  color: #FFFFFF;
  margin-top: 15px;
  max-width: 165px;
  min-height: 84px;
}
footer .holder .footer_menu .hidden_email {
  display: none;
}
footer .holder .footer_menu .hidden_email .item {
  margin-bottom: 20px;
}
footer .holder .footer_menu .hidden_email .item .title {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  color: #FFFFFF;
}
footer .holder .footer_menu .hidden_email .item .text {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 140%;
  color: #FFFFFF;
  margin-top: 15px;
  max-width: 165px;
}
footer .holder .footer_last_line {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 60px;
}
footer .holder .footer_last_line .rigths {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  color: #FFFFFF;
}
footer .holder .footer_last_line .who {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  text-align: right;
  color: #FFFFFF;
}
section.services_main .holder .service_holder .block_2 .text {
  transition: 0.5s ease;
  z-index: 2;
  top: 45%;
  left: calc(50% - 205px);
  position: absolute;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: bold;
  font-size: 26.6252px;
  line-height: 130%;
  text-align: center;
  color: #FFFFFF;
  text-shadow: 0px 5.24043px 17.6022px rgba(0, 0, 0, 0.96);
}
section.services_main .holder .service_holder .block_2:hover .text {
  transform: translateY(-85px);
  font-size: 18px;
  left: calc(50% - 152px);
}
.contact {
  background-color: #FFF !important;
}
.contact .holder .footer_last_line_contact .rigths {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: #000;
}
.index_menu {
  background-color: transparent;
  margin-bottom: -64px;
  z-index: 999990000000999;
}
.index_menu .holder nav .burger span {
  background: #FFF;
  width: 37px;
  height: 2px;
  margin-bottom: 8px;
  transition: all 0.2s ease-in-out;
}
.index_menu .holder nav .menu_holder .menu_item {
  margin: 0px 18px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #FFF;
  position: relative;
}
.index_menu .holder nav .menu_holder .menu_item:hover::before {
  background: #FFF !important;
}
.index_menu .holder nav .logo {
  font-family: "Minion Pro";
  font-style: normal;
  font-weight: normal;
  font-size: 28.7568px;
  color: #FFF;
}
#slider_one {
  transition: 0.2s;
}
