@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500,700&display=swap");

body {
  font-family: 'Montserrat', sans-serif;
}

a{
    text-decoration: none;
}

a:hover{
    text-decoration: none;
}

.title_s{
  text-align: center;
  margin-top: 50px;
  text-decoration: underline;
  text-decoration-color: red;
  text-underline-offset: 15px;
  text-decoration-thickness: 4px;
  width: 100%;
  margin: 50px auto;
}

.title_s.mt{
  margin-top: 70px;
}

.title_s.mb{
  margin-bottom: 20px;
}

.title_s.white{
  color: white;
}

.fix{
  margin-top: 5px;
}


::-webkit-scrollbar {
    width: 0.5vw;
    height: 0.5vh;
}

::-webkit-scrollbar-track {
    background-color: #fff0;
    border-radius: 10px;
    margin-top: 3px;
    margin-bottom: 3px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #f71c52;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #f71c52;
}


/* header */
.nav-bar {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px 150px;
  background: #282d32;
  transition: 0.3s ease-in-out;
}

.nav-bar a {
  text-decoration: none;
}

.nav-bar .menu-mobile {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.nav-bar .menu-mobile .logo {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  gap: 10px;
}

.nav-bar .menu-mobile .logo img {
  max-width: 40px;
  height: auto;
}

.nav-bar .menu-mobile .logo h3 {
  color: white;
  font-weight: 900;
  font-size: 20px;
}

.nav-bar .links {
  display: flex;
  flex-direction: row;
  gap: 30px;
  transition: 0.3s ease-in-out;
  max-width: 100%;
}

.nav-bar .links .verticalLine {
  border-left: 3px solid #f71c52;
  border-radius: 5px;
}


.nav-bar .links .link {
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: 0.2s;
}

.nav-bar .links .link.active {
  color: white;
}

.nav-bar .links .account{
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

.nav-bar .links .account .linkacc{
  width: 30px;
  height: 30px;
  line-height: 27px;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.4);
  color: #fff;
  margin-right: 4px;
}

.nav-bar .links .account .account-name{
  color: white;
  font-style: normal;
}


.nav-bar .links .link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 3px;
  border-radius: 5px;
  background: #f71c52;
}

.nav-bar .links .link:not(.active):hover {
  color: white;
}

.nav-bar .menu-mobile .hamburger {
  color: white;
  font-size: 25px;
  cursor: pointer;
  transition: 0.5s;
  display: none;
}

.nav-bar .menu-mobile .hamburger:hover {
  opacity: 0.8;
}

.nav-bar.active {
  max-height: 1000px;
}

.nav-bar.active .links {
  opacity: 1;
  z-index: 2;
}

@media screen and (max-width: 1625px) {
  .nav-bar {
    padding: 20px 90px;
  }
}

@media screen and (max-width: 819px) {
  .nav-bar {
    padding: 20px 30px;
  }
}

@media screen and (max-width: 867px) {
  .nav-bar {
    flex-direction: column;
    gap: 30px;
    max-height: 90px;
  }

  .nav-bar .menu-mobile {
    width: 100%;
  }

  .nav-bar .menu-mobile .hamburger {
    display: flex;
  }

  .nav-bar .links .verticalLine {
    width: 50px;
    border-top: 3px solid #f71c52;
    border-radius: 5px;
  }

  .nav-bar .links {
    flex-direction: column;
    order: 2;
    width: 100%;
    opacity: 0;
    z-index: -1;
  }
}




header .promo {
  background: url("../images/header-bg.png") no-repeat center top;
  background-size: cover;
  height: 750px;
  border-radius: 0 0 50% 50% / 0 0 40px 40px;
}

@media (max-width: 992px) {
    header .promo {
    height: auto;
    padding: 50px 0;
    margin-bottom: 30px;
    }
}

header .promo h1 {
    color: #fff;
    font-size: 36px;
    margin: 0;
    text-shadow: 1px 0 1px #000,
    0 1px 1px #000,
    -1px 0 1px #000,
    0 -1px 1px #000;
}

header .promo p {
    font-size: 20px;
    color: #fff;
    margin: 20px 0;
    text-shadow: 1px 0 10px #000,
    0 1px 1px #000,
    -1px 0 1px #000,
    0 -1px 1px #000;
}

header .promo a {
    font-size: 18px;
    color: #fff;
    text-shadow: 1px 0 1px #000,
    0 1px 1px #000,
    -1px 0 1px #000,
    0 -1px 1px #000;
}


header .promo .btn-how {
  text-decoration: none;
  background: #fff0;
  display: inline-block;
  padding: 10px 30px;
  margin: 10px 20px;
  position: relative;
  overflow: hidden;
  border: 2px solid #f71c52;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  transition: .2s ease-in-out;
}

header .promo .btn-how:before {
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .5));
  height: 50px;
  width: 50px;
  position: absolute;
  top: -8px;
  left: -75px;
  transform: skewX(-45deg);
}

header .promo .btn-how:hover {
  background: #f71c52;
  color: #fff;
}

header .promo .btn-how:hover:before {
  left: 150px;
  transition: .5s ease-in-out;
}

/* about-us */

.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

.text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  line-height: 25px;
}

.responsive-container-block.bigContainer {
  padding-top: 10px;
  padding-right: 30px;
  padding-bottom: 10px;
  padding-left: 30px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mainImg {
  color: black;
  width: 30%;
  height: auto;
}

.text-blk.headingText {
  font-size: 25px;
  font-weight: 700;
  line-height: 34px;
  color: rgb(51, 51, 51);
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
}

.allText {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 40px;
  width: 40%;
  margin: 0 0 0 0;
}

.text-blk.subHeadingText {
  color: rgb(102, 102, 102);
  font-size: 25px;
  line-height: 34px;
  font-weight: 700;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
}

.text-blk.description {
  font-size: 25px;
  line-height: 34px;
  color: rgb(102, 102, 102);
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
}


.responsive-container-block.Container {
  margin-top: 80px;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
  justify-content: center;
  align-items: center;
  max-width: 1320px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}

.responsive-container-block.Container.bottomContainer {
  margin-top: 100px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
  flex-direction: row-reverse;
  margin: 100px auto 50px auto;
}

.allText.aboveText {
  margin: 0 0 0 40px;
}

.allText.bottomText {
  margin: 0 40px 0 0;
}

@media (max-width: 1024px) {
  .responsive-container-block.Container {
    max-width: 850px;
  }

  .mainImg {
    width: 55%;
    height: auto;
  }

  .text-blk.description {
    font-size: 20px;
  }

  .allText {
    width: 40%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 20px;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }

  .text-blk.subHeadingText {
    font-size: 22px;
  }

  .responsive-container-block.Container.bottomContainer {
    margin: 80px auto 50px auto;
  }

  .responsive-container-block.Container {
    max-width: 830px;
  }

  .allText.aboveText {
    margin: 30px 0 0 40px;
  }

  .allText.bottomText {
    margin: 30px 40px 0 0;
  }
}

@media (max-width: 768px) {
  .mainImg {
    width: 90%;
  }

  .allText {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .responsive-container-block.Container {
    flex-direction: column;
    height: auto;
  }

  .text-blk.headingText {
    text-align: center;
  }

  .text-blk.subHeadingText {
    text-align: center;
    font-size: 25px;
  }

  .text-blk.description {
    text-align: center;
    font-size: 25px;
  }

  .allText {
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .allText.aboveText {
    margin: 40px 0 0 0;
  }

  .responsive-container-block.Container {
    margin: 80px auto 50px auto;
  }

  .responsive-container-block.Container.bottomContainer {
    margin: 50px auto 50px auto;
  }

  .allText.bottomText {
    margin: 40px 0 0 0;
  }
}

@media (max-width: 500px) {
  .responsive-container-block.Container {
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
    width: 100%;
    max-width: 100%;
  }

  .mainImg {
    width: 100%;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 25px;
    padding-bottom: 10px;
    padding-left: 25px;
  }

  .text-blk.subHeadingText {
    font-size: 25px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .text-blk.description {
    font-size: 25px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .allText {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    width: 100%;
  }
}


/* howto */
.wrapper{
  max-width: 1080px;
  margin: 50px auto;
  padding: 0 20px;
  position: relative;
}
.wrapper .center-line{
  position: absolute;
  height: 100%;
  width: 4px;
  background: #f71c52;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
}
.wrapper .row{
  display: flex;
}
.wrapper .row-1{
  justify-content: flex-start;
}
.wrapper .row-2{
  justify-content: flex-end;
}
.wrapper .row section{
  background: #282d32;
  border-radius: 5px;
  width: calc(50% - 40px);
  padding: 20px;
  position: relative;
}
.wrapper .row section::before{
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  background: #282d32;
  top: 28px;
  z-index: -1;
  transform: rotate(45deg);
}
.row-1 section::before{
  right: -7px;
}
.row-2 section::before{
  left: -7px;
}
.row section .icon,
.center-line .scroll-icon{
  position: absolute;
  background: #eee;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #f71c52;
  font-size: 25px;
  box-shadow: 0 0 0 4px #f71c52, inset 0 2px 0 rgba(0,0,0,0.08), 0 3px 0 4px rgba(0,0,0,0.05);
}
.center-line .scroll-icon{
  bottom: 0px;
  left: 50%;
  font-size: 25px;
  transform: translateX(-50%);
}
.row-1 section .icon{
  top: 15px;
  right: -60px;
}
.row-2 section .icon{
  top: 15px;
  left: -60px;
}
.row section .details,
.row section .bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.row section .details .title{
    color: white;
    font-size: 22px;
    font-weight: 600;
}
.row section p{
    margin: 10px 0 17px 0;
    color: white;
}

.row section .bottom a{
  color: white;
}

.row section .bottom a:hover{
  text-decoration: none;
  color: white;
}

@media (max-width: 992px) {
    .row section .bottom a:hover {
        color: black;
    }
}

@media(max-width: 790px){
  .wrapper .center-line{
    left: 40px;
  }
  .wrapper .row{
    margin: 30px 0 3px 60px;
  }
  .wrapper .row section{
    width: 100%;
  }
  .row-1 section::before{
    left: -7px;
  }
  .row-1 section .icon{
    left: -60px;
  }
}
@media(max-width: 440px){
  .wrapper .center-line,
  .row section::before,
  .row section .icon{
    display: none;
  }
  .wrapper .row{
    margin: 10px 0;
  }
}

.wrapper .ip-copied{
  display: none;
}

.wrapper .ip-copied.active{
  display: flex;
  color: green;
}

.wrapper .ip-copied.error{
  color: red;
}

/* login  donate */
.donate_in{
    margin-top: 60px;
}

.error-msg{
   margin: 10px 0;
   display: block;
   color: red;
   font-size: 20px;
   padding: 10px;
}


/* btn-designe */
.btn {
  text-decoration: none;
  background: #fff0;
  display: inline-block;
  padding: 10px 30px;
  margin: 10px 20px;
  position: relative;
  overflow: hidden;
  border: 2px solid #f71c52;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  transition: .2s ease-in-out;
}


.btn:before {
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .5));
  height: 50px;
  width: 50px;
  position: absolute;
  top: -8px;
  left: -75px;
  transform: skewX(-45deg);
}

.btn:hover {
  background: #f71c52;
  color: #fff;
}

@media (max-width: 991px) {
    .btn {
        border: 2px solid #fff;
    }
    .btn:hover {
        background: #fff;
        color: #000;
    }
}

.btn:hover:before {
  left: 150px;
  transition: .5s ease-in-out;
}

.btnsbl{
  text-decoration: none;
  background: #fff0;
  display: inline-block;
  padding: 10px 30px;
  margin: 10px 20px;
  position: relative;
  overflow: hidden;
  border: 2px solid #282d32;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  color: #000;
  transition: .2s ease-in-out;
}

.btnsbl:before {
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .5));
  height: 50px;
  width: 50px;
  position: absolute;
  top: -8px;
  left: -75px;
  transform: skewX(-45deg);
}

.btnsbl:hover {
  background: #282d32;
  color: #fff;
}

.btnsbl:hover:before {
  left: 150px;
  transition: .5s ease-in-out;
}



/* user-profile */
.emp-profile{
    padding: 3%;
    margin-top: 3%;
    margin-bottom: 3%;
    border-radius: 0.5rem;
    background: #fff;
}

.emp-profile .card {
    border: 1px solid black;
    border-radius: 15px;
    color: white;
    margin-bottom: 10px;
}

.emp-profile .card-new{
    width: 100%;
}

.emp-profile .card .card-header .profile_img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 10px auto;
    border: 10px solid #ccc;
    border-radius: 50%;
}

.emp-profile .card h3 {
  font-size: 20px;
}

.emp-profile .card p {
    font-size: 16px;
    color: white;
}

.cars-table{
    border: 1px solid black;
    border-radius: 15px;
    color: black;
    margin-bottom: 10px;
}

.profile-head .nav-tabs{
    margin-bottom:5%;
}
.profile-head .nav-tabs .nav-link{
    font-weight:600;
    border: none;
    color: black;
}
.profile-head .nav-tabs .nav-link.active{
    border: none;
    border-bottom:2px solid red;
}

.profile-head .lnks{
  margin-left: 5px;
}


.profile-tab label{
    font-weight: 600;
}
.profile-tab p{
    font-weight: 600;
}






/* footer */

footer {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  display: block;
}

.footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.footer-dark {
  padding: 50px 0;
  color: #f0f9ff;
  background-color: #282d32;
}

.footer-dark h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 16px;
}

.footer-dark ul {
  padding: 0;
  list-style: none;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 0;
}

.footer-dark ul a {
  color: inherit;
  text-decoration: none;
  opacity: 0.6;
}

.footer-dark ul a:hover {
  opacity: 0.8;
}

@media (max-width:767px) {
  .footer-dark .item:not(.social) {
    text-align: center;
    padding-bottom: 20px;
  }
}

.footer-dark .item.text {
  margin-bottom: 36px;
}

@media (max-width:767px) {
  .footer-dark .item.text {
    margin-bottom: 0;
  }
}

.footer-dark .item.text p {
  opacity: 0.6;
  margin-bottom: 0;
}

.footer-dark .item.social {
  text-align: center;
}

@media (max-width:991px) {
  .footer-dark .item.social {
    text-align: center;
    margin-top: 20px;
  }
}

.footer-dark .item.social > a {
  font-size: 25px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.4);
  margin: 0 8px;
  color: #fff;
  opacity: 0.75;
}

.footer-dark .item.social > a:hover {
  opacity: 0.9;
}

.footer-dark .copyright {
  text-align: center;
  padding-top: 24px;
  opacity: 0.3;
  font-size: 13px;
  margin-bottom: 0;
}


/* gallery */
.gallery{
  margin-top: 20px;
  min-height: 100vh;
  background:#fff;
  padding-bottom: 100px;
}

.gallery .controls{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding:20px 0;
  list-style: none;
}

.gallery .controls .buttons {
  text-decoration: none;
  display: inline-block;
  padding: 10px 30px;
  margin: 10px 20px;
  position: relative;
  overflow: hidden;
  border: 2px solid #f71c52;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  color: #000;
  transition: .2s ease-in-out;
}

.gallery .controls .buttons.active{
  background: #f71c52;
  color: #fff;
}

.gallery .controls .buttons:before {
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .5));
  height: 50px;
  width: 50px;
  position: absolute;
  top: -8px;
  left: -75px;
  transform: skewX(-45deg);
}

.gallery .controls .buttons:hover {
  background: #f71c52;
  color: #fff;
}

.gallery .controls .buttons:hover:before {
  left: 150px;
  transition: .5s ease-in-out;
}


.gallery .image-container{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery .image-container .image{
  height:250px;
  width: 350px;
  overflow: hidden;
  border:15px solid #fff;
  box-shadow: 0 3px 5px rgba(0,0,0,.3);
  margin: 20px;
}

.gallery .image-container .image.hide{
  display: none;
}


.gallery .image-container .image img{
  height: 100%;
  width:100%;
  object-fit: cover;
}

.gallery .image-container .image:hover img{
  transform: scale(1.4);
}


.lightbox {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  position: fixed;
  visibility: hidden;
  background: rgba(0,0,0,0.65);
}
.lightbox.show {
  visibility: visible;
}
.lightbox .wrapper_lightbox {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 100%;
  padding: 20px;
  max-width: 850px;
  background: #fff;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.9);
  transition: transform 0.1s ease;
}
.lightbox.show .wrapper_lightbox {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.wrapper_lightbox :where(header, .details) {
  display: flex;
  align-items: center;
}
.wrapper_lightbox header {
  justify-content: space-between;
}
header .details i {
  font-size: 1.7rem;
}
header .details span {
  font-size: 1.2rem;
  margin-left: 10px;
}
header .butt i {
  height: 40px;
  width: 40px;
  cursor: pointer;
  display: inline-block;
  color: #000;
  margin-left: 10px;
  font-size: 1.25rem;
  line-height: 40px;
  text-align: center;
  border-radius: 4px;
  transition: 0.2s ease;
}
header .butt i:hover {
  color: #f71c52;
}
.wrapper_lightbox .preview-img {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
.preview-img .img {
  max-height: 65vh;
}
.preview-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* Responsive media query code */
@media screen and (max-width: 688px) {
  .lightbox .wrapper_lightbox {
    padding: 12px;
    max-width: calc(100% - 26px);
  }
  .wrapper_lightbox .preview-img {
    margin-top: 15px;
  }
  .gallery .images {
    max-width: 100%;
    padding: 0 13px;
    margin-top: 20px;
  }
}

/* Модульное окно */

.popup__bg, .popup__bg_2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: 0.5s all;
}

.popup__bg.active, .popup__bg_2.active {
    opacity: 1;
    pointer-events: all;
    transition: 0.5s all;
}



.popup, .popup_2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: #fff;
    width: 400px;
    padding: 25px;
    transition: 0.5s all;
}

.popup.active, .popup_2.active {
    transform: translate(-50%, -50%) scale(1);
    transition: 0.5s all;
}

.popup label, .popup_2 label {
    width: 100%;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column-reverse;
}

.popup img, .popup_2 img{
  margin: 0 auto;
  width: 80%;
  height: 80%;
}

.popup .label__text, .popup_2 .label__text {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    color: #cfd0d3;
    margin-bottom: 5px;
}

.popup_2 .full-stars {
    text-align: center;
}

.popup_2 .full-stars .rating-group {
    display: inline-flex;
}
.popup_2 .full-stars input {
    position: absolute;
    left: -9999px;
}
.popup_2 .full-stars label {
    margin: 0;
    cursor: pointer;
}
.popup_2 .full-stars label svg {
    margin: 2px;
    height: 40px;
    width: 40px;
    fill: #f71c52;
    transition: fill 0.3s;
}
.popup_2 .full-stars input:checked ~ label svg {
    fill: #f76086;
}
.popup_2 .full-stars .rating-group:hover label svg {
    fill: #f71c52;
}
.popup_2 .full-stars .rating-group input:hover ~ label svg{
    fill: #f76086;
}


.popup .label__text a, .popup_2 .label__text a {
  color: #cfd0d3;
}

.popup .label__text a:hover, .popup_2 .label__text a:hover {
  color: #000;
}

.popup input, .popup_2 input {
    height: 45px;
    font-size: 18px;
    border: none;
    outline: none;
    border-bottom: 1px solid #cfd0d3;
}

.popup input:focus, .popup_2 input:focus {
    border-bottom: 1px solid #2982ff;
}

.popup input:focus + .label__text, .popup_2 input:focus + .label__text {
    color: #2982ff;
}

.popup textarea, .popup_2 textarea {
    resize: none;
    width: 100%;
    height: 150px;
    border: none;
    outline: none;
    border-bottom: 1px solid #cfd0d3;
    font-size: 18px;
    padding-top: 5px;
}

.popup textarea:focus, .popup_2 textarea:focus {
    border-bottom: 1px solid #2982ff;
}

.popup textarea:focus + .label__text, .popup_2 textarea:focus + .label__text {
    color: #2982ff;
}

.popup button, .popup_2 button {
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    border: 2px solid #f71c52;
    background: #f71c52;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.5s all;
}

.popup button:hover, .popup_2 button:hover {
    background: #fff;
    color:#000;
    transition: 0.5s all;
}

/* reviews */
.koguvcavis-varazdel {
  padding: 38px 0;
  background: #fff;
  color: #2f2f2f;
  text-align: center;
}

.sestim-donials{
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  padding: 0 20px;
}

.sectionesag {
  width: 195px;
  height: 3px;
  background: #f71c52;
  margin: 23px auto;
}

.sagestim-lonials{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.vemotau-vokusipol{
  flex: 33.33%;
  max-width: 33.33%;
  box-sizing: border-box;
  padding: 15px;
}
.testimonial {
  background: #ccc;
  border-radius: 10px;
  padding: 28px;
}
.testimonial img{
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.gecedanam{
  font-size: 20px;
  text-transform: uppercase;
  margin: 20px 0;
}

.gecedanam a{
  color: black;
}
.apogered-gselected{
  color: #ff1a1a;
  margin-bottom: 20px;
}

.apogered-gselected i{
  color: #ff1a1a;
}

@media screen and (max-width:960px) {
.vemotau-vokusipol{
  flex: 100%;
  max-width: 80%;
}
}

@media screen and (max-width:600px) {
  .vemotau-vokusipol{
    flex: 100%;
    max-width: 100%;
  }
}


/* mail form */

.contact1 {
  width: 100%;
  min-height: 100%;
  padding: 15px;

  background: #eee;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.container-contact1 {
  width: 1163px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;

  padding: 90px 130px 88px 148px;
}

.contact1-pic {
  width: 296px;
}

.contact1-pic img {
  max-width: 100%;
}

.mail {
  padding: 7rem 0;
}

.heading {
  font-size: 2.5rem;
  font-weight: 900;
}

.form-control {
    border: none;
    background: #f3f3f3;
    resize: none;
}

.form-control:active, .form-control:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #000;
    background: #f3f3f3;
}

.col-form-label {
  color: #000;
}

.btn, .form-control, .custom-select {
  height: 50px;
}

.custom-select:active, .custom-select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #000;
}


.box {
  padding: 40px;
  background: #fff;
  -webkit-box-shadow: -30px 30px 0px 0 rgba(0, 0, 0, 0.08);
  box-shadow: -30px 30px 0px 0 rgba(0, 0, 0, 0.08); }
  .box h3 {
    font-size: 14px;
    margin-bottom: 30px;
    text-align: center;
}

#message {
  resize: none;
}

/* error */

.error-page{
    background: rgb(40,40,40);
    overflow: hidden;
}

.error p {
    font-family: "Bevan", cursive;
    font-size: 130px;
    margin: 10vh 0 0;
    text-align: center;
    letter-spacing: 5px;
    background-color: black;
    color: transparent;
    text-shadow: 2px 2px 3px rgba(255, 255, 255, 0.1);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
}

.error span {
    font-size: 1.2em;
}

.error code {
    color: #bdbdbd;
    text-align: center;
    display: block;
    font-size: 16px;
    margin: 0 30px 25px;
}

.error span {
    color: #f0c674;
}

.error i {
    color: #b5bd68;
}

.error em {
    color: #b294bb;
    font-style: unset;
}

.error b {
    color: #81a2be;
    font-weight: 500;
}


.error a {
    color: #fff;
}

@media screen and (max-width: 880px) {
    .error p {
        font-size: 14vw;
    }
}


/* faq */

.faq-section {
    background: #fdfdfd;
    min-height: 100vh;
    padding: 10vh 0 10vh;
}
.faq-title h2 {
  position: relative;
  margin-bottom: 45px;
  display: inline-block;
  font-weight: 600;
  line-height: 1;
}
.faq-title h2::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 60px;
    height: 2px;
    background: #E91E63;
    bottom: -25px;
    margin-left: -30px;
}
.faq-title p {
  padding: 0 190px;
  margin-bottom: 10px;
}

.faq {
  background: #FFFFFF;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}

.faq .card {
  border: none;
  background: none;
  border-bottom: 1px solid #CEE1F8;
}

.faq .card .card-header {
  padding: 0px;
  border: none;
  background: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.faq .card .card-header:hover {
    background: rgba(233, 30, 99, 0.1);
    padding-left: 10px;
}
.faq .card .card-header .faq-title {
  width: 100%;
  text-align: left;
  padding: 0px;
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  color: #3B566E;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  padding-top: 20px;
  padding-bottom: 20px;
}

.faq .card .card-header .faq-title .badge {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 14px;
  float: left;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  text-align: center;
  background: #E91E63;
  color: #fff;
  font-size: 12px;
  margin-right: 20px;
}

.faq .card .card-body {
  padding: 30px;
  padding-left: 35px;
  padding-bottom: 16px;
  font-weight: 400;
  font-size: 16px;
  color: #6F8BA4;
  line-height: 28px;
  letter-spacing: 1px;
  border-top: 1px solid #F3F8FF;
}

.faq .card .card-body p {
  margin-bottom: 14px;
}

@media (max-width: 991px) {
  .faq {
    margin-bottom: 30px;
  }
  .faq .card .card-header .faq-title {
    line-height: 26px;
    margin-top: 10px;
  }
}



/* achive */
.achive {
    padding: 50px 0 0;
    background: #fff;
    position: relative;
    display: block;
}

.achive-form{
  min-height: 10vh;
}

.achive-controls{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding:20px 0;
  list-style: none;
}

.achive-form .achive-controls .buttons {
  text-decoration: none;
  display: inline-block;
  padding: 10px 30px;
  margin: 10px 20px;
  position: relative;
  overflow: hidden;
  border: 2px solid #f71c52;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  color: #000;
  background: #fff;
  transition: .2s ease-in-out;
}

.achive-form .achive-controls .buttons.active{
  background: #f71c52;
  color: #fff;
}

.achive-form .achive-controls .buttons:before {
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .5));
  height: 50px;
  width: 50px;
  position: absolute;
  top: -8px;
  left: -75px;
  transform: skewX(-45deg);
}

.achive-form .achive-controls .buttons:hover {
  background: #f71c52;
  color: #fff;
}

.achive-form .achive-controls .buttons:hover:before {
  left: 150px;
  transition: .5s ease-in-out;
}

.achive .achive-section{
    text-align: center;
}

.achive .title h2{
    font-size: 35px;
    text-transform: uppercase;
    line-height: 60px;
    font-weight: bold;
    color: #282d32;
}

.achive-content .achiveations{
  color: #2e3236;
}

.achive-content .inform-url{
  color: #0037ff;
}


.achive-box, .achive-content {
    -webkit-transition: all 0.4s ease 0s;
-moz-transition: all 0.4s ease 0s;
-ms-transition: all 0.4s ease 0s;
-o-transition: all 0.4s ease 0s;
transition: all 0.4s ease 0s;
}

.achive-box:hover .achive-content {
    transform: scale(0.9);
    background: #f71c52;
    color: #fff;
}

.achive-content i {
    font-size: 50px;
}

.achive-content-color-text {
    color: #0037ff;
}

.achive-box:hover .achive-content i, .achive-box:hover .achive-content p, .achive-box:hover .achive-content h4 {
    color: #fff;
}


