 /* ABS CARD FRAME */

 .absCardFrame {
     position: absolute;
     z-index: 2;
     left: 10%;
     top: 50%;
     -webkit-transform: translateY(-50%);
     transform: translateY(-50%);
     background: #FFF;
     width: 22%;
     padding: 3vw;
     font-size: 1.1vw;
 }

 .rightAbsCard .absCardFrame {
     left: auto;
     right: 10%;
 }

 .absCardFrame ul {
     font-weight: 500;
     margin-top: 1vw;
 }

 .absCardFrame p {
     margin-bottom: 1.5vw;
     font-size: 1vw;
     line-height: 1.8;
 }

 .absCardFrame li {
     font-size: 1.1vw;
     line-height: 1.5;
     text-shadow: 0 0 1px rgba(0, 0, 0, 0.4);
 }

 @media screen and (min-width: 1900px) {
     .absCardFrame {
         font-size: 16px;
     }

     .absCardFrame li,
     .absCardFrame p,
     .tmb-text-p p {
         font-size: 18px;
     }
 }

 @media screen and (max-width: 1050px) {
     .absCardFrame {
         width: 320px;
         font-size: 14px;
     }

     .absCardFrame li,
     .absCardFrame p,
     .tmb-text-p p {
         font-size: 14px;
     }
 }

 @media screen and (max-width: 980px) {
     .leftAbsCard {
         height: auto;
         padding: 0;
         text-align: center;
         min-height: inherit;
         max-height: inherit;
     }

     .absCardFrame {
         position: relative;
         width: 100%;
         box-sizing: border-box;
         padding: 70px 20px 50px;
         left: 0;
         -webkit-transform: translateY(0);
         transform: translateY(0);
     }

     .absCardFrame h3 {
         margin: 15px 0;
     }

     .full-cycle ul {
         display: none;
     }

     .absCardFrame .super-text {
         margin-bottom: 15px;
     }

     .absCard .imageBg,
     .absCard.imageBg figure,
     .absCard .absCard-image figure {
         width: auto;
         height: 90vh;
         position: relative;
     }

     .whiteSection .super-text {
         margin-bottom: 15px;
     }

     .imageBg img {
         -o-object-position: 50% 50%;
         object-position: 50% 50%;
     }

     
 }

 @media screen and (max-width: 500px) {
     .mainScreen .imageBg img {
         -o-object-position: 15% 50%;
         object-position: 15% 50%;
     }
 }



 /* CONTACTS MAP */

 .contacts-map .button-bordered a {
     color: #000;
     border-color: #000;
 }

 .contacts-map .button-bordered a:hover {
     color: #FFF;
     background: #323137;
     border-color: #323137;
     box-shadow: 0px 10px 24px rgba(0, 0, 0, 0.2);
 }

 .contacts-map .hl-p {
     margin-bottom: 1vw;
 }

 .contacts-map-wrapper {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: #323137;
 }

 .contacts-map.active {
     z-index: 10;
 }

 .contacts-map.active .absCardFrame {
     visibility: hidden;
     opacity: 0;
 }

 .contacts-map.active .contacts-map-wrapper {
     position: absolute;
     top: 0;
     left: 0;
 }

 .tools {
     visibility: hidden;
     opacity: 0;
     position: absolute;
     z-index: 3;
     bottom: 0;
     left: 0;
     background: #242426;
     color: #FFF;
     padding: 2vw 2vw 4vw;
     text-align: center;
 }

 .contacts-map.active .tools {
     visibility: visible;
     opacity: 1;
 }

 #end {
     display: none;
 }

 .tools .close-form {
     position: absolute;
     top: 1vw;
     right: 1vw;
 }

 .tools .rf-form-input {
     min-width: 300px;
 }

 .tools h4 {
     margin-bottom: 0;
 }

 .subheader {
     font-size: 12px;
     margin-bottom: 1vw;
 }

 @media screen and (max-width: 980px) {
     .contacts-map-wrapper {
         position: relative;
         height: 80vh;
     }

     .contacts-map.active .absCardFrame {
         display: none;
     }

     .contacts-map.active .contacts-map-wrapper {
         height: 100vh;
     }

     .tools {
         width: 100%;
         box-sizing: border-box;
     }

     .tools .close-form {
         top: 10px;
         right: 15px;
     }

     
 }