/*--------------------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;
}

.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;
}

.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;

    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;
    opacity: 0.5;
    font-family: "Raleway-Regular", "Arial", "sans-serif";
    color: #fff;
}

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

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

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



.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%;
}

.process-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;
}

.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;
}

.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------------------------------*/

.body-calculate {
  background-color: #222226;
}

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

.page-calculate .container{
    min-height: 300px;
    text-align: center;
}
.control-buttons {
    width: 100%;
    bottom: 40px;
    left: 0;
    display: flex;
    justify-content: center;
}
.page-calculate h3 {
    font-size: 32px;
    margin-bottom: 50px;
}
.page-calculate-wrapper {
    margin-bottom: 50px;
    text-align: center;
    display: none;
    position: relative;
}
.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 {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    margin-top: 40px;
    opacity: 0;
    transition: all 0.3s ease 0s;
    padding-left: 10%;
    padding-right: 10%;
    box-sizing: border-box;
    position: relative;
    bottom: -0;
    left: 0;
    background-color: #222226;
    display: none;
}
.page-calculate-info.show {
    opacity: 1;
    transition: all 0.3s ease 0s;
    display: block;
}
.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-check.checked {
    background: #fff;
    color: #222226;
    border: 1px solid #fff;
}

.page-calculate-check.checked svg path {
    fill: #222226
}
.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-price-text-regular p:empty {
    display: none;
}
.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;
    padding-bottom: 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%;}
}

.page-calculate .last-step h3 {
    display: none;
}
.btn.btn-black.btn-calculate-prev {
    visibility: hidden;
}


