/* --- VARIABLES --- */
:root {
  /* colors */
  --white: #fff;
  --black: #000;
  --gold: rgba(231, 162, 54, 1);
  --green: rgba(1, 73, 94, 1);
  /* Border Radius */
  --border-radius-1: 15px;
  --border-radius-2: 30px;
  --border-rounded: 50%;
}

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

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}

h1 {
  font-size: clamp(28px, 4vw, 48px);
}
.section-title {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 900;
  color: var(--green);
}
.card-title {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 900;
  color: var(--green);
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.container {
  max-width: calc(1280px - 30px);
  margin: 0 auto;
  padding: 0 30px;
}

.gold {
  color: var(--gold);
}
.green {
  color: var(--green);
}

button,
.btn {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gold);
  border: 1px solid rgba(247, 247, 247, 0.55);
  padding: 15px;
  height: 80px;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 900;
  color: var(--white);
  outline: none;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
button:hover,
.btn:hover {
  background-color: var(--green);
  border: 1px solid var(--gold);
}

.circle {
  width: 80px;
  height: 80px;
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gold);
  flex-shrink: 0;
}

/* Header */
header {
  width: 100%;
  position: fixed;
  padding: 22px 0;
  z-index: 999;
  transition: all 0.5s ease-in-out;
}
header.scrolled {
  position: fixed;
  top: 0;
  background-color: var(--white);
  color: var(--green);
}
header.hidden {
  top: -130px;
}
header.visible {
  top: 0;
}
header.change a {
  color: rgba(66, 66, 66, 1);
}
header.change a:hover {
  color: var(--gold);
}
header.change .line {
  background-color: var(--green);
}
.dark-logo {
  display: none;
}
header.scrolled .light-logo,
header.menuOpen .light-logo {
  display: none;
}
header.scrolled .dark-logo,
header.menuOpen .dark-logo {
  display: block;
}
header.menuOpen {
  background-color: var(--white);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 35px;
}
.logo img {
  width: 100px;
}
.menu {
  display: flex;
  align-items: center;
  gap: 50px;
}
.menu li {
  position: relative;
}
.menu a {
  color: var(--white);
  font-size: 16px;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.menu a:hover {
  color: var(--gold);
}
/* submenu */
.menu-item-has-children::after {
  display: none;
  content: " ";
  position: absolute;
  top: 18px;
  right: 0;
  height: 10px;
  width: 10px;
  border-bottom: 2px solid var(--green);
  border-right: 2px solid var(--green);
  transform: rotate(45deg);
  transition: 0.3s ease-in-out;
}
.sub-menu {
  position: absolute;
  left: -100px;
  top: 45px;
  padding: 25px;
  width: 1150px;
  background-color: var(--white);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 50px;
  box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}
.sub-menu:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: transparent;
  z-index: 1;
}
.sub-menu:after {
  content: "";
  position: absolute;
  top: -10px;
  left: 120px;
  width: 0;
  height: 0;
  border-left: 35px solid transparent;
  border-top: 35px solid var(--white);
  transform: rotate(-45deg);
}
.sub-menu li a {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(66, 66, 66, 1);
  padding: 12px 0;
  border-bottom: 1px solid rgba(218, 218, 218, 1);
}
.sub-menu li a img {
  height: 30px;
}
.sub-menu li:last-of-type a {
  border-bottom: none;
  padding-bottom: 0;
}
.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  pointer-events: initial;
}
.navigation-bottom {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 16px;
}
.navigation-bottom .socials:first-of-type {
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(218, 218, 218, 1);
  justify-content: center;
}
.navigation-bottom .socials:first-of-type .social-box {
  background-color: var(--gold);
}
.bottom-socials .social-box svg,
.bottom-socials .social-box img {
  width: 20px;
}
.navigation-bottom .social-box svg path {
  fill: var(--white);
}

/* ----- Header ----- */
body.menuOpen {
  overflow: hidden;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.socials {
  display: flex;
  align-items: center;
  gap: 12px;
}
.social-box {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.telegram {
  background-color: #039be5;
}
.whatsup {
  background-color: #29a71a;
}
.social-box:hover {
  background-color: var(--gold);
}
.header-right .social-box svg,
.header-right .social-box img {
  width: 20px;
}
.header-number {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-number p {
  font-size: 18px;
  line-height: 19px;
  font-weight: 600;
  transition: 0.5s ease-in-out;
}
.header-number:hover p {
  color: var(--green);
}
.header-number path {
  transition: 0.5s ease-in-out;
}
.header-number:hover path {
  fill: var(--green);
}
.header-number:hover img {
  filter: brightness(0) saturate(100%) invert(20%) sepia(27%) saturate(3560%) hue-rotate(163deg) brightness(93%) contrast(102%);
  transition: 0.5s ease-in-out;
  /* fill: var(--green); */
}
.lines {
  position: relative;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 46px;
  z-index: 200;
  cursor: pointer;
  transition: 0.5s;
}
.line {
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition: 0.5s;
}
.line.active {
  background-color: var(--green);
}
.line:nth-of-type(1).active {
  transform: translateY(12px) rotate(-45deg);
}
.line:nth-of-type(2).active {
  transform: translateX(-20px);
  opacity: 0;
}
.line:nth-of-type(3).active {
  transform: translateY(-9px) rotate(45deg);
}

/* ----- Footer ----- */
.footer-contact {
  position: relative;
  margin-top: 245px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.footer-contact::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(1, 73, 94, 0.8), rgba(1, 73, 94, 0.8));
  z-index: 1;
}
.footer-contact .container {
  display: flex;
  align-items: center;
  gap: 150px;
  justify-content: space-between;
  color: var(--white);
}
.footer-contact .section-title {
  color: var(--white);
}
.footer-contact form {
  width: 600px;
  transform: translateY(-120px);
}
.footer-contact .consultation-box {
  position: relative;
  z-index: 5;
}
.footer-contact .consultation-box p {
  margin-top: 40px;
}
.footer-navigation {
  background-color: #152529;
  padding-bottom: 40px;
}
.footer-navigation .navigation-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--white);
}
.navigation-links {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}
.navigation-links #footer-menu {
  flex-direction: column;
  align-items: start;
  gap: 0;
}
#countries-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  column-gap: 50px;
}
#countries-menu li a {
  gap: 5px !important;
  flex-wrap: wrap;
}
.navigation-links li > div,
.navigation-links li a {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  color: var(--white);
  padding-bottom: 12px;
  transition: 0.3s ease-in-out;
}
.navigation-links li a:hover {
  color: var(--gold);
}
.navigation-links li a path {
  transition: 0.3s ease-in-out;
}
.navigation-links li a:hover path {
  fill: var(--gold);
}
.footer-copy {
  background-color: #1e1e1e;
  padding: 20px 0;
}
.footer-copy .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}
.footer-copy .social-box {
  background-color: var(--white);
}
.footer-copy .social-box path {
  fill: #1e1e1e;
}
.footer-copy .social-box:hover {
  background-color: var(--gold);
}
.footer-copy a {
  color: var(--white);
  transition: 0.3s ease-in-out;
}
.footer-copy a:hover {
  color: var(--gold);
}

/* Breadcrumbs */
.breadcrumbs {
  padding-top: 112px;
}
.breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 14px;
}
.bread-line {
  width: 30px;
  height: 1px;
  background-color: var(--white);
}
.breadcrumbs .bread-link {
  font-size: 14px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: 0.5s;
}
.breadcrumbs .bread-link span {
  transition: 0.5s;
}
.breadcrumbs .bread-link:hover span {
  color: var(--gold);
}
.breadcrumbs .current-link,
.breadcrumbs .current-link .green {
  font-size: 14px;
  color: var(--gold);
}
.hero.page {
  padding-top: 0;
}

/* Absolute background */
.map-bg {
  width: 100%;
  position: absolute;
  height: clamp(1000px, 100vw, 1150px);
  top: -70px;
  left: 0;
  z-index: -1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%, 0 calc(100% - 500px));
}
.map-bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(1, 73, 94, 0.8), rgba(1, 73, 94, 0.8));
  z-index: 1;
}
.map-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ichatsio-main */
#ichatsio-main {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 50px;
  text-align: center;
  cursor: pointer;
  z-index: 99;
}
#ichatsio-btns {
  height: 320px;
  position: relative;
  margin-bottom: -33px;
  z-index: 1;
  transition: all 0.3s ease-out;
}
.ichatsio-btn-item {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background-color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}
.ichatsio-btn-item svg path {
  fill: var(--white);
}
.ichatsio-btn-item svg,
.ichatsio-btn-item img {
  width: 35px;
  height: 35px;
}
#ichatsio-btn-main {
  display: none;
  margin-top: 0;
  position: relative;
  z-index: 2;
}
#ichatsio-main-author a {
  margin-top: 5px;
  font-size: 10px;
  color: #212121;
  text-decoration: none;
  font-family: sans-serif;
}
#ichatsio-btn-instagram {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}
#ichatsio-btn-facebook {
  background-color: #1877f2;
}
#ichatsio-btn-facebook svg,
#ichatsio-btn-facebook img {
  width: 45px;
  height: 45px;
}

/* POP UP MODAL */
.custom-modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(1, 73, 94, 0.75);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index: 9999;
}
.custom-modal:target {
  visibility: visible;
  opacity: 1;
}
.modal-inner {
  max-width: 1200px;
  position: relative;
  transition: all 5s ease-in-out;
}
.pop-up {
  position: relative;
}
.modal-inner .close-btn {
  position: absolute;
  top: 15px;
  right: 40px;
  z-index: 100;
}
.pop-form {
  display: flex;
}
.pop-form .consultation-box {
  width: 50%;
  padding: 40px;
  color: #fff;
  border: 1px solid rgba(247, 247, 247, 0.55);
  border-right: none;
}
.pop-form .consultation-box p {
  margin: 25px 0 40px;
}
.pop-form .consultation-box .social-box {
  width: 70px;
  height: 70px;
}
.pop-form .consultation-box .social-box svg,
.pop-form .consultation-box .social-box img {
  width: 35px;
}
.pop-form .section-title {
  color: var(--white);
}
.pop-form form {
  width: 50%;
}
.pop-form form p {
  text-align: start;
}

/* Thanks page */
.hero.thanks-hero {
  padding: 180px 0;
}
.hero.thanks-hero .container {
  gap: 145px;
}
.thanks-hero .btn {
  width: 500px;
  margin-top: 50px;
}
.thanks-img {
  width: 50%;
}
.thanks-img img {
  width: 100%;
  height: 780px;
  object-fit: cover;
}
