@import "flag-icons/css/flag-icons.min.css";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --dark-bg: #1a1a1a;
  --blueish-bg: #004f55;
  --white: #ffffff;
  --light-gray: #c0c0c0;
  --footer-gray: #999999;
  --turquoise: #00d4d9;
  --turquoise-dark: #00a1a5;
  --light-blue: #4dd0e1;
  --soft-green: #66ffcc;
  --button-text-dark: #1a1a1a;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
    "Montserrat" Arial,
    Helvetica,
    sans-serif;
}
html,
body {
  overflow-x: hidden;
}
body {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(120deg, #1a1a1a, #004f55);
  background-size: 100%;
  background-repeat: no-repeat;
}
.keeled {
  position: relative;
  display: inline-block;
}
.keeled-btn {
  color: #ffff;
  background: transparent;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}
.keeled-drop {
  text-align: center;
  display: none;
  position: absolute;
  background: linear-gradient(120deg, #1a1a1a, #004f55);
  border: none;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 100;
  min-width: 150px;
}
.keeled-drop li a {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  text-decoration: none;
  color: #c0c0c0;
}
.keeled-drop li a:hover {
  color: #a19f9f;
}
.keeled:hover .keeled-drop {
  display: block;
}
.keeled-drop .show {
  display: block;
}
header {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}
header img {
  width: 100px;
  height: 50px;
}
.peamenu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: transparent;
  gap: 20px;
}
.links {
  z-index: 9999;
  display: none;
  flex-direction: column;
  position: absolute;
  right: 0%;
  top: 10%;
  background: linear-gradient(120deg, #1a1a1a, #004f55);
  padding: 0px 10px;
  gap: 10px;
  list-style: none;
  width: 320px;
}
.links li {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 18px;
  display: flex;
  border-top: 1px solid #fff;
  align-items: center;
  text-align: center;
  height: 50px;
}
.links a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}
.links.show {
  display: block;
}
.links a:hover {
  color: #a19f9f;
}
.burger {
  width: 100%;
  margin-right: -10px;
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 40px;
  height: 32px;
  border: 1px solid #4f657a;
  background: linear-gradient(120deg, #1a1a1a, #004f55);
  cursor: pointer;
  padding: 5px;
}
.riba {
  height: 2px;
  width: 100%;
  background-color: #fff;
}
.burger.open span:nth-child(1) {
  background-color: #c0c0c0;
  transform: rotate(45deg) translate(3px, 5px);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  background-color: #c0c0c0;
  transform: rotate(-45deg) translate(5px, -5px);
}

.kontakt-section {
  width: 90%;
  margin: 40px auto;
  text-align: center;
  color: #fff;
}
.kogu {
  display: flex;
  justify-content: space-around;
}
.kontakt-section h1 {
  font-size: 26px;
  margin-bottom: 15px;
}

.kontakt-section p {
  margin-bottom: 30px;
  font-size: 16px;
}

.kontakt-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

form#kontaktForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 400px;
}

form input,
form select,
form textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #4f657a;
  font-size: 14px;
  width: 100%;
}

form button.cta-kaks {
  background: linear-gradient(-120deg, #1a1a1a, #004f55);
  color: #ffff;
  border: none;
  padding: 12px;
  border-radius: 15px;
  font-size: 16px;
  cursor: pointer;
}

form button.cta-kaks:hover {
  background: linear-gradient(120deg, #1a1a1a, #004f55);
  border: 1px solid #ffff;
  color: #fff;
}

.kontakt-info {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 10px;
  max-width: 400px;
  width: 100%;
  text-align: left;
}

.kontakt-info h2 {
  text-align: center;
  margin-bottom: 15px;
}

.kontakt-info p {
  margin: 10px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.kontakt-info .footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}
.footer {
  list-style-type: none;
  text-decoration: none;
}
.footer-links a {
  list-style-type: none;
  text-decoration: none;
  color: #4f657a;
}
.footer-links a:hover {
  border-bottom: 1px solid #4f657a;
}
.footer-links {
  margin-top: 20px;
  margin-right: 15px;
  margin-left: 15px;
  display: flex;
  justify-content: center;
  gap: 50px;
}
.footer-social {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.footer-social a {
  color: #c0c0c0;
}
.footer-social a:hover {
  border-bottom: 1px solid #c0c0c0;
}
.joon {
  border: none;
  background-color: #fff;
  height: 2px;
  margin: 20px auto;
  width: 80%;
  border-radius: 3px;
}
@media (min-width: 768px) {
  .burger {
    display: none;
  }

  .links {
    display: flex !important;
    position: static;
    flex-direction: row;
    gap: 30px;
    background: none;
    width: auto;
    padding: 0;
  }

  .links li {
    border: none;
    height: auto;
  }

  .links a {
    text-transform: none;
    font-size: 18px;
  }
}
