/*--------------------for-all------------------------------*/

html {
  font-family: "Raleway-Light", "Arial", "sans-serif";
  color: #333;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
  padding-top: 100px;
  padding-bottom: 120px;
}

h1 {
  font-size: 80px;
  font-family: "Raleway-Black", "Arial", "sans-serif";
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

h2 {
  font-size: 48px;
  font-family: "Raleway-Black", "Arial", "sans-serif";
  margin-top: 0;
  margin-bottom: 0;
}

h3 {
  font-size: 19px;
  font-family: "Raleway-Black", "Arial", "sans-serif";
  margin-top: 0;
  margin-bottom: 0;
}

p {
  font-size: 16px;
  line-height: 25px;
}

.description-title {
  font-size: 19px;
  margin-top: 0;
  margin-bottom: 40px;
  margin-top: 5px;
}

.link {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-family: "Raleway-Bold", "Arial", "sans-serif";
  position: relative;
  display: inline-block;
  z-index: 2;
}

.link-black {
  color: #333;
}

.link-black:after {
  content: "";
  display: block;
  height: 5px;
  width: 100%;
  background: #333;
  opacity: 0.2;
  position: absolute;
  bottom: 0;
  left: -1px;
  z-index: 1;
  transition: all 0.4s;
}

.link-black:hover::after {
  height: 15px;
}

.link-white {
  color: #fff;
}

.link-white:after {
  content: "";
  display: block;
  height: 5px;
  width: 100%;
  background: #fff;
  opacity: 0.3;
  position: absolute;
  bottom: 0;
  left: -1px;
  z-index: 1;
  transition: all 0.4s;
}

.link-white:hover::after {
  height: 15px;
}
.globe img {
  align-items: center;
  width: 561px;
  height: 561px;
  background-size: contain;
  display: block;
  position: absolute;
  top: 90px;
  margin: auto;
  /* right: -50px; */
}
.world-content {
  width: 48%;
}
.world-content-projects {
  cursor: default;
  width: 382px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 52px;
  margin-top: 50px;
}
#globe-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -150px;
}
#globe-gl {
  width: 500px;
  height: 500px;
}
.btn {
  display: flex;
  justify-content: center;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  font-family: "Raleway-Bold", "Arial", "sans-serif";
  padding: 20px 40px;
  box-sizing: border-box;
}

.btn-black {
  border: solid #38383c 1px;
  color: #fff;
  position: relative;
  transition: all 0.4s;
  box-sizing: border-box;
  /* display: block; */
}

.btn-white {
  border: solid #c8c8d0 1px;
  color: #333;
  position: relative;
  transition: all 0.4s;
  box-sizing: border-box;
}

.remodal form {
  display: flex;
  flex-flow: column;
  align-items: center;
}

.remodal input {
  height: 60px;
  width: 280px;
  box-sizing: border-box;
  padding-left: 20px;
  margin-bottom: 20px;
}

.remodal h2 {
  font-size: 36px;
}

.title-input {
  text-align: left;
}

.remodal .social-one {
  height: 50px;
  width: 50px;
}

.remodal submit {
  width: 280px;
  height: 60px;
  cursor: pointer;
}

.hero-letters-black {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  position: absolute;
  z-index: 1;
  height: 100%;
  top: 15%;
  margin-left: -190px;
}

.hero-letters-one-black {
  width: 15%;
}

.hero-letters-one-black img {
  width: 100%;
}

.remodal-politic {
  text-align: left;
}

.remodal-politic h3 {
  font-size: 24px;
  margin-top: 30px;
}

.remodal-politic p {
  margin-bottom: 10px;
}

.remodal-politic li {
  margin-bottom: 5px;
}

.header-page .container {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 40px;
}

.header-page {
  background: #222226;
  color: #fff;
  width: 100%;
  border-bottom: 1px solid #2d2d32;
}

/*--------------------preloader------------------------------*/

.preloader {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  visibility: visible;
  opacity: 1;
  z-index: 99999;
  background: #fff;
}

.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.loader p {
  font-size: 36px;
  color: #222226;
  font-family: "Raleway-Black", "Arial", "sans-serif";
}

.loader-animation:after {
  content: "";
  position: absolute;
  width: 110%;
  height: 110%;
  background-color: rgba(255, 255, 255, 0.8);
  top: -10px;
  right: -5px;
  animation: loader-animation 2s forwards;
}

@keyframes loader-animation {
  0% {
    width: 110%;
    opacity: 1;
  }
  99% {
    width: 0%;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.preloader-done {
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s;
}

.preloader-animation:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  background: #222226;
  top: 0;
  left: 0;
  animation: preloader-animation 0.5s 2s ease-in forwards;
}

@keyframes preloader-animation {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}

/*--------------------popup------------------------------*/

.popup {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #222226;
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
}

.body-overflow {
  overflow: hidden;
}

.popup-active {
  z-index: 9997;
  display: block;
  opacity: 1;
  visibility: visible;
  overflow: auto;
}

.popup .container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0;
}

.popup-menu ul {
  padding-left: 0;
  list-style: none;
  text-align: center;
  margin-bottom: 70px;
}

.popup-menu ul a {
  font-size: 15px;
}

.popup-menu li {
  margin-bottom: 40px;
}

.popup-menu-text-grey {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #cacaca;
  margin-top: 25px;
  margin-bottom: 25px;
}

.popup-menu .social-one {
  height: 50px;
  width: 50px;
}

/*---------------------messenger-fixed------------------------------*/

.messenger-fixed {
  position: fixed;
  height: 80px;
  width: 80px;
  z-index: 8000;
  right: 50px;
  bottom: 120px;
}

.messenger-fixed-mail {
  position: fixed;
  height: 80px;
  width: 80px;
  background: #131315;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  border: 1px solid #131315;
}

.messenger-fixed-mail svg {
  fill: #fff;
  transition: all 0.4s;
}

.messenger-fixed-mail:hover svg {
  fill: #131315;
}

.messenger-fixed-hover {
  background: #131315;
  border: 1px solid #131315;
}

.messenger-fixed-hover:hover {
  background: #fff;
  border: 1px solid #dfdfe6;
}

.messenger-fixed-close {
  position: relative;
  visibility: visible;
  opacity: 1;
  transition: all 0.4s;
}

.messenger-fixed-close:hover {
  background: #fff;
  border: 1px solid #dfdfe6;
}

.messenger-fixed-close:hover::before {
  background: #131315;
}

.messenger-fixed-close:hover::after {
  background: #131315;
}

.messenger-fixed-close:before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 40px;
  left: 20px;
  transform: rotate(45deg);
  transition: all 0.4s;
}

.messenger-fixed-close:after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 40px;
  left: 20px;
  right: 0;
  transform: rotate(135deg);
  transition: all 0.4s;
}

.messenger-fixed-close svg {
  opacity: 0;
  transition: all 0.4s;
  fill: #fff;
}

.messenger-fixed-icon {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 10px;
  left: 10px;
  z-index: 9;
}

.messenger-fixed-icon .social-one {
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 0;
  height: 60px;
  width: 60px;
  border-radius: 100px;
  z-index: 5;
  border: solid #131315 1px;
}

.skype-fixed {
  top: -100px !important;
  transition: all 2s;
}

.viber-fixed {
  top: -50px !important;
  left: -90px !important;
}

.telegram-fixed {
  top: 50px !important;
  left: -90px !important;
}

.facebook-fixed {
  top: 100px !important;
  left: 0 !important;
}

/*--------------------home------------------------------*/

.hero {
  background: #222226;
  color: #fff;
}

.hero .container {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  align-content: space-between;
  height: 100vh;
  min-height: 550px;
  box-sizing: content-box;
  padding-top: 0;
  padding-bottom: 0;
}

.hero-block {
  width: 100%;
  position: relative;
}

.hero-h1 {
  position: relative;
}

.hero-header {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
}

.hero-content-text {
  position: relative;
  z-index: 2;
  margin-left: 190px;
}

.logo-text {
  font-size: 21px;
  margin: 0;
  font-family: "Raleway-Black", "Arial", "sans-serif";
  color: #fff;
  text-decoration: none;
}

.menu {
  font-size: 0;
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  z-index: 9998;
  transition: all 0.4s;
  right: 0;
}

.menu-close {
  font-size: 0;
  position: fixed;
  right: 50%;
  margin-right: -10px;
}

.hero-header {
  height: 80px;
}

.hero-footer {
  height: 80px;
}

.description-h1 {
  font-size: 21px;
  font-weight: 300;
  color: #afafaf;
  position: relative;
  margin-top: 0;
  z-index: 2;
}

.egg-all {
  display: flex;
  flex-flow: row wrap;
  margin-top: 40px;
}

.egg-one {
  margin-right: 15%;
}

.egg-title {
  font-size: 48px;
  font-family: "Proxima-Bold", "Arial", "sans-serif";
  margin-bottom: 10px;
}

.egg-description {
  color: #afafaf;
  font-size: 17px;
}

.hero-social .link {
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
  margin-right: 20px;
}

.hero-social .link:last-child {
  margin-right: 0;
}

.hero-footer {
  display: flex;
  justify-content: space-between;
  height: 50px;
}

.hero-scroll {
  position: relative;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  margin-right: -15px;
}

.hero-scroll p {
  font-size: 0;
}

.hero-scroll p:after {
  content: " ";
  display: block;
  height: 30px;
  width: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  right: 15px;
  animation: hero-scroll 2.2s infinite ease-in-out;
}

.do-wrapper {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
}

.do-content {
  width: 30%;
  box-sizing: border-box;
  box-shadow: 25px 25px 50px rgba(24, 24, 27, 0.05);
  padding: 30px;
}

.do-wrapper p {
  line-height: 15px;
}

.do-content h3 {
  margin-top: 10px;
}

.do-content img {
  width: 50px;
  margin-bottom: 5px;
}

.works {
  background: #222226;
  min-height: 1000px;
  color: #fff;
}

.works-wrapper {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  padding-bottom: 100px;
}

.works-content {
  width: 48%;
  position: relative;
  margin-bottom: 50px;
  color: #fff;
  text-decoration: none;
}

.works-content:hover .work-img img {
  transform: scale(1.1);
  transition: all 2.4s;
}

.work-text {
  position: relative;
}

.work-img {
  position: relative;
  z-index: 3;
  overflow: hidden;
}

.work-img img {
  width: 100%;
  transition: all 2.4s;
}

.works-tag {
  margin-top: 15px;
  margin-bottom: 0px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 12px;
  font-family: "Raleway-Regular", "Arial", "sans-serif";
  color: #676767;
  display: flex;
  justify-content: space-between;
}

.works-tag span{
  letter-spacing: 0px;
  text-transform: lowercase;
  font-size: 13px;
  opacity: 1;
}

.work-text h3 {
  margin-top: 0;
  font-size: 24px;
}

.works-description {
  margin-top: 5px;
}

.remodal-portfolio img {
  width: 100%;
}

.calculate {
  background: #131315;
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 50px;
  text-align: center;
}

.testimonial-wrapper {
  display: flex;
  justify-content: space-around;
  flex-flow: row wrap;
  position: relative;
}
.testimonial-wrapper-content:after {
  display: block;
  content: "";
  width: 2px;
  height: 100%;
  background: #f3f3f3;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.testimonial-wrapper-content:before {
  display: block;
  content: "";
  width: 4px;
  height: 80px;
  background: #333;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.testimonial-wrapper-content:first-child {
  display: flex;
  justify-content: space-around;
  flex-flow: column;
  margin-left: 30px;
}

.testimonial-wrapper-content a {
  text-decoration: none;
  color: #333;
  box-sizing: border-box;
  padding: 20px;
  min-width: 300px;
}

.testimonial-wrapper-content a:hover {
  box-shadow: 0px 0px 50px rgba(24, 24, 27, 0.05);
}

.testimonial-one {
  display: flex;
}

.testimonial-one-block:first-child {
  margin-right: 20px;
}

.testimonial-name {
  font-family: "Raleway-Bold", "Arial", "sans-serif";
  margin-bottom: 0;
  margin-top: 0;
}

.testimonial-about {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: #878790;
}

.world {
  background: #222226;
  color: #fff;
}

.world-wrapper {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
}

.world-content {
  width: 48%;
}

.world-content a{
  margin-top: 20px;
}

.process-wrapper {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
}
.testimonial-wrapper{
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
}
.process-wrapper .slick-slide {
  min-height: 515px;
}

.process-wrapper .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding-bottom: 50px;
  padding-right: 50px;
}
.testimonial-wrapper .slick-slide {
  min-height: 515px;
}

.testimonial-wrapper .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding-bottom: 50px;
  padding-right: 50px;
}
.process-content {
  max-width: 30%;
  box-sizing: border-box;
  padding: 30px;
  box-shadow: 25px 25px 50px rgba(24, 24, 27, 0.05);
  margin-right: 30px;
  outline: none;
}

.process-content:last-child {
  margin-right: 0;
}

.process-content-img img {
  width: 50px;
}

.process-time {
  font-size: 15px;
  font-family: "Raleway-Bold", "Arial", "sans-serif";
  margin-bottom: 0;
}

.process-content h3 {
  margin-top: 20px;
}

/*
.process-wrapper:after {
    display: block;
    content: "";
    width: 100%;
    height: 2px;
    background: #F3F3F3;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.process-wrapper:before {
    display: block;
    content: "";
    width: 80px;
    height: 4px;
    background: #333;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
}*/

.process-wrapper .slick-dots li button:before {
  content: "";
  background: #333;
  height: 7px;
  width: 7px;
  border-radius: 100%;
  transition: all 0.4s;
}

.process-wrapper .slick-dots li.slick-active button:before {
  opacity: 1;
  width: 20px;
  border-radius: 100px;
  left: -10px;
}
.testimonial-wrapper .slick-dots li button:before {
  content: "";
  background: #333;
  height: 7px;
  width: 7px;
  border-radius: 100%;
  transition: all 0.4s;
}

.testimonial-wrapper .slick-dots li.slick-active button:before {
  opacity: 1;
  width: 20px;
  border-radius: 100px;
  left: -10px;
}
.about {
  background: #222226;
  color: #fff;
}

.about-content {
  max-width: 600px;
  background: #131315;
  box-shadow: 25px 25px 50px #18181b;
  box-sizing: border-box;
  padding: 40px;
  z-index: 2;
  position: relative;
}

.about .my-name {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Raleway-Bold", "Arial", "sans-serif";
  margin-bottom: 30px;
  margin-top: 6px;
}

.about-img {
  position: absolute;
  top: 50px;
  right: 0;
  z-index: 1;
}

.about-img img {
  width: 100%;
}

.link-instagram {
  color: #fff;
  font-family: "Raleway-Bold", "Arial", "sans-serif";
  text-decoration: none;
  position: relative;
}

.link-instagram:after {
  content: "";
  display: block;
  height: 5px;
  width: 100%;
  background: #fff;
  opacity: 0.3;
  position: absolute;
  bottom: 0;
  left: -1px;
  z-index: 1;
  transition: all 0.4s;
}

.link-instagram:hover::after {
  height: 15px;
}

footer {
  background: #222226;
  position: relative;
  z-index: 5;
}

footer .container {
  padding-bottom: 0;
  padding-top: 0;
}

.footer-copyright {
  border-top: 1px solid #2d2d32;
}

.footer-copyright .container {
  padding-top: 0;
  border-top: 1px solid #2d2d32;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  color: #cacaca;
}

.footer-content .logo {
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  font-family: "Raleway-Black", "Arial", "sans-serif";
}

.footer-content .link-white {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0;
  font-family: "Proxima-Bold", "Arial", "sans-serif";
}

.footer-content .link-politik {
  font-size: 14px;
  text-transform: none;
  font-family: "Raleway-Regular", "Arial", "sans-serif";
  color: #cacaca;
  text-decoration: none;
  transition: all 0.4s;
}

.footer-content .link-politik:hover {
  color: #fff;
}

.footer-content p {
  margin-top: 10px;
}

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

.social-one {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #131315;
  margin-left: 20px;
  transition: all 0.4s;
}

.social-one:first-child {
  margin-left: 0;
}

.social-one svg {
  fill: #fff;
  transition: all 0.4s;
}

.social-one:hover svg {
  fill: #131315;
}

.social-one:hover {
  background: #fff;
}

/*--------------------calculate------------------------------*/

.page-calculate {
  background: #222226;
  color: #fff;
}

.page-calculate .container {
  min-height: 300px;
  text-align: center;
}

.btn-calculate-next {
  position: absolute;
  bottom: 0;
  right: 0;
}

.btn-calculate-back {
  position: absolute;
  bottom: 0;
  left: 0;
}

.page-calculate h3 {
  font-size: 32px;
  margin-bottom: 50px;
}

.page-calculate-wrapper {
  margin-bottom: 100px;
  text-align: center;
}

.page-calculate-wrapper-visible {
  opacity: 1;
  visibility: visible;
}

.page-calculate-block-flex {
  display: flex;
  justify-content: space-between;
}

.page-calculate-check {
  width: 220px;
  text-align: center;
  height: 250px;
  border: 1px solid #38383c;
  cursor: pointer;
  position: relative;
  margin-left: 20px;
  margin-right: 20px;
  box-shadow: 25px 25px 50px #18181b;
  display: inline-block;
  vertical-align: top;
}

.page-calculate-check:first-child {
  margin-left: 0;
}

.page-calculate-check:last-child {
  margin-right: 0;
}

.page-calculate-check-around {
  margin-left: 7px;
  margin-right: 7px;
  width: 15%;
}

.page-calculate-check-around:first-child {
  margin-left: 0px;
}

.page-calculate-check-around:last-child {
  margin-right: 0px;
  margin-left: 5px;
}

.page-calculate-img {
  margin-top: 80px;
  margin-bottom: 20px;
}

.page-calculate-img svg {
  fill: #fff;
}

.page-calculate-checked {
  background: #fff;
  color: #333;
  font-family: "Raleway-Regular", "Arial", "sans-serif";
}

.page-calculate-checked svg {
  fill: #333;
}

.page-calculate-check-i {
  content: "1";
  position: absolute;
  width: 30px;
  height: 30px;
  background: #222226;
  display: block;
  bottom: -15px;
  right: -15px;
  color: #fff;
  border: 2px solid #333339;
  box-shadow: 25px 25px 50px #18181b;
  border-radius: 100%;
  cursor: pointer;
}

.page-calculate-check-i p {
  position: absolute;
  display: block;
  top: -15px;
  left: 13px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  margin-left: 0;
}

.page-calculate-info {
  max-width: 80%;
  text-align: center;
  margin: 0 auto;
  margin-top: 40px;
}

.page-calculate-info p {
  font-size: 14px;
  color: #c4c4cf;
}

.page-calculate-block-input {
  display: flex;
  justify-content: center;
}

.calculate-input input {
  width: 60px;
  text-align: center;
  height: 56px;
  border: 1px solid #38383c;
  position: relative;
  margin-left: 20px;
  margin-right: 20px;
  box-shadow: 25px 25px 50px #18181b;
  display: inline-block;
  background: #222226;
  color: #bcbcc7;
  outline: none;
}

.calculate-input-minus {
  height: 60px;
  width: 60px;
  background: #131315;
  cursor: pointer;
  position: relative;
  transition: all 0.4s;
}

.calculate-input-minus:after {
  content: "";
  display: block;
  background: #fff;
  position: absolute;
  height: 2px;
  width: 20px;
  top: 29px;
  left: 20px;
  transition: all 0.4s;
}

.calculate-input-plus {
  height: 60px;
  width: 60px;
  background: #131315;
  cursor: pointer;
  position: relative;
  transition: all 0.4s;
}

.calculate-input-plus:after {
  content: "";
  display: block;
  background: #fff;
  position: absolute;
  height: 2px;
  width: 20px;
  top: 29px;
  left: 20px;
  transition: all 0.4s;
}

.calculate-input-plus:before {
  content: "";
  display: block;
  background: #fff;
  position: absolute;
  height: 20px;
  width: 2px;
  top: 19px;
  left: 29px;
  transition: all 0.4s;
}

.calculate-input-minus:hover {
  background: #fff;
}

.calculate-input-minus:hover::after {
  background: #131315;
}

.calculate-input-plus:hover {
  background: #fff;
}

.calculate-input-plus:hover::after {
  background: #131315;
}

.calculate-input-plus:hover::before {
  background: #131315;
}

.page-calculate-check:after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  width: 0;
  background: #fff;
  top: 0px;
  left: 0;
}

.page-calculate-choosepage {
  height: 60px;
  margin: 0;
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box;
  margin-bottom: 20px;
  margin-left: 10px;
  margin-right: 10px;
  width: auto;
}

.page-calculate-choosepage:last-child {
  margin-right: 10px;
}

.page-calculate-choosepage:first-child {
  margin-left: 10px;
}

.page-calculate-check:hover::after {
  animation: page-calculate-check 0.4s ease-in-out;
  animation-fill-mode: forwards;
}

.page-calculate-block-price {
  display: flex;
  justify-content: space-between;
}

.calculate-block-price-left {
  display: flex;
  justify-content: space-between;
  background: #131315;
  box-shadow: 25px 25px 50px #18181b;
  width: 50%;
  padding: 20px 30px 30px 30px;
  box-sizing: border-box;
  text-align: left;
}

.calculate-price-left-main,
.calculate-price-left-more {
  width: 40%;
}

.calculate-price-text-bold {
  font-weight: bold;
  color: #fff;
  margin-bottom: 0;
}

.calculate-price-text-regular {
  margin-top: 5px;
  color: #bcbcc7;
  display: flex;
  justify-content: space-between;
}

.calculate-price-text-regular p {
  margin: 0;
}

.calculate-block-price-right {
  background: #fff;
  color: #333333;
  width: 45%;
  text-align: left;
  padding-left: 40px;
  box-sizing: border-box;
  padding-top: 15px;
  position: relative;
  padding-right: 30px;
}

.calculate-total {
  font-size: 19px;
  color: #9797a1;
}

.calculate-total-price {
  font-size: 72px;
  margin-bottom: 40px;
  margin-top: 30px;
  font-family: "Proxima-Bold";
}

.calculate-price-about {
  color: #9797a1;
  font-size: 14px;
  line-height: 24px;
  margin-top: 0;
}

.calculate-price-about:after {
  content: "";
  height: 1px;
  width: 100% + 40px;
  background: #eaeaea;
  display: block;
  margin-left: -40px;
  margin-top: 15px;
}

.calculate-contact p {
  font-size: 16px;
  color: #333;
  font-family: "Raleway-Bold";
  max-width: 80%;
}

.calculate-contact-icon {
  display: flex;
}

@keyframes page-calculate-check {
  0% {
    top: 0;
    left: 0;
    width: 0;
  }
  100% {
    top: 0;
    left: 0;
    width: 100%;
  }
}

.user {
  width: 320px;
  height: 100px;
  position: relative;
  background: #ffffff;
  /* box-shadow: 0px 0px 50px rgba(24, 24, 27, 0.05); */
  margin-bottom: 10px;
  cursor: pointer;
}
.user:hover {
  box-shadow: 0px 0px 50px rgba(24, 24, 27, 0.05);
  z-index: 999;
}
.user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  top: 25px;
  left: 25px;
}
.user h4 {
  font-family: "Raleway-Regular";
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 21px;
  color: #333333;
  position: absolute;
  left: 91px;
  top: 27px;
  margin: 0;
  padding: 0;
}
.user p {
  font-family: "Raleway-Light";
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  color: #878791;
  position: absolute;
  left: 91px;
  top: 53px;
  margin: 0;
  padding: 0;
}
.testimonial-wrapper {
  display: flex;
  justify-content: space-between;
}
.testimonial-users{
  width: 350px;
}
.testimonial-users-container {
  overflow-y: auto;
  max-height: 450px;
  /* padding: 30px; */
  box-sizing: border-box;
  padding-right: 30px;
}
.testimonial-content {
  width: 729px;
  height: 450px;
  box-shadow: 0px 4px 35px rgba(0, 0, 0, 0.05);
  /* margin-top: 10px; */
}

@media (min-width:1200){
  .testimonial-content .item-inner {
    width: 729px;
  }
}

.content-text {
  /* width: 100%; */
  min-height: 450px;
  background: #fdfdfd;
  padding: 35px;
  box-sizing: border-box;
  position: relative;
  display: none;
  padding-right: 5px;
  box-shadow: 0px 4px 35px rgba(0, 0, 0, 0.05);
  /* margin-right: 10px; */
  margin-right: 30px;
  /* max-width: 30%; */
  width: 30vw;
}

.content-text-hiden {
  display: none;
}
.content-text-visability {
  display: block;
}
.user-one {
  box-shadow: 0px 0px 50px rgba(24, 24, 27, 0.05);
}
.content-text h3 {
  font-family: "Raleway-Bold";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: #333333;
  max-width: 550px;
  position: relative;
}
.content-text p {
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  color: #333333;
}
.content-text-container {
  max-height: 380px;
  overflow: auto;
  padding-right: 40px;
  box-sizing: border-box;
}
.content-text img {
  position: absolute;
  top: 20px;
  right: 20px;
}
.content-text a {
  font-family: "Raleway-Regular";
  font-size: 12px;
  line-height: 21px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #333333;
  position: absolute;
  left: 35px;
  bottom: 30px;
}

.testimonial-wrapper video{
  height: 515px !important;
  margin-right: 30px;
  width: auto !important;
  object-fit: cover;
}
.content-text-video{
  padding: 0;
}
.testimonial-wrapper .slick-list{
  width: 100%;
  padding-right: 0px;
  height: 515px;
}
.testimonial-wrapper .slick-list .slick-track{
  display: flex;
}
.my-work-header {
  display: block;
}

.my-work-btns {
  margin-bottom: 30px;
}

.my-work-btns a{
  margin-right: 10px;
}

.btn {
  cursor: pointer;
}
.project-btn-active{
  background-color: #fff;
  color: #222226;
  border: 1px solid #fff;
  /* width: 40px; */
}

@media screen and (max-width: 850px) {
  .my-work-header {
    display: flex;
    flex-direction: column;
  }
  .my-work-btns {
    display: flex;
    margin-bottom: 25px;
    overflow: auto;
    width: 100%;
    white-space: nowrap;
    padding-bottom: 20px;
  }
  .my-work-btns .btn {
    margin-right: 5px;
  }

}
@media screen and (max-width: 1150px) {
  .testimonial-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .testimonial-users {
    width: 100%;
  }
 
  .testimonial-users-container {
    width: 100%;
    height: auto;
    white-space: nowrap;
    overflow: auto;
    display: flex;
  }
  .user {
    width: 320px;
    height: 100px;
    white-space: nowrap;
    display: flex;
    padding: 120px;
    padding-bottom: 0px;
    padding-top: 0px;
  }
  .testimonial-content {
    width: 100%;
    height: 500px;
  }
  .content-text {
    min-height: 500px;
  }
  .testimonial-content {
    margin-top: 30px;
  }
}



.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.nowrap {
  flex-wrap: nowrap;
}
.flex-sb {
  justify-content: space-between;
}
.flex-sa {
  justify-content: space-around;
}
.flex-l {
  justify-content: flex-start;
}
.flex-r {
  justify-content: flex-end;
}
.flex-c {
  justify-content: center;
}
.flex-t {
  align-items: flex-start;
}
.flex-b {
  align-items: flex-end;
}
.flex-m {
  align-items: center;
}
.flex-s {
  align-items: stretch;
}

.flex .avatar {
  margin-right: 10px;
}

.testimonial-wrapper-pc .testimonial-body.text {
  padding: 30px;
  position: relative;
  box-sizing: border-box;
  height: 100%;
}

@media (min-width: 960px) {
  .testimonial-wrapper-pc .testimonial-body.video {
    height: 100%;
  }
}


.testimonial-wrapper-pc .testimonials-list {
    width: 420px;
    height: 430px;
    overflow: hidden;
}
.testimonial-wrapper-pc .testimonials-slider,
.testimonial-wrapper-pc .testimonials-slider .item-inner {
  height: 430px;
  box-sizing: border-box;
}
.testimonial-wrapper-pc .testimonial-content .text {
    box-sizing: border-box;
}
.testimonial-wrapper-pc .testimonials-list ul {
    padding: 0 14px 0 44px;  
    margin: 0;    
}
.testimonial-wrapper-pc .testimonials-list ul li {     
    flex-wrap: nowrap;       
    padding: 22px 26px;
    line-height: 1.3;
    cursor: pointer;            
    color:rgba(135, 135, 144, 1);
    margin-bottom: 10px;
    transition: all 0.3s ease 0s;
}
.testimonial-wrapper-pc .testimonials-list ul li:hover {
    transition: all 0.3s ease 0s;
    box-shadow: 0px 0px 30px rgba(24, 24, 27, 0.03);
    background: #fff;
}
.testimonial-wrapper-pc .testimonials-list ul li .name {
    width: 230px;
}
.testimonial-wrapper-pc .testimonials-list ul li strong {
    color:rgba(51, 51, 51, 1);
    display: block;
}
.testimonial-wrapper-pc .testimonials-list ul li.active {
    box-shadow: 0px 0px 30px rgba(24, 24, 27, 0.1);
    background: #fff;
}
.testimonial-wrapper-pc .testimonial-content {
    height: 430px;
    line-height: 1.4;
    font-weight: 300;
}
.testimonial-wrapper-pc .testimonial-content .text > div {
    /* padding: 30px; */
    position: relative;
    box-sizing: border-box;
    /* height: 100%; */
}

.testimonial-wrapper-pc .testimonial-content .video > div {
    padding: 30px;
    position: relative;
    box-sizing: border-box;
    height: 100%;
}

.testimonial-wrapper-pc .testimonial-content .text:after {
    background-image: url("data:image/svg+xml,%3Csvg width='85' height='56' viewBox='0 0 85 56' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.03' d='M32.5897 0L27.6345 25.2096H37.5448V56H0V24.2474L8.00449 0H32.5897ZM80.0448 0L75.0897 25.2096H85V56H47.4552V24.2474L55.4596 0H80.0448Z' fill='%23333333'/%3E%3C/svg%3E%0A");
    width: 85px;
    height: 56px;
    content:"";
    right: 0;
    top: 0;
    content:"";
}
.testimonial-wrapper-pc .testimonial-content .mCSB_scrollTools {
    left: auto;
    right: 0px;
}
.testimonial-wrapper-pc .testimonial-content .mCSB_container {
    margin-right: 30px;
}
.testimonial-wrapper-pc .testimonial-content p {
    margin-bottom: 10px;
}

.testimonial-wrapper-pc .video-cover {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.testimonial-wrapper-pc .video-cover video {
    max-width: 100%;
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
}
.testimonial-content h2 {
    font-size: 18px;
}
@media screen and (max-width: 1200px) {
    {}
    .testimonial-wrapper-pc .testimonials-list ul {
        padding: 0 14px 0 20px;
    }
    .testimonial-wrapper-pc .testimonials-list ul li {
        padding: 16px 20px;
    }
    .testimonial-wrapper-pc .testimonials-list {
        width: 350px;
    }
    .testimonial-wrapper-pc .testimonials-list ul li .name {
        width: 190px;
    }
    .testimonial-wrapper-pc .testimonial-content {
        width: calc(100% - 360px);
    }
    .testimonial-wrapper-pc .testimonial-body.text {
        padding: 26px 20px 26px 26px;
    }
    
    .testimonial-wrapper-pc .video {
        height: 100%;
    }
    .testimonial-wrapper-pc .testimonial-content,
    .testimonial-wrapper-pc .testimonials-list,
    .testimonial-wrapper-pc .testimonials-slider, 
    .testimonial-wrapper-pc .testimonials-slider .item-inner {
        height: 360px;
        margin-top: 0;
    }
}   
@media screen and (max-width: 960px) {
    .testimonial-wrapper-pc {
      display: block;
    }

    .testimonial-wrapper-pc .testimonial-content {
      width: 100%;
    }

    .testimonial-wrapper-pc .testimonials-slider, 
    .testimonial-wrapper-pc .testimonials-slider .item-inner {
      height: auto;
    }

    .testimonial-wrapper-pc .testimonial-content .text > div {
      padding: 0;
    }

    .testimonial-wrapper-pc .testimonial-content, 
    .testimonial-wrapper-pc .testimonials-list {
      height: auto;
    }
    
    .testimonial-wrapper-pc .testimonials-list {
      width: 100%;
    }

    .testimonial-wrapper-pc .testimonials-list .mCSB_horizontal.mCSB_inside > .mCSB_container {
      margin-bottom: 20px;
    }

    .testimonial-wrapper-pc .testimonials-list ul {
      width: 100%;
      height: 100%;
      padding: 0;
      column-gap: 16px;
    }

    .testimonial-wrapper-pc .testimonials-list ul li {
      flex: 0 0 calc(100vw - 70px);
      box-sizing: border-box;
    }

    .testimonial-wrapper-pc .testimonial-content .video > div {
      padding: 0;
    }

    .testimonial-wrapper-pc .testimonial-body.text {
      height: 470px;
    }

    .testimonial-wrapper-pc .testimonial-content .mCSB_container {
      margin-right: 5px;
    }

    .testimonials-list ul {
      display: flex;
      flex-direction: row;
    }

    .testimonial-author .avatar {
        margin-right: 20px;
    }
    .testimonial-author {
        padding: 16px 20px;
        line-height: 1.3;
        color: rgba(135, 135, 144, 1);
        margin-bottom: 20px;
        box-shadow: 0px 0px 30px rgba(24, 24, 27, 0.03);
        background: #fff;
        font-size: 14px;      
        justify-content: flex-start;
        background: #FDFDFD;
        text-align: left;    
        color:rgba(51, 51, 51, 1); 
    }
    .testimonial-author strong {
        font-size: 15px;
        font-weight: 600;
        display: block;
    }
    /* mobile start */
    .testimonial-wrapper-pc .testimonial-body {
      height: 320px;
      background: #FDFDFD;
      box-shadow: 0px 4px 35px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }
    .testimonial-wrapper-pc .video-cover {
        height: 100%;
        overflow: hidden;
    }
    .testimonial-wrapper-pc .testimonial-body h2 {
        font-weight: 700;
        line-height: 1.3;
        font-size: 18px;
    }
    .testimonial-wrapper-pc .testimonial-body video {
        max-width: 100%;
        object-fit: cover;
        width: 100%;
        height: 100;
        display: block;
    }
    .testimonial-wrapper-pc .testimonial-body.text {
        height: 320px;
        padding: 30px;
        padding-right: 20px;
    }
    .testimonial-wrapper-pc .testimonial-body.video {
      height: 320px;
    }
    .testimonial-wrapper-pc .item-inner {
        width: calc(100vw - 60px);
        box-sizing: border-box;
        padding-right: 16px;
    }
    /* mobile end */

    .process .container {
        padding-right: 0;
    }
    .process .container > h2,
    .process .container > p {
        padding-right: 12px;
    }
    .process .slick-dots li button:before {
        display: none !important;
    }
    .process .slick-dots li button {
        padding: 0;
        background: #D9D9D9;
        height: 10px !important;
        border: none;
        width: 10px !important;
        border-radius: 10px;
    }
    .process .slick-dots li {
        margin: 0 10px;
        width: auto;
    }
    .process .slick-dots li.slick-active button {
        width: 20px !important;
        background: #222226;
    }
    .process .slick-dots {
        bottom: -60px;
    }
    .process .testimonial-wrapper-pc .text-content {
        padding-right: 10px;
    }
    /* .process .mCSB_scrollTools {
        left: auto;
        right: 0
    } */
    .process .testimonial-wrapper-pc .slick-slide {
        padding: 12px 0 16px 0;
    }
    .process .testimonial-wrapper-pc .testimonial-author {
        display: none;
    }
}
@media screen and (max-width: 580px) {
    {}
    .testimonial-wrapper-pc .testimonial-body.text {
        padding: 16px;
        padding-right: 10px;
    }
    .testimonial-wrapper-pc .testimonial-body h2 {
        font-size: 16px;
        line-height: 1.3;
    }
}