@import "./reset.css";
@import "react-slideshow-image/dist/styles.css";

@font-face {
  font-family: "Circe Light";
  src: url("../fonts/Circe-Light.eot");
  src: url("../fonts/Circe-Light.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Circe-Light.woff") format("woff"),
    url("../fonts/Circe-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Circe Bold";
  src: url("../fonts/Circe-Bold.eot");
  src: url("../fonts/Circe-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Circe-Bold.woff") format("woff"),
    url("../fonts/Circe-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Circe Regular";
  src: url("../fonts/Circe-Regular.eot");
  src: url("../fonts/Circe-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Circe-Regular.woff") format("woff"),
    url("../fonts/Circe-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

:root {
  --blackpure: #000;
  --black: #171718;
  --black-border: #26292d;
  --white: #fff;
  --blue: rgb(48, 114, 212);
  --gray: rgba(51, 51, 51, 0.05);

  --text-color: var(--black);
  --dark-bg: var(--accent);
  --dark-border: var(--black-border);
  --text-bg: var(--white);
  --accent: var(--blue);
  --text-slider: var(--white);
}

html,
body {
  font-family: "Circe Light", normal;
  font-size: 17px;
  letter-spacing: 0.7px;
  color: var(--text-color);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.strong {
  font-family: "Circe Regular";
}
.not-page__title {
  margin-top: 90px;
  font-family: "Circe Regular";
  font-size: 30px;
  text-align: center;

}
.not-page {
  text-align: center;
  color: var(--text-color);
  transition: opacity 0.2s ease-in;

}

.button {
  padding: 10px 20px;
  background-color: var(--accent);
  color: var(--white);
  text-align: center;
  border-radius: 3px;
}

.button:hover {
  opacity: 0.8;
}

.button:active {
  position: relative;
  top: 1px;
}

.header {
  z-index: 10;
  position: fixed;
  background-color: var(--white);
  border-bottom: 1px solid rgb(51, 51, 51, 0.1);
  width: 100%;
}
.container {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1200px;
}
/*
.header__contacts {
  margin-bottom: 20px;
  padding: 15px 0px;
  border-bottom: 1px solid rgb(51, 51, 51, 0.3);
}
.header__contacts-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 30px;
  row-gap: 20px;
  flex-wrap: wrap;
}

.header__contacts-item {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  align-items: center;
  column-gap: 20px;
  font-size: 20px;
  font-weight: 400;
  font-family: "Circe Light", normal;
} */
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 30px;
  row-gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 10px;
}
.header__logo {
  width: 200px;
  padding: 10px 0;
}

.header__nav-list {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  row-gap: 10px;
  justify-content: space-between;
  align-items: center;
  column-gap: 10px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Circe Bold";
}

.header__nav-item {
  padding-left: 20px;
}
.header__nav-link {
  color: var(--text-color);
  transition: opacity 0.2s ease-in;
}

.header__nav-link:hover {
  opacity: 0.5;
}

.burger {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
}
.burger-btn {
  width: 40px;
  height: 28px;
  position: relative;

  cursor: pointer;
}

.burger-btn::before {
  content: "";
  width: 40px;
  height: 3.5px;
  position: absolute;
  top: 0;
  background-color: var(--accent);
}

.burger-btn span {
  width: 40px;
  height: 3.5px;
  position: absolute;
  top: 13px;
  background-color: var(--accent);
}

.burger-btn::after {
  content: "";
  width: 40px;
  height: 3.5px;
  position: absolute;
  bottom: 0;
  background-color: var(--accent);
}

.burger__nav-list {
  border-bottom: 1px solid rgb(51, 51, 51, 0.3);
  font-size: 16px;
  font-weight: 700;
  font-family: "Circe Bold";
  align-items: center;
  text-align: end;
}

.burger__nav-item {
  margin-bottom: 10px;
}
.burger__nav-link {
  color: var(--text-color);
  transition: opacity 0.2s ease-in;
}

.burger__nav-link:hover {
  opacity: 0.5;
}
/*
.services__list {
  position: absolute;
  width: 270px;
  top: 54px;

  background-color: var(--white);
  z-index: 29;
  border-radius: 2px;
  box-shadow: 5px 3px 5px rgba(63, 70, 172, 0.3);
  transform: translateY(0%);
  animation: ani 0.5s forwards;
}
@keyframes ani {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateX(0);
  }
}

.services__item {
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 700;
  font-family: "Circe Regular", normal;
}

.services__item a {
  color: var(--text-color);
  transition: opacity 0.2s ease-in;
}
.services__item a:hover {
  opacity: 0.7;
}
*/

.slider__wrapper {
  width: 100%;
  height: 700px;
  position: relative;
  margin-bottom: 150px;
  margin-top: 80px;
}

.slider__picture {
  width: 100%;
  height: 700px;
  object-fit: cover;
  object-position: center;
}

.slider__left--arrow {
  position: absolute;
  bottom: 10px;
  transform: translate(0, -50%);
  right: 100px;
  z-index: 2;
}

.slider__right--arrow {
  position: absolute;
  bottom: 10px;
  transform: translate(0, -50%);
  right: 40px;
  z-index: 2;
}

.slider__button {
  height: 48px;
  width: 48px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.3);
  transition: opacity 0.2s ease-in;
  font-family: "Circe Light";
  font-weight: 400;
  font-size: 20px;
}

.slider__button:hover {
  opacity: 0.7;
}

.slider__button:active {
  position: relative;
  top: 1px;
}

.slider__container {
  display: block;
  position: absolute;
  z-index: 1;
  max-width: 70%;
  bottom: 35px;
  left: 100px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 3px;
}
.slider__title {
  font-family: "Circe Bold";
  font-style: normal;
  font-weight: 800;
  font-size: 25px;
  padding: 10px 10px;

  color: var(--text-slider);
}

.welcome__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}

.welcome__avatar {
  display: flex;
  width: 400px;
  object-fit: cover;
  object-position: center;
}

.welcome__wrapper {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid var(--accent);
  padding: 90px 70px;
}

.welcome__title {
  position: absolute;
  max-width: 88%;
  margin-right: auto;
  margin-left: auto;
  
  text-align: center;
  bottom: 93%;
  padding: 0 5px;

  font-family: "Circe Bold";
  font-style: normal;
  letter-spacing: -0.5px;
  font-weight: 800;
  font-size: 36px;

  background-color: var(--white);
}

.welcome__text {
  margin-bottom: 60px;

  font-family: "Circe Light";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  text-align: justify;

  color: var(--text-color);
}

.welcome__signature {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  column-gap: 10px;
}

.welcome__signature--img {
  display: flex;
  width: 170px;
  height: 154px;
  background-image: url("../img/signature.png");
  background-position: center;
}

.welcome__signature--text {
  display: flex;
  font-family: "Circe Light";
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  text-align: right;

  color: var(--text-color);
}
.button__wrapper {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 120px;
}
.welcome__button {
  transition: opacity 0.2s ease-in;
}

.welcome__button:hover {
  opacity: 0.8;
}

.welcome__button:active {
  position: relative;
  top: 1px;
}

.footer {
  width: 100%;
  height: 170px;
  background-color: var(--gray);
  margin: auto;
}

.footer__wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.footer__logo {
  width: 130px;
  padding: 10px 0;
}

.footer__contacts {
  display: flex;
  flex-wrap: no-wrap;
  justify-content: space-between;
  column-gap: 15px;
  align-items: flex-start;
  padding-top: 30px;
}

.footer__contacts__item {
  justify-content: center;
  max-width: 450px;
  padding: 0 5px;
}
.phone {
  letter-spacing: 0.074rem;
}
.copyright {
  text-align: center;
}
.icons {
  margin-right: 10px;
}

.adress {
  padding-left: 25px;
}

.footer-mobile {
  width: 100%;
  height: 220px;
  background-color: var(--gray);
  margin: auto;
}

.footer__wrapper-mobile {
  display: flex;
  max-width: 300px;
  justify-content: center;
  margin: auto;
  padding: 20px 20px 0 20px;
  column-gap: 50px;
  font-size: 16px;
}
.footer__logo-mobile {
  width: 100px;
  padding: 10px 0;
}

.footer__contacts-mobile {
  padding-top: 10px;
}

.footer__contacts__item-mobile {
  justify-content: center;
  padding: 0 5px;
  margin-bottom: 10px;
}

.loading {
  filter: blur(10px);
}
.loaded {
  filter: blur(0);
  transition: filter 0.2s linear;
}
.breadcrumbs__nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 40px 0;
  margin-top: 85px;
}

.breadcrumbs__nav-item {
  padding-right: 15px;

  font-family: "Circe Light";
  color: var(--text-color);
}

.breadcrumbs__icon {
  padding: 10px 0;
}

.breadcrumbs__nav-link {
  color: var(--text-color);
  transition: opacity 0.2s ease-in;
}

.breadcrumbs__nav-link:hover {
  opacity: 0.7;
}

.map__wrapper {
  margin-bottom: 40px;
}

.map {
  width: 100%;
  margin-bottom: 120px;
}

.contacts__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
  justify-content: space-between;
  column-gap: 15px;
}

.contacts__item {
  font-size: 16spx;
  padding: 10 px 10px 20px 0;
}

.contacts__item-title {
  font-family: "Circe Bold";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
}

a[href^="tel:"] {
  color: var(--text);
}

a[href^="mailto:"] {
  font-family: "Circe Regular";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  color: var(--accent);
}

.details {
  margin-bottom: 60px;
}

.button__details {
  font-family: "Circe Regular";
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  color: var(--accent);
}

.services__title-1 {
  text-align: center;
  font-family: "Circe Bold";
  font-style: normal;
  font-size: 35px;
  margin-bottom: 80px;
}

.services__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 25px;
}

.service {
  max-width: 450px;
  margin-bottom: 60px;
  margin-right: 24px;
  filter: drop-shadow(0px 5px 35px rgba(0, 0, 0, 0.25));
  border-radius: 10px;

  display: flex;
  flex-direction: column;
}

.service__img {
  margin-bottom: 30px;
  object-fit: cover;
  object-position: center;
  height: 300px;
  cursor: pointer;
}

.service__title-2 {
  font-family: "Circe Regular";
  font-style: normal;
  font-weight: 700;
  font-size: 26px;

  padding: 0 30px;
  margin-bottom: 15px;
}

.service__text {
  font-family: "Circe Light";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  padding: 0 30px;
  margin-bottom: 30px;
}

.service__button {
  display: block;
  width: 160px;
  margin: auto 0 0 30px;
}

.subservices__wrapper {
  display: grid;
  margin-bottom: 70px;
  grid-template-columns: repeat(2, 47%);
  justify-content: space-between;
  align-items: flex-start;
}

.subservice__img {
  display: flex;
  max-width: 530px;
  height: 400px;
  filter: drop-shadow(0px 5px 35px rgba(0, 0, 0, 0.15));
  border-radius: 10px;
  margin-right: 15px;
}

.subservices__img-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
}

.subservices__title-2 {
  font-family: "Circe Regular";
  font-style: normal;
  font-weight: 700;
  font-size: 26px;

  margin-bottom: 15px;
}

.subservices__text {
  font-family: "Circe Light";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  list-style-position: inside;
}

.subservices__text li {
  padding-left: 20px;
  list-style: url("/img/rectangle.png");
}
.subslider {
  position: relative;
  height: 400px;
  filter: drop-shadow(0px 5px 35px rgba(0, 0, 0, 0.15));
  border-radius: 10px;

}


.transfer {
  margin: 10px 0;
}
.pictures__title {
  text-align: center;
  font-family: "Circe Bold";
  font-style: normal;
  font-weight: 800;
  font-size: 35px;
  margin-bottom: 100px;
}

.pictures__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 33.33%);
}

.pictures {
  max-width: 416px;
  margin-bottom: 40px;
  margin-right: 24px;
  filter: drop-shadow(0px 5px 35px rgba(0, 0, 0, 0.15));
  border-radius: 10px;

  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.picture {
  object-fit: cover;
  object-position: center;
  margin-bottom: 30px;
}

.pictures:hover {
  position: relative;
  top: -1px;
}

.licenses-popup {
  height: 100vh;
  width: 100vw;
  background-color: rgba(51, 51, 51, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
  overflow-y: hidden;
}

.licenses-popup.active {
  overflow-y: scroll;
  opacity: 1;
  pointer-events: all;
}
.license-popup__img {
  margin-top: 110px;
  height: 90%;
  transform: scale(0.5);
  transition: 0.4s all;
}

.license-popup__img.active {
  transform: scale(1);
}

.button.popup {
  height: 48px;
  width: 48px;
  border-radius: 30px;
}

.subslideStyles {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}

.subsliderStyles {
  position: relative;
  height: 100%;
}

.dotsContainerStyles {
  display: flex;
  justify-content: center;
}

.dotStyle {
  margin: 0 3px;
  cursor: pointer;
  font-size: 20px;
}

.dotStyle:active {
  color: var(--accent);
}

.dotStyle--active {
  color: var(--accent);
}

.subslidesContainerStyles {
  display: flex;
  height: 100%;
  transition: transform ease-out 0.3s;
}

.subslidesContainerOverflowStyles {
  overflow: hidden;
  height: 100%;
}

@media (max-width: 1090px) {
  .slider__wrapper {
    margin-bottom: 78px;
  }

  .welcome__wrapper {
    padding: 70px 40px 50px 40px;
  }
  .welcome__title {
    max-width: 85%;
    font-size: 30px;
    padding: 0 3px;
  }
  .welcome__avatar {
    width: 350px;
  }
}
@media (max-width: 926px) {
  .header__nav-item:first-child {
    padding-left: 0px;
  }
  .slider__wrapper {
    height: 500px;
    margin-bottom: 75px;
  }

  .slider__picture {
    height: 500px;
  }

  .slider__container {
    left: 50px;
  }
  .slider__title {
    font-size: 28px;
  }

  .welcome__title {
    bottom: 92%;
    max-width: 87%;
    font-size: 25px;
    padding: 0 5px;
  }
  .welcome__avatar {
    width: 250px;
  }

  .welcome__container {
    column-gap: 20px;
    margin-bottom: 20px;
  }

  .welcome__wrapper {
    padding: 90px 30px 50px 30px;
  }

  .welcome__text {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 25px;
  }
  .welcome__signature--img {
    object-fit: fill;
  }

  .button {
    font-size: 16px;
  }
  .button__wrapper {
    margin-bottom: 80px;
  }

  .footer {
    height: 150px;
  }

  .footer__wrapper {
    row-gap: 5px;
  }
  .footer__logo {
    width: 80px;
    padding: 8px 0;
  }

  .footer__contacts {
    column-gap: 5px;
    padding-top: 15px;
  }

  .footer__contacts__item {
    max-width: 350px;
  }
  .breadcrumbs__nav {
    margin-top: 120px;
    margin-bottom: 0;
    padding: 20px 0;
  }

  .services__title-1 {
    font-size: 28px;
    margin-bottom: 60px;
  }
  
  .services__wrapper {
    column-gap: 20px;
  }
  
  .service {
    margin-bottom: 40px;
  }
  
  .service__img {
    margin-bottom: 20px;
    height: 250px;
  }
  
  .service__title-2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .service__text {
    font-size: 16px;
    margin-bottom: 20px;
  }
.subservices__wrapper {
  margin-bottom: 60px;
}
  .subservices__title-2 {
    font-size: 22px;
  }
  .subservices__text {
    font-size: 16px;
  }
  .subservices__img{
    height: 370px;
  }
  .subslider {
    height: 300px;
  }

  .pictures__title {
    font-size: 28px;
    margin-bottom: 60px;
  }
  .license-popup__img {
    margin-top: 100px;
    height: 75%;
  }

  .contacts__list {
    display: grid;
    grid-template-columns: 195px 600px;
    row-gap: 20px;
    align-self: flex-start;
    align-items: flex-start;
    font-size: 16px;
    letter-spacing: 0.4px;
    
  }
  .contacts__item .phone {
    letter-spacing: 1px;
  }
  .button__details {
    font-size: 16px;
  }
  .map__wrapper {
    margin-bottom: 30px;
  }
  
  .map {
    margin-bottom: 80px;
  }

  .pictures__wrapper {
    grid-template-columns: repeat(1, 100%);
    align-self:center;
    align-items: center;
  }
  
  .pictures {
    margin: auto;
  }
  
  .pictures__title {
    font-size: 20px;
  }
  
}
@media (max-width: 717px) {
  .slider__wrapper {
    height: 300px;
    margin-bottom: 75px;
  }

  .slider__picture {
    height: 300px;
  }

  .slider__container {
    left: 30px;
  }
  .slider__title {
    font-size: 20px;
  }
  .slider__left--arrow {
    right: 65px;
  }
  .slider__right--arrow {
    right: 10px;
  }
  .slider__button {
    font-size: 16px;
  }

  .welcome__wrapper {
    padding: 70px 40px 50px 40px;
  }
  .welcome__title {
    max-width: 85%;
    margin: auto;
    font-size: 22px;
  }
  .button__wrapper {
margin-bottom: 40px;
}


.breadcrumbs__nav {
  margin-top: 80px;
  font-size: 16px;
}

.services__title-1 {
  font-size: 22px;
  margin-bottom: 40px;
}

.service__title-2 {
  font-size: 20px;
}

.services__wrapper {
  column-gap: 20px;
}

.service {
  margin-right: 0;
}

.subservices__title-2 {
  font-size: 20px;
}

.subservices__text{
  line-height: 1.3em;
}
.subservices__img{
  height: 350px;
}
.subslider {
  height: 300px;
}

.contacts__list {
  display: block;
  letter-spacing: 0.5px; 
  margin-bottom: 30px;
}

.contacts__item-title {
  font-size: 18px;
}
.contacts__item {
  margin-bottom: 10px;
}
.contacts__item .phone {
  letter-spacing: 1px;
}
.details {
  margin-bottom: 30px;
}
.button__details {
  font-size: 16px;
}
.map__wrapper {
  margin-bottom: 30px;
}

.map {
  margin-bottom: 80px;
}

.subservices__wrapper {
  grid-template-columns: repeat(1, 100%);
  max-width: 425px;
  margin-left: auto;
  margin-right: auto;
}

.subservices__img {
  height: 300px;
  margin-bottom: 30px;
}

.subservices__img img {
  height: 100%;
}
.subservices__text li {
  list-style: none;
}
}
@media (max-width: 490px) {
  .slider__wrapper {
    height: 300px;
    margin-bottom: 60px;
  }

  .slider__picture {
    height: 300px;
  }

  .slider__container {
    left: 27px;
  }
  .slider__title {
    font-size: 18px;
  }
  .slider__left--arrow {
    right: 50px;
  }
  .slider__right--arrow {
    right: 10px;
  }
  .slider__button {
    width: 33px;
    font-size: 15px;
  }

  .welcome__wrapper {
    padding: 70px 20px 40px 20px;
  }
  .welcome__title {
    max-width: 85%;
    margin: auto;
    font-size: 22px;
  }
  .welcome__signature--img {
    height: 140px;
  }
  .welcome__signature--text {
    font-size: 16px;
  }

  .pictures {
    max-width: none;
    width: 100%
  }
  
  .button{
    height: 33px;
    padding: 5px 5px;
    font-size: 16px;
  }
  .button__wrapper {
margin-bottom: 40px;
}

.footer-mobile {
  height: 250px;
}
}

