@font-face {
  font-family: "BPG Mrgvlovani Caps 2010";
  src: url("../fonts/BPGMrgvlovaniCaps2010.eot");
  src: url("../fonts/BPGMrgvlovaniCaps2010.eot?#iefix") format("embedded-opentype"),
    url("../fonts/BPGMrgvlovaniCaps2010.woff2") format("woff2"),
    url("../fonts/BPGMrgvlovaniCaps2010.woff") format("woff"),
    url("../fonts/BPGMrgvlovaniCaps2010.ttf") format("truetype"),
    url("../fonts/BPGMrgvlovaniCaps2010.svg#BPGMrgvlovaniCaps2010") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BPG Mrgvlovani";
  src: url("../fonts/BPGMrgvlovani.eot");
  src: url("../fonts/BPGMrgvlovani.eot?#iefix") format("embedded-opentype"),
    url("../fonts/BPGMrgvlovani.woff2") format("woff2"),
    url("../fonts/BPGMrgvlovani.woff") format("woff"),
    url("../fonts/BPGMrgvlovani.ttf") format("truetype"),
    url("../fonts/BPGMrgvlovani.svg#BPGMrgvlovani") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --red: #e3332d;
}
* {
  margin: 0;
  padding: 0;
}
body {
  font-size: 14px;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
a:hover {
  text-decoration: none;
}

header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}
.navbar-logo {
  height: 80px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.navbar-logo img {
  height: 100%;
}
.navbar-logo h2 {
  font-weight: 600;
  margin: 0;
  font-family: "BPG Mrgvlovani Caps 2010";
  font-size: 18px;
}
.costum-navbar {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  text-decoration: none;
  list-style: none;
  margin: 0;
}

.costum-navbar li {
  text-decoration: none;
}
.costum-navbar-link {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: 0.1s;
  margin: 0;
  font-family: "Segoe UI";
  font-size: 18px;
}
.costum-navbar-link:hover {
  color: #8277b7;
  border-bottom: 2px solid #8277b7;
}
.active {
  color: #8277b7;
  border-bottom: 2px solid #8277b7;
}
.costum-form {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.phone-text {
  font-weight: 600;
  margin: 0;
  font-family: "BPG Mrgvlovani Caps 2010";
  font-size: 14px;
}
.costum-input[type="number"]::-webkit-inner-spin-button,
.costum-input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;

  margin: 0;
}
.costum-input[type="number"] {
  appearance: none;
  -moz-appearance: textfield;
}
.costum-input {
  border: 0px;
  border-bottom: 1px solid rgb(164, 157, 157);
  outline: none;
  width: 100%;
  height: 35px;
  padding: 5px;
  font-weight: 400;
  font-family: "BPG Mrgvlovani Caps 2010";
  font-size: 16px;
}
.costum-text {
  color: #000;
  font-weight: 400;
  margin: 0;
  font-family: "BPG Mrgvlovani";

  font-size: 14px;
}
.costum-button {
  background-color: white;
  border: 2px solid black;
  border-radius: 10px;
  width: 230px;
  height: 45px;
  font-weight: 600;
  font-family: "BPG Mrgvlovani Caps 2010";
  font-size: 16px;
  color: black;
  transition: background-color 0.3s ease;
  outline: none;
}
.costum-button.clicked {
  background-color: #8277b7;
  color: white;
  border: 2px solid white;
  outline: none;
}
.buttons-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
}
@media only screen and (max-width: 600px) {
  .buttons-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  .costum-button {
    width: 100%;
  }
  .navbar-logo {
    height: 55px;
  }
}
