:root{
    --theme-font-primary: 'Verdana';
    --theme-font-roboto: 'Arial';
    --theme-font-roboto: "Roboto", sans-serif;
    --theme-font-open: "Open Sans", sans-serif;
    --theme-black: #000;
    --theme-gray: #4C4C4F;
    --theme-orange: #FF4F00;
}
html, body{
    background-color: #F5F5F5;
}
body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-family: var(--theme-font-open);
    font-weight: 400;
    font-size: 18px;
    font-style: normal;
    color: var(--theme-gray);
}

.c{
    max-width: 1360px;
}
._row{
    display: flex;
    flex-wrap: wrap;
}
._col{
    display: inline-block;
}
.section_padding{
    padding-top: 100px;
    padding-bottom: 100px;
}
.section_white + .section_white{
    margin-top: -100px;
}
.text_center {
    text-align: center;
}
.text_left {
    text-align: left;
}
.text_right {
    text-align: right;
}
.page_top_padding .content {
    padding-top: 30px;
}
.p_relative{
    position: relative;
}

.header {
    padding: 35px 0;
    position: sticky;
    top: 0;
    z-index: 99;
    background-color: #F5F5F5;
    transition: box-shadow 0.4s;
}
.has-scrolled .header {
    box-shadow: 0 4px 100px rgba(0, 0, 0, 0.05);
}
.logo{
    display: inline-block;
    position: relative;
    font-family: "Inter", sans-serif;
    font-size: 34px;
    color: #000;
    font-weight: 800;
}
.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, #ff6600, #ff9933);
    border-radius: 2px;
}
.header .dflex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu {
    list-style: none;
}
.menu li {
    display: inline-block;
    margin: 0 12px;
    position: relative;
}
.menu_wrap a {
    display: block;
}
.menu_wrap .menu li > a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    background-color: var(--theme-orange);
    height: 2px;
    transition: all 0.4s;
    width: 0;
}
.menu_wrap a:hover,
.current-menu-item a,
.current-menu-ancestor > a {
    color: var(--theme-orange);
}
.menu_wrap .menu > li > a:hover::before,
.menu_wrap .menu > li.current-menu-item a::before,
.menu_wrap .menu > li.current-menu-ancestor > a::before {
    left: 0;
    width: 100%;
    right: auto;
}
.menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 6px;
    height: 6px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
    margin-left: 8px;
    margin-top: -5px;
}
.menu_wrap .sub-menu li {
    display: block;
    padding: 10px 10px;
}
.menu_wrap .sub-menu li:first-child {
    padding-top: 25px;
}
.menu_wrap .sub-menu li:last-child {
    padding-bottom: 25px;
}
.menu_wrap .sub-menu{
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 35px;
    width: 240px;
    background-color: #fff;
    transition: opacity 0.4s, visibility 0.4s;
    margin-left: -20px;
}
.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}
.menu_wrap .sub-menu a{
    font-size: 16px;
}
.site_btn {
    padding: 10px 15px 10px 25px;
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    color: #fff;
    background-color: var(--theme-orange);
}
.site_btn span {
    margin-right: 7px;
}
.site_btn:hover{
    background-color: var(--theme-black);
}
.site_btn svg, .arrow_link > svg {
    transition: transform 0.4s;
}
.site_btn:hover > svg, .arrow_link:hover > svg {
    transform: rotate(45deg);
}
.trans_btn {
    background-color: transparent;
    border: 1px solid var(--theme-orange);
    color: var(--theme-orange);
}
.trans_btn path{
    fill: var(--theme-orange);
}
.trans_btn:hover{
    background-color: var(--theme-orange);
    color: #fff;
}
.trans_btn:hover path {
    fill: #fff;
}
.black_btn {
    background-color: var(--theme-black);
    color: #fff;
}

.footer{
    padding: 80px 0;
}
.footer_cols {
    padding: 55px 0;
}
.footer_cols ._row {
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 80px;
}
.fmenu ul.sub-menu {
    display: none;
}
.fmenu li {
    display: block;
    margin: 7px 0 0 0;
}
.title25 {
    font-size: 25px;
    font-weight: bold;
    color: var(--theme-black);
    font-family: var(--theme-font-roboto);    
}
.footer_cols .link {
    display: block;
    margin-top: 18px;
    font-size: 20px;
    color: var(--theme-black);
}
.foot_title {
    font-size: 20px;
    font-weight: bold;
    color: var(--theme-black);
    padding-bottom: 10px;
    font-family: var(--theme-font-roboto);
}
.fmenu a {
    font-size: 16px;
    display: inline-block;
    color: #4C4C4F;
}
.fmenu a:hover, .footer_cols .link:hover {
    color: var(--theme-orange);
}
.footer_cols .fmenu {
    max-width: 220px;
}
.s_links a {
    display: inline-block;
    width: 37px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    background-color: #FFF0EA;
    margin-right: 10px;
    color: var(--theme-black);
}
.s_links a:hover {
    background-color: var(--theme-orange);
    color: #fff;
}
.s_links a::after {
    content: '';
    display: block;
    padding-bottom: 100%;
}
.s_links a::before {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 15px;
    transition: transform 0.4s;
    transform-origin: center;
}
.s_links a:hover::before{
    transform: translate(-50%, -50%) rotate(360deg);
}
.social_block {
    padding-top: 25px;
    border-top: 1px solid #DEDEDE;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.copy_text {
    font-size: 16px;
}
.google_part {
    margin-top: 25px;
}

.banner{
    position: relative;
    height: 630px;
    margin-bottom: 100px;
}
.banner .image {
    height: 630px;
    overflow: hidden;
}
.b_cont{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
}
.title_large{
    font-size: 70px;
    font-family: var(--theme-font-roboto);
    color: #fff;
    text-align: center;
    font-weight: bold;
}
.b_cont .title_large {
    margin: auto;
}

.shadow_box {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    transform: translateY(50%);
}
.shadow_box ._col {
    width: 25%;
    text-align: center;
}
.sbox {
    padding: 35px;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0 4px 100px rgba(0, 0, 0, 0.15);
}
.sbox .num {
    font-size: 50px;
    font-weight: bold;
    font-family: var(--theme-font-roboto);
    color: var(--theme-black);
}
.sbox .vl {
    font-size: 16px;
    padding-top: 5px;
}
.shadow_box ._row {
    width: 80%;
    margin: auto;
}
.shadow_box ._col:not(._1) {
    margin-left: -20px;
}
.shadow_box ._1{
    transform: rotate(-6deg);
}
.shadow_box ._2{
    transform: rotate(4deg);
}
.shadow_box ._3{
    transform: rotate(-6deg);
}
.shadow_box ._4{
    transform: rotate(7deg);
}
.two_col ._row{
    margin: 0 -25px;
}
.two_col ._col{
    padding: 0 25px;
}
.two_col ._1 {
    width: 45%;
    position: relative;
    padding-bottom: 70px;
}
.two_col ._1::before {
    content: '';
    position: absolute;
    left: -20%;
    bottom: -35%;
    width: 300px;
    height: 300px;
    background-color: rgb(255 79 0 / 35%);
    filter: blur(200px);
    /* background-image: url('../images/bg.png');
    background-repeat: no-repeat;
    background-size: contain; */
}
.two_col ._2 {
    width: 55%;
}
.two_col .image {
    height: 100%;
}
.two_col .image .bg_full{
    border-radius: 50px;
    overflow: hidden;
}
.title40 {
    font-size: 40px;
    font-weight: bold;
    color: var(--theme-black);
    font-family: var(--theme-font-roboto);
}
.c_edit > *:first-child{
    margin-top: 0;
}
.c_edit p {
    line-height: 1.6;
    margin-top: 30px;
}
.two_col .title40{
    padding-bottom: 20px;
}
.two_col .site_btn{
    margin-top: 30px;
}
.ico_wraps {
    position: absolute;
    right: 20px;
    bottom: 55px;
}
.ico_box {
    width: 60px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--bg-color);
    position: relative;
}
.ico_box path{
    stroke: var(--svg-color);
}
.ico_box::before{
    content: '';
    display: block;
    padding-bottom: 100%;
}
.ico_box svg {
    width: 60%;
    height: 60%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.ico_box img{
    width: auto;
    height: 33px;
}
.ico_wrap {
    background-color: #fff;
    padding: 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
}
.ico_meta {
    padding-left: 13px;
}
.ico_meta .t {
    font-size: 20px;
    font-weight: bold;
    color: var(--theme-black);
    font-family: var(--theme-font-roboto);
}
.ico_meta .vl {
    padding-top: 3px;
}
.ico_wrap + .ico_wrap {
    margin-top: 20px;    
    position: relative;
    left: 50px;
}
.services_grids ._row {
    margin: 0 -15px;
}
.services_grids ._col {
    padding: 0 15px;
    width: 50%;
    margin-top: 35px;
}
.service_grid {
    box-shadow: 0 4px 100px rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    overflow: hidden;
    padding: 45px;
    height: 100%;
    text-align: center;
}
.service_grid .ico_box {
    width: 95px;
    margin: auto;
}
.title30 {
    font-size: 30px;
    font-weight: bold;
    color: var(--theme-black);
    font-family: var(--theme-font-roboto);
}
.service_grid .title30{
    padding: 15px 0 20px 0;
}
.service_grid .desc {
    line-height: 1.67;
}
.services_grids .title40 {
    padding-bottom: 15px;
}
.service_grid .arrow_link {
    margin-top: 20px;
    justify-content: center;
}
.arrow_link {
    display: flex;
    align-items: center;
    color: #D090D7;
    font-size: 20px;
    font-weight: bold;
    font-family: var(--theme-font-roboto);
}
.arrow_link path{
    fill: #D090D7;
}
.arrow_link svg {
    margin-left: 4px;
}
.arrow_link:hover {
    color: var(--theme-orange);
}
.arrow_link:hover > svg path{
    fill: var(--theme-orange);
}
.radius_block ._row{
    margin: 0 -15px;
}
.radius_block ._col{
    padding: 0 15px;
    width: 50%;
}
.radius_block ._col:first-child{
    padding-top: 30px;
    padding-bottom: 30px;
}
.radius_block .bg {
    padding: 70px 70px 0 70px;
    /* background-color: #f9ffec; */
    background-color: transparent;
    border-radius: 50px;
    height: 100%;
    position: relative;
}
.radius_block .bg .image {
    height: 100%;
}
.radius_block .bg .bg_full {
    border-radius: 0 50% 0 0;
}
.radius_block .desc {
    padding: 17px 0 25px 0;
    line-height: 1.67;
}
.radius_block .title40 {
    text-align: center;
}
.radius_block .top_line,
.radius_block .side_line{
    display: none;
}
.blists ul{
    margin: 0;
    list-style: none;
}
.blists li {
    font-size: 25px;
    font-weight: bold;
    font-family: var(--theme-font-roboto);
    color: var(--theme-black);
    position: relative;
    padding-left: 40px;
}
.blists li::before {
    background-color: #21E29D;
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
}
.blists li::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 7px;
    width: 5px;
    height: 11px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}
.blists li + li {
    margin-top: 20px;
}
.radius_block .site_btn {
    margin-top: 35px;
}
.g_part {
    position: absolute;
    left: -60px;
    bottom: -35px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 100px rgba(0, 0, 0, 0.05);
    width: 250px;
}
.g_part::before {
    content: '';
    display: block;
    padding-bottom: 75.59%;
}
.g_part .bg_full {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background-size: contain;
}
.top_line {
    position: absolute;
    left: -45px;
    top: -35px;
    width: 110px;
    height: auto;
}
.side_line {
    position: absolute;
    bottom: 30px;
    right: -20px;
    width: 55px;
    height: auto;
}
.b_bg {
    background-color: #F4F9FF;
    border-radius: 50px;
    padding: 90px;
}
.approach_grid{
    text-align: center;
}
.approach_grid img,
.approach_grid svg {
    width: auto;
    height: 75px;
}
.approach_block ._row {
    margin: 0 -30px;
}
.approach_block ._col {
    width: 50%;
    padding: 0 30px;
    margin-top: 30px;
}
.approach_grid .title25 {
    padding: 14px 0 22px 0;
}
.approach_grid .desc{
    line-height: 1.67;
}
.approach_block .title40 {
    padding-bottom: 20px;
    text-align: center;
}
.approach_block .site_btn {
    margin-top: 35px;
}
.approach_block .text_center {
    margin-top: 70px;
}
.case_studies_blocks {
    margin-top: 50px;
}
.case_studies_blocks .case_study:nth-child(even) ._row {
    flex-direction: row-reverse;
}
.case_bg {
    background-color: #ededed;
    padding: 65px 50px;
    border-radius: 50px;
}
.case_study ._row{
    margin: 0 -15px;
}
.case_study ._col{
    padding: 0 15px;
}
.case_study ._1{
    width: 40%;
}
.case_study ._2{
    width: 60%;
}
.case_study .image {
    height: 100%;
    border-radius: 50px;
    overflow: hidden;
}
.title35 {
    font-size: 35px;
    font-weight: bold;
    color: var(--theme-black);
    font-family: var(--theme-font-roboto);
}
.case_study .desc{
    padding: 20px 0;
    line-height: 1.67;
}
.cs_tags ul{
    list-style: none;
    display: flex;
    margin-left: -15px;
}
.cs_tags li{
    margin-left: 15px;
}
.cs_tag {
    background-color: #FDF0EE;
    padding: 15px 20px;
    border-radius: 50px;
    color: #FF4F00;
}
.case_study .blists{
    padding-top: 20px;
}
.case_study .blists li{
    font-weight: normal;
}
.case_study .site_btn{
    margin-top: 35px;
}
.case_study + .case_study {
    margin-top: 30px;
}
.radius_left ._row{
    flex-direction: row-reverse;
}
.radius_left .bg {
    background-color: #E0F1EF;
    min-height: 580px;
}
.radius_block .bg .bg_full{
    border-radius: 50% 50% 0 0;
}
.toggle_block ul .inner {
    overflow: hidden;
    display: none;
    line-height: 1.67;
}
.toggle_block ul .inner.show {
    /*display: block;*/
}
.radius_left ._row {
    margin: 0 -30px;
}
.radius_left ._col {
    padding: 0 30px;
}
.toggle_block ul{
    list-style: none;
}
.toggle_block ul li {
    border-bottom: 1px solid #F2F2F2;
}
.toggle_block ul li:first-child {
    border-top: 1px solid #F2F2F2;
}
.toggle_block .toggle {
    font-size: 25px;
    font-weight: bold;
    display: block;
    color: var(--theme-black);
    padding: 18px 40px 18px 0;
    font-family: var(--theme-font-roboto);
    position: relative;
}
.toggle_block .toggle::before, .toggle_block .toggle::after {
    content: '';
    position: absolute;
    top: 30px;
    right: 0;
    width: 12px;
    height: 2px;
    background-color: #000;
    transition: opacity 0.4s;
}
.toggle_block .toggle::after {
    width: 2px;
    height: 12px;
    top: 25px;
    right: 5px;
}
.toggle_block .toggle.open::after{
    opacity: 0;
}
.toggle_block .toggle.open,
.toggle_block .toggle:hover {
    color: #A057E3;
}
.info_bg {
    background-color: #FF4F00;
    border-radius: 50px;
    padding: 60px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.info_bg .max {
    max-width: 560px;
    margin: auto;
    position: relative;
}
.info_bg .desc {
    padding: 25px 0;
    line-height: 1.67;
}
.info_bg .title40{
    color: #fff;
}
.banner_text ._row {
    margin: 0 -20px;
}
.banner_text ._col {
    padding: 0 20px;
}
.banner_text ._1 {
    width: 40%;
}
.banner_text ._2 {
    width: 60%;
}
.banner_text .text {
    line-height: 1.6;
}
.banner_text .title25,
.mission .title25 {
    font-weight: normal;
    color: var(--theme-orange);
}
.banner_text .title40 {
    padding-top: 15px;
}
.img_full{
    margin-top: 30px;
}
.img_full .image{
    border-radius: 50px;
    overflow: hidden;
}
.img_full img{
    width: 100%;
    height: auto;
}
.logo_slider .title25 {
    text-align: center;
    padding-bottom: 40px;
}
.logo_slider,
.two_sliders_wrap{
    overflow: hidden;
}
.logo_slider .swiper,
.two_sliders_wrap .swiper {
    overflow: visible;
}
.logo_block{
    display: block;
}
.logo_block .image::before {
    content: '';
    display: block;
    padding-bottom: 28.57%;
}
.logo_block .bg_full{
    background-size: contain;    
}
.logo_slider .swiper-slide {
    width: 16.666%;
}
.two_images ._row{
    margin: 0 -25px;
    align-items: center;
}
.two_images ._col{
    width: 50%;
    padding: 0 25px;
}
.two_images .images {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}
.two_images .image{
    border-radius: 100px 0 0 0;
    overflow: hidden;
}
.two_images .image::before{
    content: '';
    display: block;
    padding-top: 128.57%;
}
.two_images .desc{
    padding-top: 30px;
    line-height: 1.67;
}
.two_slider_block .image{
    border-radius: 50px;
    overflow: hidden;
}
.two_slider_block .image::before{
    content: '';
    display: block;
}
.t1 .image::before {
    padding-bottom: 66.14%;
}
.t2 .image::before {
    /* padding-bottom: 82.46%; */
    padding-bottom: 66.14%;
}
.t3 .image::before {
    /* padding-bottom: 60.47%; */
    padding-bottom: 66.14%;
}
.two_sliders_wrap .t1 {
    width: 385px;
}
.two_sliders_wrap .t2 {
    width: 310px;
}
.two_sliders_wrap .t3 {
    width: 420px;
}
.two_slider_block .cont {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    padding: 30px;
}
.t3 .two_slider_block .image {
    background-color: var(--bg-color);
    color: var(--txt-color);
}
.two_slider_block .tit {
    font-size: 100px;
    font-weight: bold;
    font-family: var(--theme-font-roboto);
}
.two_slider_block .tit_desc {
    font-size: 25px;
}
.two_sliders_wrap + .two_sliders_wrap {
    margin-top: 45px;
}
.our_approach .desc {
    line-height: 1.67;
    margin-top: 30px;
}
.our_approach .desc p + p{
    margin-top: 20px;
}
.our_approach .mission {
    margin-top: 80px;
}
.our_approach .title40 {
    text-align: center;
}
.mission ._row{
    margin: 0 -40px;
    justify-content: center;
}
.mission ._col{
    padding: 0 40px;
    width: 65%;
    text-align: center;
}
.mission .title25{
    padding-bottom: 30px;
    text-align: center;
}
.mission_li {
    border-radius: 50px;
    box-shadow: 0 4px 100px rgba(0, 0, 0, 0.1);
    padding: 25px;
    display: inline-block;
}
.mission_li div{
    display: inline-block;
    vertical-align: middle;
}
.mission_li .txt{
    font-size: 25px;
    margin-left: 15px;
}
.mission_li + .mission_li {
    margin-top: 30px;
}
.our_approach {
    overflow: hidden;
}
.our_approach .c {
    position: relative;
}
.cir {
    position: absolute;
    left: 60px;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0.75;
}
.approach .img_full {
    position: relative;
}
.cir2 {
    left: auto;
    right: 5%;
    transform: translate(25%, -50%);
    opacity: 1;
    width: 50% !important;
}
.works_with{
    background-color: #F4F9FF;
}
.works_with img{
    width: 100%;
    height: auto;
}
.works_with ._1{
    width: 55%;
}
.works_with ._2{
    width: 45%;
}
.works_with ._row{
    margin: 0 -25px;
    align-items: center;
}
.works_with ._col{
    padding: 0 25px;
}
.works_with .desc{
    line-height: 1.67;
    margin-top: 15px;
}
.large_txt {
    font-size: 145px;
    font-weight: bold;
    color: var(--theme-black);
    font-family: var(--theme-font-roboto);
}
.banner_cols ._row{
    margin: 0 -12px;
}
.banner_cols ._col{
    padding: 0 12px;
}
.banner_cols ._1{
    width: 55%;
}
.banner_cols ._2{
    width: 45%;
}
.banner_cols ._row {
    margin-top: 20px;
}
.banner_cols .txt {
    line-height: 1.67;
}
.banner_cols .image{
    border-radius: 50px;
    overflow: hidden;
}
.banner_cols ._1 .image::before{
    content: '';
    display: block;
    padding-top: 69%;
}
.banner_cols ._2 .image::before{
    content: '';
    display: block;
    padding-top: 85%;
}
.seo_facts {
    background-color: #F5FFDA;
    margin-top: 70px;
}
.seo_facts ._row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 60px;
}
.seo_facts .tit {
    font-size: 70px;
    font-weight: bold;
    font-family: var(--theme-font-roboto);
    color: var(--theme-orange);
}
.seo_facts .txt{
    font-size: 35px;
    font-weight: bold;
    font-family: var(--theme-font-roboto);
    color: var(--theme-black);
    padding: 12px 0;
}
.seo_info {
    padding: 45px;
    border-radius: 50px;
    background-color: rgb(187 212 121 / 20%);
    color: var(--theme-black);
}
.seo_info .desc{
    line-height: 1.67;
}
.seo_info .site_btn{
    margin-top: 20px;
}
.we_offer{
    background-color: #F4F9FF;
}
.we_offer ._row{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 50px;
}
.offer_grid {
    background-color: #fff;
    padding: 35px;
    border-radius: 20px;
    height: 100%;
}
.offer_grid .title30 {
    padding: 15px 0 10px;
}
.offer_grid .desc{
    line-height: 1.67;
}
.caseSwiper{
    margin-top: 50px;
}
.swiper_controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    gap: 20px;
}
.swiper_cont {
    width: 60px;
    opacity: 1;
    position: static;
    height: 60px;
    background-color: #000;
    border-radius: 50%;
    margin: 0;
    transition: all 0.4s;
}
.swiper_cont::after{
    opacity: 0;
    position: absolute;
    visibility: hidden;
}
.swiper_cont.swiper-button-next {
    transform: rotate(-45deg);
}
.swiper_cont.swiper-button-prev {
    transform: rotate(45deg);
}
.swiper_cont:hover {
    transform: rotate(0deg);
    background-color: var(--theme-orange);
}
.dblock{
    position: relative;
    padding: 80px 30px 0 30px;
    color: #fff;
}
.dblock::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 80%;
    background-color: var(--theme-orange);
    border-radius: 50px;
    background-image: url('../images/bg-banner.png');
    background-size: 100%;
    background-position: top -30% center;
}
.dblock .text_center{
    max-width: 900px;
    margin: auto;
}
.dblock .desc{
    line-height: 1.67;
    margin-top: 25px;
}
.dblock .title40{
    color: #fff;
}
.dblock .site_btn{
    margin-top: 40px;
}
.dgrids{
    margin-top: 40px;
}
.dgrids .image {
    height: 620px;
    border-radius: 50px;
    overflow: hidden;
}
.dgrids ._row{
    margin: 0 -10px;
}
.dgrids ._col{
    padding: 0 10px;
}
.dgrids ._2{
    width: 62%;
}
.dgrids ._1,
.dgrids ._3{
    width: 18%;
}
.facts_slider_block{
    text-align: center;
    overflow: hidden;
    background-image: url('../images/slider-bg.png');
    background-position: center;
}
.facts_slider{
    text-align: left;
    margin-top: 45px;
}
.facts_slider_block .max {
    max-width: 800px;
    margin: auto;
}
.facts_slider_block .desc{
    line-height: 1.67;
    padding: 30px 0;
}
.fact_text {
    padding: 65px;
    border-radius: 30px;
    background-color: #fff;
    border: 1px solid #E4E4E4;
}
.fact_text span{
    color: var(--theme-orange);
}
.fact_text .desc{
    padding: 10px 0 0 0;
    font-family: var(--theme-font-primary);
}
.facts_slider .swiper-slide {
    width: 60%;
}
.factSwiper {
    overflow: visible;
}
.fact_img{
    position: relative;
    height: 690px;
    border-radius: 50px;
    overflow: hidden;
}
.fact_img .fact_text {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    padding: 45px 30px;
    border-radius: 50px;
}
.cs_block .image{
    height: auto;
}
.cs_block .image::before {
    padding-bottom: 73.68%;
    display: block;
    content: '';
}
.case_bg_meta .cs_tags {
    margin: 10px 0 15px 0;
}
.case_bg_meta .cs_tags li{
    margin-top: 5px;
}
.case_study_bl {
    margin-top: 45px;
}
.cs_tags ul{
    flex-wrap: wrap;
}
.banner_text .site_btn {
    margin-top: 20px;
}
.design_grids{
    background-image: url('../images/grid-bg.png');
    background-repeat: no-repeat;
    background-position: top 25px center;
    background-size: 70%;
}
.design_grid {
    padding: 25px 35px;
    border-radius: 20px;
    background-color: #F5F5F5;
    height: 100%;
}
.title80 {
    font-size: 80px;
    color: var(--theme-orange);
    font-weight: bold;
}
.design_grid .title35{
    padding: 15px 0 20px 0;
}
.design_grid .desc{
    line-height: 1.67;
}
.design_grids ._row{
    margin: 0 -7px;
    margin-top: 50px;
}
.design_grids ._col{
    padding: 0 7px;
    margin-top: 14px;
}
.design_grids ._1 {
    width: 37%;
}
.design_grids ._2 {
    width: 63%;
}
.design_grids ._3 {
    width: 63%;
}
.design_grids ._4 {
    width: 37%;
}
.design_grids ._5 {
    width: 100%;
}
.mobile-menu {
    display: none;
}
.txt_btn {
    margin-top: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.txt_btn .site_btn{
    white-space: nowrap;
}
.txt_btn .desc {
    padding-right: 30px;
    line-height: 1.67;
    width: 65%;
}
.service_grd .image{
    border-radius: 30px;
    overflow: hidden;
}
.service_grd .image::before {
    content: '';
    display: block;
    padding-bottom: 108%;
}
.ser_meta{
    margin-top: 20px;
}
.ser_meta .desc {
    margin-top: 15px;
    line-height: 1.67;
}
.serSwiper {
    max-width: 920px;
    margin: auto;
    overflow: visible;
}
.service_slider {
    margin-top: 45px;
}
.service_offer {
    overflow: hidden;
}
.b_img {
    position: relative;
    padding: 140px 30px;
    border-radius: 50px;
    overflow: hidden;
}
.b_img .bcont {
    position: relative;
    text-align: center;
    color: #fff;
}
.title50{
    font-size: 50px;
    font-weight: bold;
    font-family: var(--theme-font-roboto);
}
.title50 {
    font-size: 50px;
    font-weight: bold;
    font-family: var(--theme-font-roboto);
}
.bcont .desc {
    line-height: 1.67;
    max-width: 920px;
    margin: auto;
    margin-top: 20px;
}
.bcont .site_btn{
    margin-top: 35px;
}
.b_img .bg_full::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}
.marketing_grid {
    background-color: rgb(245 255 218 / 50%);
    padding: 55px;
    border-radius: 20px;
    height: 100%;
}
.marketing_grid .swiper-slide{
    height: auto;
}
.marketing_facts_slider {
    margin-top: 35px;
}
.marketingSwiper {
    max-width: 1110px;
    margin: auto;
    overflow: visible;
}
.marketing_facts {
    overflow: hidden;
}
.marketing_grid .desc {
    margin-top: 13px;
    line-height: 1.67;
}
.marketing_grid .title40 span{
    color: var(--theme-orange);
}
.marketing_grid_cols .marketing_grid{
    background-color: #F7F5FF;
}
.marketing_grid_cols {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 35px;
}
.txt_max {
    max-width: 820px;
    margin: auto;
    margin-top: 35px;
    text-align: center;
}
.txt_max .site_btn{
    margin-top: 35px;
}
.text22 {
    font-size: 22px;
    font-family: var(--theme-font-roboto);
    line-height: 1.5;
}
.marketing_facts_slider .swiper-slide {
    height: auto;
}
.form-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    margin: auto;
  }
  .form-container  h2 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
  }
  .form-container .quote-fact {
    background: #3498db;
    color: #fff;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
  }
  .form-container label {
    display: block;
    color: #2c3e50;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
  }
  .form-container input, .form-container textarea, .form-container select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
    font-family: inherit;
  }
  .form-container input:focus, .form-container textarea:focus, .form-container select:focus {
    border-color: #3498db;
    outline: none;
  }
  /* .form-container button {
    width: 100%;
    padding: 14px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  .form-container button:hover {
    background: #2980b9;
  } */
  .form-container .checkbox-group .wpcf7-form-control {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
  }
  .wpcf7-form-control .wpcf7-list-item{
    margin: 0;
  }
  .form-container .checkbox-group label {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .form-container .checkbox-group input {
    margin: 0;
    width: auto;
  }
  .form-container .additional-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
.form_block .wpcf7-not-valid-tip {
    display: none;
}
input.wpcf7-not-valid, textarea.wpcf7-not-valid, select.wpcf7-not-valid {
    border-color: red;
}
.checkbox-group .wpcf7-not-valid input{
    border-color: red;
}
.wpcf7 form .wpcf7-response-output {
    border: 0;
}
.contact_us .banner_text ._col {
    width: 100%;
    text-align: center;
}
.contact_us .banner_text ._2 {
    padding-top: 30px;
    max-width: 65%;
    margin: auto;
}
.burger_menu {
    display: none;
}
.blog_block ._row{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}
.cs_meta {
    padding: 15px 0;
}
.cs_date {
    font-size: 14px;
    color: var(--theme-orange);
}
.title24 {
    font-size: 24px;
    font-weight: bold;
}
.blog_block .image{
    overflow: hidden;
    transition: transform 0.4s;
}
.blog_block .bg_full{
    transition: transform 0.4s;
}
.blog_block .image:hover .bg_full{
    transform: scale(1.1);
}
.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{
    font-weight: bold;
    margin-top: 40px;
}
.c_edit h1 {
    font-size: 40px;
}
.c_edit h2 {
    font-size: 34px;
}
.c_edit h3 {
    font-size: 30px;
}
.c_edit h4 {
    font-size: 28px;
}
.c_edit h5 {
    font-size: 24px;
}
.c_edit h6 {
    font-size: 22px;
}
.c_edit p{
    margin-bottom: 0;
    margin-top: 20px;
    word-break: break-word;
    line-height: 1.65;
}
.c_edit i, .c_edit em{
    font-style: italic;
}
.c_edit a{
    color: #F89728;
}
.c_edit > ul, .c_edit > ol{
    margin-top: 30px;
}
.c_edit ul li, .c_edit ol li{
    list-style: none;
}
.c_edit ul li{
    position: relative;
    padding-left: 15px;
    margin-top: 10px;
    word-break: break-word;
}
.c_edit ul li:before{
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    background-color: var(--theme-orange);
    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: #00539a;
    line-height: 1;
    padding-right: 5px;
    white-space: nowrap;
}
.c_edit blockquote {
    font-weight: bold;
    border-left: 5px solid #052546;
    position: relative;
    background-color: #00539a;
    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;
}
.blog_content .c_edit {
    padding-top: 60px;
}