* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
::-moz-selection {
    color: #fff;
    background: #555555;
}
::selection {
    color: #fff;
    background: #555555;
}
html { scroll-behavior: smooth; }
html, body {
    height: 100%;
    min-height: 100%;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale
}
body, select, input, textarea, button {
    font: normal 14px/1.5 Helvetica, Arial, sans-serif;
    font-weight: 300;
    color:#000;
    outline: none;
}
a { outline: none; color: #3394e6; text-decoration: none;}
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
ul.reset {
    list-style: none;
    margin: 0;
    padding: 0;
}
h1,h2,h3,h4,h5 {
    display: block;
    margin-bottom: 2rem;
    margin-top: 0;
    line-height: normal;
    font-weight: 500;
    text-rendering: optimizeLegibility;
}
p { margin-bottom: .8rem; letter-spacing: 1px; }

.red { color: #EA5353; }
.bgred { background: #EA5353; }
.black { color: #363636; }
.bgblack { background: #363636; }

.midside {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}
.site-title {
    font-size: 48px !important;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    overflow-x: hidden;
}

#header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1005;
    transition: all 0.2s ease-in-out;
}
#header  .header_top {
    position: relative;
    padding: 10px 0;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(255,255,255,.15);
    z-index: 2;
}
.scrolled #header .header_top {
    display: none;
}
#header .header_top .header_top_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header .header_top .header_top_wrapper .top_left > a {
    color: #fff;
    font-weight: 400;
    padding-left: 24px;
    margin-right: 20px;
    background: url('../images/icons/phone.svg') no-repeat;
    background-position: left center;
}
#header .header_top .header_top_wrapper .top_left > a:last-child {
    margin-right: 0;
}
#header .header_top .header_top_wrapper .top_left > a:hover {
    text-decoration: none;
}
#header .header_top .header_top_wrapper .top_middle {
    display: flex;
    align-items: center;
    margin-left: 30px;
}
#header .header_top .header_top_wrapper .top_middle > a {
    display: block;
    font-weight: bold;
    color: #fff;
}
#header .header_top .header_top_wrapper .top_middle > .seperator {
    color: #fff;
    margin: 0 6px;
}
#header .header_top .header_top_wrapper .top_middle > span {
    display: block;
    color: #9b9b9b;
    font-weight: bold;
}
#header .header_top .header_top_wrapper .top_right {
    display: flex;
    align-items: center;
}
#header .header_top .header_top_wrapper .top_right > a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #EA5353;
    font-size: 16px;
    background: #fff;
    text-align: center;
    margin-left: 10px;
    border: 1px solid #EA5353;
    border-radius: 50px;
    transition: all .2s ease-in-out;
}
#header .header_top .header_top_wrapper .top_right > a:first-child {
    margin-left: 0;
}
#header .header_top .header_top_wrapper .top_right > a:hover {
    background: #e2e2e2;
}
#header .header_top .header_top_wrapper .top_right > a.facebook {
   background-image: url('../images/icons/facebook.svg');
   background-repeat: no-repeat;
   background-size: 32%;
   background-position: center center;
}
#header .header_top .header_top_wrapper .top_right > a.instagram {
   background-image: url('../images/icons/instagram.svg');
   background-repeat: no-repeat;
   background-size: 56%;
   background-position: center center;
}
#header .header_top .header_top_wrapper .top_right > a.whatsapp {
   background-image: url('../images/icons/whatsapp.svg');
   background-repeat: no-repeat;
   background-size: 54%;
   background-position: center center;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

#header .main_nav {
    
}
#header .main_nav .navbar {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 0;
    padding-bottom: 0;
    z-index: 999;
}
.scrolled #header .main_nav .navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    padding-top: 0;
    padding-bottom: 0;
    z-index: 999;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,.17);
    animation: slideDown .5s;
}
/* .bg_fade {
    background-color: transparent;
    transition: all 0.3s ease 0s;
}
.scrolled .bg_fade {
    background: rgb(255 255 255 / 96%) none repeat scroll 0 0;
} */

#header .main_nav > .navbar > .container {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
    flex: 1 1 auto;
}
#header .main_nav > .navbar > .container > .nav_logo {
    display: block;
    max-width: 150px;
    min-width: 150px;
    user-select: none;
}
#header .main_nav > .navbar > .container > .nav_logo > img {
    width: 100%;
    height: 100%;
}
#header .main_nav > .navbar > .container > .call_us {
    flex: 1;
	display: none;
}
#header .main_nav > .navbar > .container > .call_us > a {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
#header .main_nav > .navbar > .container > .menu-button {
    display: none;
}
#header .main_nav > .navbar > .container > .menu-button > .burger_btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 32px;
    height: 26px;
}
.burger_btn > i {
    width: 100%;
    height: 4px;
    border-radius: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.2s ease-in-out;
}    
.scrolled .burger_btn > i {
    background-color: #363636;
}    
.burger_btn > .mt_1 {
    margin-top: 0;
}
.burger_btn > .mt_2 {
    margin-top: 10px;
    margin-left: 5px;
}
.burger_btn > .mt_3 {
    margin-top: 20px;
}
#header .main_nav > .navbar > .container > .menu_list {
    display: flex;
    flex-basis: auto;
    flex-grow: 1;
    align-items: center;
    margin: 0;
    transition: padding .5s cubic-bezier(0, 1, 0, 1), max-height .5s cubic-bezier(0, 1, 0, 1);
    overflow: hidden;
}
#header .main_nav > .navbar > .container > .menu_list > ul {
    display: flex;
    justify-content: flex-end;
    max-width: 100%;
    width: 100%;
}
#header .main_nav > .navbar > .container > .menu_list > ul > li {

}
#header .main_nav > .navbar > .container > .menu_list > ul a {
    position: relative;
    display: block;
    margin-left: 22px;
    padding: 28px 0;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    z-index: 1;
    text-decoration: none;
    transition: color .2s ease-in-out,background-color .2s ease-in-out,border-color .2s ease-in-out;
}
#header .main_nav > .navbar > .container > .menu_list > ul > li:first-child > a {
    margin-left: 0;
}
.scrolled #header .main_nav > .navbar > .container > .menu_list > ul a {
    color: #000;
}
#header .main_nav > .navbar > .container > .menu_list > ul a:hover {
    color: #EA5353;
}
#header .header_foot {
    display: none;
    justify-content: center;
    align-items: center;
    background: #f3f3f3;
    width: 100%;
}
#header .header_foot > .seperator {
    color: #000;
    padding: 0;
}
#header .header_foot > span {
    display: block;
    color: #8f8f8f;
    font-weight: bold;
    padding: 12px;
}
#header .header_foot > a {
    display: block;
    font-weight: bold;
    color: #000;
    padding: 12px;
}

/* --- Section --- */
#section {
    
}
#section .cover {
    
}
#section .cover > .cover_in {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    background: url('../images/covers/cover-1.jpg') no-repeat center center / cover;
    padding-top: 42%;
    min-height: 500px;
}
#section .cover > .cover_in::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,10,22,.75);
    left: 0;
    top: 0;
    z-index: -1;
}
#section .cover .text_block {
    display: flex;
    align-items: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    width: 100%;
    padding: 20%;
}
#section .cover .text_block > .text_block_in {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    /* padding: 0 20px 0 128px; */
    text-align: left;
    height: 100%;
}
#section .cover .text_block > .text_block_in > h1 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: bold;
    color: #fff;
    font-size: 50px;
    line-height: 1.3;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(150px);
}
#section .cover .text_block > .text_block_in > h1 > span {
    color: #EA5353;
}
#section .cover .text_block > .text_block_in > p {
    color: #fff;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: bold;
    font-size: 18px;
    opacity: 0;
    transform: translateY(150px);
}

/* --- Animation --- */
#section .cover .text_block > .text_block_in > h1.fadeUp,
#section .cover .text_block > .text_block_in > p.fadeUp,
.feature_area .feature_wrapper.fadeUp {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
/* --- Animation --- */

#section .cover .text_block > .text_block_in > p > span {
    color: #EA5353;
}

.feature_area {
    position: relative;
    margin-top: -110px;
    margin-bottom: 80px;
    z-index: 1;
}
.feature_area .feature_wrapper {
    background: #fff;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
    opacity: 0;
    transform: translateY(150px);
}
.feature_area .feature_wrapper > .row_wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.feature_area .feature_wrapper > .row_wrapper > .row {
    flex-basis: 33.333%;
    width: 33.333%;
}
.feature_area .feature_wrapper > .row_wrapper > .row > .in {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 25px;
    transition: all .2s ease-in-out;
    border-right: 2px solid #EA5353;
    user-select: none;
}
.feature_area .feature_wrapper > .row_wrapper > .row > .in.active {
    background: #EA5353;
}
.feature_area .feature_wrapper > .row_wrapper > .row > .in .feature_icon {
    margin-bottom: 20px;
}
.feature_area .feature_wrapper > .row_wrapper > .row > .in .feature_icon > img {
    max-width: 200px;
    min-width: 200px;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, .25));
}
.feature_area .feature_wrapper > .row_wrapper > .row > .in .feature_content {
    text-align: center;
}
.feature_area .feature_wrapper > .row_wrapper > .row > .in .feature_content > h5 {
    color: #000;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: bold;
    transition: color .2s ease-in-out;
}
.feature_area .feature_wrapper > .row_wrapper > .row > .in.active .feature_content > h5 {
    color: #fff;
}
.feature_area .feature_wrapper > .row_wrapper > .row > .in .feature_content > h5:last-child {
    margin: 0;
}

/* --- Services --- */

.services {
    position: relative;
    background: #EEF1F6;
    padding: 120px 0;
    overflow: hidden;
} 
.services .shape-1 {
    position: absolute;
    width: 350px;
    height: 350px;
    top: 100px;
    left: -50px;
    border-radius: 33% 66% 70% 30%/49% 62% 38% 51%;
    background: #EA5353;
    opacity: .15;
} 
.services .shape-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    right: -120px;
    bottom: -120px;
    border-radius: 33% 66% 70% 30%/49% 62% 38% 51%;
    background: #EA5353;
    opacity: .15;
}
.services .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}
.services .row > * {
    max-width: 100%;
}
.services .row > .in {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.services .row > .in .service_head {
    text-align: center;
}
.heading-divider {
    display: inline-block;
    position: relative;
    width: 90px;
    height: 4px;
    margin-bottom: 20px;
    background-color: #EA5353;
    overflow: hidden;
}
.heading-divider::after {
    content: '';
    position: absolute;
    left: 0;
    top: -1.1px;
    height: 7px;
    width: 8px;
    background-color: #ffffff;
    -webkit-animation: heading-move 5s infinite linear;
    animation: heading-move 5s infinite linear;
}
@keyframes heading-move {
    0% {
        transform:translateX(-1px);
    } 
    50% {
        transform:translateX(85px);
    }
    100% {
        transform:translateX(-1px);
    }
}
.services .row > .in h2 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 48px;
    color: #171B2A;
    margin-top: 0;
    margin-bottom: 20px;
}
.services .row > .in h2 > span {
    color: #EA5353;
}
.services .row > .in p {
    width: 50%;
    margin: 0 auto;
    font-size: 16px;
    color: #757F95;
}
.services .items_wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.services .items_wrapper > .item {
    flex-basis: 25%;
    width: 25%;
    display: flex;
    align-items: flex-start;
}
.services .items_wrapper > .item > .in {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    width: 100%;
}
.services .items_wrapper > .item > .in::before {
    content: "";
    position: absolute;
    border-bottom: 2px dashed #EA5353;
    width: 130px;
    height: 0;
    right: -65px;
    top: 50px;
}
.services .items_wrapper > .item:last-child > .in::before {
    display: none;
}
.services .items_wrapper > .item .icon {
    max-width: 100px;
    max-height: 100px;
    min-width: 100px;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 50%;
    font-size: 45px;
    color: #EA5353;
    border: 3px solid #EA5353;
    padding: 5px;
    margin-bottom: 30px;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
    user-select: none;
}
.services .items_wrapper > .item .icon span {
    position: absolute;
    height: 35px;
    width: 35px;
    font-size: 14px;
    text-align: center;
    background: #EA5353;
    line-height: 35px;
    color: #ffffff;
    left: -3px;
    top: -13px;
    font-weight: 600;
    border-radius: 33% 66% 70% 30%/49% 62% 38% 51%;
}
.services .items_wrapper > .item .icon .icon_wrap {
    max-width: 50px;
}
.services .items_wrapper > .item .icon img {
    width: 100%;
}
.services .items_wrapper > .item h4 {
    text-align: center;
    margin-bottom: 10px;
    color: #000;
    font-weight: bold;
    font-size: 20px;
}
.services .items_wrapper > .item p {
    max-width: 400px;
    text-align: center;
    margin-bottom: 0;
    color: #757F95;
    font-size: 14px;
}

/* --- Services --- */


/* --- Counter --- */

.counter {
    position: relative;
    background: #EA5353;
    z-index: 1;
    user-select: none;
}
.counter .container .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.counter .container .row > * {
    max-width: 100%;
}
.counter .container .row > .item {
    flex-basis: 33.333%;
}
.counter .container .row > .item > .in {
    position: relative;
    padding: 45px 35px;
    text-align: center;
    z-index: 1;
}
.counter .container .row > .item > .in .icon {
    max-width: 90px;
    min-width: 90px;
    min-height: 90px;
    margin: 0 auto;
    margin-bottom: 20px;
    line-height: 1;
}
.counter .container .row > .item > .in .icon > img {
    width: 100%;
    height: 90px;
}
.counter .container .row > .item > .in .counter_block {
    display: block;
    line-height: 1;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.counter .container .row > .item > .in .counter_block .sup {
    font-size: 30px;
}
.counter .container .row > .item > .in .counter_block .sup > sup {
    margin-left: 3px;
    font-size: 22px;
}
.counter .container .row > .item > .in .title {
    color: #fff;
    margin-top: 15px;
    font-size: 18px;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
 
/* --- Counter --- */

/* --- Choose --- */

.choose {
    position: relative;
    background: #363636;
}
.choose .choose_img {
    background-image: url('../images/covers/why-us.jpg');
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
}
.choose .row {
    display: flex;
    flex-wrap: wrap;
}
.choose .row > * {
    max-width: 100%;
}
.choose .row > .in {
    flex: 0 0 auto;
    width: 50%;
    margin-left: 50%;
}
.choose .row > .in .content {
    position: relative;
    padding: 30px 0 30px 30px;
}
.choose .row > .in .content > .heading-divider {
    margin-bottom: 4px;
}
.choose .row > .in .content > h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 48px;
}
.choose .row > .in .content > h2 > span {
    color: #EA5353;
}
.choose .row > .in .content > p {
    color: #aaa;
}
.choose .row > .in .content > p.second_p {
    margin-top: 0;
    margin-bottom: 0;
}
.choose .row > .in .content > ul {
    margin: 30px 0;
}
.choose .row > .in .content > ul > li {
    display: block;
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
    z-index: 1;
}
.choose .row > .in .content > ul > li::after {
    content: "";
    position: absolute;
    left: 12px;
    top: 6px;
    background: #EA5353;
    width: 10px;
    height: 10px;
    border-radius: 50px;
}
.choose .row > .in .content > ul > li > h5 {
    margin: 0;
    font-weight: bold;
    color: #fff;
    position: relative;
    display: inline-block;
    font-size: 20px;
    text-transform: capitalize;
    z-index: 1;
}

/* --- Choose --- */

/* --- Reviews --- */

.reviews {
    position: relative;
    z-index: 1;
    background: #EEF1F6;
    padding: 120px 0;
    overflow: hidden;
}
.reviews::before {
    content: "";
    position: absolute;
    background-image: url('../images/add/map.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50%;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}
.reviews .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}
.reviews .row > * {
    max-width: 100%;
}
.reviews .row > .in {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.reviews .row > .in .reviews_head {
    text-align: center;
}
.reviews .row > .in h2 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 48px;
    color: #171B2A;
    margin-top: 0;
    margin-bottom: 20px;
}
.reviews .row > .in h2 > span {
    color: #EA5353;
}
.reviews .row > .in p {
    width: 50%;
    margin: 0 auto;
    font-size: 16px;
    color: #757F95;
}

.reviews .reviews_wrapper {
    
}
.reviews .reviews_wrapper .review {
    height: 100%;
}
.reviews .reviews_wrapper .review > .quote {
    position: relative;
    padding: 30px;
    min-height: 260px;
    background: #fff;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}
.reviews .reviews_wrapper .review > .quote::before {
    content: "";
    position: absolute;
    bottom: -9px;
    transform: rotate(45deg);
    left: 50px;
    width: 20px;
    height: 20px;
    background: #fff;
    box-shadow: 3px 3px 2px 0px rgb(237 237 237 / 50%);
}
.reviews .reviews_wrapper .review > .quote::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: #EA5353;
    right: 0;
    top: 0;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
}
.reviews .reviews_wrapper .review > .quote .icon {
    max-width: 50px;
    max-height: 50px;
    margin-bottom: 10px;
}
.reviews .reviews_wrapper .review > .quote .icon > img {
    width: 100%;
}
.reviews .reviews_wrapper .review > .quote p {
    margin: 0;
    color: #757F95;
}
.reviews .reviews_wrapper .review > .content {
    display: flex;
    justify-content: start;
    margin-top: 30px;
    margin-left: 20px;
    min-height: 122px;
}
.reviews .reviews_wrapper .review > .content > .author_img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    margin-right: 20px;
    width: 80px;
    height: 80px;
    min-width: 80px;
    padding: 5px;
    border-radius: 50px;
    border: 2px dashed #EA5353;
}
.reviews .reviews_wrapper .review > .content > .author_img > img {
    width: 100%;
}
.reviews .reviews_wrapper .review > .content > .author_img > .small_1 {
    width: 60%;
}
.reviews .reviews_wrapper .review > .content > .author_img > .bordered {
    border-radius: 50%;
}
.reviews .reviews_wrapper .review > .content > .author_info {

}
.reviews .reviews_wrapper .review > .content > .author_info h4 {
    color: #000;
    font-size: 18px;
    margin: 0;
}
.reviews .reviews_wrapper .review > .content > .author_info p {
    margin: 6px 0;
    color: #757f95;
    font-size: 15px;
}
.reviews .reviews_wrapper .review > .content > .author_info .rate {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.reviews .reviews_wrapper .review > .content > .author_info .rate > img {
    width: 18px;
    margin-left: 4px;
}
.reviews .reviews_wrapper .review > .content > .author_info .rate > img:first-child {
    margin-left: 0;
}
.reviews .owl-dots .owl-dot span {
    border: 3px solid #EA5353;
    margin: 5px;
    border-radius: 0px;
    width: 15px;
    height: 15px;
    display: inline-block;
    background-color: #fff;
    transition: all .2s ease-in-out;
}
.reviews .owl-dots .owl-dot.active span {
    background-color: #EA5353;
}
.reviews .owl-dots .owl-dot:hover span {
    
    background-color: #EA5353;
}

/* --- Reviews --- */

/* --- Contact --- */

.contact {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background-image: url('../images/icons/map.svg');
    background-size: cover;
    background-repeat: repeat;
    background-position: center center;
    z-index: 2;
}
.contact::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: -1;
    opacity: 0.9;
}
.contact .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}
.contact .row > * {
    max-width: 100%;
}
.contact .row > .in {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.contact .row > .in .contact_head {
    text-align: center;
}
.contact .row > .in h2 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 48px;
    color: #171B2A;
    margin-top: 0;
    margin-bottom: 20px;
}
.contact .row > .in h2 > span {
    color: #EA5353;
}
.contact .row > .in p {
    width: 60%;
    margin: 0 auto;
    font-size: 16px;
    color: #757F95;
}

.contact .contact_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact .contact_wrapper > .left {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    flex-basis: 30%;
    margin-right: 20px;
}
.contact .contact_wrapper > .left > .c_row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-decoration: none;
    cursor: pointer;
}
.contact .contact_wrapper > .left > .c_row > .icon {
    background: #EA5353;
    min-width: 60px;
    min-height: 60px;
    margin-right: 20px;
    border-radius: 50px;
    box-shadow: 0 5px 30px 0 rgb(0 0 0 / 15%);
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
}
.contact .contact_wrapper > .left > .c_row > .icon > img {
    max-width: 20px;
    min-width: 20px;
}
.contact .contact_wrapper > .left > .c_row > span {
    color: #000;
    font-size: 18px;
    font-weight: bold;
    transition: color .2s ease-in-out;
}
.contact .contact_wrapper > .left > .c_row > span:hover {
    color: #EA5353;
    text-decoration: none;
}
.contact .contact_wrapper > .right {
    position: relative;
    flex-basis: 70%;
}
.contact .contact_wrapper > .right .shape {  
    position: absolute;
    right: -47px;
    bottom: -40px;
    padding: 20px;
    z-index: -1;
}
.contact .contact_wrapper > .right .shape > img {  
    width: 90px;
}

/* --- Contact --- */

/* --- Section --- */

/* --- Footer --- */
footer {
    padding: 20px;
    color: #fff;
    font-size: 12px;
    background: #363636;
    text-align: center;
}
footer p {
    margin: 0;
    line-height: 20px;
}
footer .foot_in {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer .langs {
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .langs a {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}
footer .langs span {
    display: block;
    color: #8f8f8f;
    font-weight: bold;
    font-size: 14px;
}
footer .langs .seperator {
    display: block;
    color: #fff;
    margin: 0 6px;
    font-size: 14px;
    font-weight: bold;
}
/* --- Footer --- */



/* -=-=-=- IFrame Calculator -=-=-=- */
.calculator {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    z-index: 2;
}
.calculator .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}
.calculator .row > * {
    max-width: 100%;
}
.calculator .row > .in {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.calculator .row > .in .calc_head {
    text-align: center;
}
.calculator .row > .in h2 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 48px;
    color: #171B2A;
    margin-top: 0;
    margin-bottom: 20px;
}
.calculator .row > .in h2 > span {
    color: #EA5353;
}
.calculator .content {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}
.calculator .calc_descr {
    text-align: center;
}
/* -=-=-=- IFrame Calculator -=-=-=- */