* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --heading-font-family: "Roboto", sans-serif;
  --font-family: "Roboto Serif", serif;

  --primary-color: #d20a11;
  --gray-background-color: #f1f6f9;
  --light-background-color: white;
  --dark-background-color: #131925;

  --barracuda-blue: #0088ce;
  --nakivo-blue: #018abc;

  --primary-font-color: #575757;
  --btn-font-color: white;

  --font-size-XS: 1rem;
  --font-size-S: 1.2rem;
  --font-size-M: 1.5rem;
  --font-size-L: 2rem;
  --font-size-XL: 2.5rem;
  --font-size-XXL: 3rem;
  --font-size-XXXL: 3.5rem;

  --box-shadow-min: 0 4px 4px rgba(0, 0, 0, 0.1);
  --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}
body {
  color: #333333;
  position: relative;
  font-size: 1.1rem;
  background-color: #f1f6f9;
  font-family: var(--font-family);
}
#main {
  overflow: hidden;
}

h3,
h4,
h5,
h6 {
  font-weight: 600;
  font-family: var(--heading-font-family);
}
h1,
h2 {
  margin: 1rem 0;
  font-weight: 600;
  font-family: var(--heading-font-family);
}
li {
  list-style-type: none;
}
p {
  margin-bottom: 1rem;
  font-size: var(--font-size-S);
  line-height: 1.3;
}
a {
  text-decoration: none;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.italic {
  font-style: italic;
}
.ta-center {
  text-align: center;
}
.uppercase {
  text-transform: uppercase;
}

.container {
  max-width: 120rem;
  width: 80%;
  margin: 0 auto;
  height: 50rem;
}
.btn:hover {
  background-color: rgb(194, 1, 7);
}
.btn:focus {
  transform: scale(0.98);
}
.btn {
  background-color: var(--primary-color);
  color: var(--btn-font-color);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  display: block;
  min-width: fit-content;
  width: 15rem;
  font-size: var(--font-size-S);
  font-family: var(--heading-font-family);
  border: 1px solid var(--primary-color);
  cursor: pointer;
  letter-spacing: 1px;
  text-align: center;
}

.card {
  border-radius: 10px;
}
.center {
  justify-content: center;
  align-items: center;
}
.column {
  flex-direction: column;
}
section {
  padding: 5% 0;
}
/*---------------------------------media global-----------------*/

@media screen and (min-width: 1920px) {
  .container {
    height: 65rem;
  }

  .btn {
    font-size: var(--font-size-M);
  }
  p {
    font-size: var(--font-size-M);
  }
}
@media screen and (max-width: 1200px) {
  .container {
    height: fit-content;
  }
  p {
    font-size: var(--font-size-XS);
  }
}
@media screen and (max-width: 480px) {
  .btn {
    font-size: 0.8rem;
  }
}
/*----------------------------------aside top-----------------------------------*/
#top {
  width: 100%;
  height: 2.5rem;
  background-color: #131925;
  position: fixed;
  z-index: 1000;
}
#top ul {
  height: 100%;
}
#top li:not(:last-child) {
  margin-right: 1rem;
}
#top a {
  color: var(--btn-font-color);
  text-decoration: none;
}
#top p {
  font-size: 0.6rem;
  display: inline;
}
#top i {
  color: var(--btn-font-color);
  margin-right: 0.5rem;
  font-size: 0.9rem;
}
#menu {
  margin: 0 1.5rem;
}
#top i:hover {
  scale: 1.5;
}

/* -------- mobile -----------------------*/
@media screen and (min-width: 1920px) {
  #top p {
    font-size: 0.9rem;
  }
  #top i {
    margin-right: 1rem;
    font-size: 1.1rem;
  }
  #top li:not(:last-child) {
    margin-right: 2rem;
  }
}
@media screen and (max-width: 768px) {
  #top li.top p {
    display: none;
  }

  #top i {
    font-size: 1rem;
  }
}

/*-----------------------------------------header-------------------------------*/
#main-header {
  background-color: transparent;
  top: 2rem;
  width: 100%;
  z-index: 90;
}
#main-header nav {
  height: 5rem;
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

#main-header .logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
#main-header .logo {
  height: 3rem;
}
#main-header ul {
  width: auto;
}
#main-header ul li {
  margin-left: 1rem;
  list-style-type: none;
}

#main-header ul li a {
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 400;
  text-shadow: 0 5px 4px #a5a5a5;
  color: #333333;
  cursor: pointer;
}
#main-header ul li a:hover {
  text-shadow: 0 5px 4px #be8082;
  color: var(--primary-color);
}
/* -------------------------------------------mobile-menu----------------------------*/

.mobile-menu {
  display: none;
}

#nav-bar {
  position: fixed;
  top: 2.5rem;
  left: 0;
  background-color: var(--dark-background-color);
  width: 100%;
  height: 2.5rem;
  z-index: 100;
  display: none;
}
#nav-bar.show {
  display: flex;
}
#nav-bar nav {
  width: 90%;
}
#nav-bar li {
  margin-right: 1rem;
}
#nav-bar a {
  color: white;
  font-size: 0.9rem;
}
#nav-bar a:hover {
  color: #ffb3b5;
}

/*--------------------------mobile-menu and -- header------------media-query-----------------------*/

@media screen and (max-width: 768px) {
  #main-header nav ul li {
    display: none;
  }
  #main-header nav {
    justify-content: start;
  }

  #main-header .logo {
    margin: 0;
    height: 2.5rem;
    display: flex;
    align-items: center;
    order: 2;
  }
  #main-header .logo img {
    height: 2.5rem;
  }
  .mobile-menu {
    display: flex;
    left: 5%;
    z-index: 101;
  }
  #menu i {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 480px) {
  #main-header .logo img {
    height: 1.5rem;
  }
}

/*------------------- footer -----------------*/

/*-----------------------------------------------------------------foteer----------------------------------------------*/
#main-footer {
  height: 10rem;
  background-color: var(--dark-background-color);
  color: white;
  display: flex;
  flex-direction: column;
  line-height: normal;
  text-align: center;
  justify-content: center;
}
#main-footer h4 {
  font-size: 0.9rem;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

#main-footer a {
  font-weight: 200;
  font-size: 0.6rem;
  text-transform: none;
  color: white;
  text-decoration: none;
  margin-top: 1rem;
}
#main-footer h6 a {
  color: var(--btn-font-color);
}

/*------------------------------------------------------------------pocetna-------------------------------------------------------------*/
#pocetna {
  background-image: url("/images/background.png");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: left top;
  overflow: hidden;
  background-color: white;
}
#pocetna .container {
  position: relative;
  min-height: fit-content;
}

#pocetna .image-content {
  width: 50%;
  height: 90%;
  margin-top: 5%;
  margin-right: -2rem;
}
#pocetna .image-content img {
  width: auto;
  height: 100%;
}
#pocetna .image-content img:first-of-type {
  display: none;
}

#pocetna .content {
  width: 50%;
  height: 40rem;
  z-index: 1;

  align-items: baseline;
  font-weight: 400;
}
#pocetna p {
  font-style: italic;
  font-size: var(--font-size-S);
  font-weight: 400;
  background-color: #f1f6f9c0;
}
#pocetna p span {
  color: var(--primary-color);
}
#pocetna h1 {
  text-decoration: none;
  text-transform: uppercase;
  font-size: var(--font-size-XXL);
  margin-bottom: 1rem;
}
#pocetna p:nth-of-type(1) {
  text-transform: uppercase;
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-M);
  margin-bottom: 0;
}

/*------------pocetna-media query-----------------------*/
@media screen and (min-width: 1920px) {
  #pocetna p {
    font-size: var(--font-size-L);
    margin-bottom: 2rem;
  }
  #pocetna p:nth-of-type(1) {
    font-size: var(--font-size-L);
  }

  #pocetna .image-content {
    height: 60rem;
  }
  #pocetna .image-content {
    width: 60%;
    height: 90%;
    margin-top: 10%;
  }

  #pocetna .content {
    width: 40%;
    height: 60rem;
    margin-left: 0;
  }
  #pocetna h1 {
    font-size: var(--font-size-XXXL);
  }
}

@media screen and (max-width: 1600px) {
  #pocetna .content h1 {
    font-size: var(--font-size-XL);
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 1200px) {
  #pocetna {
    padding-bottom: 0;
  }
  #pocetna .content {
    padding-right: 15%;
  }
  #pocetna .content h1 {
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    font-size: var(--font-size-XL);
  }
  #pocetna .image-content {
    width: 50%;
    height: 36rem;
    margin: auto -2% 0 0;
  }

  #pocetna .content p {
    font-size: var(--font-size-S);
  }
}

@media screen and (max-width: 1024px) {
  #pocetna {
    background-size: 100% 100%;
    background-image: url("/images/mobile-background.png");
  }
  #pocetna .container {
    width: 80%;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    height: fit-content;
    gap: 2rem;
  }

  #pocetna .image-content {
    margin-top: -10%;
    margin-right: -50%;
    width: 120vw;
    height: 70vh;
  }
  #pocetna .image-content img {
    width: auto;
    height: 100%;
  }
  #pocetna .content {
    width: 100%;
    margin: 20% 0 0 0;
    padding: 0;
    height: fit-content;
  }
  #pocetna .content h1 {
    margin: 1rem 0;
  }
  #pocetna .content p {
    font-size: var(--font-size-S);
  }
}

@media screen and (max-width: 768px) {
  #pocetna {
    padding-bottom: 3rem;
  }

  #pocetna .image-content {
    margin-top: -20%;
    width: 110vw;
    height: 60vh;
  }
  #pocetna .image-content img {
    width: auto;
    height: 100%;
  }
  #pocetna .content h1 {
    font-size: var(--font-size-XL);
  }
}
@media screen and (max-width: 600px) {
  #pocetna .image-content {
    margin-right: -70%;
  }
  #pocetna .image-content img:first-of-type {
    display: block;
  }
  #pocetna .image-content img:last-of-type {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  #pocetna .image-content {
    margin-top: 0;
    width: 100%;
    height: 50vh;
  }
  #pocetna .content {
    margin-top: 30%;
  }

  #pocetna .content h1 {
    font-size: var(--font-size-L);
  }

  #pocetna .content p {
    margin-bottom: 1rem;
    font-size: var(--font-size-XS);
  }
}
/*------------------------------banner----------------------------*/
#prioritet {
  background-color: var(--dark-background-color);
  padding: 3rem 0;
}
#prioritet .container {
  padding: 0 1rem;
  height: fit-content;
  justify-content: space-between;
  align-items: center;
  color: white;
}
#prioritet .btn {
  height: fit-content;
}

/*--------------------------------*/
@media screen and (min-width: 1920px) {
  #prioritet h2 {
    font-size: var(--font-size-XXL);
  }
}
@media screen and (max-width: 600px) {
  #prioritet .container {
    flex-direction: column;
  }
}
/*---------------------------------------------------------------------about------------------------------------------------------*/
#about {
  margin-bottom: 0;
  background-color: white;
}
#about .container {
  position: relative;
}

#about .content {
  position: absolute;
  width: 35rem;
  height: fit-content;
  padding: 2rem 3rem;
  left: 10%;
  bottom: 10%;
  z-index: 1;
  box-shadow: var(--box-shadow);
  background-color: var(--light-background-color);
}
#about h2 {
  text-align: center;
  font-size: var(--font-size-XL);
  letter-spacing: 1px;
}

#about p {
  opacity: 0.9;
}
#about .image-content {
  width: 50rem;
  height: 80%;
  margin: auto 0;
}
#about img {
  width: auto;
  height: 100%;
}

/*----------about-media-query---------------------*/
@media screen and (min-width: 1920px) {
  #about .image-content {
    width: 60rem;
    height: 60rem;
  }
  #about .content {
    width: 50rem;
  }
  #about h2 {
    font-size: var(--font-size-XXL);
  }
}

@media screen and (max-width: 1440px) {
  #about .content {
    width: 35rem;
    padding: 2rem;
  }
}
@media screen and (max-width: 1200px) {
  #about .content {
    left: 0;
  }
}

@media screen and (max-width: 1024px) {
  #about .image-content {
    width: 100%;
    height: auto;
    margin: auto;
  }
  #about .image-content img {
    width: 90%;
    margin: auto;
    height: auto;
  }

  #about .content {
    width: 90%;
  }
}

@media screen and (max-width: 768px) {
  #about .image-content img {
    position: relative;
    top: -10%;
    height: auto;
    width: 120vw;
  }

  #about .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #about h2 {
    margin-top: 0;
  }
}

@media screen and (max-width: 600px) {
  #about .container {
    flex-direction: column;
    height: fit-content;
  }

  #about .image-content img {
    position: relative;
    top: -10%;
    height: auto;
    width: 120vw;
  }
  #about .content {
    bottom: 0;
  }
  #about .content h2 {
    font-size: 1.9rem;
  }
}

@media screen and (max-width: 480px) {
  #about .content {
    width: 100%;
    min-width: 300px;
  }
  #about .image-content img {
    height: auto;
    width: 130vw;
    top: -15%;
  }

  #about .content h2 {
    font-size: 1.7rem;
  }
}
/*-----------------------------------------------------------partners----------------------------------------------------*/

#partners {
  padding: 1rem 2rem;
}
#partners .container {
  height: 10rem;
  position: relative;
}

#partners .partners {
  justify-content: start;
  overflow: hidden;
  width: 100%;
  gap: 2rem;
}
#partners .partner {
  opacity: 0.8;
  max-width: 300px;
  min-width: 250px;
  height: 100px;
  margin: 0 auto;
}

#partners .partner:nth-of-type(7),
#partners .partner:nth-of-type(8) {
  display: none;
}
#partners .partner img {
  display: block;
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#left,
#right {
  outline: none;
  position: absolute;
  display: block;
  background-color: transparent;
  width: 2rem;
  height: 2rem;
  text-align: center;
}
#left {
  left: -3rem;
}
#right {
  right: -3rem;
}
#left:hover i,
#right:hover i,
#left:focus i,
#right:focus i {
  color: #333333;
}

#left i,
#right i {
  color: #848484;
  font-size: 2rem;
}
/*---partners-media-query--------*/
@media screen and (min-width: 1920px) {
}
@media screen and (max-width: 1440px) {
  #partners .partner:nth-of-type(6) {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  #partners .partner:nth-of-type(5),
  #partners .partner:nth-of-type(4) {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
  #partners .partner:nth-of-type(3) {
    display: none;
  }
  #partners .container {
    height: 8rem;
  }
  #partners .partner {
    height: 70px;
  }
}
@media screen and (max-width: 600px) {
  #partners .partner:nth-of-type(2) {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  #partners .partner:nth-of-type(2) {
    display: none;
  }
  #partners .partners {
    justify-content: center;
  }
  #partners .partner {
    min-width: 200px;
  }
}
/*--------------------------------------------------services-------------------------------------------------------------------*/
#services {
  background-color: var(--dark-background-color);
}
#services .container {
  position: relative;
  flex-direction: column;
  z-index: 1;
}
#services .content {
  color: var(--btn-font-color);
  width: 100%;
  flex-direction: column;
  margin: 1rem 0;
  order: 1;
}

#services h2 {
  margin-bottom: 2rem;
  font-size: var(--font-size-XL);
  text-transform: uppercase;
  text-align: center;
}

#services .cards {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  gap: 1rem;
  order: 2;
}
#services .card {
  text-align: center;
  min-height: 17rem;
  padding: 1.5rem 1rem;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--light-background-color);
}
#services .card img {
  height: 5rem;
  margin: 0 auto;
  display: block;
}

#services h3 {
  font-size: var(--font-size-S);
  margin: 1rem 0 0.5rem;
}

#services .card a {
  text-decoration: none;
  text-transform: uppercase;
  margin: 0.5rem 0 1rem;
  display: block;
  text-decoration: underline;
  text-underline-offset: 6px;
  font-size: 0.8rem;
  color: #3f3f3f;
  font-weight: 700;
}
#services .card a:hover {
  color: var(--primary-color);
}
#services .card p {
  margin-bottom: 0.5rem;
}
#services .card span {
  color: var(--primary-color);
}
/*--------services-media-query-----------------*/
@media screen and (min-width: 1920px) {
  #services h2 {
    font-size: var(--font-size-XXL);
  }

  #services h3 {
    font-size: var(--font-size-M);
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 1440px) {
  #services .card span {
    font-size: 3.5rem;
  }
}

@media screen and (max-width: 1200px) {
  #services .container {
    flex-direction: column;
    height: fit-content;
    gap: 0;
  }

  #services .content {
    width: 100%;
    margin: auto;
    min-height: fit-content;
    padding: 0;
    order: 1;
  }
  #services h2 {
    margin-top: 3rem;
    font-size: var(--font-size-L);
    text-align: center;
  }
  #services .cards {
    grid-template-columns: 1fr 1fr;
    width: 100%;
    padding: 0;
    margin: 2rem auto;
    order: 2;
  }
}

@media screen and (max-width: 1024px) {
  #services .content,
  #services .cards {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 768px) {
  #services .cards {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 600px) {
}
@media screen and (max-width: 480px) {
  #services h2 {
    font-size: var(--font-size-M);
  }
}
/*-----------------------------------------------------------check point--------------------------------------------------------*/
#checkpoint {
  background-color: white;
}
#checkpoint .container {
  gap: 1rem;
  position: relative;
}
#checkpoint .content {
  width: 40%;
  align-items: baseline;
  height: 50rem;
}
#checkpoint p:nth-of-type(1) {
  font-weight: 500;
  color: #d20a11;
  text-transform: uppercase;
  margin-bottom: 0;
}
#checkpoint h2 {
  margin-top: 0.5rem;
  text-transform: uppercase;
  font-size: var(--font-size-XL);
  font-weight: 500;
}
#checkpoint h2 span {
  color: var(--primary-color);
  font-weight: 600;
}
#checkpoint .btn {
  width: 100%;
}
#checkpoint .image-content {
  position: relative;

  width: 75%;
  margin-left: -15%;
  height: 50rem;
}
#checkpoint .image-content img {
  width: 100%;
  object-fit: contain;
  height: 100%;
}
/*---checkpoint--media-query----------*/
@media screen and (min-width: 1920px) {
  #checkpoint h2 {
    font-size: var(--font-size-XXL);
  }
  #checkpoint p:nth-of-type(1) {
    font-size: var(--font-size-M);
  }
}
@media screen and (max-width: 1440px) {
  #checkpoint .image-content {
    height: 40rem;
  }
  #checkpoint .content {
    height: 40rem;
  }
}
@media screen and (max-width: 1200px) {
  #checkpoint .content h2 {
    font-size: var(--font-size-L);
  }
}

@media screen and (max-width: 1024px) {
  #checkpoint .container {
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    height: fit-content;
  }
  #checkpoint .image-content,
  #checkpoint .content {
    width: 100%;
    margin: 2rem 0;
  }

  #checkpoint .image-content {
    height: 35rem;
    width: 110%;
    margin-left: -10%;
  }
  #checkpoint .content {
    text-align: center;
    height: fit-content;
    align-items: center;
  }
  #checkpoint .content .btn {
    min-width: fit-content;
    width: 50%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  #checkpoint .image-content {
    height: 30rem;
    width: 120%;
  }
}

@media screen and (max-width: 600px) {
  #checkpoint .image-content {
    height: 22rem;
  }
}
@media screen and (max-width: 480px) {
  #checkpoint .image-content {
    height: fit-content;
  }

  #checkpoint .content h2 {
    font-size: 1.5rem;
  }
}
/*---------------------------------------------------endpoint-------------------------------------------------*/
#endpoint {
  background: url("../images/background2.png");

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

#endpoint .content {
  width: 50%;
  height: 50rem;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
#endpoint h2 {
  font-size: var(--font-size-XL);
  text-transform: uppercase;
}
#endpoint h2 span {
  color: var(--primary-color);
}
#endpoint .image-content {
  width: 75%;
  margin-right: -5%;
  height: 50rem;
}
#endpoint .image-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/*-----------------endpoint-media-query----------*/
@media screen and (min-width: 1920px) {
  #endpoint .content h2 {
    font-size: var(--font-size-XXL);
  }
}
@media screen and (max-width: 1440px) {
  #endpoint .image-content {
    height: 40rem;
  }
  #endpoint .content {
    height: 40rem;
  }
}
@media screen and (max-width: 1024px) {
  #endpoint {
    background: linear-gradient(
      to top right,
      var(--gray-background-color) 50%,
      white 50%
    );
  }
  #endpoint .container {
    flex-direction: column;
    gap: 3rem;
    height: fit-content;
  }
  #endpoint .content {
    width: 100%;
    order: 2;
    text-align: center;
    height: fit-content;
  }
  #endpoint .content h2 {
    font-size: var(--font-size-L);
  }
  #endpoint .btn {
    margin: 1rem auto;
  }
  #endpoint .image-content {
    width: 100%;
    height: 35rem;
  }
}
@media screen and (max-width: 600px) {
  #endpoint .image-content {
    height: 25rem;
  }
}
@media screen and (max-width: 480px) {
  #endpoint .image-content {
    height: 20rem;
  }
  #endpoint .content h2 {
    font-size: var(--font-size-M);
  }
}
/*-------------------barracuda--------------------------------------*/
#barracuda {
  background: linear-gradient(
    to bottom right,
    var(--gray-background-color) 50%,
    white 50%
  );
}
#barracuda .container {
  gap: 3rem;
  justify-content: center;
}
#barracuda .content {
  align-items: baseline;
  width: 50%;
  height: 50rem;
}
#barracuda h2 {
  font-size: var(--font-size-XL);
  text-transform: uppercase;
  color: var(--barracuda-blue);
  letter-spacing: 1px;
}
#barracuda p:nth-of-type(1) {
  margin-bottom: 0;
}
#barracuda span {
  font-size: 2rem;
  color: var(--barracuda-blue);
  font-weight: 500;
}
#barracuda .image-content {
  position: relative;
  width: 50%;
  height: 50rem;
}
#barracuda .image-content img {
  position: absolute;
  width: 35rem;
  height: 35rem;
  object-fit: cover;
  object-position: center top;
  border: 20px solid white;
  transform: rotate(-5deg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

#barracuda .image-content img:nth-of-type(1) {
  z-index: 2;
  transform: rotate(5deg);
}

/*---barracuda-media-query-------------*/
@media screen and (min-width: 1920px) {
  #barracuda .image-content {
    height: 50rem;
  }
  #barracuda .image-content img {
    width: 40rem;
    height: 40rem;
  }
  #barracuda h2 {
    font-size: var(--font-size-XXL);
  }
  #barracuda span {
    font-size: var(--font-size-XL);
  }
}
@media screen and (max-width: 1440px) {
  #barracuda .content {
    height: 40rem;
  }
  #barracuda .image-content {
    height: 40rem;
  }
  #barracuda .container {
    gap: 5rem;
  }

  #barracuda .image-content img {
    width: 30rem;
    height: 30rem;
  }
}

@media screen and (max-width: 1200px) {
  #barracuda .container {
    height: fit-content;
  }

  #barracuda .image-content img {
    width: 25rem;
    height: 25rem;
  }
  #barracuda h2 {
    font-size: var(--font-size-L);
  }
  #barracuda span {
    font-size: var(--font-size-M);
  }
}

@media screen and (max-width: 1024px) {
  #barracuda {
    padding: 10% 0;
  }
  #barracuda .container {
    flex-direction: column;
  }
  #barracuda .content {
    height: fit-content;
    width: 100%;
    height: fit-content;
  }
  #barracuda .image-content {
    width: 100%;
    height: 30rem;
  }

  #barracuda .image-content img:nth-of-type(1) {
    left: 10%;
  }
  #barracuda .image-content img:nth-of-type(2) {
    right: 10%;
  }

  #barracuda .image-content img:nth-of-type(2) #nakivo {
    padding: 3rem 0;
  }
}
@media screen and (max-width: 768px) {
  #barracuda h2 {
    font-size: var(--font-size-L);
  }
  #barracuda span {
    font-size: var(--font-size-M);
  }
}

@media screen and (max-width: 600px) {
  #barracuda .image-content {
    height: 20rem;
  }
  #barracuda .image-content img {
    width: 20rem;
    height: 20rem;
  }
  #barracuda .image-content img:nth-of-type(1) {
    left: 0;
  }
  #barracuda .image-content img:nth-of-type(2) {
    right: 0;
  }
}

@media screen and (max-width: 480px) {
  #barracuda .content h2 {
    font-size: var(--font-size-M);
  }
  #barracuda .content span {
    font-size: 1.5rem;
  }
  #barracuda .image-content {
    height: 15rem;
  }
  #barracuda .image-content img {
    border: 15px solid white;
    width: 15rem;
    height: 15rem;
  }
}
/*-----------------------------------------------------nakivo------------------------------------------------*/
#nakivo {
  background: linear-gradient(
    to bottom right,
    white 50%,
    var(--gray-background-color) 50%
  );
}
#nakivo .container {
  position: relative;
}
#nakivo .content {
  width: 40%;
  height: 50rem;
  align-items: baseline;
  padding: 2rem;
  z-index: 3;
}
#nakivo .image-content {
  position: relative;
  width: 60%;
  height: 50rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

#nakivo .image-content img {
  position: absolute;
  width: 100%;
  height: 45rem;
  object-fit: contain;
}
#nakivo .image-content .tablet {
  z-index: 2;
  width: 60%;
  height: 17rem;
  bottom: 0;
  right: -10%;
}
#nakivo h2 {
  font-size: var(--font-size-XXXL);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 300;
  letter-spacing: 5px;
}
#nakivo h2 span {
  color: var(--nakivo-blue);
  font-weight: 700;
  letter-spacing: 2px;
}
#nakivo h3 {
  margin-bottom: 1.3rem;
  font-size: var(--font-size-S);
  font-weight: 500;
}
#nakivo p {
  font-style: italic;
  opacity: 0.9;
}

/*--------nakivo------media-query------*/
@media screen and (min-width: 1920px) {
  #nakivo .image-content {
    height: 50rem;
  }
  #nakivo h2 {
    font-size: 4rem;
  }
  #nakivo h3 {
    font-size: var(--font-size-M);
  }
}
@media screen and (max-width: 1440px) {
  #nakivo .image-content {
    height: 40rem;
  }
  #nakivo .content {
    height: 40rem;
  }
  #nakivo .image-content img {
    height: 30rem;
  }
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  #nakivo .container {
    flex-direction: column;
    justify-content: center;
  }
  #nakivo .content {
    height: fit-content;
  }
  #nakivo .content,
  #nakivo .content h3 {
    width: 100%;
    text-align: center;
  }
  #nakivo .content h2 {
    width: 100%;
  }

  #nakivo .image-content {
    width: 100%;
    height: 30rem;
  }

  #nakivo .image-content .tablet {
    height: 15rem;
  }
}

@media screen and (max-width: 768px) {
  #nakivo .image-content img {
    height: 25rem;
  }
}

@media screen and (max-width: 600px) {
  #nakivo .content h2 {
    font-size: 2.5rem;
  }
  #nakivo .image-content .tablet {
    bottom: 5%;
  }
}
@media screen and (max-width: 480px) {
  #nakivo .content {
    padding: 0;
  }
  #nakivo .content,
  #nakivo .content h3 {
    text-align: left;
  }
  #nakivo .image-content {
    height: 20rem;
  }
  #nakivo .image-content .tablet {
    bottom: -3.5rem;
  }
}
/*-------------------------------------------------dinstar----------------------------------*/

#dinstar {
  background-color: var(--gray-background-color);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dinstar {
  background-color: var(--dark-background-color);
  height: 32rem;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

#dinstar .container {
  height: 35rem;
  justify-content: center;
  z-index: 1;
}

#dinstar .content {
  color: white;
  width: 70%;
  height: fit-content;
  z-index: 1;
}
#dinstar h2 {
  font-size: var(--font-size-XL);
  text-transform: uppercase;
}

#dinstar .image-content {
  width: 30%;
  margin-right: 5%;
}
#dinstar .image-content div {
  position: relative;
  width: 35rem;
  height: 35rem;
  border-radius: 50%;
  background-color: white;
  border: 20px solid #131925;
}

#dinstar .image-content img {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  width: 25rem;
  height: 25rem;
  object-fit: contain;
  object-position: center;
}

#dinstar span {
  display: block;
  font-size: var(--font-size-M);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/*--dinstar-media-query----*/
@media screen and (min-width: 1920px) {
  .dinstar {
    height: 42rem;
  }
  #dinstar .container {
    height: 45rem;
  }
  #dinstar .image-content div {
    height: 45rem;
    width: 45rem;
  }
  #dinstar .image-content img {
    width: 35rem;
    height: 35rem;
  }
  #dinstar span {
    font-size: var(--font-size-L);
  }
  #dinstar h2 {
    font-size: var(--font-size-XXL);
  }
}
@media screen and (max-width: 1200px) {
  #dinstar h2 {
    font-size: var(--font-size-L);
  }
}

@media screen and (max-width: 1024px) {
  #dinstar {
    margin-top: 18rem;
  }
  #dinstar .container {
    flex-direction: column;
    height: fit-content;
  }
  .dinstar {
    height: 100%;
  }
  #dinstar .image-content {
    order: 1;
    width: 100%;
    height: 15rem;
    margin-right: 0;
  }
  #dinstar .image-content div {
    margin: -15rem auto 0;
    width: 30rem;
    height: 30rem;
  }
  #dinstar .image-content img {
    left: 50%;
    width: 23rem;
    height: 23rem;
  }
  #dinstar .content {
    height: fit-content;
    order: 2;
    width: 100%;
    padding: 2rem 0;
  }
}
@media screen and (max-width: 768px) {
  #dinstar .image-content {
    height: 12rem;
  }
  #dinstar .image-content div {
    margin: -14rem auto 0;
    width: 28rem;
    height: 28rem;
  }
  #dinstar .image-content img {
    width: 22rem;
    height: 22rem;
  }
}
@media screen and (max-width: 600px) {
  #dinstar .image-content {
    height: 10rem;
  }

  #dinstar span {
    font-size: var(--font-size-M);
  }
  #dinstar .image-content div {
    margin: -13rem auto 0;
    width: 25rem;
    height: 25rem;
  }
  #dinstar .image-content img {
    width: 20rem;
    height: 20rem;
  }
}

@media screen and (max-width: 480px) {
  #dinstar {
    margin-top: 10rem;
  }
  #dinstar .image-content {
    height: auto;
  }
  #dinstar h2 {
    font-size: var(--font-size-M);
  }
  #dinstar span {
    font-size: var(--font-size-S);
  }
  #dinstar .image-content div {
    margin: -7rem auto 0;
    width: 15rem;
    height: 15rem;
    border: 10px solid var(--dark-background-color);
  }
  #dinstar .image-content img {
    width: 100%;
    height: 100%;
  }
}
/*------------------------------vutlan -------------------------------*/
#vutlan {
  background-color: var(--gray-background-color);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#vutlan .container {
  height: 40rem;
  justify-content: center;
  z-index: 1;
  gap: 2rem;
}

#vutlan .content {
  width: 50%;
  height: fit-content;
  align-items: baseline;
  z-index: 1;
  height: 40rem;
}
#vutlan h2 {
  font-size: var(--font-size-XL);
  text-transform: uppercase;
}
#vutlan p:nth-of-type(1) {
  margin: 0;
}

#vutlan .image-content {
  width: 50%;
  height: 40rem;
}
#vutlan .image-content div {
  position: relative;
  width: 100%;
  height: 35rem;
}

#vutlan .image-content img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
#vutlan .image-content img:nth-of-type(1) {
  display: block;
}
#vutlan .image-content img:nth-of-type(2) {
  display: none;
}

#vutlan span {
  display: block;
  font-size: var(--font-size-M);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}
/*--vutlan-media-query----*/

@media screen and (min-width: 1920px) {
  .vutlan {
    height: fit-content;
  }
  #vutlan .container {
    height: 40rem;
  }
  #vutlan .image-content div {
    height: 40rem;
    width: 50rem;
  }

  #vutlan span {
    font-size: var(--font-size-XL);
  }
  #vutlan h2 {
    font-size: var(--font-size-XXL);
  }
}

@media screen and (max-width: 1200px) {
  #vutlan h2 {
    font-size: var(--font-size-L);
  }
}
@media screen and (max-width: 1024px) {
  #vutlan {
    padding: 3rem 0 5rem;
  }
  #vutlan .container {
    flex-direction: column;
    height: fit-content;
    gap: 0;
  }
  .vutlan {
    height: 100%;
  }
  #vutlan .image-content {
    order: 1;
    width: 100%;
    height: 25rem;
  }
  #vutlan .image-content div {
    width: 100%;
    height: 22rem;
  }
  #vutlan .image-content img:nth-of-type(1) {
    display: none;
  }
  #vutlan .image-content img:nth-of-type(2) {
    display: block;
  }
  #vutlan .content {
    padding: 2rem 0;
    height: fit-content;
    order: 2;
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  #vutlan h2 {
    font-size: var(--font-size-L);
  }
  #vutlan span {
    font-size: var(--font-size-M);
  }
}

@media screen and (max-width: 480px) {
  #vutlan {
    margin-top: 5rem;
  }
  #vutlan .image-content {
    height: auto;
  }
  #vutlan h2 {
    font-size: var(--font-size-M);
  }
  #vutlan span {
    font-size: var(--font-size-S);
  }
  #vutlan .image-content {
    height: 16rem;
  }
  #vutlan .image-content div {
    height: 100%;
  }
}
/*------------------------------------------------values--------------------------------------------------------------------*/

#values .container {
  flex-direction: column;
  justify-content: center;
}
#values .content {
  width: 90%;
  margin: 0 auto;
}
#values h2 {
  font-size: var(--font-size-XL);
  text-transform: uppercase;
  text-align: center;
  margin: 1rem 0 2rem;
  opacity: 0.9;
}
#values h3 {
  text-align: center;
  margin: 2rem 0 0 0;
  font-weight: 500;
  text-transform: uppercase;
  opacity: 0.8;
  font-size: var(--font-size-S);
}
#values .cards {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 90%;
  margin: 3rem auto 0;
}
#values .card {
  background-color: var(--light-background-color);
  min-height: 8rem;
  padding: 1rem;
  align-items: center;
  gap: 1rem;
}
#values .card h4 {
  text-decoration: none;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-size: var(--font-size-S);
  font-weight: 500;
}

#values .card i {
  color: var(--btn-font-color);
  background-color: var(--primary-color);
  text-align: center;
  font-size: var(--font-size-L);
  padding: 1rem;
  border-radius: 50%;
}
#values .card p {
  opacity: 0.9;
  margin-bottom: 0;
  font-style: italic;
}
/*---------values-media-query-*/
@media screen and (min-width: 1920px) {
  #values h2 {
    font-size: var(--font-size-XXL);
  }
  #values h3,
  #values .card h4 {
    font-size: var(--font-size-M);
  }
  #values .card {
    min-height: 10rem;
    padding: 2rem;
    gap: 2rem;
  }
  #values .card i {
    font-size: var(--font-size-XXL);
  }
}
@media screen and (max-width: 1440px) {
  #values .container {
    height: fit-content;
  }
}
@media screen and (max-width: 1024px) {
  #values .container {
    height: fit-content;
  }
  #values .cards {
    width: 100%;
  }
  #values h2 {
    margin: 0 0 2rem;
  }
}

@media screen and (max-width: 768px) {
  #values .content {
    width: 100%;
  }
  #values .cards {
    grid-template-columns: 1fr;
  }
  #values h2 {
    font-size: var(--font-size-L);
  }
}

@media screen and (max-width: 600px) {
  #values .card i {
    font-size: var(--font-size-M);
  }
  #values .card h4 {
    font-size: 1.1rem;
  }
  #kontakt {
    padding: 4rem 0;
  }
  #kontakt .content i {
    font-size: var(--font-size-XL);
  }
}

@media screen and (max-width: 480px) {
  #values h2 {
    text-align: left;
  }
  #values h3 {
    font-size: var(--font-size-XS);
    text-align: left;
  }
  #values h2,
  #kontakt .content h2 {
    font-size: var(--font-size-M);
  }
}
/*------------------------------------------------------kontakt----------------------------------------------------*/

#kontakt {
  background-color: var(--dark-background-color);
  padding: 5% 0;
}
#kontakt .container {
  height: fit-content;
  gap: 2rem;
  color: white;
}
#kontakt h2 {
  text-align: center;
  font-size: var(--font-size-XL);
  width: 90%;
}

#kontakt .cards {
  grid-template-columns: repeat(4, 1fr);
  height: fit-content;
  margin: 2rem 0;
  text-align: center;
  width: 100%;
}
#kontakt .cards a {
  color: white;
  box-shadow: none !important;
  width: 100%;
}

#kontakt p {
  text-align: center;
}
#kontakt h3 {
  font-size: var(--font-size-M);
  margin: 2rem 0 1rem;
}
#kontakt .card {
  align-items: center;
  padding: 0.5rem;
  box-shadow: none !important;
}

#kontakt i {
  font-size: 5rem;
}

/*---------MAX-WIDTH 1440-------------*/
@media screen and (max-width: 1440px) {
}

/*------------------------MAX-WIDTH 1280---------------*/
@media screen and (max-width: 1280px) {
  #kontakt h3 {
    font-size: var(--font-size-S);
  }
}
/*------------------------MAX-WIDTH 1024---------------*/
@media screen and (max-width: 1024px) {
  #kontakt .cards {
    grid-template-columns: 1fr 1fr;
  }
}
/*------------------------MAX-WIDTH 800---------------*/
@media screen and (max-width: 800px) {
  #kontakt h2 {
    width: 100%;
  }
}
/*------------------------MAX-WIDTH 600---------------*/
@media screen and (max-width: 600px) {
  #kontakt h2 {
    font-size: var(--font-size-L);
  }
  #kontakt i {
    font-size: 4rem;
  }
}
/*------------------------MAX-WIDTH 480---------------*/
@media screen and (max-width: 480px) {
  #kontakt i {
    font-size: 3rem;
  }
  #kontakt h3 {
    font-size: 0.9rem;
  }
  #kontakt p {
    font-size: 0.8rem;
  }
  #kontakt .card {
    padding: 0 0.5rem;
  }
  #kontakt h2 {
    font-size: var(--font-size-M);
  }
}

/*-------------------------------map --------------------------*/
#map {
  padding: 0;
  height: 30rem;
}

@media screen and (max-width: 768px) {
  #map {
    height: 35rem;
  }
}
