:root {
  --title-color-span: #4fb638;
  --title-color: #252525;
  --text-shadow: rgba(0, 0, 0, 0.41);
  --white-color: #ffffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.current {
  /* background: #fff; */
  position: relative;
  /* transform: scale(3); */
  /* border-color: #404040; */
}

.select__menu__content {
	position: relative;
	z-index: 1000;
	padding: 15px;
	float: right;
  }
  
  .select-menu {
	position: relative;
	display: flex;
	align-items: center;
	border: 1px solid var(--title-color-span);
	width: 70px;
	height: 30px;
  }
  
  .select-menu::before {
	content: '';
	position: absolute;
	border: 1px solid var(--title-color-span);
	width: 10px;
	transform: rotate(90deg);
	right: 30px;
  }
  
  .select__title {
	font-size: 13px;
	color: var(--title-color-span);
	font-weight: 400;
  }
  
  .option {
	margin: 0 7px;
	opacity: 0.5;
  }
  
  .select {
	opacity: 1;
  }

.current::after {
  content: '';
  position: absolute;
  transform: rotate(90deg);
  width: 30px;
  height: 1.5px;
  background: #fff;
  border-radius: 5px;
  right: 22px;
  top: 8px;
}

.content {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 20%;
  grid-template-rows: 1fr 1fr 15%;
  gap: 0px 0px;
  grid-template-areas: 'content_area content_area rightbottom' 'content_area content_area rightbottom' 'bottom_area bottom_area rightbottom';
}
.about__cnt {
  background-image: url('../img/bg.jpg');
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
  position: relative;
  grid-area: content_area;
}
.about__cnt_title {
  padding-top: 5rem;
  margin-left: 20rem;
  display: inline-block;
  font-size: 2rem;
  text-align: center;
  color: #252525;
  text-shadow: -2px 1px 21px rgba(0, 0, 0, 0.6);
}
@media only screen and (max-width: 1800px) {
  .about__cnt_title {
    margin-left: 10rem;
    font-size: 1.5rem;
  }
}
.about__cnt_discription {
  font-size: 3.2rem;
  text-align: right;
}
@media only screen and (max-width: 1800px) {
  .about__cnt_discription {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 800px) {
  .about__cnt_discription {
    position: absolute;
    top: 40%;
  }
}

.content__leftimage {
  background-image: url('../img/bg-second.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  grid-area: rightbottom;
}
.content__navbottom {
  grid-area: bottom_area;
  background-color: #252525;
  color: #fff;
  font-size: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 5rem;
  justify-content: center;
  align-items: center;
  justify-items: center;
  width: 100%;
  margin: 0 auto;
}

.content__navbottom_btn a {
  position: relative;
  font-size: 15px;
  color: #d6d0d0;
  text-transform: uppercase;
  font-weight: 600;
  transition: 0.2s linear;
}
.content__navbottom_btn a:hover {
  color: var(--white-color);
}

@media only screen and (max-width: 1800px) {
  .content__navbottom {
    font-size: 1rem;
  }
}
.content__navbottom_btn {
  text-align: center;
  cursor: pointer;
}

@media only screen and (max-width: 600px) {
  .content__navbottom a {
    font-size: 10px !important;
  }

  .content__navbottom {
    gap: 1rem !important;
  }
}

@media only screen and (max-width: 1800px) {
  .content__navbottom_btn::after {
    margin-top: 1rem;
  }
}

@media only screen and (max-width: 730px) {
  .about__cnt_discription {
    font-size: 2rem;
  }

  .content {
    grid-template-columns: 1fr 1fr 10%; 
  }
}

@media only screen and (max-width: 600px) {
  .content {
    grid-template-columns: 1fr 1fr 0%; 
  }

  .content__leftimage {
    display: none;
  }
}

@media only screen and (max-width: 600px) {
  .about__cnt_discription {
    position: relative;
    left: 80px;
    top: 100px;
  }
}

@media only screen and (max-width: 450px) {
  .about__cnt_discription {
    font-size: 1.8rem;
  }
}

.about__cnt-container_title {
  display: flex;
  justify-content: flex-end;
  margin: 10% 5% 0 0;
  color: var(--title-color-span);
  text-shadow: 0px 10px 20px var(--text-shadow);
}

.second {
  display: flex;
  background: linear-gradient(90deg, black 0%, black 45%, rgba(0, 0, 0, 0.5) 55%, rgba(0, 0, 0, 0) 65%);
  color: #fff;
  padding-left: 3rem;
}
@media only screen and (max-width: 1800px) {
  .second {
    background: linear-gradient(90deg, black 0%, black 55%, rgba(0, 0, 0, 0.5) 65%, rgba(0, 0, 0, 0) 75%);
  }
}
.second_img {
  background-image: url('../img/bg2.jpg');
  height: 100vh;
  width: 100%;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.second .content__brand_title {
  margin: 0;
}

.content__brand_container_brand {
  height: 50%;
}

@media only screen and (max-width: 1800px) {
  .content__brand_container_brand {
    height: 40%;
  }
}

.content__brand_container_title {
  display: flex;
  justify-content: flex-end;
  margin: 10% 5% 0 0;
  text-shadow: 0px 4px 11px rgba(0, 0, 0, 0.4);
}

#services {
  display: flex;
  background: linear-gradient(90deg, #252525 0%, #252525 45%, rgba(0, 0, 0, 0.5) 55%, rgba(0, 0, 0, 0) 65%);
  color: #fff;
  padding-left: 3rem;
}
@media only screen and (max-width: 1800px) {
  .second {
    background: linear-gradient(90deg, black 0%, black 55%, rgba(0, 0, 0, 0.5) 65%, rgba(0, 0, 0, 0) 75%);
  }
}
.second_img {
  background-image: url('../img/bg2.jpg');
  height: 100vh;
  width: 100%;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.content__cnt_title {
  width: 200px;
  padding-top: 7rem;
  color: var(--white-color);
  font-size: 25px;
  font-weight: 500;
  text-shadow: 2px 3px 21px var(--text-shadow);
}

.services__title_discription {
  margin-top: 8rem;
}

.services__discription {
  position: relative;
  width: 230px;
  color: var(--white-color);
  font-size: 25px;
  font-weight: 500;
  text-shadow: 2px 3px 21px var(--text-shadow);
  text-transform: uppercase;
}

.services__discription::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--white-color);
  bottom: -10px;
}

@media only screen and (max-width: 1800px) {
  .services__cnt_container_cnt {
    height: 20%;
  }
}

@media only screen and (max-width: 530px) {
  #services {
    padding-left: 1rem;
  }

  .services__discription {
    font-size: 22px;
  }
}

@media only screen and (max-width: 500px) {
  #services {
    background: linear-gradient(90deg, #252525 0%, #252525 55%, rgba(0, 0, 0, 0.5) 65%, rgba(0, 0, 0, 0) 75%);
  }
}

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

.select__menu__content {
  position: relative;
  z-index: 1000;
  padding: 15px;
  float: right;
}

.select-menu {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid var(--title-color-span);
  width: 70px;
  height: 30px;
}

.select-menu::before {
  content: '';
  position: absolute;
  border: 1px solid var(--title-color-span);
  width: 10px;
  transform: rotate(90deg);
  right: 32px;
}

.select__title {
  font-size: 13px;
  color: var(--title-color-span);
  font-weight: 400;
  text-transform: uppercase;
}

.option {
  margin: 0 7px;
  opacity: 0.5;
}

.select {
  opacity: 1;
}

section {
  height: 100vh;
  font-family: Open Sans;
  font-weight: bold;
}

section:nth-of-type(even) {
  background: #fff;
}

section .wrapper {
  position: relative;
  max-width: 1220px;
  padding: 32px;
  margin: 0 auto;
}

#about {
  background: url(../img/bg.png) no-repeat center/cover;
  width: 100%;
  height: 100vh;
}

.about-cnt {
  display: flex;
  justify-content: flex-end;
}

.about__title span {
  color: var(--title-color-span);
  font-size: 30px;
  font-weight: 600;
  display: block;
}

.about__title {
  color: #252525;
  font-size: 25px;
  font-weight: 600;
  text-shadow: 2px 3px 21px var(--text-shadow);
}

.about__subtitle {
  color: var(--title-color);
  font-size: 30px;
  font-weight: 600;
  width: 500px;
  text-shadow: 0px 4px 11px var(--text-shadow);
  margin: 10% 5% 0 0;
  text-align: right;
}

#electronics {
  display: flex;
  background: linear-gradient(-90deg, #252525 0%, #252525 45%, #252525 55%, rgba(0, 0, 0, 0) 65%);
  color: #fff;
  padding-right: 3rem;
}
@media only screen and (max-width: 1800px) {
  #electronics {
    background: linear-gradient(-90deg, #252525 0%, #252525 45%, #252525 55%, rgba(0, 0, 0, 0) 65%);
  }
}
@media only screen and (max-width: 1500px) {
  #electronics {
    background: linear-gradient(-90deg, #252525 0%, #252525 85%, #252525 55%, rgba(0, 0, 0, 0) 75%);
  }
}
#electronics .content__brand_title {
  margin: 0;
}

.electronics_img {
  background-image: url('../img/bg3.jpg');
  height: 100vh;
  width: 50rem !important;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.electronics {
  float: right;
  margin-top: 50px;
}

.electronics__title span {
  color: var(--white-color);
  font-size: 30px;
  font-weight: 500;
  display: block;
}

.electronics__title {
  color: var(--white-color);
  font-size: 25px;
  font-weight: 500;
  text-shadow: 2px 3px 21px var(--text-shadow);
}

.electronics__subtitle {
  /* width: 200px; */
  position: relative;
  margin-top: 10rem;
  color: var(--white-color);
  font-size: 25px;
  font-weight: 500;
  text-shadow: 2px 3px 21px var(--text-shadow);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.electronics__subtitle::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--white-color);
  text-shadow: 2px 3px 21px var(--text-shadow);
  border-radius: 5px;
  top: 45px;
}

.electronics-span {
  color: #d5d2d2;
  font-size: 20px;
  font-weight: 200;
  text-shadow: 2px 3px 21px var(--text-shadow);
  text-transform: uppercase;
  margin-top: 30px;
}

#spare {
  display: flex;
  background: linear-gradient(90deg, #252525 0%, #252525 45%, rgba(0, 0, 0, 0.5) 55%, rgba(0, 0, 0, 0) 65%);
  color: #fff;
}
@media only screen and (max-width: 1800px) {
  #spare {
    background: linear-gradient(90deg, #252525 0%, #252525 45%, rgba(0, 0, 0, 0.5) 55%, rgba(0, 0, 0, 0) 65%);
  }
}
@media only screen and (max-width: 1500px) {
  #spare {
    background: linear-gradient(90deg, #252525 0%, #252525 45%, rgba(0, 0, 0, 0.5) 55%, rgba(0, 0, 0, 0) 65%);
  }
}

.spare_img {
  background-image: url('../img/bg4.jpg');
  height: 100vh;
  width: 80%;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.spare__subtitle {
  width: 200px;
  position: relative;
  margin-top: 10rem;
  color: var(--white-color);
  font-size: 25px;
  font-weight: 500;
  text-shadow: 2px 3px 21px var(--text-shadow);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.spare__subtitle::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--white-color);
  text-shadow: 2px 3px 21px var(--text-shadow);
  border-radius: 5px;
  top: 50px;
}

.spare-span {
  color: #d5d2d2;
  font-size: 20px;
  font-weight: 200;
  text-shadow: 2px 3px 21px var(--text-shadow);
  text-transform: uppercase;
  margin-top: 30px;
}

@media only screen and (max-width: 500px) {
  #spare {
    background: linear-gradient(90deg, #252525 0%, #252525 65%, rgba(0, 0, 0, 0.5) 75%, rgba(0, 0, 0, 0) 85%);
  }
}

#footer {
  background: url(../img/bg.jpg) no-repeat center/cover;
  width: 100%;
  height: 100vh;
}

.footer__content {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__title {
  margin-top: 30px;
  color: var(--title-color);
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 600;
  text-shadow: 2px 3px 21px var(--text-shadow);
}

.footer-main-title {
  font-size: 35px;
  color: var(--title-color);
  width: 600px;
  text-align: center;

}

.footer-address {
  color: var(--title-color);
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 20px;
}

.footer-number-phone {
  margin-top: 40px;
}

.footer-phone {
  color: var(--white-color);
  font-size: 20px;
  background: var(--title-color-span);
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 4px;
  transition: 0.2s linear;
}

.footer-phone:hover {
  background: var(--white-color);
  border: 1px dashed var(--title-color-span);
  color: var(--title-color-span);
}

.footer-mail {
  margin-top: 50px;
}

.footer__mail {
  color: var(--white-color);
  font-size: 20px;
  background: var(--title-color-span);
  font-weight: 500;
  padding: 12px 50px;
  border-radius: 4px;
  transition: 0.2s ease-in;
}

.footer__mail:hover {
  background: var(--white-color);
  border: 1px dashed var(--title-color-span);
  color: var(--title-color-span);
}

.footer-img {
  float: right;
  margin-top: 5rem;
}

.footer-cnt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}

.footer__desc {
  margin-top: 70px;
  font-size: 25px;
  color: var(--title-color);
  font-weight: 500;
  text-transform: uppercase;
}

.footer-desc span {
  display: block;
  font-size: 38px;
  color: #252525;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 30px;
  color: #252525;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 40px;
}

@media (max-width: 675px) {
  .footer-main-title {
    font-size: 25px;
    width: 100%;
    margin-top: 30px;
  }
  .footer__title {
    font-size: 20px;
  }

  .footer__desc {
    font-size: 20px;
  }

  
.footer-desc {
  font-size: 25px;
}

.footer-desc span {
  font-size: 31px;
}
}

@media (max-width: 620px) {
  .footer-cnt {
    flex-direction: column;
  }

  .footer__desc {
    margin-top: 0;
  }

  .footer-desc {
    margin-top: -50px;
  }
}

.scroll-indicator {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  box-shadow: -10px 0 -10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  position: fixed;
  z-index: 1000;
  right: 100px;
  top: 50%;
  padding: 10px 20px;
  border-radius: 5px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.scroll-indicator a {
  padding: 10px;
  color: var(--title-color-span);
  font-family: sans-serif;
  font-weight: 600;
  position: relative;
}

.scroll-indicator a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.scroll-indicator a.active::after {
  content: '';
  position: absolute;
  transform: rotate(90deg);
  width: 50px;
  height: 1.5px;
  background: var(--title-color-span);
  border-radius: 5px;
  left: -2.7rem;
  top: 20px;
}

.scroll-indicator a::before {
  content: attr(data-section);
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translate(4px, -50%);
  background: var(--title-color-span);
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  padding: 2px 16px;
  text-transform: uppercase;
  font-size: 13px;
  pointer-events: none;
  box-shadow: 0 7px 14px -6px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: all 400ms ease;
  z-index: 1000;
}

.scroll-indicator a:hover::before {
  opacity: 1;
  transform: translate(0, -50%);
}

.scroll-indicator .arrow {
  display: none;
}

@media (max-width: 840px) {
  .electronics__subtitle {
    font-size: 20px;
    margin-left: 7px;
  }

  .electronics__title {
    margin-left: 10px;
  }

  .scroll-indicator {
    right: 8px;
    background: #fff;
    box-shadow: 0 4px 40px -8px rgba(0, 0, 0, 0.3);
    padding: 24px 6px;
    border-radius: 20px;
    transform: translate(40px, -50%);
    transition: all 400ms ease;
  }

  .scroll-indicator.active {
    transform: translate(-0%, -50%);
  }

  .scroll-indicator .arrow {
    width: 20px;
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    background: #222;
    color: #fff;
    padding: 4px 0;
    display: flex;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
  }

  .scroll-indicator.active a::before {
    opacity: 1;
    transform: translate(-2px, -50%);
  }
}

@media (max-width: 500px) {
  .electronics_img {
    z-index: 0;
  }
}