@import url("https://fonts.googleapis.com/css2?family=Jost&display=swap");
.nav {
  position: relative;
  width: 100%;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 4rem;
  border-radius: 15px;
  color: var(--color-font-primary);
  background-color: #014494;
  background: linear-gradient(87deg, rgb(255, 255, 255) 0%, rgb(1, 68, 148) 60%);
  z-index: 2;
}
.nav .logo {
  font-size: var(--font-h3);
  font-weight: 300;
  padding: 4px 7px 0;
  border-radius: 10px;
}
.nav .logo a {
  color: #014494;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav .logo a svg {
  width: clamp(140px, 20vw, 220px);
  filter: drop-shadow(0.1px 0.1px 30px rgb(255, 255, 255));
}
.nav .nav__box .link__list {
  display: flex;
}
.nav .nav__box .link__list li {
  display: block;
  padding: 1.2rem;
  position: relative;
  text-decoration: none;
  transition-duration: 0.5s;
}
.nav .nav__box .link__list li .nav__link {
  color: #fff;
  text-decoration: none;
  font-size: var(--font-size);
  text-transform: uppercase;
  position: relative;
  transition: all 0.5s ease-in-out;
}
.nav .nav__box .link__list li .nav__link::before {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: var(--color-bg-primary);
  transform: scale(0);
  transform-origin: center;
  transition: all 0.5s ease-in-out;
}
.nav .nav__box .link__list li .nav__link:hover::before {
  transform: scale(1);
}
.nav .nav__box .link__list li:hover, .nav .nav__box .link__list li:focus-within {
  cursor: pointer;
  position: relative;
}
.nav .nav__box .link__list li:focus-within a {
  outline: none;
}
.nav .nav__box .link__list li .dropdown {
  position: absolute;
  background-color: var(--color-primary);
  visibility: hidden;
  opacity: 0;
  display: none;
  pointer-events: none;
  margin-top: 1rem;
  left: 0;
  transition: all 0.5s ease;
}
.nav .nav__box .link__list li:hover > ul, .nav .nav__box .link__list li:focus-within > ul, .nav .nav__box .link__list li ul:hover, .nav .nav__box .link__list li ul:focus {
  visibility: visible;
  opacity: 1;
  display: block;
  pointer-events: all;
}
.nav .nav__box .link__list li .dropdown li {
  clear: both;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  width: 100%;
}
.nav .hamb-box {
  width: 28px;
  height: 21px;
  cursor: pointer;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.nav .hamb-box .line {
  width: 28px;
  height: 3px;
  background-color: #fff;
  transition: 0.3s ease-in-out;
}
.nav .hamb-box.active .line1 {
  transform: rotate(45deg) translate(7px, 6px);
}
.nav .hamb-box.active .line2 {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
.nav .hamb-box.active .line3 {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 750px) {
  .nav {
    margin-top: 2px;
  }
}
@media (max-width: 650px) {
  .nav {
    position: relative;
    padding: 0.5rem 2rem 0.5rem 0.5rem;
  }
  .nav .nav__box {
    position: fixed;
    display: flex;
    justify-content: space-around;
    align-items: center;
    right: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    background-color: var(--color-primary);
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out;
    z-index: 50;
  }
  .nav .nav__box.active {
    transform: translateX(0);
  }
  .nav .nav__box .link__list {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
  }
  .nav .nav__box .link__list li {
    padding-left: 0;
    margin-left: 0;
    padding: 0;
  }
  .nav .nav__box .link__list li .dropdown {
    position: initial;
    visibility: visible;
    opacity: 1;
    display: block;
    pointer-events: all;
    margin-top: 0;
    padding: 0;
  }
  .nav .nav__box .link__list li .dropdown li {
    padding: 0;
  }
  .nav .nav__box .link__list {
    display: block;
    margin: 30px 0;
  }
  .nav .nav__box .link__list li > * {
    display: block;
    margin: 30px 0;
  }
  .nav .hamb-box {
    display: flex;
    z-index: 100;
  }
}
.container {
  max-width: 1111px;
  margin: 0 auto;
}

.card {
  width: 100%;
  background-color: var(--color-primary);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  font-size: var(--font-size);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.card .card__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--color-primary-light);
  border-radius: 50%;
}
.card .card__hero {
  width: 50%;
  color: var(--color-font-primary);
  padding: 0 40px;
  z-index: 1;
}
.card .card__hero .card__title {
  width: 100%;
  font-size: var(--font-h1);
  line-height: 1;
}
.card .card__hero .card__description {
  margin-top: 40px;
  margin-bottom: 40px;
}
.card .card__hero .card__btn {
  display: inline-block;
  margin-bottom: 20px;
  text-decoration: none;
  color: var(--color-font-primary);
  font-weight: 600;
}
.card .card__hero .card__btn:active {
  transform: scale(0.98);
}
.card .tool-div {
  padding: 10px;
  width: 50%;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
}
.card .tool-div .card__image {
  width: 550px;
  height: 550px;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  border-radius: 50%;
}
.card .tool-div .card__image.active {
  -webkit-animation: changeImage 0.75s ease-in;
          animation: changeImage 0.75s ease-in;
}

@media (max-width: 750px) {
  .card .card__hero {
    margin-top: 50px;
    width: 100%;
    text-align: center;
  }
  .card .tool-div {
    margin-top: -40px;
    width: 100%;
  }
}
@media (max-width: 500px) {
  .card .card__hero {
    margin-top: 50px;
    width: 100%;
    text-align: center;
  }
  .card .tool-div {
    margin-top: 20px;
    width: 100%;
    height: 510px;
    min-height: 0;
    position: relative;
  }
  .card .tool-div .card__image {
    position: absolute;
    top: 0;
    border-radius: 20px;
    width: 95%;
    height: clamp(275px, 100vw, 550px);
  }
}
@media (max-width: 420px) {
  .card .tool-div {
    height: 460px;
    min-height: 0;
  }
}
@media (max-width: 375px) {
  .card .tool-div {
    height: 420px;
    min-height: 0;
  }
}
@media (max-width: 320px) {
  .card .tool-div {
    height: 360px;
    min-height: 0;
  }
}
@-webkit-keyframes changeImage {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes changeImage {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.brands__box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 150px;
}
.brands__box .brands__img--bg {
  width: 100%;
  max-height: 600px;
  height: 100vh;
  background-size: cover;
  background-position: top;
  position: relative;
  background: url(../img/brands/brands-bg2.webp) no-repeat;
  background-size: cover;
  background-position: top;
}
@supports not (background: url(../img/brands/brands-bg2.webp) no-repeat) {
  .brands__box .brands__img--bg {
    background: url(../img/brands/brands-bg2.jpg) no-repeat;
  }
}
.brands__box .brands__img--bg h3 {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  text-align: center;
  font-size: var(--font-h3);
  color: var(--color-font-primary);
  padding: 5px 10px;
  background: var(--color-primary);
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 7px;
}
.brands__box .brands__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  font-size: var(--font-size);
  color: var(--color-font-primary);
}
.brands__box .brands__cards .brand__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border: 6px solid var(--color-secondary);
  width: 35%;
  min-height: 450px;
  background-color: var(--color-primary);
  padding: 25px;
  margin-bottom: -200px;
}
.brands__box .brands__cards .brand__card a {
  text-decoration: none;
}
.brands__box .brands__cards .brand__card:nth-child(1) {
  transform: translateY(-300px);
}
.brands__box .brands__cards .brand__card:nth-child(2) {
  transform: translateY(-80px);
  border: 6px solid var(--color-proline-red);
  background-color: var(--color-proline-black);
}
.brands__box .brands__cards .brand__card:nth-child(2) a {
  text-decoration: none;
  color: var(--color-font-primary);
  background-color: var(--color-proline-red);
}
.brands__box .brands__cards .brand__card:nth-child(2) a:hover {
  background-color: var(--color-proline-grey);
}
.brands__box .brands__cards .brand__card:nth-child(3) {
  transform: translateY(-80px);
  border: 6px solid var(--color-proline-red);
  background-color: var(--color-proline-black);
}
.brands__box .brands__cards .brand__card:nth-child(3) .brand__card-img {
  max-width: 100%;
  border-radius: 5%;
}
.brands__box .brands__cards .brand__card:nth-child(3) a {
  text-decoration: none;
  color: var(--color-font-primary);
  background-color: var(--color-proline-red);
}
.brands__box .brands__cards .brand__card:nth-child(3) a:hover {
  background-color: var(--color-proline-grey);
}
.brands__box .brands__cards .brand__card:nth-child(4) {
  border: none;
  width: 35%;
  min-height: 0;
  background-color: transparent;
  padding: 0;
}

@media (max-width: 750px) {
  .brands__box {
    max-height: 1310px;
    margin-bottom: 0px;
  }
  .brands__box .brands__img--bg {
    max-height: 600px;
  }
  .brands__box .brands__cards {
    justify-content: flex-start;
  }
  .brands__box .brands__cards .brand__card {
    margin-top: 5px;
    width: 100%;
    min-height: 300px;
    margin-bottom: 0;
  }
  .brands__box .brands__cards .brand__card:nth-child(1) {
    transform: translateY(0px);
  }
  .brands__box .brands__cards .brand__card:nth-child(2) {
    transform: translateY(0px);
  }
  .brands__box .brands__cards .brand__card:nth-child(3) {
    transform: translateY(0px);
  }
  .brands__box .brands__cards .brand__card:nth-child(4) {
    transform: translateY(0px);
  }
}
.container {
  max-width: 1111px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 10px;
}
.products-grid div {
  position: relative;
  min-width: 2.8rem;
  height: 26vh;
  border-radius: 10px;
  border: 1px solid hsl(213deg, 99%, 85%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.products-grid div:hover {
  opacity: 0.7;
  transform: scale(0.98);
  transition: 0.5s ease-in-out;
  overflow: hidden;
}
.products-grid div:hover h3 {
  background: var(--color-secondary);
  opacity: 1;
}
.products-grid div h3 {
  position: absolute;
  bottom: 3px;
  right: 3px;
  font-size: var(--font-h3);
  padding: 5px 10px;
  background: var(--color-primary);
  border-radius: 7px;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.products-grid div h3 a {
  color: var(--color-font-primary);
  text-decoration: none;
}
@supports not (background: url("../img/products/Auto alati.webp") no-repeat center/cover) {
  .products-grid .tool1 {
    background: url("../img/products/Auto alati.jpg") no-repeat center/cover;
  }
  .products-grid .tool2 {
    background: url("../img/products/Pneumatski alati.jpg") no-repeat center/cover;
  }
  .products-grid .tool3 {
    background: url(../img/products/Lepkovi.jpg) no-repeat center/cover;
  }
  .products-grid .tool4 {
    background: url("../img/products/Setovi alata.jpg") no-repeat center/cover;
  }
  .products-grid .tool5 {
    background: url("../img/products/Rucni alat.jpg") no-repeat center/cover;
  }
  .products-grid .tool6 {
    background: url("../img/products/Obrada materijala.jpg") no-repeat center/cover;
  }
  .products-grid .tool7 {
    background: url(../img/products/Burgije.jpg) no-repeat center/cover;
  }
  .products-grid .tool8 {
    background: url(../img/products/Sijalice.jpg) no-repeat center/cover;
  }
  .products-grid .tool9 {
    background: url(../img/products/Hemija.jpg) no-repeat center/cover;
  }
  .products-grid .tool10 {
    background: url("../img/products/Hemijsko tehnicki proizvodi.jpg") no-repeat center/cover;
  }
  .products-grid .tool11 {
    background: url(../img/products/Vijci.jpg) no-repeat center/cover;
  }
  .products-grid .tool12 {
    background: url("../img/products/Hemija za ciscenje.jpg") no-repeat center/cover;
  }
}
.products-grid .tool1 {
  background: url("../img/products/Auto alati.webp") no-repeat center/cover;
}
.products-grid .tool2 {
  background: url("../img/products/Pneumatski alati.webp") no-repeat center/cover;
}
.products-grid .tool3 {
  background: url(../img/products/Lepkovi.webp) no-repeat center/cover;
}
.products-grid .tool4 {
  background: url("../img/products/Setovi alata.webp") no-repeat center/cover;
}
.products-grid .tool5 {
  background: url("../img/products/Rucni alat.webp") no-repeat center/cover;
}
.products-grid .tool6 {
  background: url("../img/products/Obrada materijala.webp") no-repeat center/cover;
}
.products-grid .tool7 {
  background: url(../img/products/Burgije.webp) no-repeat center/cover;
}
.products-grid .tool8 {
  background: url(../img/products/Sijalice.webp) no-repeat center/cover;
}
.products-grid .tool9 {
  background: url(../img/products/Hemija.webp) no-repeat center/cover;
}
.products-grid .tool10 {
  background: url("../img/products/Hemijsko tehnicki proizvodi.webp") no-repeat center/cover;
}
.products-grid .tool11 {
  background: url(../img/products/Vijci.webp) no-repeat center/cover;
}
.products-grid .tool12 {
  background: url("../img/products/Hemija za ciscenje.webp") no-repeat center/cover;
}

.texa__box {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.texa__box .texa__diagnostic {
  width: 50%;
  min-height: 470px;
  background: url(../img/products/texa-diagnostic.jpeg) no-repeat center/cover;
  position: relative;
}
.texa__box .texa__station {
  width: 50%;
  min-height: 470px;
  background: url(../img/products/texa-station.jpg) no-repeat center/cover;
  position: relative;
}
@supports not (background: url(../img/products/texa-station.webp) no-repeat center/cover) {
  .texa__box .texa__diagnostic {
    background: url(../img/products/texa-diagnostic.jpeg) no-repeat center/cover;
  }
  .texa__box .texa__station {
    background: url(../img/products/texa-station.jpg) no-repeat center/cover;
  }
}
.texa__box .texa__diagnostic {
  background: url(../img/products/texa-diagnostic.webp) no-repeat center/cover;
}
.texa__box .texa__station {
  background: url(../img/products/texa-station.webp) no-repeat center/cover;
}
.texa__box .texa--logo {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  max-width: 150px;
}
.texa__box .texa--logo img {
  width: 100%;
}
.texa__box h3 {
  position: absolute;
  bottom: 3px;
  right: 3px;
  font-size: var(--font-h3);
  padding: 5px 10px;
  background: var(--color-primary);
  border-radius: 7px;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.texa__box h3:hover {
  background: var(--color-secondary);
  transform: scale(0.98);
  transition: 0.5s ease-in-out;
  overflow: hidden;
}
.texa__box h3 a {
  color: var(--color-font-primary);
  text-decoration: none;
}
@media (max-width: 768px) {
  .texa__box .texa__diagnostic {
    width: 100%;
    min-height: 350px;
  }
  .texa__box .texa__station {
    width: 100%;
    min-height: 350px;
  }
  .texa__box .texa--logo {
    top: 50%;
    transform: translate(-50%, -15%);
    max-width: 125px;
  }
}

.catalog__box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.catalog__box .catalog__cards {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: var(--font-size);
  color: var(--color-font-primary);
}
.catalog__box .catalog__cards .catalog__card.bg {
  height: 500px;
  background-size: cover;
  background-position: top;
  position: relative;
  background: url(../img/catalogs/catalogs-bg.webp) no-repeat;
  background-size: cover;
  background-position: top;
}
@supports not (background: url(../img/catalogs/catalogs-bg.webp) no-repeat) {
  .catalog__box .catalog__cards .catalog__card.bg {
    background: url(../img/catalogs/catalogs-bg.jpg) no-repeat;
  }
}
.catalog__box .catalog__cards .catalog__card.bg h3 {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  text-align: center;
  font-size: var(--font-h3);
  color: var(--color-font-primary);
  padding: 5px 10px;
  background: var(--color-primary);
  top: 10%;
  border-radius: 7px;
}
.catalog__box .catalog__cards .catalog__card {
  flex: 1;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  text-align: center;
  filter: grayscale(20%);
  transition: 0.2s ease-in;
}
.catalog__box .catalog__cards .catalog__card:hover {
  filter: grayscale(0);
}
.catalog__box .catalog__cards .catalog__card h3 {
  font-size: var(--font-h3);
  background-color: var(--color-secondary);
  color: --color-font-primary;
  padding: 2px 4px;
  border-radius: 4px;
}
.catalog__box .catalog__cards .catalog__card a {
  text-decoration: none;
}
.catalog__box .catalog__cards .catalog__card a:hover {
  opacity: 1;
}
@supports not (background: url(../img/catalogs/technolit.webp) no-repeat center/cover) {
  .catalog__box .catalog__cards .catalog__card.technolit {
    background: url(../img/catalogs/technolit.jpg) no-repeat center/cover;
  }
}
.catalog__box .catalog__cards .catalog__card.technolit {
  background: url(../img/catalogs/technolit.webp) no-repeat center/cover;
}
@supports not (background: url(../img/catalogs/proline.webp) no-repeat center/cover) {
  .catalog__box .catalog__cards .catalog__card.proline {
    background: url(../img/catalogs/proline.jpg) no-repeat center/cover;
  }
}
.catalog__box .catalog__cards .catalog__card.proline {
  background: url(../img/catalogs/proline.webp) no-repeat center/cover;
}
.catalog__box .catalog__cards .catalog__card.proline h3 {
  background-color: var(--color-proline-red);
}
.catalog__box .catalog__cards .catalog__card.proline a {
  text-decoration: none;
  color: var(--color-font-primary);
  background-color: var(--color-proline-red);
}
.catalog__box .catalog__cards .catalog__card.proline a:hover {
  background-color: var(--color-proline-grey);
}
@supports not (background: url(../img/catalogs/ath.webp) no-repeat center/cover) {
  .catalog__box .catalog__cards .catalog__card.ath {
    background: url(../img/catalogs/ath.jpg) no-repeat center/cover;
  }
}
.catalog__box .catalog__cards .catalog__card.ath {
  background: url(../img/catalogs/ath.webp) no-repeat center/cover;
}
.catalog__box .catalog__cards .catalog__card.ath h3 {
  background-color: var(--color-ath-red);
}
.catalog__box .catalog__cards .catalog__card.ath a {
  text-decoration: none;
  color: var(--color-font-primary);
  background-color: var(--color-ath-red);
}
.catalog__box .catalog__cards .catalog__card.ath a:hover {
  background-color: var(--color-proline-grey);
}

@media (max-width: 750px) {
  .catalog__box .catalog__cards {
    flex-wrap: wrap;
    width: 100%;
  }
  .catalog__box .catalog__cards .catalog__card {
    width: 50%;
    min-height: 350px;
    flex: auto;
  }
}
@media (max-width: 460px) {
  .catalog__box {
    width: 100%;
    flex-wrap: wrap;
  }
  .catalog__box .catalog__img--bg {
    width: 100%;
  }
  .catalog__box .catalog__cards {
    flex-direction: column;
    width: 100%;
  }
  .catalog__box .catalog__cards .catalog__card {
    border: 1px solid var(--color-proline-grey);
    margin-top: 5px;
    width: 100%;
  }
}
.contact__box {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}
.contact__box::before {
  content: "";
  position: absolute;
  top: 25px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: var(--color-primary);
}
.contact__box::after {
  content: "";
  position: absolute;
  bottom: 5px;
  right: 0px;
  width: 115px;
  height: 115px;
  border: 20px solid var(--color-primary);
  border-radius: 50%;
}
.contact__box .contact__card {
  position: relative;
  width: 90%;
  margin: 0 auto;
  background-color: var(--color-font-primary);
  box-shadow: 5px 5px 0 0 rgba(0, 0, 0, 0.1);
  min-height: 400px;
  padding: 60px;
  color: var(--color-proline-black);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  z-index: 1;
}
.contact__box .contact__card .contact__info {
  width: 50%;
  height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.contact__box .contact__card .contact__info h3 {
  font-size: var(--font-h3);
  margin-left: 10px;
  letter-spacing: 1px;
}
.contact__box .contact__card .contact__info p {
  font-size: var(--font-size);
}
.contact__box .contact__card .contact__info span {
  margin-left: 10px;
}
.contact__box .contact__card .contact__info a {
  font-size: var(--font-size);
  text-decoration: none;
  color: var(--color-proline-black);
}
.contact__box .contact__card .contact__info i {
  font-size: var(--font-h3);
  margin-left: 10px;
  color: var(--color-primary);
  min-width: 25px;
}
.contact__box .contact__card .contact__info .generalije {
  margin-left: 40px;
}
.contact__box .contact__card .contact__info .social__icons {
  margin-top: 15px;
}
.contact__box .contact__card .contact__info .social__icons i {
  transition: color 0.3s ease-in-out;
}
.contact__box .contact__card .contact__info .social__icons .facebook--icon:hover i {
  color: #3b5998;
}
.contact__box .contact__card .contact__info .social__icons .twitter--icon:hover i {
  color: #1da1f2;
}
.contact__box .contact__card .contact__info .social__icons .instagram--icon:hover {
  text-align: center;
}
.contact__box .contact__card .contact__info .social__icons .instagram--icon:hover i {
  color: #fff;
  background: #d6249f;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
.contact__box .contact__card .contact__info .social__icons .youtube--icon:hover i {
  color: #ff0000;
}
.contact__box .contact__card .form__box {
  width: 50%;
}
.contact__box .contact__card .form__box form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 340px;
}
.contact__box .contact__card .form__box form input {
  font-size: var(--font-size);
  height: 45px;
  padding: 10px 12px;
  margin-bottom: 10px;
  background-color: var(--color-bg-primary);
  border: none;
  transition: 0.2s ease-in-out;
}
.contact__box .contact__card .form__box form input:active,
.contact__box .contact__card .form__box form input:focus {
  outline-color: var(--color-secondary-light);
}
.contact__box .contact__card .form__box form textarea {
  font-size: var(--font-size);
  height: 120px;
  padding: 10px 12px;
  margin-bottom: 10px;
  background-color: var(--color-bg-primary);
  border: none;
  transition: 0.2s ease-in-out;
}
.contact__box .contact__card .form__box form textarea:active,
.contact__box .contact__card .form__box form textarea:focus {
  outline-color: var(--color-secondary-light);
}
.contact__box .contact__card .form__box form .btn {
  display: inline-block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: var(--color-primary);
}
.contact__box .contact__card .form__box form .btn:hover {
  background-color: var(--color-secondary);
  color: var(--color-font-primary);
}
.contact__box .contact__card .form__box form .btn:active {
  transform: scale(0.98);
}

@media (max-width: 750px) {
  .contact__box .contact__card .contact__info {
    height: initial;
    min-height: 200px;
    width: 100%;
  }
  .contact__box .contact__card .contact__info .social__icons {
    margin-bottom: 15px;
  }
  .contact__box .contact__card .contact__info .social__icons > * {
    margin-bottom: 5px;
  }
  .contact__box .contact__card .form__box {
    height: initial;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .contact__box {
    margin-top: 100px;
  }
  .contact__box .contact__card {
    padding: 20px;
  }
  .contact__box .contact__card .contact__info {
    margin-bottom: 15px;
  }
}
.footer__content {
  background-color: var(--color-primary);
  color: var(--color-font-primary);
  width: 100%;
  min-height: 58px;
  padding: 5px 0;
  border-radius: 15px;
  font-size: 1.5rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 50px;
}
.footer__content p {
  text-align: center;
}
.footer__content p a {
  color: var(--color-font-primary);
  text-decoration: none;
}

@media (max-width: 700px) {
  .footer__content {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .footer__content {
    font-size: 1.1rem;
  }
}
@media (max-width: 500px) {
  .footer__content {
    text-align: center;
    flex-direction: column;
  }
  .footer__content p {
    min-width: 30%;
    margin: 3px 0;
  }
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-family: "Jost", sans-serif;
  scroll-behavior: smooth;
}

:root {
  --color-font-primary: #fefeff;
  --color-bg-primary: #f4f4f4;
  --color-primary: #014494;
  --color-primary-light: #0250af;
  --color-secondary: #ee7d00;
  --color-secondary-light: #fd9825;
  --font-h1: clamp(3.8rem, 3vw, 4.8rem);
  --font-h2: clamp(3.5rem, 3vw, 4rem);
  --font-h3: clamp(2rem, 3vw, 2.5rem);
  --font-size: 1.6rem;
  --font-btn-size: 1.5rem;
  --color-proline-red: #dd052b;
  --color-proline-grey: #4d4f53;
  --color-proline-black: #030406;
  --color-proline-white: #ffffff;
  --color-ath-red: #d9213d;
}

body {
  min-height: 100vh;
  background-color: var(--color-bg-primary);
  overflow-x: hidden;
}
body .container {
  max-width: 1111px;
  margin: 50px auto 0;
}
body .btn {
  background: var(--color-secondary);
  color: var(--color-font-primary);
  font-size: var(--font-btn-size);
  text-transform: uppercase;
  border-radius: 8px;
  font-weight: 600;
  padding: 1.5rem 3rem;
  border: none;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  cursor: pointer;
}
body .btn:active {
  transform: scale(0.98);
}
body .btn:hover {
  color: var(--color-primary);
  background-color: var(--color-secondary-light);
}
body .top {
  position: fixed;
  bottom: 70px;
  right: 30px;
  cursor: pointer;
  padding: 5px;
  transform: translateY(550%);
  transition: transform 1s ease-in-out;
  z-index: 100;
}
body .top i {
  font-size: 4rem;
  color: var(--color-secondary);
}
body .top.active {
  transform: translateY(0);
}

@media (max-width: 750px) {
  body .container {
    padding: 10px;
    margin-top: 10px;
  }
}/*# sourceMappingURL=style.css.map */