:root {
  --accent: #16253f;
  --black: rgba(24, 24, 24, 1);
  --accent-dark: rgba(13, 41, 88, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
button,
a,
h1,
input,
textarea,
select,
option::placeholder {
  font-family: "Fira Sans Condensed", sans-serif;
}

::placeholder {
  font-size: 20px;
  line-height: 23px;
  letter-spacing: 0em;
  text-align: left;
  color: #D8D8D8;
}

html,
body {
  max-width: 100vw !important;
  padding: 0 !important;
  overflow-x: clip;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  white-space: nowrap;
}

a {
  white-space: nowrap;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
}
a:hover {
  color: rgba(35, 35, 35, 0.7);
}

input,
select,
option {
    font-family: "Fira Sans Condensed", sans-serif;
  padding: 16px 0;
  font-size: 18px;
  border: none;
  background: none;
  color: #000;
  border-bottom: solid 1px rgb(165, 165, 165);
}

select:focus {
  outline: none;
}

input::placeholder {
  font-size: 18px;
  line-height: 24px;
  color: rgb(68, 68, 68);
}

input:focus {
  outline: none;
}

ul {
  list-style: none;
  display: flex;
}

.container, ._container {
  width: 100%;
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  margin-bottom: 75px;
  width: 100%;
}

.body_title {
  width: 100%;
  font-size: 45px;
  font-weight: 700;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 21px;
}
.body_title.small {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  color: rgb(13, 41, 88);
}
.body_title.small.underlined {
  padding-bottom: 10px;
  margin: 12px 0;
  font-size: 18px;
}
.body_title.small.underlined::after {
  left: 0;
  transform: unset;
}
.body_title.left {
  text-align: left;
}
.body_title.left.underlined::after {
  left: 0;
  transform: unset;
}
.body_title.white {
  color: #fff;
}
.body_title.white.underlined::after {
  left: 0;
  transform: unset;
  background-color: #fff;
}

.body_title-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.body_title.underlined {
  padding-bottom: 25px;
  margin-bottom: 25px;
  position: relative;
}

.body_title.underlined::after {
  content: "";
  width: 35px;
  height: 3px;
  background-color: var(--accent);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

p {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0em;
  text-align: left;
  color: #555555;
}

.wrapper {
  display: flex;
  justify-content: center;
}

.wrapper.ver {
  flex-direction: column;
}

img {
  max-width: 100%;
  object-fit: contain;
}

.body_logo {
  width: 90px;
}

/* BUTTONS */
.primary-btn {
    text-align: center;
  padding: 13px 64px;
  font-size: 15px;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: 0em;
  background-color: var(--accent);
  border: solid 1px var(--accent);
  color: #fff;
  border-radius: 5px;
  transition: 0.3s!important;
  cursor: pointer;
}
.primary-btn:hover, .nav_ul .primary-btn.small:hover, .nav-mobile_ul .primary-btn.small:hover {
  background-color: white;
  color: var(--accent);
}
.primary-btn.small, .nav_ul .primary-btn.small, .nav-mobile_ul .primary-btn.small {
    font-size: 15px;
    font-weight: 700;
    line-height: 19px;
    letter-spacing: 0em;
    padding: 6px 30px;
    color: #fff;
}

.plain-link {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: left;
  color: var(--accent-dark);
  transition: 0.3s;
  vertical-align: middle;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: underline;
}
.plain-link:hover {
  color: var(--black);
}
.plain-link svg {
  margin-left: 20px;
  transition: 0.3s;
}
.plain-link svg path {
  fill: #0D2958;
  transition: 0.3s;
}
.plain-link svg circle {
  stroke: #0D2958;
  transition: 0.3s;
}
.plain-link:hover svg {
  fill: var(--accent-dark);
}
.plain-link:hover svg path {
  fill: #fff;
}

/****************** SCROLLBAR ******************/
::-webkit-scrollbar-track {
  background: var(--accent);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #FFFFFF !important;
}

/****************** HEADER ******************/
header {
  width: 100%;
  height: 124px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
  background-color: #fff;
}

.header_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav_ul {
  padding: 0;
  justify-content: space-between;
  display: flex;
  align-items: center;
}

.nav_ul > * + * {
  margin-left: 36px;
}

.nav_ul a {
  color: #151515;
  font-weight: 500;
  white-space: nowrap;
  text-transform: uppercase;
}
.nav_ul a:hover {
  color: rgba(35, 35, 35, 0.7);
}

.logo {
  width: 80px;
  transition: 0.6s;
}

header.scrolled .logo {
  width: 60px;
}

header.scrolled {
  height: 80px;
  background-color: #fff;
}

.header_nav-right-line.top {
  margin-bottom: 15px;
  transition: 0.3s;
}

.header_nav-right-line.bottom {
  display: flex;
  align-items: center;
}

.header_nav-right-line.top > * + * {
  margin-left: 30px;
}

header.scrolled .header_nav-right-line.top {
  height: 0;
  margin: 0;
  overflow: hidden;
}

.header_nav-right-line-box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* FIXED LINKS */
.fixed-links-box {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 13px;
  z-index: 100;
}

.fixed-link {
  text-align: center;
}
.fixed-link img {
  vertical-align: middle;
}
.fixed-link:last-child {
  margin-top: 5px;
}

/* MOBILE MENU */
.header_nav-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.header_nav-right-line {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.header_nav-contact-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  white-space: nowrap;
}

.header_nav-contact {
  width: fit-content;
}

.header_nav-contact-link > * + * {
  margin-left: 5px;
}

/* MOBILE NAV */
.nav-mobile {
  position: fixed;
  display: flex;
  top: 0;
  right: -110%;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  transition: 0.5s;
  z-index: 1000;
  box-shadow: -25px 0 20px 0px rgba(0, 0, 0, 0.3);
}

.nav-mobile-wrap {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  padding: 0 30px;
  width: 100%;
  height: 100%;
  position: relative;
}

.nav-mobile-plank {
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  width: 70px;
  background-color: var(--accent-dark);
}

.nav-mobile-plank .menu-btn {
  margin: 0;
}

.nav-mobile-plank p {
  font-weight: 300;
  padding: 10px 0;
  text-transform: uppercase;
  text-orientation: sideways;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  color: #fff !important;
}

.hero_side-mobile {
  position: absolute;
  bottom: 30px;
  right: 15px;
}

.hero_side-mobile .hero_side-links {
  margin-top: 0;
}

.nav-mobile .select-box {
  justify-content: flex-start;
}

.nav-mobile li {
  padding-bottom: 15px;
  width: 100%;
}

.nav-mobile.active {
  right: 0;
}

.nav-mobile_ul > * + * {
  margin-top: 15px;
}

.nav-mobile_ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  row-gap: 10px;
}

/* BURGER BUTTON */
header.scrolled .menu-btn,
header.white-bg .menu-btn {
  background-image: url(/storage/app/media/icons/open.svg);
}

header.white-bg .menu-btn.close {
  background-image: url(/storage/app/media/icons/close.svg);
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transition: all 0.5s ease-in-out;
}

.nav-mobile-plank .menu-btn.close {
  background-image: url(/storage/app/media/icons/closewhite.svg);
}

.menu-btn {
  cursor: pointer;
  margin-left: 20px;
  width: 40px;
  height: 40px;
  padding: 13px;
  display: none;
  justify-content: center;
  align-items: center;
  background: url(/storage/app/media/icons/open.svg);
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  transition: 0.5s;
  opacity: 1;
}

.close-btn {
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 13px;
  justify-content: center;
  align-items: center;
  background: url(/storage/app/media/icons/closewhite.svg);
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  transition: 0.5s;
  opacity: 1;
}

/************************ HERO SECTION ***************************/
.hero_section {
  padding-top: 98px;
  width: 100vw;
  height: 100vh;
  /* background: url("/storage/app/media/hero_bg.png"); */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero_section .container {
  position: relative;
}

.hero_content {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero_content-title {
  font-size: 90px;
  font-weight: 700;
  line-height: 95px;
  letter-spacing: 0em;
  text-align: left;
  color: #fff;
}

.hero_content-subtitle {
  margin: 15px 0 30px;
  font-size: 28px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: left;
  color: #fff;
}

@media (max-width: 480px) {
	.hero_content-subtitle {
		max-width: 90%;
	}
}

.hero_scroll {
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
}

.hero_content .red-btn {
  margin-top: 40px;
}

/* SCROLL LINK */
.scroll-link {
  display: flex;
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 20%;
  bottom: 50px;
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-align: left;
  writing-mode: vertical-lr;
  color: #fff;
  cursor: pointer;
}
.scroll-link img {
  margin-top: 5px;
}
.scroll-link:hover {
  color: rgb(236, 236, 236);
}

/* BOUNCE ANIMATION */
.bounce {
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-name: bounce;
  animation-timing-function: ease-in-out;
}

@keyframes bounce {
  0% {
    transform: translateY(0) translateX(-50%);
  }
  50% {
    transform: translateY(-10px) translateX(-50%);
  }
  100% {
    transform: translateY(0) translateX(-50%);
  }
}
/********************** WHY SECTION *************************/
.why_grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 30px;
}

.why_card {
  padding: 40px 45px;
  position: relative;
}
.why_card:first-child {
  border-radius: 20px 0 0 20px;
}
.why_card:last-child {
  border-radius: 0 20px 20px 0;
}
.why_card:nth-child(even) {
  background-color: var(--accent);
}
.why_card:nth-child(even) .body_title.underlined::after {
  background-color: #fff;
}
.why_card:nth-child(even) .body_title,
.why_card:nth-child(even) p {
  color: #fff;
}
.why_card:nth-child(odd) {
  background-color: rgb(244, 246, 248);
}
.why_card p {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
}

.why-arrow {
  position: absolute;
  right: -21px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

/********************** SERVICES SECTION *************************/

.services-slide {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.services-slide img {
  width: 100%;
  border-radius: 20px;
      height: 343px;
    object-fit: cover;

}

.services_slider {
  width: 100%;
}

.services-slide-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 0 10px;
}

/* SLIDER */
.slick-slide {
  margin: 0 5px;
  cursor: grab;
}
.slick-slide:active {
  cursor: grabbing;
}

.slick-list {
  margin: 0 -5px !important;
}

.slider-wrap {
  width: 100%;
  position: relative;
  margin-bottom: 64px;
}

.arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.arrow-btn.prev {
  left: -50px;
}
.arrow-btn.next {
  right: -50px;
}
.arrow-btn svg {
  fill: #fff;
  transition: 0.3s;
}
.arrow-btn:hover svg {
  fill: #DCDCDC;
}

.dots {
  width: 100%;
}

/********************************** FORM SECTION *************************************/

.form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 20px 60px 100px;
  max-width: 50%;
}
.modal .form {
    margin: 0!important;
    max-width: 100%;
    width: 100%;
    background-color: rgb(244, 246, 248);
    border-radius: 20px;
    padding: 0!important;
}

.modal .primary-btn {
    max-width: 100%;
    padding: 13px 30px;
    width: 100%;
}

.tariff_form {
    margin: 0!important;
}

.modal .form p {
margin: 0;
}
.modal .form .form_line {
    width: 100%;
}
.form .body_title {
  text-align: left;
}
.form .body_title-box {
  margin-bottom: 35px;
}

.form_line {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.form_line input:last-child {
  margin-left: 16px;
}

.form_wrapper {
  border-radius: 20px;
  background-color: rgb(244, 246, 248);
}

.form_img {
  margin-bottom: 0;
  position: relative;
  width: 50%;
  height: auto;
}
.form_img img {
  position: absolute;
  width: 110%;
  max-width: unset;
  bottom: 0;
}

/********************************* ABOUT SECTION *********************************/
.about-mobile-img {
  display: none;
}

.about_img {
  max-width: 50%;
  width: 50%;
  border-radius: 20px;
  margin-right: 110px;
}

.about_img img {
    width: 100%;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
} 

.content .body_title-box {
  margin: 0;
}
.content .body_title {
  margin: 0;
}

.content__text {
	margin: 30px 0;
	display: flex;
	flex-direction: column;
	row-gap: 10px;
}

/********************************* NEWS SECTION *********************************/
.news_slider {
  width: 100%;
}

.news_section .slick-track {
    padding: 0 0 30px 0;
}

.news-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  border: solid 1px rgb(218, 218, 218);
  box-shadow: 5px 10px 31px 0px #ffffff;
}
.news-slide:hover {
    box-shadow: 11px 14px 31px 0px #0000001A;
}
.news-slide img {
  width: 100%;
}
.news-slide .body_title.small.underlined, .news-slide p {
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: 0em;
  text-align: left;
  color: var(--black);
  padding-bottom: 10px;
  margin-top: 0;
}
.news-slide .news-date {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0px;
  text-align: left;
  padding: 0;
}

.news-slide-content {
  padding: 30px;
}

/********************************* CERTS SECTION *********************************/
.certs-slider-wrap {
  width: 50%;
  margin-bottom: 0;
}

.certs_slider {
  width: 100%;
}
.certs_slider img {
  width: 100%;
  transition: 0.3s;
}
.certs_slider .slick-current img {
  width: 90%;
}
.certs_slider .slick-track {
  display: flex !important;
  align-items: flex-end;
}

.certs_content {
  width: 50%;
  margin-left: 110px;
}

.certs-dots .slick-dots {
  justify-content: flex-start !important;
}

/************************************************* SERVICES PAGE *************************************************/
.page-hero {
  height: 55vh;
}

.page-hero .body_title.underlined {
  font-size: 50px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: 0em;
  text-align: left;
}

#serv-hero {
  background-image: url(/storage/app/media/pages/hero2.png);
}

.services-page .about_section:nth-child(even) img {
  margin: 0 0 0 110px;
}
.services-page .about_section:nth-child(even) .about_wrapper.wrapper {
  flex-direction: row-reverse;
}

.qs_row-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: 0px;
  text-align: left;
  color: var(--black);
  border-bottom: solid 1px rgb(183, 183, 183);
}

.qs_row-content {
  display: none;
  font-size: 15px;
  font-style: italic;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0px;
  text-align: left;
  padding: 23px 0;
  color: rgb(68, 68, 68);
}

.qs-btn {
    margin-left: 15px;
  position: relative;
  min-width: 32px;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: var(--accent);
  transition: 0.2s;
}
.qs-btn::after {
  content: "";
  height: 32px;
  width: 32px;
  border-radius: 100%;
  background-image: url(/storage/app/media/icons/plus.svg);
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
.qs-btn.dark {
  background-color: var(--black);
}
.qs-btn.dark::after {
  background-image: url(/storage/app/media/icons/minus.svg);
}

/************************************************* TARIFF PAGE *************************************************/
#tariff-hero {
  background-image: url(/storage/app/media/pages/hero3.png);
}

.tariff-page .about_img {
  width: 45%;
  margin-right: 30px;
}

.tariff_form {
  padding: 50px 100px 50px 100px;
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-color: rgb(244, 246, 248);
  border-radius: 20px;
}
.tariff_form input {
  width: 50%;
}
.tariff_form select {
  width: 100%;
}
.tariff_form button {
  margin-top: 30px;
}

/************************************************* ABOUT PAGE *************************************************/
#about-hero {
  background-image: url(/storage/app/media/pages/hero4.png);
}

/************************************************* NEWS PAGE *************************************************/
#news-hero {
  background-image: url(/storage/app/media/pages/hero5.png);
}

.news_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 32px;
  row-gap: 32px;
}

/*********************************************** CONTACTS PAGE ***********************************************/
#contacts-hero {
  background-image: url(/storage/app/media/pages/hero6.png);
}

.map iframe {
  width: 100%;
  border: none !important;
}

.contacts_row {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 32px;
  margin-bottom: 53px;
}

.contacts_row.first {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 32px;
}

.contacts_card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 60px;
  font-size: 17px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: left;
  color: var(--black);
  background-color: rgb(234, 234, 234);
  transition: 0.3s;
}
.contacts_card:first-child {
  white-space: unset;
}
.contacts_card.tel {
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: left;
}
.contacts_card:hover {
  background-color: var(--accent-dark);
  color: #fff;
}
.contacts_card:hover .contacts_card-title {
  color: rgb(197, 197, 197);
}

.contacts_card-title {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 2px;
  text-align: left;
  color: rgb(115, 115, 115);
}

/*********************************************** FOOTER SECTION **********************************************/
footer {
  color: #fff;
  background-color: var(--black);
  border-top: solid 20px rgb(49, 49, 49);
}

.footer_contact-tel>*+* {
    margin-top: 2px;
}

.footer_nav-title {
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0em;
  text-align: left;
  color: #fff;
}

.footer_contacts-item-text,
.footer_schedule {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
  color: #D4D4D4;
}

footer a {
  color: #fff;
}
footer a:hover {
  color: rgb(236, 236, 236);
}

.footer_contacts {
  display: flex;
  flex-direction: column;
}

.footer_contacts > * + * {
  margin-top: 15px;
}

.footer_contacts-item-label {
  font-size: 14px;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: 0em;
  text-align: left;
  color: #ABABAB;
}

.footer_firstline {
  padding: 45px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer_firstline > * + * {
  margin-left: 20px;
}

.footer_nav {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 30px;
  row-gap: 10px;
}
.footer_nav a {
  color: rgb(161, 161, 161);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: left;
}
.footer_nav a:hover {
  color: rgb(236, 236, 236);
}

.footer_contacts-item-links {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  color: #ABABAB;
  display: flex;
  flex-direction: column;
  margin-top: -20px;
}

.footer-logo img {
  width: 100%;
}

.footer_abcdesign {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: solid 1px #545454;
}

.footer_socials-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1.4px #fff;
}

.footer_socials-box,
.footer_socials-btns {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer_socials-box > * + * {
  margin-left: 11px;
}

.footer_socials-btns > * + * {
  margin-left: 11px;
}

.footer_socials-btns {
  margin-left: 10px;
}

.abc-link {
  height: fit-content;
}

.abc-p {
  font-size: 14px;
  line-height: 18px;
  color: rgb(161, 161, 161);
}

#map-link {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: left;
  color: #fff;
}/*# sourceMappingURL=styles.css.map */

/****************** MODAL **********************/

#modal-contact .full, .form_wrapper input {
    width: 100%;
}

.form_line input {
    width: 100%;
}

.modal .body_title.small-under.white::after {
    background-color: #fff;
}

.modal .tariff_form {
    width: 100%;
}

.form .primary-btn {
    margin-top: 35px;
}

.modal-dialog-wrap {
    position: fixed;
    width: 1000px;
    /* padding: 50px; */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)!important;
    /* background-color: rgb(244, 246, 248); */
}

.modal-dialog {
    background:none;
    border-radius: 20px;
    margin: 0;
    width: fit-content;
}

.modal-dialog.modal-dialog-centered {
    width: 100%;
}

.arenda-modal-content {
    position: relative;
    background-color: rgb(244, 246, 248);
    border-radius: 20px; 
    padding: 50px;
}
.modal .tariff_form, .modal .contact_form {
    padding: 0!important;
}
.form_img-mob {
    min-width: 50%;
    display: flex;
    margin-left: 10px;
}
.open-modal {
	cursor: pointer;
}
.modal-box {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0,0,0,0.5);
	z-index: 100;
	display: none;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}
.modal-box.active {
	display: block;
	opacity: 1;
}
.modal-content {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: none
}
.modal-box form {
	position: relative;
	width: 30%;
	height: fit-content;
	margin: 0 auto;
	vertical-align: center;
	padding: 36px 24px;
	background: rgba(244, 246, 248, 1);
}
.modal-content .intro_content-button {
	
	margin-top: 50px;
	
}
#close-modal {
    font-size: 40px;
    line-height: 25px;
    color: #555555;
	background: none;
	border: none;
	padding: 0;
	position: absolute;
	top: 30px;
	right: 30px;
	opacity: 0.75;
	transition: 0.2s;
}
#close-modal:hover {
    opacity: 1;
}

/***************** ALERT *****************/

.alert .close {
    margin: 0;
}

.alert {
    width: 280px;
    position: fixed;
    top: -35%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1100;
    outline: none!important;
}

.alert p {
    color: var(--black);
    font-size: 16px;
}

.alert-success{background : #fffff1; border: 0; color : var(--black); border-left: solid 7px #93c939}

.alert-dismissable .close, .alert-dismissible .close{top : -5px;opacity: 1;color: #fff;}
.alert {
    padding: 15px;
    border-radius: 4px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: var(--text-dark);
    opacity: 0.75;
    font-weight: 900;
    font-size: 40px;
    transition: 0.3s;
    margin-left: 15px;
}

.alert-dismissable .close:hover {
    opacity: 1;
}
.alert-success p {
    color: #fff;
}
.alert-success {
    display: flex;
    color: #3c763d;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    color: #fff;
    background: #3c763d;
    width: 90%;
    max-width: 500px;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}

.footer_logo {
    max-width: 111px;
}
.content ul {
    list-style: disc;
    display: block;
    padding-left: 20px;
    margin-bottom: 30px;
    margin-top: 20px;
}

.content ul li {
    margin-bottom: 7px;
}


