/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  /* --first-color: hsl(228, 66%, 53%); */
  --first-color: hsl(195, 77%, 41%);
  /* --first-color-alt: hsl(228, 66%, 47%); */
  --first-color: hsl(195, 77%, 35%);
  --first-color-light: hsl(228, 62%, 59%);
  --first-color-lighten: hsl(228, 100%, 97%);
  --second-color: hsl(25, 83%, 53%);
  --title-color: hsl(228, 57%, 28%);
  --text-color: hsl(228, 15%, 50%);
  --text-color-light: hsl(228, 12%, 75%);
  --border-color: hsl(228, 99%, 98%);
  --body-color: #fff;
  --container-color: #fff;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/* Responsive typography */
@media screen and (min-width: 1024px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  transition: .3s; /* For animation dark mode */
}

h1, h2, h3 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}
h4{
  font-weight: var(--font-medium);
}
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

input,
button {
  font-family: var(--body-font);
  outline: none;
  border: none;
}

.red-text{
  color: #b81414be;
}

.blue-text{
  color: #1891B8;
}

/*=============== THEME ===============*/
.change-theme{
  font-size: 1.25rem;
  color: #fff;
  cursor: pointer;
  transition: .3s;
}

.change-theme:hover{
  color: var(--first-color);
}
/*========== Variables Dark theme ==========*/

body.dark-theme{
  --first-color: hsl(228, 66%, 62%);
  --second-color: hsl(25, 57%, 54%);
  --title-color: hsl(228, 8%, 95%);
  --text-color: hsl(228, 8%, 70%);
  --border-color: hsl(228, 16%, 14%);
  --body-color: hsl(228, 12%, 8%);;
  --container-color: hsl(228, 16%, 12%);
}
/*========== 
    Color changes in some parts of 
    the website, in dark theme 
==========*/
.dark-theme .home__search,
.dark-theme .swiper-button-next,
.dark-theme .swiper-button-prev
{
  border: 3px solid var(--border-color);
}

.dark-theme .nav__menu,
.dark-theme .home__img,
.dark-theme .popular__card:hover,
.dark-theme .value__img,
.dark-theme .accordion-open,
.dark-theme .accordion-open .value__accordion-icon,
.dark-theme .accordion-open .value__accordion-arrow,
.dark-theme .contact__img,
.dark-theme .contact__card-box:hover,
.dark-theme .scrollup
{
  box-shadow: none;
}

.dark-theme .value__orbe,
.dark-theme .value__accordion-icon,
.dark-theme .value__accordion-arrow,
.dark-theme .contact__orbe,
.dark-theme .contact__card i,
.dark-theme .contact__card-button,
.dark-theme .subscribe__container
{
  background-color: var(--container-color);
}

.dark-theme .subscribe__container{
  border: 6px solid var(--border-color);
}

.dark-theme .subscribe__description{
  color: var(--text-color);
}

.dark-theme::-webkit-scrollbar{
  background-color: hsl(228, 4%, 15%);
}

.dark-theme::-webkit-scrollbar-thumb{
  background-color: hsl(228, 4%, 25%);
}

.dark-theme::-webkit-scrollbar-thumb:hover{
  background-color: hsl(228, 4%, 35%);
}

.dark-theme .scroll-header .moon-logo{
  display: none;
}

.dark-theme .scroll-header .sun-logo{
  display: inline-flex;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1200px;
  /* max-width: 1024px; */
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.grid {
  display: grid;
}

.section {
  padding: 4.5rem 0 2rem;
}

.section__title {
  font-size: var(--h2-font-size);
  margin-bottom: 1rem;
}

.section__title span {
  color: var(--second-color);
}

.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  color: var(--second-color);
}

.main {
  overflow: hidden; /* For the animations ScrollReveal*/
}

/*=============== HEADER & NAV ===============*/
.header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: var(--z-fixed);
  transition: .4s;
  /* background: #00000060; */
}

.scroll-header1{
  background: #00000060;
}
.nav{
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pmlogo{
  height: 2.5rem;
}

.black-logo{
  display: none;
}
.scroll-header{
  position: fixed;
}
.scroll-header .black-logo{
  display: inline-flex;
}
.scroll-header .white-logo{
  display: none;
}


@media screen and (max-width : 1023px) {
  .nav__menu{
    position: fixed;
    bottom: 2rem;
    background-color: var(--container-color);
    box-shadow: 0 8px 24px hsla(228, 66%, 45%, .15);
    width: 90%;
    left: 0;
    right: 0;
    margin:0 auto;
    padding: 1.3rem 3rem;
    border-radius: 1.2rem;
    transition: .4s;
  }
  .nav__list{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav__link{
    color: var(--text-color);
    display: flex;
    padding: .5rem;
    border-radius  : 50%;
  }
  
  .nav__link i{
    font-size: 1.25rem;
  }
  .nav__link span{
    display: none;
  }

  /* prosmotr karta */
  .home__link i{
    display: flex;
    margin-right: .3rem;
    font-size: 24px;
    color: #fff;
    
  }
  .home__link{
    display: flex;
    border: 2px solid  hsl(195, 71%, 41%);
    background: linear-gradient(10deg, hsla(195, 71%, 41%, 0.833), hsla(195, 71%, 38%, 0.45));;
    padding: 14px 24px;
    max-width: 220px;
    border-radius: 0.4rem;
    width: 190px;
  }

  .home__link span{
    color: var(--title-color);
  }

}
/* Change background header */
.scroll-header{
  background-color: var(--body-color);
  box-shadow: 0 1px 4px hsla(228, 4%, 15%, 0.1);
}
.scroll-header__two{
  background: hsl(228, 12%, 8%);
}
.scroll-header .nav__logo{
  color: var(--first-color);
}

.scroll-header .change-theme{
  color: var(--title-color);
}

/* Active link */
.active-link{
  background: linear-gradient(101deg,
              hsl(228, 66%, 53%),
              hsl(228, 66%, 47%)
  );
  color: #fff;
  box-shadow: 0 4px 8px hsla(228, 66%, 45%, .25);
}

/*=============== HOME ===============*/
.home{
  background: linear-gradient(170deg,
              hsl(0, 0%, 22%)0%,
              hsl(0, 0%, 6%)30%);
  padding-bottom: 4rem;
}
.home__data{
  order: 1;
  padding-bottom: 2rem;
}
.home__container{
  padding-top: 1rem;
  row-gap: 3.5rem;
}

.home__title,
.home__value-number{
  color: #fff;
}

.home__title{
  font-size: var(--biggest-font-size);
  line-height: 120%;
  margin-bottom: 1.25rem;
}


.home__description{
  color: var(--text-color-light);
  margin-bottom: 2rem;
}

.home__uslugi{
  padding: .35rem .35rem .35rem .75rem;
  margin-bottom: 2rem;
  color: #fff;
  cursor: pointer;
}

.home__uslugi svg path{ 
  fill: white;
}
.home__search{
  background-color: var(--body-color);
  padding: .35rem .35rem .35rem .75rem;
  display: flex;
  align-items: center;
  border-radius: .75rem;
  border: 3px solid var(--text-color-light);
  margin-bottom: 2rem;
}

.home__search i{
  font-size: 1.25rem;
  color: var(--first-color);
}


.home__value{
  display: flex;
  column-gap: 2.5rem;
}

.home__value-number{
  font-size: var(--h1-font-size);
  font-weight: var(--font-medium);
}

.home__value-number span{
  color: var(--second-color);
}

.home__value-description{
  display: flex;
  color: var(--text-color-light);
  font-size: var(--smaller-font-size);
}

.home__images{
  position: relative;
  display: flex;
  justify-content: center;
}

.home__orbe{
  width: 265px;
  height: 284px;
  background: linear-gradient(180deg,
              hsl(0, 0%, 16%)93%,
              hsl(0, 0%, 67%)100%
              );  
  border-radius: 135px 135px 0 0;
}

.home__img{
  position: absolute;
  width: 250px;
  height: 300px;
  overflow: hidden;
  border-radius: 125px 125px 12px 12px;
  display: inline-flex;
  align-items: flex-end;
  bottom: -1.5rem;
  box-shadow: 0 16px 32px hsla(228, 66%, 25%, .25);
}

/* test */

.section-image
{
  
    height:330px;
    width: 100%;
    /* border: 1px solid red; */
    display: flex;
    align-items: center;
    justify-content: end;
}

.con-image-sec
{
    /* width: 674px;
    height: 768px; */
    width: 100%;
    height: 350px;
    background: linear-gradient(180deg, rgba(134, 146, 255, 0.481) 0%, rgba(63, 65, 166, 0.00) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
/* .con-image-sec img{
    width: 578px;
    height: 533.5px;
    opacity: 0;
} */
.con-image-items{
    width: 300px;
    height: 300px;
    /* border: 1px solid black; */

}
.item-blue{
    width: 230px;
    height: 230px;
    background: var(--first-color);
    /* background: url(../images/led-screen.png); */
    background-size: cover;
    float: right;
    position: absolute;
    z-index: 1;
    transform: translateX(70px);
}
.extra-item{
    height: 300px;
    display: grid;
    width: 275px;
    align-items: end;
    /* border: 1px solid red; */
}
/* .item-imgae{
    width: 430px;
    height: 430px;
    background: #f34343;
    position: absolute;
    z-index: 2;
    transform: translateX(88px)
               translateY(-88px);
} */
.item-imgae{
    width: 230px;
    height: 230px;
    background: url("../img/photo5.png") ;
    background-size: cover;
    position: absolute;
    z-index: 2;
    opacity: 0;
    transform: translateX(70px)
               translateY(-70px);
    overflow: hidden;
}
.item-imgae video{
    position: absolute;
    box-shadow: inset 3px 4px 30px 2px #000000
}
.item-red{
    width: 45px;
    height: 45px;
    background: #B81414;
    transform: translateX(118px)
    translateY(-118px);
}
/* .square{
    transition-duration: 600ms;
     transition-timing-function: ease;
     transition-property: transform;
}
.square:hover {
    position: absolute;
    transform: scale(1);
    background-color: cornflowerblue;
    z-index: 10;
    cursor: pointer;
    margin-left: 118px;
  } */
/* .item-red{
    width: 88px;
    height: 88px;
    background: red;
} */
.anima-images{
    box-shadow: 3px 4px 18px 2px #000000;
    animation: anima-images 0.3s linear forwards;
    /* animation-delay: 0.8s; */
    animation-delay: 1.7s;
}
.anima-red-item{
    animation: anima-red-item 0.3s linear forwards;
    /* animation-delay: 1s; */
    animation-delay: 1.9s;
}
.anima-images2{
    animation: anima-images 0.3s linear forwards;
    /* animation-delay: 0.4s; */
    animation-delay: 1.3s;
}
.anima-red-item2{
    animation: anima-red-item 0.3s linear forwards;
    /* animation-delay: 0.6s; */
    animation-delay: 1.5s;
}
@keyframes anima-images {
    100%{
        opacity: 1;
        transform: translateX(45px)
        translateY(-45px);
    }
}
@keyframes anima-red-item{
    100%{
        transform: translateX(0px)
        translateY(0px);
    }
}

/* Video */
.vieo-pulser {
    width: 64px;
    height: 64px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    position: relative;
    z-index: 5;
  }
.vieo-pulser{
    cursor: pointer;
} 
.vieo-pulser::after {
    animation: pulse 1000ms cubic-bezier(0.9, 0.7, 0.5, 0.9) infinite;
  }
  
@keyframes pulse {
    0% {
      opacity: 0;
    }
    50% {
      transform: scale(1.4);
      opacity: 0.4;
    }
  }
  
.vieo-pulser::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    z-index: -1;
  }
.anima-images{
    display: grid;
    place-items: center;
    box-shadow: inset 3px 4px 30px 2px #000000
}

/* youtube-video */
.youtube-video{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    height: 100%;
    width: 100%;
    background: #00000057;
    display: none;
    align-items: center;
    justify-content: center;
    

}
.youtube-video iframe{
 width: 300px;
 height: 168px;

    aspect-ratio: 9 / 16;
    background: #000;
    animation: move-anima 0.3s linear;

}


.move-close{
    position: absolute;
    top: 0;
    right: 0;
    margin: 30px;
    height: 50px;
    width: 50px;
}
.move-close:hover{
    cursor: pointer;
    transform: scale(1);
}
@keyframes move-anima{
    0%{
        opacity: 0;
        transform: scale(0.8);
        
    }
    100%{
        opacity: 1;
        transform: scale(1);
    }
}


/*=============== BUTTON ===============*/
.button{
  display: inline-block;
  /* background: linear-gradient(101deg,
              hsl(228, 66%, 53%),
              hsl(228, 66%, 47%)); */
  background: linear-gradient(10deg,
              hsl(195, 71%, 41%),
              hsl(195, 71%, 38%));        

  color: #fff;
  padding: 14px 25px;
  border-radius: .5rem;
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  box-shadow: 0 4px 8px hsla(228, 66%, 45%, .25);
  cursor: pointer;
}

.button:hover{
  box-shadow: 0 4px 12px hsla(228, 66%, 45%, .25);
}
.nav__button{
  display: flex;
  align-items: center;
}
.nav__button{
  display: none;
}


.nav__button i{
  font-size: 1.2rem;
  position: relative;
  transform: translateY(2px);
}
/*=============== LOGOS ===============*/
.logos__container{
  padding-top: 2rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
  justify-content: center;
}
.logos__img{
  display: grid;
  justify-content: center;
}

.logos__img img{
  height: 50px;
  background-blend-mode: multiply;
  /* background: #ec998b; */
  transition: .3s;
  
  border-radius: 0.25rem;
  border: 1px solid rgba(110, 110, 110, 0.116);
} 


.logos__img img:hover{
  filter: none;
  opacity: .8;
  filter: grayscale(100%);
  opacity: .2;
}

/*=============== POPULAR ===============*/

.popular__container{
  padding: 1rem 0 5rem;
}

.popular__card{
  width: 290px;
  background: var(--container-color);
  padding: .5rem .5rem 1.5rem;
  border-radius: 1rem;
  margin: 0 auto;
  transition: .4s;
}

.popular__img{
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.popular__data{
  padding: 0 1rem 0 .5rem;
}

.popular__price{
  font-size: var(--h2-font-size);
  color: var(--text-color);
  margin-bottom: .25rem;
}

.popular__price span{
  color: var(--second-color);
}

.popular__title{
  font-size: var(--h3-font-size);
  margin-bottom: .75rem;
}

.popular__description{
  font-size: var(--small-font-size);
}

.popular__card:hover{
  box-shadow: 0 12px 16px hsla(228, 66%, 45%, .1);
}
/* Swiper class */
.swiper-button-prev::after,
.swiper-button-next::after{
  content: "";
}

.swiper-button-next,
.swiper-button-prev{
  top: initial;
  bottom: 0;
  width: initial;
  height: initial;
  background: var(--container-color);
  border: 2px solid var(--text-color-light);
  padding: 6px;
  border-radius: .5rem;
  font-size: 1.5rem;
  color: var(--first-color);
}

.swiper-button-prev{
  left: calc(50% - 3rem);
}

.swiper-button-next{
  right: calc(50% - 3rem);
}
/*=============== VALUE ===============*/
.value__container{
  row-gap: 3rem;
}

.value__images{
  position: relative;
  display: flex;
  justify-content: center;
}

.value__orbe{
  width: 266px;
  height: 316px;
  background-color: hsl(228, 24%, 97%);
  border-radius: 135px 135px 16px 16px;
}

.value__img{
  position: absolute;
  width: 250px;
  height: 300px;
  overflow: hidden;
  border-radius: 125px 125px 12px 12px;
  inset: 0;
  margin: auto;
  box-shadow: 0 16px 32px hsla(228, 66%, 25%, .25);
}

.value__description{
  font-size: var(--small-font-size);
  margin-bottom: 2rem;
}

.value__accordion{
  display: grid;
  row-gap: 1.5rem;
}

.value__accordion-item{
  background-color: var(--body-color);
  border: 2px solid var(--border-color);
  border-radius: .5rem;
  padding: 1rem .75rem;
}

.value__accordion-header{
  display: flex;
  align-items: center;
  cursor: pointer;
}

.value__accordion-icon{
  background-color: var(--first-color-lighten);
  padding: 5px;
  border-radius: .25rem;
  font-size: 18px;
  color: var(--first-color);
  margin-right: .75rem;
  transition: .3s;
}

.value__accordion-title{
  font-size: var(--small-font-size);
}

.value__accordion-arrow{
  display: inline-flex;
  background-color: var(--first-color-lighten);
  padding: .25rem;
  color: var(--first-color);
  border-radius: 2px;
  font-size: 10px;
  margin-left: auto;
  transition: .3s;
}

.value__accordion-arrow i{
  transition: .4s;
}

.value__accordion-description{
  font-size: var(--smaller-font-size);
  padding: 1.25rem 2.5rem 0 2.75rem;
}

.value__acc__desc-img img{
  width: 250px;
  overflow: hidden;
  inset: 0;
  margin-bottom: 1.25rem;
}
.value__accordion-content{
  overflow: hidden;
  height: 0;
  transition: all .25s ease;
}
 
/*Rotate icon and add shadows*/
.accordion-open{
  box-shadow: 0 12px 32px hsla(228, 66%, 45%, .1);  
}

.accordion-open .value__accordion-icon{
  box-shadow: 0 4px 4px hsla(228, 66%, 45%, .1);
}

.accordion-open .value__accordion-arrow{
  box-shadow: 0 2px 4px hsla(228, 66%, 45%, .1); 
}

.accordion-open .value__accordion-arrow i{
  transform: rotate(-180deg);
}

/* ============== Galery =============== */
.galary__container{
  padding-top: 4rem;
}

.galary__images{
  display: grid;
  width: 100%;
  justify-content: center;
  row-gap: 2rem;
  
}

.images__box{
  display: flex;
  justify-content: center;
}
.images__box img{
  width: 90%;
  border-radius: .8rem;
}
/*=============== CONTACT ===============*/
.contact__container{
  row-gap: 2rem;
}

.contact__images{
  position: relative;
  display: grid;
  height: 100%;
  justify-content: center;
  align-items: end;
}

/* .contact__orbe{
  width: 266px;
  height: 316px;
  background-color: hsl(228, 24%, 97%);
  border-radius: 135px 135px 16px 16px;
} */

.contact__img{
  /* position: absolute; */
  width: 250px;
  height: 200px;
  overflow: hidden;
  inset: 0;
  margin: auto;
  

}
/* .map_orbe{
  height: 410px;
  width: 360px;
  background-color: hsl(228, 24%, 97%);
  border-radius: 2rem;
  
}
.map-container iframe{
  position: absolute;
  border-radius: 2rem;
  inset: 0;
  margin: auto;
  
} */
.contact__description{
  font-size: var(--small-font-size);
  margin-bottom: 2.5rem;
  padding-right: 2rem;
}

.contact__card{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem .75rem;
  order: 2;
}

.contact__card-box{
  background-color: var(--body-color);
  border: 2px solid var(--border-color);
  padding: 1.25rem .75rem;
  border-radius: .5rem;
  transition: .3s;
}

.contact__card-info{
  display: flex;
  align-items: flex-start;
  column-gap: .75rem;
  margin-bottom: 1.25rem;
}

.contact__card i{
  padding: 6px;
  background-color: var(--first-color-lighten);
  border-radius: 6px;
  font-size: 1.25rem;
  color: var(--first-color);
}

.contact__card-title{
  font-size: var(--normal-font-size);
}

.contact__card-description{
  font-size: var(--smaller-font-size);
}

.contact__card-button{
  font-size: var(--small-font-size);
  font-size: .7rem;
  padding: 14px 0;
  width: 100%;
  border-radius: .25rem;
  background: var(--first-color-lighten);
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
  box-shadow: none;
}

.contact__card-button:hover{
  background-color: var(--first-color);
  color: #fff;
}

.contact__card-box:hover{
  box-shadow: 0 8px 24px hsla(228, 66%, 45%, .1);
} 



/*=============== SUBSCRIBE ===============*/
.subscribe{
  padding: 2.5rem 0;
}
.subscribe__images img{
  height: 200px;
}
.subscribe__container{
  background-color: var(--first-color);
 
  padding: 3rem 2rem;
  border-radius: 1.25rem;
  border: 6px solid var(--first-color-light);
  text-align: center;
}

.subscribe__title{
  font-size: var(--h2-font-size);
  color: #fff;
  margin: 1rem;
}

.subscribe__description{
  color: hsl(228, 90%, 92%);
  font-size: var(--small-font-size);
  margin-bottom: 2rem;
}

.subscribe__button{
  border: 2px solid #fff;
  background: var(--first-color-light);
  font-size: var(--small-font-size);
}
.subscribe__button:hover{
  background-color: var(--first-color);
}
/*=============== FOOTER ===============*/
.footer__container{
  row-gap: 2.5rem;
}

.footer__logo{
  color: var(--first-color);
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  margin-bottom: .75rem;
}

.footer__logo i{
  font-size: 1.25rem;
}

.footer__description,
.footer__link{
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

.footer__content,
.footer__links{
  display: grid;
}

.footer__content{
  grid-template-columns: repeat(2, max-content);
  gap: 2.5rem 4rem;
}

.footer__title{
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
}

.footer__links{
  row-gap: .5rem;
}

.footer__link{
  color: var(--text-color);
  transition: .3s;
}

.footer__link:hover{
  color: var(--title-color);
}

.footer__social{
  display: flex;
  column-gap: 1rem
}

.footer__social-link{
  font-size: 1.25rem;
  color: var(--text-color);
  transition: .3s;
}

.footer__social-link:hover{
  color: var(--title-color);
}

.footer__info,
.footer__privacy{
  display: flex;
}

.footer__info{
  padding-bottom: 6rem;
  margin-top: 5.5rem;
  flex-direction: column;
  text-align: center;
  row-gap: 1.5rem;
}

.footer__copy,
.footer__privacy a{
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
}

.footer__privacy{
  justify-content: center;
  color: 1.25rem;
}
/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar{
  width: .6rem;
  border-radius: .5rem;
  background: hsl(228, 8%, 76%);
}

::-webkit-scrollbar-thumb{
  background: hsl(228, 8%, 64%);
  border-radius: .5rem;
}

::-webkit-scrollbar-thumb:hover{
  background: hsl(228, 8%, 54%);
}
/*=============== SCROLL UP ===============*/
.scrollup{
  position: fixed;
  right: 1rem;
  bottom: -30%;
  background-color: var(--container-color);
  box-shadow: 0 8px 12px hsla(228, 66%, 45%, .1);
  display: inline-flex;
  padding: .34rem;
  border-radius: .25rem;
  color: var(--title-color);
  font-size: 1.25rem;
  z-index: var(--z-tooltip);
  transition: .3s;
}

.scrollup:hover{
  transform: translateY(-.25rem);
  color: var(--first-color);
}

/* Show Scroll Up*/
.show-scroll{
  bottom: 8rem;
}

/* -----News pixelmedia------------ */
.protfole__cards{
  color: #ED6F47;
  
}
.protfole__item{
  border-radius: 8px;
  border: 3px solid #5A69F0;
  padding: 2rem;
  margin-bottom: 2rem;
  padding: 1.5rem 1.5rem;
  /* background: linear-gradient(90deg, #1D4ED8 25.45%, rgba(29, 78, 216, 0.44) 93.08%), url(<path-to-image>), lightgray 50% / cover no-repeat; */
}
#aerapord{
  background: url('../img/aeraport.png');
  background-size: cover;
}
#avtobus{
  background: url('../img/avtobus.png');
  background-size: cover;
}
.news__title{
color: var(--second-color);
/* font-family: Poppins; */
font-size: 24px;
font-style: normal;
font-weight: 500;
line-height: 30px;
margin: 1rem 0;
}

.news__ops{
  color: #FFF;
  font-style: initial;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  margin-bottom: 1rem;
}
.download{
  display: inline-flex;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  border: 1px solid #FFF;
  background: #1D4ED8;
  color: white;
}
.button__svg path{
  fill: none;
  stroke: white;
}
.download:hover .button__svg path{
  stroke: var(--text-color);
}
.download:hover{
  background: var(--container-color);
  color: var(--text-color);
  border: 1px solid var(--text-color);
  cursor: pointer;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media  screen and (max-width : 350px) {
  .container{
    margin-left: 1rem;
  }
  
  .section{
    padding: 3.5rem 0 1rem;
  }

  .home{
    padding-bottom: 0;
  }

  .contact__card{
    grid-template-columns: repeat(1, 180px);
    justify-content: center;
  }
}

@media screen  and (max-width : 320px){
  .home__images{
    transform: scale(0.2, 0.2);
  }
  .nav__menu{
    padding: 1.3rem 1.5rem;
  }

  .home__value{
    column-gap: 1rem;
  }

  .home__img{
    width: 220px;
    height: 280px;
  }
  
  .home__orbe{
    width: 240px;
    height: 264px;
  }


  .logos__container{
    gap: 2rem 1rem;
  }

  .popular__card{
    width: 230px;
    padding: .5rem .5rem .75rem;
  }

  .value__img,
  .contact__img
  {
    width: 220px;
    height: 260px;
  }

  .value__orbe,
  .contact__orbe
  {
    width: 236px;
    height: 280px;
  }

  .subscribe__container{
    padding: 2rem 1rem;
  }

  .footer__content{
    gap: 2.5rem;
  }
}
/* For medium devices */
@media  screen and (min-width : 576px) {
  .youtube-video iframe{
    width: 560px;
    height: 315px;
  }
  .nav__menu{
    width: 342px;
  }

  .home__search{
    width: 412px;
  }

  .contact__card{
    grid-template-columns: repeat(2, 192px);
    justify-content: center;
  }

  .footer__content{
    grid-template-columns: repeat(3, max-content);
  }
}

@media screen and (min-width : 767px) {
  .home__container{
    grid-template-columns: repeat(2, 1fr);
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
  
  .home__orbe{
    align-self: flex-end;
  }


  .home__data{
    order: 0;
    padding-bottom: 2rem;
  }
  /* youtube-video */
  /* .youtube-video{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    height: 600px;
    width: 100%;


  } */
  /* .youtube-video iframe{
    width: 80vw;
    height: 300px;
  } */
  .logos__container{
    grid-template-columns: repeat(4, max-content);
    justify-content: center;
  }

  .value__accordion-description,
  .contact__container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .contact__images{
    order: 1;
    
  }
  .contact__img{
    width: 400px;
    height: auto;
  }

  .contact__card{
    justify-content: initial;
  }

  .subscribe__container{
    padding: 3rem 13rem;
  }

  .footer__container{
    grid-template-columns: repeat(2, max-content);
    justify-content: space-between;
  }

  .galary__images{
    grid-template-columns: repeat(2, 1fr);
  }
}
/* For large devices */
@media screen and (min-width : 1023px) {
  .youtube-video iframe{
    width: 560px;
    height: 315px;
  }
  .section-image{
    width: 500px;
    height: 608px;
  }
  .con-image-sec{
    width: 500px;
    height: 608px;
    align-items: center;
  }

  .con-image-items{
    transform: scale(1.5);;
  }
  .section{
    padding: 7.5rem 0 1rem;
  }
  
  .section__title{
    font-size: 2.25rem;
  }

  .section__subtitle{
    font-size: var(--normal-font-size);
  }

  .nav{
    height: calc(var(--header-height) + 1.5rem);
  }
  
  .nav__menu{
    width: initial;
    margin-left: auto;
  }

  .nav__list{
    display: flex;
    column-gap: 3rem;
  }

  .nav__item{
    display: flex;
    align-items: center;
  }
  .nav__link{
    color: var(--text-color-light);
  }
  .scroll-header nav .nav__menu .nav__item .nav__link span{
    color: var(--title-color);
  }
  .nav__link i{
    display: none;
  }

  /* Prosmotor karta */
  .prosmotr__maps i{
    display: flex;
    margin-right: .3rem;
    font-size: 24px;
    color: #fff;
  }
  .prosmotr__maps{
    display: flex;
    border: 2px solid  hsl(195, 71%, 41%);
    background: linear-gradient(10deg, hsla(195, 71%, 41%, 0.833), hsla(195, 71%, 38%, 0.45));;
    padding: 14px 24px;
    max-width: 220px;
    border-radius: 0.5rem;
  }
  .home__link{
    display: none;
  }

  .nav__button{
    display: inline-block;
  }

  .active-link{
    background: none;
    box-shadow: none;
    color: var(--first-color);
    font-weight: var(--font-medium);
  }

  .change-theme{
    margin: 0 3rem;
    color: var(--text-color-light);
  }

  .scroll-header .nav__link,
  .scroll-header .change-theme{
    color: var(--text-color);
  }

  .scroll-header .active-link{
    color: var(--first-color);
  }

  .home{
    padding-bottom: 0;
  }

  .home__container{
    padding-top: 5rem;
    column-gap: 2rem;
  }

  .home__data{
    padding-bottom: 4rem;
  }

  .home__title{
    margin-bottom: 2rem;
  }

  .home__description,
  .home__search{
    margin-bottom: 3rem;
  }

  .home__value{
    column-gap: 3.5rem;
  }

  .home__orbe{
    width: 504px;
    height: 611px;
    border-radius: 256px 256px 0 0;
  }

  .home__img{
    width: 472px;
    height: 634px;
    border-radius: 236px 236px 12px 12px;
    bottom: -2.5rem;
  }

  .logos__img img{
    height: 100px;
  }

  .popular__container{
    padding-top: 3rem;
  }

  .popular__card{
    width: 320px;
    padding: .75rem .75rem 2rem;
  }

  .popular__data{
    padding: 0 .25rem 0 .75rem;
  }

  .value__container,
  .contact__container
  {
    align-items: flex-start;
    column-gap: 5rem;
  }

  .value__orbe,
  .contact__orbe
  {
    width: 501px;
    height: 641px;
    /* border-radius: 258px 258px 16px 16px; */
  }

  /* .value__img,
  .contact__img
  {
    width: 461px;
    height: 601px;
    border-radius: 238px 238px 12px 12px;
  } */

  /* .value__img img,
  .contact__img img
  {
    max-width: initial;
    width: 490px;
  } */

  .value__description,
  .contact__description
  {
    font-size: var(--normal-font-size);
    margin-bottom: 2.5rem;
  }

  .value__accordion-title{
    font-size: var(--normal-font-size);
  }

  .value__accordion-item{
    padding-bottom: 1.25rem 1.25rem 1.25rem 1rem;
  }

  .value__accordion-description{
    padding-bottom: 1rem;
    font-size: var(--small-font-size);
  }

  .contact__card{
    grid-template-columns: repeat(2, 200px);
  }

  .contact__card-box{
    padding: 28px 1.5rem 1.5rem;
  }

  .subscribe__container{
    padding: 4rem 10rem 4.5rem;
    border-radius: 2rem;
    border: 12px solid var(--first-color-light);
  }

  .subscribe__title{
    font-size: 2.5rem;
  }

  .subscribe__description{
    font-size: var(--normal-font-size);
    padding: 0 8rem;
  }

  .subscribe__button{
    font-size: var(--normal-font-size);
  }

  .footer__content{
    grid-template-columns: repeat(4, max-content);
  }

  .footer__title{
    margin-bottom: 1.5rem;
  }

  .footer__links{
    row-gap: 1rem;
  }

  .footer__info{
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 2rem
  }

  .show-scroll{
    bottom: 3rem;
    right: 3rem;
  }
  .protfole__cards{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
    gap: 2rem;
  }
  .protfole__item{
    border: 5px solid var(--first-color-light);
    border-radius: 20px;
  }
  .galary__images{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width : 1040px) {


  .home__container{
    column-gap: 4rem;
  }
  
}
/* For 2K & 4K resolutions */
@media screen and (min-width:1240px) {
  .container{
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width : 2048px) {
  body{
    zoom: 1.5;
  }
}

@media screen and (min-width : 3840px) {
  body{
    zoom: 2;
  }
  
}




/* ======== 404 ====== */
.title-404{
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
  padding-top: 2rem;
}
.img__404
{
  width: 100%;
  height: 100%;
  padding-top: 4rem;
  display: inline-flex;
  justify-content: center;
  
}
.img__404 img{
  width: 40%;
}