:root{
    --theme-font-din: 'D-DIN', sans-serif;
    --theme-font-neue: 'Neue Plak', sans-serif;
    --theme-color-deep-gray: #1F1F1F;
    --theme-lime-green: #007af4;
    --theme-forest-green: #02093d;    
}
html, body{
    background-color: #FFFFFF;
}
body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-family: var(--theme-font-neue);
    font-weight: normal;
    font-size: 16px;
    font-style: normal;
    color: #1F1F1F;
}

.c{
    max-width: 1440px;
}

.heading1{
    font-size: 57px;
    font-weight: bold;
}
.heading2{
    font-size: 32px;
    font-weight: 600;
}
.heading3{
    font-size: 24px;
    font-weight: 600;
}
.section_padding{
    padding-top: 90px;
    padding-bottom: 90px;
}
.header{
    width: 100%;
    z-index: 99;
    padding: 22px 0;
    background-color: var(--theme-forest-green);
    position: relative;
}
.home .header{
    position: absolute;
    left: 0;
    top: 0;
    background-color: transparent;
}
.banner{
    height: 700px;
    position: relative;
    overflow: hidden;
}
.banner::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(31 31 31 / 60%) 0%, rgb(2 9 61 / 80%) 100%);
    opacity: 0.5;
}
.banner::before{
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 55px;
    background-color: #fff;
    clip-path: polygon(60px 0, 100% 0, 100% 100%, 0 100%);
    z-index: 3;
}
.bcontent {
    position: absolute;
    color: #fff;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
}
.bcontent .heading1,
.bcontent .heading2{
    font-weight: normal;
    line-height: 1.25;
}
.bcontent .heading2{
    padding-top: 25px;
}
.bcontent .max{
    max-width: 1030px;
    padding-left: 25px;
    position: relative;
}
.bcontent .max::after{
    width: 3px;
    height: 500px;
    position: absolute;
    left: 0;
    top: 15px;
    background-color: var(--theme-forest-green);
    content: '';
}
.banner .bg_full {
    filter: blur(3px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 15px);
    height: calc(100% + 15px);
}
.menu_block ul {
    display: flex;
    align-items: center;
    list-style: none;
    color: #fff;    
    margin-right: 40px;
}
.menu_block li + li{
    margin-left: 40px;
}
.dflex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu_block {
    display: flex;
    align-items: center;
}
.menu_block li a {
    font-size: 18px;
    display: inline-block;
    vertical-align: middle;
}
.menu_block li a:hover{
    text-decoration: underline;
}
.site_btn{
    padding: 10px 35px;
    border-radius: 5px;
    border: 1px solid #fff;
    font-size: 18px;
    color: #fff;
    display: inline-block;
}
.site_btn:hover{
    background-color: #fff;
    color: var(--theme-color-deep-gray);
}
.btn_white{
    background-color: #fff;
    color: var(--theme-color-deep-gray);
}
.btn_white:hover{
    background-color: transparent;
    color: #fff;
}
.btn_black{
    background-color: var(--theme-color-deep-gray);
    color: #fff;
}
.btn_black:hover{
    border-color: var(--theme-color-deep-gray);
}

.footer{
    position: relative;
    margin-top: 120px;
}
.home .footer{
    margin-top: 0;
}
.explore{
    background-color: var(--theme-color-deep-gray);
    padding: 90px 0 130px 0;
    color: #fff;
    overflow: hidden;
    position: relative;
}
.explore::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -1px;
    width: 50%;
    height: 55px;
    background-color: var(--theme-forest-green);
    clip-path: polygon(60px 0, 100% 0, 100% 100%, 0 100%);
}
.explore .heading1{
    font-weight: normal;
    padding-left: 25px;
    position: relative;
}
.explore .heading1::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3px;
    height: 300px;
    background-color: var(--theme-lime-green);
}
.footer{
    position: relative;
    overflow: hidden;
}
.footer ._row{
    align-items: center;
}
.footer ._1{
    width: 70%;
}
.footer ._2{
    width: 30%;
    text-align: center;
}
.fmenu_block{
    background-color: var(--theme-forest-green);
    color: #fff;
    padding: 60px 0;
}
.fmenu_block ._1 {
    display: flex;
    align-items: flex-start;
}
.fmenu_block .heading3{
    font-weight: normal;
    padding-bottom: 30px;
}
.menus_block + .menus_block{
    margin-left: 90px;
}
.fmenu ul{
    list-style: none;
}
.fmenu ul li + li {
    margin-top: 10px;
}
.fmenu ul li a{
    display: block;
}
.fmenu ul li a:hover{
    text-decoration: underline;
}
.copy_txt {
    padding: 20px 0;
    width: 65%;
    position: relative;
    border-top: 2px solid var(--theme-lime-green);
}
.copy_txt::before{
    content: '';
    position: absolute;
    top: -2px;
    background-color: var(--theme-lime-green);
    height: 2px;
    right: 100%;
    width: 60%;
}
.copy_txt::after {
    content: '';
    position: absolute;
    top: -1px;
    background-color: var(--theme-lime-green);
    height: 2px;
    right: 1px;
    width: 90px;
    transform: rotate(-135deg);
    transform-origin: right top;
}
.copy_block{
    background-color: var(--theme-forest-green);
    color: #fff;
}
.copy_block a{
    text-decoration: underline;
}
.font_normal{
    font-weight: normal;
}
.text_image .heading1 {
    line-height: 1.15;
}
.text_image ._row{
    margin: 0 -60px;
    margin-top: 100px;
}
.text_image ._col{
    padding: 0 60px;
    width: 50%;
}
.text_image .image::before{
    content: '';
    display: block;
    padding-top: 75%;
}
.desc {
    font-size: 17px;
    line-height: 1.5;
}
.desc p + p{
    margin-top: 20px;
}
.text_image .site_btn{
    margin-top: 50px;
}
.text_image .image::after,
.core_vaues::after,
.smeta::after,
.txt_block .image::after,
.two_col_sub .image::after {
    content: '';
    position: absolute;
    right: -1px;
    bottom: -1px;
    width: 60px;
    height: 60px;
    background-color: #fff;
    clip-path: polygon(0 100%, 100% 0px, 100% 100%);
}
.text_image .line {
    position: absolute;
    top: 0;
    width: 3px;
    height: 200%;
    background-color: var(--theme-lime-green);
    z-index: 2;
}
.text_image{
    overflow: hidden;
}
.about_block{
    background-color: var(--theme-forest-green);
    color: #fff;
    overflow: hidden;
    position: relative;
}
.about_block::after {
    content: '';
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 122, 244, 1) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    opacity: 0.7;
    transform: translateY(40%);
}
.title_block {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-left: 25px;
    position: relative;
}
.title_block::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 15px;
    width: 3px;
    height: 500px;
    background-color: var(--theme-lime-green);
}
.about_block ._row{
    margin: 0 -30px;
    margin-top: 30px;
    align-items: flex-end;
}
.about_block ._col{
    padding: 0 30px;
    width: 50%;
}
.about_block .heading3 {
    padding-bottom: 30px;
}
.head_text + .head_text{
    margin-top: 60px;
}
.about_block .desc{
    padding-left: 30px;
}
.about_block .heading1 {
    max-width: 525px;
}
.core_vaues{
    position: relative;
    color: #fff;
    overflow: hidden;
}
.core_vaues .max{
    max-width: 530px;
}
.core_vaues .c{
    position: relative;
}
.core_vaues .heading2 {
    padding-bottom: 65px;
}
.core_lists .lists + .lists{
    margin-top: 50px;
}
.lists .desc{
    margin-top: 25px;
}
.list_title{
    font-size: 24px;
}
.core_vaues .bg_full::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
}
.our_services{
    overflow: hidden;
}
.service_grid .image::before{
    content: '';
    display: block;
    padding-top: 95%;
}
.smeta{
    background-color: var(--theme-color-deep-gray);
    color: #fff;
    padding: 50px;
    flex: 1;
}
.stitle {
    display: block;
    font-size: 24px;
    padding-bottom: 25px;
}
.stitle:hover{
    color: var(--theme-lime-green);
}
.service_grid {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.our_services .swiper-slide{
    height: auto;
}
.serviceSwiper{
    margin-top: 60px;
}
.cont {
    width: 60px;
    position: relative;
    display: flex;
    align-items: center;
}
.our_services .title_block {
    align-items: center;
}
.cont a {
    width: 30px;
    height: 30px;
    position: static;
    display: inline-flex;
    text-align: center;
    margin: 0;
    padding: 0;
}
.cont a::after {
    font-size: 20px;
    font-weight: bold;
    color: var(--theme-color-deep-gray);
}
.b_title{
    color: #fff;
    padding-top: 50px;
    position: relative;
    z-index: 1;
}
.b_title::before{
    background-color: var(--theme-forest-green);
    height: 90px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    content: '';
}
.img_nothre .b_title::before{
    height: calc(100% - 59px);
}
.b_title .c{
    position: relative;
}
.small_banner{
    position: relative;
    overflow: hidden;
}
.small_banner .image{
    height: 415px;
    margin-top: -55px;
}
.b_title .heading1{
    display: inline-block;
    padding-bottom: 25px;
    padding-right: 60px;
    padding-left: 25px;
    background-color: var(--theme-forest-green);
    position: relative;
    line-height: 1.1;
    max-width: 900px;
}
.b_title .heading1::before{
    content: '';
    position: absolute;
    right: 100%;
    top: 0;
    width: 50vw;
    height: 100%;
    background-color: var(--theme-forest-green);
}
.b_title .heading1::after{
    content: '';
    width: 45px;
    height: 60px;
    position: absolute;
    left: 100%;
    bottom: 0;
    background-color: var(--theme-forest-green);
    clip-path: polygon(0 0, 0 100%, 100% 0);
    margin-left: -1px;
}
.small_banner .image::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-forest-green);
}
.b_title .line {
    width: 3px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: var(--theme-lime-green);
}
.two_col{
    padding-top: 55px;
}
.two_col ._row{
    margin: 0 -50px;
}
.two_col ._col{
    padding: 0 50px;
}
.two_col ._1{
    width: 35%;
}
.two_col ._2{
    width: 65%;
}
.two_col .heading1{
    line-height: 1.15;
    letter-spacing: -0.0025em;
}
.mb_heding{
    margin-bottom: 35px;
}
.toggle_block{
    padding-top: 120px;
}
.toggle_block .heading2{
    font-style: italic;
}
.toggle_block .c > .heading2{
    padding-bottom: 50px;
}
.toggle_block ul .inner {
    overflow: hidden;
    display: none;
    padding-bottom: 35px;
}
.toggle_block ul .inner.show {
    /*display: block;*/
}
.accordion .heading2{
    font-style: normal;
}
.toggle_block ul.accordion{
    list-style: none;
    margin-top: 0;
    border-bottom: 3px solid;
}
.toggle_block ul.accordion > li{
    border-top: 3px solid;
}
.toggle_block .toggle{
    display: block;
    padding: 35px 50px 35px 0;
    position: relative;
}
.toggle_block .toggle::after{
    content: '';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    margin-top: -5px;
}
.toggle_block .toggle.open::after {
    transform: translateY(-50%) rotate(-135deg);
    margin-top: 0;
}
.txt_block,
.padding_top{
    padding-top: 120px;
}
.txt_block ._row{
    margin: 0 -50px;
}
.txt_block ._col{
    padding: 0 50px;
}
.txt_block .desc{
    margin-top: 30px;
}
.txt_block ._1{
    width: 60%;
}
.txt_block ._2{
    width: 40%;
}
.big_imgtxt ._1{
    width: 40%;
}
.big_imgtxt ._2{
    width: 60%;
}
.txt_block .image {
    height: 100%;
}
.two_col .image{
    margin-top: 50px;
}
.two_col .image::before{
    content: '';
    display: block;
    padding-top: 32.84%;
}
.two_col_sub .desc{
    margin-top: 0;
}
.two_col_sub_2 ._1{
    width: 40%;
}
.two_col_sub_2 ._2{
    width: 60%;
}
.desc ul{
    margin-top: 20px;
    list-style: none;
}
.desc li{
    padding-left: 20px;
    position: relative;
}
.desc li::before{
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    background-color: var(--theme-color-deep-gray);
    border-radius: 50%;
}
.desc li + li{
    margin-top: 15px;
}
.toggle_block + .two_col_sub_2, .contact_block{
    padding-top: 120px;
}
.contact_block ._1{
    width: 60%;
}
.contact_block ._2{
    width: 40%;
}
.map_wap{
    position: relative;
}
.map_wap::before{
    content: '';
    display: block;
    padding-top: 100%;
}
.map_wap iframe{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(1);
    border-radius: 2px;
    overflow: hidden;
}
.fcol label{
    display: block;
    font-size: 17px;
    color: #000;
    cursor: pointer;
}
.frow:not(._label):not(._sub) label{
    display: none;
}
.fcontrol {
    border-bottom: 2px solid #000;
    width: 100%;
    padding: 15px;
    font-size: 17px;
    padding-left: 0;
}
.contact_block ._row{
    margin: 0 -20px;
}
.contact_block ._col{
    padding: 0 20px;
}
.frow + .frow{
    margin-top: 40px;
}
.frow{
    margin: 0 -20px;
    display: flex;
    flex-wrap: wrap;
}
.frow .fcol{
    padding: 0 20px;
    width: 50%;
}
._full .fcol{
    width: 100%;
}
.fcontrol::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: var(--theme-color-deep-gray);
}
.fcontrol::-moz-placeholder { /* Firefox 19+ */
    color: var(--theme-color-deep-gray);
}
.fcontrol:-ms-input-placeholder { /* IE 10+ */
    color: var(--theme-color-deep-gray);
}
.fcontrol:-moz-placeholder { /* Firefox 18- */
    color: var(--theme-color-deep-gray);
}
.ftextarea {
    width: 100%;
    background-color: #f4f4f4;
    border-top: 2px solid;
    margin-top: 25px;
    padding: 20px;
    font-size: 18px;
    font-family: inherit;
    height: 171px;
}
._sub .fcol {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
._sub .wpcf7-list-item{
    margin: 0;
}
._sub .wpcf7-list-item-label{
    position: relative;
    display: inline-block;
    padding: 6px 0 5px 50px;
}
._sub .wpcf7-list-item-label::before{
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    border: 2px solid;
    border-radius: 50%;
}
._sub .wpcf7-list-item-label::after{
    content: '';
    position: absolute;
    left: 5px;
    top: 5px;
    width: 24px;
    height: 24px;
    background-color: #000;
    border-radius: 50%;
    opacity: 0;
}
._sub input:checked + .wpcf7-list-item-label::after{
    opacity: 1;
}
.wpcf7-not-valid-tip{
    display: none;
}
.wpcf7-not-valid{
    border-color: #dc3232;
}
.fsub input {
    padding: 10px 80px;
    background-color: #000;
    color: #fff;
    font-size: 18px;
    border-radius: 5px;
}
.wpcf7 form .wpcf7-response-output {
    border: 0;
    text-align: center;
}
.c_edit b, .c_edit strong {
    font-weight: bold;
}
.c_edit h1, .c_edit h2, .c_edit h3, .c_edit h4, .c_edit h5, .c_edit h6{
    color: #000;
    font-family: var(--theme-font-din);
    margin-top: 40px;
}
.c_edit h1 {
    font-size: 52px;
}
.c_edit h2 {
    font-size: 46px;
}
.c_edit h3 {
    font-size: 42px;
}
.c_edit h4 {
    font-size: 34px;
}
.c_edit h5 {
    font-size: 28px;
}
.c_edit h6 {
    font-size: 22px;
}
.c_edit p{
    margin-bottom: 0;
    margin-top: 20px;
    word-break: break-word;
    line-height: 1.5;
    font-size: 17px;
}
.c_edit i, .c_edit em{
    font-style: italic;
}
.c_edit a{
    color: #000;
}
.c_edit a:hover{
    text-decoration: underline;
}
.c_edit > ul, .c_edit > ol{
    margin-top: 20px;
}
.c_edit ul li, .c_edit ol li{
    list-style: none;
}
.c_edit ul li{
    position: relative;
    padding-left: 15px;
    margin-top: 5px;
    word-break: break-word;
}
.c_edit ul li:before{
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    background-color: #000;
    border-radius: 50%;
    content: '';
}
.c_edit ul li {
    border-radius: 0;
}
.c_edit ol{
    counter-reset: item;
    margin-bottom: 0;
    margin-right: 0;
    margin-left: 0;
}
.c_edit ol > li{
    counter-increment: item;
    padding-left: 0px;
    margin-top: 10px;
    display: table;
    word-break: break-word;
}
.c_edit ol > li:before {
    content: counters(item, ".") ". ";
    display: table-cell;
    font-size: 14px;
    color: #000;
    line-height: 1;
    padding-right: 5px;
    white-space: nowrap;
}
.c_edit blockquote {
    font-weight: bold;
    border-left: 5px solid #0000;
    position: relative;
    background-color: #ccc;
    padding: 25px 30px;
    margin-top: 40px;
    color: #fff !important;
}
.c_edit blockquote p{
    margin-top: 0;
}
.c_edit img{
    width: auto;
    height: auto;
    margin: 0;
}
.c_edit img.alignright { float: right; }
.c_edit img.alignleft { float: left; }
.c_edit img.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.c_edit .alignright { float: right; }
.c_edit .alignleft { float: left; }
.c_edit .aligncenter { display: block; margin-left: auto; margin-right: auto; }
.c_edit figure {
    width: auto !important;
    max-width: 100%;
}
.c_edit p:after {
    clear: both;
    content: '';
    display: block;
}
.c_edit table{
    text-align: center;
    width: 100%;
    margin-top: 30px;
    border: 1px solid #707070;
    border-left: none;
    border-top: none;
}
.c_edit table td{
    padding: 10px;
    border-top: 1px solid #707070;
    vertical-align: middle;
    border-left: 1px solid #707070;
    word-break: break-word;    
}
.c_edit > *:first-child {
    margin-top: 0;
}
.mobile-menu,
.burger_menu {
    display: none;
}
.menu_block .menu-item-has-children{
    position: relative;
}
.menu_block .sub-menu {
    position: absolute;
    left: 0;
    margin: 0;
    width: 300px;
    background-color: #fff;
    color: #000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    display: block;
    padding-top: 0 !important;
}
.menu_block li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}
.menu_block a.arr {
    width: 25px;
    height: 25px;
    margin-left: 10px;
    position: relative;
}
.menu_block a.arr::before {
    content: '';
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    transform: rotate(45deg);
    top: 6px;
    left: 6px;
}
.menu_block .sub-menu li{
    margin: 0;
}
.menu_block .sub-menu li a {
    display: block;
    padding: 10px 15px;
    border-top: 1px solid;
}
.menu_block ul:not(.sub-menu) > li > a:not(.arr) {
    padding: 13px 0;
}
.fsub{
    position: relative;
}
.fsub .wpcf7-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}
.wpcf7-form.submitting .wpcf7-submit {
    opacity: 0.2;
}
.fsub .wpcf7-spinner {
    position: relative;
}
.fsub .wpcf7-spinner {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}
.te ul{
    margin: 0;
}
.te li + li{
    margin-top: 10px;
}
.our_teams{
    background: linear-gradient(to bottom, #007AF4 0%, #02093D 100%);
}
.team_member{
    padding-top: 50px;
    margin-top: 50px;
    border-top: 1px solid var(--theme-lime-green);
    color: #fff;
}
.team_member:first-child{
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}
.team_member .image::before{
    content: '';
    display: block;
    padding-bottom: 100%;
}
.team_member ._row{
    margin: 0 -40px;
}
.team_member ._col{
    padding: 0 40px;
}
.team_member ._1{
    width: 35%;
}
.team_member ._2{
    width: 65%;
}
.team_member .heading2 {
    font-weight: normal;
}
.team_member .desc{
    padding: 40px 0 50px 0;
}
.page-template-team .footer{
    margin-top: 0;
}
.page-template-team .small_banner{
    background-color: var(--theme-lime-green);
}
.menu_block .menu > .menu-item:last-child {
    padding: 0px 10px 0px 20px;
    border-radius: 5px;
    border: 1px solid #fff;
}
.menu_block .menu > .menu-item:last-child .sub-menu{
    width: 155px;
}
.contact_popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    text-align: center;
    padding: 60px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}
.contact_popup.active{
    opacity: 1;
    visibility: visible;
}
.contact_popup::after{
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 1px;
    height: 100%;
}
.contact_popup .inner {
    display: inline-block;
    vertical-align: middle;
    background-color: #fff;
    padding: 40px;
}
.contact_popup .inner {
    display: inline-block;
    vertical-align: middle;
    background-color: #fff;
    padding: 40px;
}
.fwrap{
    text-align: left;
}
.poup_close {
    position: absolute;
    right: 30px;
    top: 30px;
    width: 30px;
    height: 30px;
}
.poup_close::before, .poup_close::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: rotate(45deg);
    top: 15px;
    left: 0px;
}
.poup_close::after {
    transform: rotate(-45deg);
}
.img_with_content {
    padding-top: 100px;
}
.img_with_content .row {
    display: flex;
    align-items: center;
    margin: 0 -30px;
}
.img_with_content .col {
    padding: 0px 30px;
    display: inline-block;
}
.img_with_content .title {
    font-size: 32px;
    font-weight: 700;
    color: #1F1F1F;
}
.img_with_content .desc {
    font-size: 32px;
    color: #1F1F1F;
    margin-top: 35px;
}
.blue_btn {
    font-size: 17px;
    color: #FFFFFF;
    padding: 10px 35px;
    background-color: #007AF4;
    border-radius: 4px;
    border: 1px solid #007AF4;
    margin-top: 35px;
    display: inline-block;
}
.blue_btn:hover {
    color: #1F1F1F;
    background-color: transparent;
    border: 1px solid #1F1F1F;
}
.img_with_content .image {
    padding-top: 40%;
}
.col_40 {
    width: 40%;
}
.col_60 {
    width: 60%;
}
.two_col .image.logo_im {
    text-align: center;
}
.two_col .image.logo_im::before {
    display: none;
}
.align_bottom ._row {
    align-items: flex-end;
}