/*
Theme Name: Custom Theme
Theme URI: http://clickandmarket.com
Author: clickandmarket
Author URI: http://clickandmarket.com/
Description: Custom theme developed for Opus Operations
Version: 1.0
*/
.nt_ts_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none!important;
}
.nt_ts_inner:hover > .nt_ts_info {
  opacity: 1;
  background: linear-gradient(-180deg, transparent 0%, transparent 50%, rgba(255, 255, 255,0.0) 50%, rgba(255, 255, 255,0.6) 100%)!important;
}
@font-face {
    font-family: 'Solanel';
    src: url(assets/fonts/Solanel-Light.woff);
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Solanel';
    src: url(assets/fonts/Solanel-Regular.woff);
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Solanel';
    src: url(assets/fonts/Solanel-Medium.woff);
    font-weight: 500;
    font-display: swap;
}

:root {
    --green: #34bcb6;
    --blue: #3d56a2;
    --darkgrey: #414243;
    --darktext: #191919;
    --lightgrey: #eaebec;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    position: relative;
    font-family: 'Solanel', sans-serif;
}

input,
button,
textarea,
select {
    transition: .2s;
    font-family: 'Solanel', sans-serif;
}

input:focus,
button:focus,
textarea:focus,
select:focus {
    outline: 0;
    border-color: var(--darkgrey) !important;
}

a {
    text-decoration: none;
}

.float_fix {
    clear: both;
}

.horizontal_spacing {
    width: 100%;
    display: inline-block;
}

.boxed_width {
    max-width: 1240px;
    position: relative;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
}

.flex {
    display: flex;
}

.flex_center {
    justify-content: center;
    align-items: center;
}

.flex_col {
    flex-direction: column;
}

/*
NAV MENU ICON
*/

.nav_icon {
    height: 20px;
    z-index: 2;
    display: none;
}

.nav_icon a {
    display: -ms-flexbox;
    display: flex;
    width: 27px;
    position: relative;
}

.nav_icon a span {
    position: relative;
    margin-top: 7px;
    margin-bottom: 7px;
    user-select: none;
    height: 20px;
}

.nav_icon a span,
.nav_icon a span::before,
.nav_icon a span::after {
    display: block;
    width: 27px;
    height: 3px;
    border-radius: 5px;
    background-color: var(--green);
    transition: all .3s;
}

.nav_icon a span::before,
.nav_icon a span::after {
    position: absolute;
    content: "";
}

.nav_icon a span::before {
    top: -8px;
}

.nav_icon a span::after {
    top: 8px;
}

.nav_icon.mnb_on a span {
    background-color: transparent;
}

.nav_icon.mnb_on a span::before {
    transform: translateY(8px) rotate(45deg);
}

.nav_icon.mnb_on a span::after {
    transform: translateY(-8px) rotate(-45deg);
}

.primary_btn {
    min-width: 200px;
    text-align: center;
    background-color: var(--green);
    color: #fff;
    font-size: 18px;
    padding: 16px 26px;
    border: 2px solid var(--green);
    letter-spacing: 0.5px;
    transition: .2s;
    cursor: pointer;
}

.med_btn {
    min-width: 130px;
    text-align: center;
    background-color: var(--green);
    color: #fff;
    font-size: 16px;
    padding: 10px 20px;
    border: 2px solid var(--green);
    letter-spacing: 0.5px;
    transition: .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.msf_steps {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
}

.msf_btns {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 10px;
}

.prev_icon {
    font-size: 20px;
    margin-right: 5px;
    margin-top: -2px;
}

.prev_btn {
    margin-right: 10px;
    background: #aaa;
    border-color: #aaa;
}

.next_icon {
    font-size: 20px;
    margin-left: 5px;
    margin-top: -2px;
}

.med_btn:hover,
.primary_btn:hover {
    background-color: #fff;
    color: var(--green);
    border-color: var(--green);
}

.dark_btn {
    background-color: var(--darkgrey);
}

.outline_btn {
    min-width: 200px;
    text-align: center;
    background: transparent;
    color: #fff;
    font-size: 18px;
    padding: 16px 26px;
    border: 2px solid #fff;
    letter-spacing: 0.5px;
    transition: .2s;
}

.outline_btn:hover {
    background-color: var(--darkgrey);
    border-color: var(--green);
}

/*
END NAV MENU ICON
*/

/*
MSF Styles
*/

.msf_section_head {
    width: 100%;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.two_input_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.input_wrap {
    margin-bottom: 20px;
}

.input_wrap textarea {
    width: 100%;
    height: 150px;
    font-size: 16px;
    padding: 7px;
    font-family: 'Solanel', sans-serif;
}

.radio_wrap {
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
}

.radio_wrap input {
    width: auto;
}

.radio_wrap label {
    margin-left: 8px;
}

.selects_wrap label {
    font-size: 15px;
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.two_input_wrap select,
.input_wrap select {
    padding: 10px;
    width: 100%;
    height: 42px;
    font-size: 17px;
    font-family: Raleway;
    border: 1px solid #aaaaaa;
}

.two_input_wrap > input,
.two_input_wrap > select,
.two_input_wrap > .wpcf7-form-control-wrap {
    width: calc(50% - 10px);
}

.two_input_wrap > .wpcf7-form-control-wrap input,
.two_input_wrap > .wpcf7-form-control-wrap select {
    width: 100%;
}

.selects_wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px;
    background: #f7f7f7;
}

.selects_wrap .single_select {
    width: calc(50% - 10px);
    margin-bottom: 15px;
}

input.select2-search__field,
.select2-selection {
    cursor: pointer;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    padding: 3px 5px 0 !important;
}

.select2-container,
.select2-search,
.select2-search__field {
    width: 100% !important;
}

span.wpcf7-list-item {
    display: flex !important;
    margin-left: 0 !important;
    margin-top: 10px !important;
}

span.wpcf7-list-item label {
    display: flex;
    align-items: center;
}

span.wpcf7-list-item label input {
    width: auto;
    margin-right: 8px;
    margin-top: -5px;
}

input#file_input {
    display: none;
}

.filename {
    background: #f7f7f7;
    padding: 10px;
}

.filename.fn_hide {
    display: none;
}

.file_upload_wrap label {
    width: 100%;
    display: block;
    position: relative;
    padding: 45px;
    border: 1px dashed #aaa;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.file_upload_wrap label:after {
    content: 'Upload File';
    position: absolute;
    color: #fff;
    padding: 12px 20px;
    background: var(--green);
}

.submit_btn {
    display: none;
    width: auto;
}

/*Header*/
.main_header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px 0 40px;
    border-bottom: 1px solid #eaebec;
}

.main_header .boxed_width {
    width: 100%;
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.main_header,
.head_space {
    height: 100px;
}

.mobile_nav_wrap {
    display: none;
    background: rgba(0,0,0,0.5);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 75px;
    left: 0;
}

.mobile_nav {
    opacity: 0;
    left: -400px;
    padding: 15px;
    background: var(--green);
    height: calc(100vh - 75px);
    top: 75px;
    position: fixed;
    width: 300px;
}

.mobile_nav_overlay {
    width: calc(100% - 300px);
    height: 100%;
    position: fixed;
    right: 0;
}

.mobile_nav a {
    color: #fff;
}

.header_left {
    width: calc(50% + 150px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main_menu_wrap ul#menu-header-site-menu {
    display: flex;
    align-items: flex-start;
}

.menu-item {
    list-style-type: none;
    margin: 5px;
    position: relative;
}

.main_menu_wrap .menu-item:first-child {
    margin-left: 0;
}

.main_menu_wrap .sub-menu {
    position: absolute;
    opacity: 0;
    padding-top: 20px;
    transition: .4s;
    display: none;
}

.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    padding-top: 10px;
    display: block;
}

.main_menu_wrap .sub-menu .menu-item {
    margin-left: 0;
    margin-right: 0;
    display: inline-block;
}

.main_menu_wrap .menu-item a {
    font-size: 18px;
    text-transform: uppercase;
    padding: 5px;
    color: var(--darktext);
    display: block;
    border: 2px solid transparent;
    transition: .2s;
    letter-spacing: 0.5px;
}

.main_menu_wrap .menu-item:first-child a {
    padding-left: 0;
}

.main_menu_wrap .sub-menu .menu-item:first-child a {
    padding-left: 5px;
}

.main_menu_wrap .sub-menu .menu-item a {
    background: var(--darkgrey);
    color: #fff;
    padding: 3px 5px 0;
}

.main_menu_wrap .menu-item a:hover {
    border-bottom-color: var(--green);
    color: var(--green);
}

.main_menu_wrap .sub-menu .menu-item a:hover {
    border-bottom-color: transparent;
    color: #fff;
    background: var(--green);
}

.logo_box,
.logo_box a {
    width: 300px;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo_box img.logo_text {
    width: 100%;
    position: absolute;
}

.logo_icon {
    /*opacity: 0;*/
    display: none;
    width: 70px;
    position: absolute;
}

/*
Banner
*/

.banner_wrapper {
    background-color: var(--lightgrey);
    position: relative;
    height: calc(100vh - 100px);
}

.banner_single,
.banner_wrapper .slick-list,
.banner_wrapper .slick-track {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.banner_wrapper .slick-dots,
.team_wrapper .slick-dots {
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 9;
    position: absolute;
    bottom: 50px;
}

.banner_wrapper .slick-dots li,
.team_wrapper .slick-dots li {
    list-style-type: none;
    width: 16px;
    height: 16px;
    margin: 5px;
    border-radius: 50%;
    border: 1px solid #fff;
}

.team_wrapper .slick-dots li {
    border-color: #fff;

}

.banner_wrapper  .slick-dots li.slick-active,
.team_wrapper .slick-dots li.slick-active {
    background: #fff;
}

.team_wrapper .slick-dots li.slick-active {
    background: #fff;
}

.banner_wrapper  .slick-dots li button,
.team_wrapper .slick-dots li button {
    color: transparent;
    background: transparent;
    border: 0;
}

.banner_wrapper .slick-list {
    position: absolute;
}

/*.banner_1 {
    background-image: url(assets/img/banner_1_bg_2.jpg);
    background-size: cover;
    background-position: center;
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat;
}

.banner_2 {
    background-image: url(assets/img/banner_2_bg.jpg);
    background-size: cover;
    background-position: center;
}*/

.banner_single {
    background-size: cover;
    background-position: center;
    background-position: right bottom;
    background-repeat: no-repeat;
}

.banner_text_wrap {
    height: 100%;
    padding-left: 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 35%;
}

.banner_text_ttl {
    font-size: 3vw;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 30px;
}

.banner_text_p {
    font-size: 3.5vw;
    color: var(--darkgrey);
    margin-bottom: 30px;
}

/*
Services
*/

.services_strip {
    width: 100%;
    background-color: var(--green);
}

.services_strip .boxed_width {
    max-width: none;
    padding: 0;
}

.services_strip #menu-services {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#menu-services .menu-item {
    margin: 0;
    width: 14.2857142857%;
}

#menu-services .menu-item a {
    width: 100%;
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
    padding: 15px 10px;
    display: block;
    color: var(--darkgrey);
    cursor: pointer;
    transition: .2s;
    letter-spacing: 0.5px;
}

#menu-services .menu-item a:hover {
    background-color: var(--darkgrey);
    color: #fff;
}

.hometext {
    background-image: url(assets/img/home_1_bg.jpg);
    background-position: center;
    background-size: cover;
    padding: 150px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hometext_p {
    font-size: 36px;
    color: #fff;
    background-color: #414243;
    margin-bottom: 8px;
    text-align: center;
    padding: 2px 10px;
    letter-spacing: 1px;
}

.home_services_images {
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home_services_images .boxed_width {
    width: 100%;
    max-width: none;
}

.hsi_p {
    font-size: 20px;
    color: var(--darkgrey);
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: 1px;
}

.hsi_imgs_wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
}

.hsi_single {
    width: 13%;
    /*min-width: 200px;*/
    padding: 0 15px;
    border-radius: 50%;
}

.hsi_single .hsi_single_img,
.hsi_single .hsis_text{
    pointer-events: none;
}

.hsi_link .hsi_single_img {
    background: var(--green);
    transition: .3s;
}

.hsi_link:hover > .hsi_single_img {
    opacity: .2;
}

.hsis_text {
    transition: .3s;
}

.hsi_link:hover > .hsis_text {
    color: #fff;
    margin-top: -50%;
    position: relative;
}

.hsi_single_img {
    width: 100%;
    padding-top: 100%;
    height: 0;
    position: relative;
    border-radius: 50%;
}

.hsi_single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.hsis_text {
    font-size: 16px;
    text-align: center;
    margin-top: 20px;
    color: var(--darkgrey);
}

.section_diff {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home_sd_left,
.home_sd_right {
    width: 50%;
    padding-top: 30%;
    position: relative;
}

.hsl_inner {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--green);
}

.hsl_ttl {
    font-size: 36px;
    color: var(--darkgrey);
    margin-bottom: 25px;
}

.hsl_txt {
    font-size: 20px;
    color: var(--darkgrey);
    max-width: 450px;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 1px;
    line-height: 30px;
}

.home_sd_right img,
.home_sd_right video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.section_diff_new {
    background: #d7d8da;
}

.section_diff_new .home_sd_right {
   padding-top: 27%;
   width: 60%;
}

.section_diff_new video {
    object-position: top;
}

.section_diff_new .home_sd_left {
    padding-top: 27%;
    width: 40%;
}

.home_team {
    background-color: var(--lightgrey);
    background-image: url(assets/img/ht_bg.jpg);
    background-position: center;
    background-size: cover;
    padding: 150px 0;
}

.home_team_left {
    width: 45%;
    margin-left: auto;
}

.htl_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hometext_p_2 {
    font-size: 22px;
    color: var(--darkgrey);
    letter-spacing: 1px;
    line-height: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.home_reviews {
    padding: 75px 0;
}

.home_reviews .boxed_width {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.hr_ttl {
    font-size: 36px;
    color: var(--darkgrey);
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 50px;
}

.hr_wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 50px;
}

.hr_single {
    width: 33.3333%;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hrs_stars {
    width: 160px;
    margin-bottom: 25px;
}

.hrs_ttl {
    font-size: 22px;
    letter-spacing: 1px;
    text-align: center;
    color: var(--darkgrey);
    margin-bottom: 25px;
}

.hrs_txt{
    font-size: 16px;
    letter-spacing: .3px;
    text-align: center;
    color: var(--darkgrey);
    margin-bottom: 25px;
}

.hrs_name,
.hrs_pos {
    text-transform: uppercase;
    color: var(--darkgrey);
    font-size: 14px;
    text-align: center;
}

.home_clients {
    background-color: var(--lightgrey);
    padding: 75px 0 25px;
}

.hc_ttl {
    font-size: 18px;
    color: var(--darkgrey);
    text-align: center;
    margin-bottom: 50px;
}

.hc_wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.hc_single {
    width: 20%;
    height: 70px;
    text-align: center;
    margin-bottom: 50px;
}

.hc_single img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*
Forms
*/

.input_set {
    margin-bottom: 15px;
}

.input_set span {
    display: block;
}

.input_set input,
.input_set textarea,
.input_set select {
    width: 100%;
    height: 40px;
    padding-left: 7px;
    font-size: 16px;
    border: 1px solid var(--lightgrey);
}

.input_set textarea {
    height: 150px;
    padding: 7px;
}

.submit_set {
    display: flex;
    flex-direction: row-reverse;
}

.submit_set input.primary_btn {
    width: auto;
    height: auto;
    padding: 16px 26px;
}






/*
Footer
*/

.footer_bar {
    height: 50px;
    width: 100%;
    background: var(--green);
}

.footer_dark {
    background: var(--darkgrey);
    padding: 50px 0 100px;
}

.footer_dark .boxed_width {
    max-width: 1440px;
    display: flex;
    justify-content: space-between;
}

.footer_col p,
.footer_col a {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    display: block;
    letter-spacing: .5px;
    line-height: 25px;
}

.fc_ttl {
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer_col {
    display: table;
    width: auto;
}

@media(max-width:960px){
    .footer_col{
        width: 20%;
    }
}

.email_fc{
    max-width: 215px;
}
@media(max-width:767px){
   .email_fc{
        max-width: 100%;
    }
}

.fc_logo_col {
    margin-right: 30px;
}

.fc_logo_col a{
    max-width: 100px;
    display: table;
    margin:0 auto;
}

.fc_logo_col img {
    width: 100%;
}

.footer_nav {
    max-width: 240px;
}

.footer_icons {
    display: flex;
    align-items: center;
    width: 150px;
    justify-content: space-between;
    margin: 20px auto;
}

.footer_form form {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.footer_form form input[type=email],
.footer_form form input[type=text] {
    width: 100;
    height: 45px;
    font-size: 16px;
    padding-left: 7px;
    margin-bottom: 20px;
}

.footer_form form input[type=submit] {
    background: var(--green);
    color: var(--darkgrey);
    width: 50%;
    height: 45px;
    font-size: 16px;
    border: 0;
}



/*
Modal Styles
*/

.modal_overlay {
    background: rgba(0, 0, 0, 0.5);
    background: rgba(0,0,0,0.8);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    opacity: 0;
    pointer-events: none;
    /*z-index: 200;*/
    /*opacity: 1;*/
    /*pointer-events: none;*/
}

.modal_box {
    max-width: 90%;
    width: 600px;
    max-height: calc(100% - 96px);
    margin: 48px auto;
    top: -100px;
    position: relative;
    overflow-y: auto;
    box-shadow: 0px 11px 15px -7px rgba(0,0,0,0.2), 0px 24px 38px 3px rgba(0,0,0,0.14), 0px 9px 46px 8px rgba(0,0,0,0.12);
    border-radius: 4px;
    background: #FFFFFF;
    padding: 0;
}

.modal_box_sm {
    width: 500px;
}

.modal_box_med {
    width: 800px;
}

.modal_box_large {
    width: 1000px;
}

.modal_top_bar {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*border-bottom: 1px solid rgba(0, 0, 0, 0.12);*/
    box-shadow: 0 1px 6px -3px rgba(32,33,36,0.28);
    box-shadow: 0 1px 1px rgba(0,0,0,.16);
    position: sticky;
    top: 0;
    z-index: 20;
    background: #fff;
    /*background: #f5f5f5;*/
}

.modal_bottom_bar {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.modal_ttl {
    font-size: 17px;
    /*font-weight: 600;*/
    color: rgba(0, 0, 0, 0.87);
    line-height: 1.6;
    width: calc(100% - 48px);
}

.modal_search_wrap {
    width: calc(100% - 48px);
    margin-bottom: 0;
    display: block;
}

input.modal_search,
.modal_search {
    width: 100%;
    height: 35px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background: #f7f7f7;
    font-size: 16px;
    padding-left: 7px;
}

.modal_ex {
    color: #9e9e9e;
    color: rgba(0,0,0,.87);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    top: 8px;
    right: 8px;
    transition: .2s;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.modal_ex:hover {
    background-color: rgba(0, 0, 0, 0.08);
}

.modal_body {
    padding: 16px;
}

/*
About Page
*/

.page_banner {
    width: 100%;
    height: calc(100vh - 100px);
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    min-height: 480px;
}

.about_banner {
    background-image: url(assets/img/about_banner.jpg);
}

.about_text_sec {
    padding: 100px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1640px;
}

.ats_left {
    width: 30%;
}

.atsl_ttl,
.ats_list li {
    font-size: 28px;
    color: var(--green);
    list-style: none;
    margin-bottom: 10px;
}

.atsl_ttl {
    margin-bottom: 30px;
}

.ats_right {
    width: 70%;
}

.atsr_ttl {
    font-size: 36px;
    color: var(--darkgrey);
    margin-bottom: 30px;
}

.atsr_txt {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--darkgrey);
}

.about_text_sec_new {
    flex-direction: column;
    max-width: 1750px;
}
.about_section {
    display: flex;
    position: relative;
    height: 500px;
    margin-bottom: 50px;
}
.as_text {
    width: 75%;
    background: var(--green);
    padding: 75px 315px 75px 75px;
    display: flex;
    align-items: center;
}
.about_section:nth-child(2) .as_text {
    background: var(--blue);
}
.as_image {
    position: absolute;
    right: 0;
    height: 84%;
    width: 45%;
    top: 8%;
}
.as_image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.ast_ttl {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
}
.ast_sub_ttl {
    font-size: 22px;
    font-style: italic;
    color: #fff;
    margin-bottom: 15px;
}
.ast_txt {
    color: #fff;
    font-size: 19px;
    line-height: 28px;
}

.about_services {
    width: 100%;
    padding: 75px 0 125px;
    background-image: url(assets/img/about_ser_bg.png);
    background-position: center;
    background-size: cover;
    /*background-attachment: fixed;*/
}

.about_services .hsi_single{
    height: 155px;
}

.about_team {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.at_left,
.at_right {
    width: 50%;
}

.at_left {
    padding: 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.atl_ttl {
    font-size: 42px;
    color: var(--darkgrey);
    margin-bottom: 40px;
}

.atl_ttl span {
    /*font-size: 14px;*/
}

.atl_txt {
    font-size: 24px;
    margin-bottom: 25px;
}

.atl_txt_1 {
    font-size: 32px;
    letter-spacing: 1px;
}

.team_wrapper {
    position: relative;
}

.atl_ttl.atl_m_ttl {
    margin-bottom: 0;
}

.atl_position {
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: 300;
}

.atl_bottom {
    display: flex;
    align-items: flex-end;
    width: 100%;
}

.atl_linkedin_link {
    margin-right: 15px;
}

.atl_linkedin_link img {
    width: 30px;
}

.atl_email_link {
    margin-right: auto;
    color: var(--darkgrey);
    font-size: 22px;
}

/*.team_wrapper .slick-dots {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}*/

.team_grid {
    display: flex;
    flex-wrap: wrap;
    font-size: 0;
}

.team_single {
    width: 50%;
    display: inline-block;
    padding-top: calc(50% + 5px);
    position: relative;
    height: 0;
}

.ts_overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.team_single:nth-child(1) .ts_overlay,
.team_single:nth-child(4) .ts_overlay {
    background: #afafb0;
    opacity: .3;
}

.team_single:nth-child(2) .ts_overlay,
.team_single:nth-child(3) .ts_overlay {
    background: #a0a1a3;
    opacity: .3;
}

.ts_selected .ts_overlay {
    background: var(--green) !important;
    opacity: .3 !important;
}

.team_single img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.fi_single img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*
New Team
*/

.nt_sec_ttl {
    font-size: 36px;
    color: var(--darkgrey);
    margin-top: 50px;
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
}

.nt_sec_ttl + .nt_team_category {
    margin-top: 0;
}

.nt_sec_ttl_text {
    padding: 16px 26px;
    color: #fff;
    background-color: var(--green);
}

.nt_wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.nt_team_category {
    width: 100%;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
}

.nt_team_category_title {
    position: relative;
    width: 100%;
    margin: 0 15px;
}

.nt_team_category_title h2 {
    display: inline-block;
    min-width: 200px;
    padding: 16px 26px;
    border: 2px solid var(--green);
    font-size: 18px;
    text-align: center;
    color: var(--green);
    background-color: #fff;
    border-color: var(--green);
    letter-spacing: 0.5px;
}


.nt_team_category_title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: calc(100vw - 30px);
    height: 2px;
    background-color: var(--green);
    z-index: -1;
}

.nt_team_single {
    width: 20%;
    padding: 0 15px;
    margin: 30px 0 0;
}

.nt_ts_inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    position: relative;
    cursor: pointer;
}

.nt_ts_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
}

.nt_ts_info {
    position: absolute;
    width: 100%;
    height: 55%;
    bottom: 0;
    padding: 10px;
    z-index: 2;
    /*background: rgba(52, 188, 182,0.6);*/
    background: linear-gradient(-170deg, transparent 0%, transparent 50%, rgba(52, 188, 182,0.6) 50%, rgba(52, 188, 182,0.6) 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    transition: .3s;
    /*opacity: 0;*/
}

.nt_ts_inner:hover > .nt_ts_info {
    opacity: 1;
    background: linear-gradient(-170deg, transparent 0%, transparent 50%, rgba(255, 255, 255,0.6) 50%, rgba(255, 255, 255,0.6) 100%);
}

.nt_ts_name {
    color: #fff;
    font-size: 16px;
    text-align: center;
}

.nt_ts_position {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    text-align: center;
}

.nt_ts_icon {
    margin: auto;
    position: absolute;
    right: -100px;
    opacity: 0;
    transition: .5s;
}

.nt_ts_icon i {
    color: #fff;
    font-size: 46px;
    padding-top: 30px;
}

.nt_ts_inner:hover > .nt_ts_info .nt_ts_name,
.nt_ts_inner:hover > .nt_ts_info .nt_ts_position,
.nt_ts_inner:hover > .nt_ts_info .nt_ts_icon i {
    color: #000;
}

.nt_ts_inner:hover > .nt_ts_info .nt_ts_icon {
    opacity: 1;
    right: 20px;
}

.nt_large_wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(52, 188, 182,0.6);
    z-index: 11;
    overflow: auto;
    display: none;
    justify-content: center;
    align-items: center;
}

.ntl_close {
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 100px;
    background: #ddd;
    display: flex;
    padding: 10px;
    border-radius: 50%;
}

@media(max-width:767px){
    .ntl_close{
        z-index: 1;
        right: 5px;
        top: 60px;
    }
}

.ntl_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.ntl_image {
    margin-top: 0;
    width: 300px;
}

.ntl_image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.ntl_text_wrap {
    width: calc(100% - 330px);
    margin-left: 30px;
}

.ntl_info_wrap {
    width: 100%;
    max-width: 900px;
    margin-top: 15px;
    background: #fff;
    padding: 30px;
    display: flex;
}

.ntl_ttl {
    margin-top: 15px;
    font-size: 30px;
    text-align: left;
}

.ntl_position {
    font-size: 20px;
    text-align: left;
    margin-top: 10px;
    font-weight: 600;
    color: #777;
}

.ntl_desc {
    line-height: 25px;
    letter-spacing: 0.2px;
    text-align: justify;
}

.ntl_contact_wrap {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ntl_contact_wrap .atl_email_link {
    margin-right: unset;
}

/*
Contact Page
*/

.contact_banner {
    background-image: url(assets/img/contact-pic.jpg);
}

.contact_form_wrap {
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact_form_wrap form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
}

.cfw_ttl,
.cpi_ttl {
    font-size: 28px;
    color: var(--green);
    margin-bottom: 75px;
}

.cf_line {
    display: flex;
    align-items: center;
    /*margin-bottom: 10px;*/
    flex-wrap: wrap;
}

.cfl_txt {
    font-size: 32px;
    /*display: flex;
    align-items: center;*/
    text-align: center;
    line-height: 65px;
}

.cf_line input {
    margin-left: 8px;
    height: 35px;
    border: 0;
    border-bottom: 1px solid var(--darkgrey);
    font-size: 28px;
    color: var(--green);
}

.cf_name {
    max-width: 300px;
}

.cf_email {
    max-width: 400px;
}

.cf_line select {
    width: 200px;
    height: 50px;
    text-align: center;
    background: var(--darkgrey);
    color: #fff;
    border-radius: 0;
    -webkit-appearance: button;
    text-align-last: center;
    font-size: 16px;
    margin-right: 8px;
    margin-left: 8px;
}

.cf_submit {
    margin-top: 75px;
    display: flex;
    flex-direction: column;
}

.contact_page_info {
    width: 100%;
    padding: 100px 40px;
    background-image: url(assets/img/home_1_bg.jpg);
    background-position: center;
    background-size: cover;
}

.cpi_ttl {
    color: var(--darkgrey);
    text-align: center;
}

.cpi_cols {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.cpi_col {
    text-align: center;
}

.cpi_col p,
.cpi_col a {
    color: var(--darkgrey);
    font-size: 28px;
}

span.wpcf7-not-valid-tip {
    font-size: 14px !important;
}

.contact_form_wrap.cfw_new .boxed_width {
    width: 96%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}
.cfwi_single {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.cfws_text p {
    font-size: 20px;
}
.cfws_text span{
    font-size: 20px;
    font-weight: 300;
}

.cfws_text {
    margin-left: 15px;
}

.cfws_text a {
    color: var(--blue);
    margin-top: 5px;
    display: block;
    display: flex;
    align-items: end;
}
.cfws_text a i {
    font-size: 20px;
}
.cfw_ttl {
    text-align: center;
}
.cf_new_wrap {
    max-width: 600px;
}
.cf_new_wrap .text-name {
    display: inline-block;
    width: calc(50% - 5px);
    margin-right: 10px;
    margin-bottom: 10px;
}

.cf_new_wrap .email-919 {
    display: inline-block;
    width: calc(50% - 5px);
    margin-bottom: 10px;
}

.cf_new_wrap .textarea-424 {
    width: 100%;
    display: inline-block;
    margin-bottom: 10px;
}

.cf_new_wrap .textarea-424 textarea {
    width: 100%;
    font-size: 16px;
    padding: 7px;
}

/*
Services Template
*/

.service_text_wrap {
    padding: 40px 0;
}

.service_desc_wrap {
    max-width: 1600px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.sdw_left {
    width: 30%;
}

.sdw_left p {
    color: var(--blue);
    font-size: 24px;
    letter-spacing: .5px;
    line-height: 30px;
    padding-right: 75px;
}

.service_ttl {
    font-size: 36px;
    color: var(--darkgrey);
    text-transform: lowercase;
    font-weight: 500;
    text-align: center;
    margin-bottom: 25px;
}

.service_ttl span {
    color: var(--blue);
}

.sdw_right {
    width: 70%;
}

.sdw_right p,
.description-text__our-servise p{
    color: var(--darkgrey);
    font-size: 24px;
    letter-spacing: .5px;
    line-height: 30px;
    margin-bottom: 15px;
}

.siw_ttl,
.spw_ttl {
    color: var(--blue);
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 50px;
    text-align: center;
}

.spw_ttl {
    color: #fff;
}

.service_include_wrap {
   /* padding-bottom: 50px;*/
}

.service_include_wrap .hsi_single {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service_include_wrap .hsis_text {
    font-size: 24px;
    color: var(--blue);
    max-width: 175px;
    margin-top: 30px;
}

.service_process_wrapper {
    background-image: url(assets/img/process_bg.jpg);
    background-position: center;
    background-size: cover;
    padding: 75px 0;
}

.spw_inner_wrap {
    display: flex;
    max-width: 1270px;
    margin: auto;
    justify-content: space-between;
    align-items: flex-start;
}

.spw_single {
    width: 33.3333%;
    position: relative;
    padding: 0 30px;
}

.spw_single:nth-child(2):before,
.spw_single:nth-child(3):before {
    content: '';
    background-image: url(assets/img/ser_pro_arr.png);
    position: absolute;
    width: 130px;
    height: 40px;
    background-size: contain;
    left: -65px;
    background-position: center;
    background-repeat: no-repeat;
}

.spw_single_ttl {
    color: #fff;
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
}

.spw_single_txt {
    font-size: 24px;
    color: #fff;
    text-align: center;
    line-height: 36px;
}

.service_contact {
    padding: 40px 0;
}

.service_contact:first-child{
    padding-top: 80px;
}

.service_contact .boxed_width {
    max-width: 1600px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.sc_left {
    width: 65%;
    padding-right: 75px;
    /*position: absolute;
    right: 0;*/
}

.sc_right {
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
    right: 0;
}

.scl_review_text {
    color: var(--blue);
    font-size: 32px;
    text-align: left;
    margin-bottom: 30px;
    letter-spacing: 1px;
    line-height: 45px;
}

.scl_review_name {
    font-size: 22px;
    color: var(--blue);
}

.sc_right p,
.sc_right a {
    color: var(--blue);
    font-size: 26px;
}

.sc_right p {
    margin-bottom: 20px;
}

.sc_right .primary_btn {
    /*margin-top: auto;*/
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.news_ttl {
    margin: 100px 0 40px;
    font-size: 36px;
    color: var(--darkgrey);
    text-align: center;
}

@media(max-width: 1350px){
    .hsl_txt{
        line-height: 20px;
        font-size: 14px;
    }
}


@media(max-width: 1250px){
    .footer_col p,
    .footer_col a{
        font-size: 12px;
    }
}



@media screen and (max-width: 1200px) {
    .main_header, .head_space {
        height: 75px;
        padding: 0 25px;
    }
    .mian_header {
        padding: 0 15px;
    }
    .header_left {
        width: calc(50% + 100px);
    }
    .main_menu_wrap .menu-item {
        margin: 2px;
    }
    .main_menu_wrap .menu-item a {
        font-size: 16px;
    }
    .logo_box, .logo_box a {
        width: 200px;
        padding: 2px;
    }
    .logo_icon {
        width: 40px;
    }
    #menu-services .menu-item a {
        font-size: 16px;
        padding: 10px 0px;
        letter-spacing: 0;
    }
    .hsi_single {
        min-width: 125px;
        width: 16.6666666667%;
        padding: 0 10px;
        text-align: center;
    }
    /*.hsi_single img {
        max-width: 125px;
        max-height: 125px;
    }*/
    .home_team,
    .hometext {
        padding: 60px 0;
    }
    .banner_text_wrap {
        padding-left: 50px;
        max-width: 45%;
    }
    .primary_btn {
        padding: 10px 20px;
        min-width: 170px;
    }
    .hsl_inner,
    .htl_inner {
        padding: 25px;
    }
    .hsl_ttl,
    .hr_ttl,
    .hometext_p {
        font-size: 28px;
    }
    .section_diff_new .home_sd_left,
    .section_diff_new .home_sd_right{
        width: 50%;
    }
    .hsl_txt {
        font-size: 12px;
        margin-bottom: 10px;
        letter-spacing: 0.3px;
        line-height: 18px;
    }
    .footer_col p, .footer_col a {
        font-size: 10px;
        letter-spacing: .3px;
        line-height: 23px;
    }
    .sdw_left p {
        font-size: 20px;
        letter-spacing: 0;
        line-height: 27px;
        padding-right: 50px;
    }
    .sdw_right p,
    .description-text__our-servise p{
        font-size: 20px;
        letter-spacing: 0;
        line-height: 27px;
    }
    .service_include_wrap .hsis_text {
        font-size: 18px;
        max-width: 150px;
    }
    .siw_ttl, .spw_ttl {
        font-size: 22px;
    }
    .spw_single {
        padding: 0 15px;
    }
    .spw_single_ttl {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .spw_single_txt {
        font-size: 18px;
        line-height: 26px;
    }
    .scl_review_text {
        font-size: 22px;
        letter-spacing: 0px;
        line-height: 32px;
    }
    .sc_right p {
        margin-bottom: 15px;
    }
    .sc_right p, .sc_right a {
        font-size: 18px;
    }
    .at_left {
        padding: 50px;
    }
    .atl_ttl {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .atl_position,
    .atl_txt_1 {
        font-size: 22px;
    }
    .atl_txt {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .atl_linkedin_link {
        width: 30px;
    }
    .atl_linkedin_link img {
        width: 100%;
    }
    .atl_email_link {
        font-size: 18px;
    }
    .about_text_sec {
        padding: 20px;
    }
    .atsr_ttl {
        font-size: 24px;
    }
    .atsr_txt,
    .atsl_ttl, .ats_list li {
        font-size: 20px;
    }
}

@media screen and (max-width: 959px) {
    .main_menu_wrap {
        display: none;
    }
    .menu-item {
        margin: 10px;
    }
    .nav_icon {
        display: block;
    }
    .primary_btn {
        padding: 10px 12px;
        min-width: 170px;
        font-size: 16px;
    }
    .header_left {
        width: calc(50% + 75px);
    }
    .logo_box, .logo_box a {
        width: 150px;
    }
    #menu-services .menu-item a {
        font-size: 14px;
    }
    .hsl_ttl, .hr_ttl, .hometext_p {
        font-size: 22px;
    }
    .hsi_p {
        font-size: 20px;
    }
    .hsi_imgs_wrap {
        flex-wrap: wrap;
        -webkit-justify-content: space-evenly;
        justify-content: space-evenly;
    }
    .hsi_single {
        width: 30%;
        margin-bottom: 20px;
    }
    .home_reviews {
        padding: 45px 0;
    }
    .hr_ttl {
        margin-bottom: 25px;
    }
    .hr_wrap {
        margin-bottom: 25px;
        flex-wrap: wrap;
    }
    .hr_single {
        width: 50%;
        padding: 10px 25px;
    }
    .footer_dark .boxed_width {
        flex-wrap: wrap;
    }
    .footer_icons {
        /*flex-direction: column;*/
       /* width: 50%;*/
        margin-left: auto;
    }
    .fi_single {
        height: 40px;
    }

    .footer_col.adress-contcts{
        padding-top: 20px;
        margin-top: 20px;
        border-top: 1px solid #fff;
    }

    .connect_fc,
    .mail_fc {
        width: 25%;
        margin-top: 0;
        padding-top: 0;
        border-top: 0;
        padding-left: 27px;
    }
    .email_fc {
        width: 50%;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #fff;
    }
    .cfl_txt {
        font-size: 24px;
        line-height: 50px;
    }
    .cf_line input {
        height: 30px;
        font-size: 20px;
    }
    .cf_name {
        max-width: 200px;
    }
    .cf_email {
        max-width: 300px;
    }
    .cf_line select {
        width: 170px;
        height: 40px;
        font-size: 15px;
    }
    .contact_form_wrap form {
        max-width: 630px;
    }
    .cfw_ttl, .cpi_ttl {
        font-size: 22px;
        margin-bottom: 35px;
    }
    .cf_submit {
        margin-top: 35px;
    }
    .cpi_col p, .cpi_col a {
        font-size: 18px;
    }
    .contact_page_info {
        width: 100%;
        padding: 50px 20px;
    }
    .cpi_cols {
        justify-content: space-between;
    }
    .contact_form_wrap {
        padding: 50px;
    }
    .service_text_wrap {
        padding: 35px 0;
    }
    .service_ttl {
        font-size: 28px;
    }
    .sdw_right p,
    .sdw_left p,
    .spw_single_txt,
    .description-text__our-servise p{
        font-size: 16px;
        line-height: 23px;
    }
    .sdw_left p {
        padding-right: 20px;
    }
    .spw_single:nth-child(2):before, .spw_single:nth-child(3):before {
        background-image: url();
        width: 0;
        height: 0;
    }
    .spw_single:nth-child(2), .spw_single:nth-child(3) {
        margin-top: 20px;
    }
    .spw_inner_wrap {
        flex-direction: column;
        align-items: center;
    }
    .spw_single {
        width: 100%;
        max-width: 400px;
    }
    .spw_single_ttl {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .sc_left {
        padding-right: 25px;
    }
    .scl_review_text {
        font-size: 18px;
        line-height: 26px;
    }
    .scl_review_name {
        font-size: 18px;
    }
    .sc_right p, .sc_right a {
        font-size: 15px;
    }
    .service_contact,
    .service_process_wrapper {
        padding: 40px 0;
    }
    .atl_ttl {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .atl_txt {
        font-size: 14px;
    }
    .nt_team_single {
        width: 25%;
    }
    .contact_form_wrap.cfw_new .boxed_width {
        flex-direction: column;
        align-items: center;
    }
    .contact_form_wrap.cfw_new .cfw_info {
        margin-bottom: 30px;
    }
    .as_text {
        width: 75%;
        background: var(--green);
        padding: 35px 165px 35px 35px;
        display: flex;
        align-items: center;
    }
    .about_section {
        height: 400px;
    }
}

@media screen and (max-width: 768px) {
    body .banner_wrapper_name-page{
        height: auto;
        min-height: 350px;
    }
    body .page_banner{
        height: auto;
       height: calc(50vh - 100px );
       min-height: 350px;
    }
    .fc_logo_col{
        margin: 0 auto !important;
    }
    .main_header, .head_space {
        height: 56px;
        padding: 0 15px;
    }
    .mobile_nav_wrap {
        top: 56px;
    }
    .mobile_nav {
        height: calc(100vh - 56px);
        top: 56px;
    }
    .primary_btn {
        padding: 8px 7px;
        min-width: 130px;
        font-size: 14px;
        white-space: nowrap;
    }
    .logo_box, .logo_box a {
        width: 125px;
        justify-content: flex-start;
    }
    .banner_text_wrap {
        padding-left: 20px;
    }
    .hsi_single {
        width: 50%;
    }
    .hsi_single:last-child,
    .hsi_single:nth-last-child(2) {
        margin-bottom: 0;
    }
    /*.banner_text_ttl,
    .banner_text_p {
        font-size: 16px;
        margin-bottom: 10px;
        line-height: 20px;
    }*/
    .banner_wrapper .slick-dots,
    .team_wrapper .slick-dots {
        bottom: 10px;
    }
    .banner_wrapper .slick-dots li,
    .team_wrapper .slick-dots li {
        width: 10px;
        height: 10px;
    }
    .header_left {
        justify-content: flex-start;
        width: auto;
    }
    .nav_icon {
        margin-right: 10px;
    }
    .services_strip #menu-services {
        flex-wrap: wrap;
    }
    /*#menu-services .menu-item:first-child,
    #menu-services .menu-item:nth-child(2),
    #menu-services .menu-item:nth-child(3),
    #menu-services .menu-item:nth-child(4) {
        width: 25%;
    }*/
    #menu-services .menu-item {
        margin: 5px 0;
    }
    #menu-services .menu-item a {
        padding: 5px 0;
    }
    #menu-services .menu-item:first-child,
    #menu-services .menu-item:nth-child(2),
    #menu-services .menu-item:nth-child(3) {
        width: 50%;
    }
    #menu-services .menu-item:nth-child(2) a,
    #menu-services .menu-item:nth-last-child(2) a {
        border-left: 1px solid #7ae0db;
        border-right: 1px solid #7ae0db;
    }
    #menu-services .menu-item:nth-last-child(3),
    #menu-services .menu-item:nth-last-child(2) {
        width: 50%;
    }
    #menu-services .menu-item:nth-last-child(1) {
        width: 100%;
        border-right: 0;
        border-top: 1px solid #000;
    }
    #menu-services .menu-item:nth-last-child(1) a{
        border-top: 1px solid #7ae0db;
    }
    .hsl_ttl, .hr_ttl, .hometext_p {
        font-size: 18px;
    }
    .hsi_p {
        font-size: 20px;
    }
    .section_diff {
        flex-direction: column-reverse;
        position: relative;
    }
    .home_sd_left, .home_sd_right {
        width: 100%;
        padding-top: 0%;
    }
    .hsl_inner {
        position: relative;
    }
    .hsl_ttl {
        margin-bottom: 15px;
    }
    .hsl_txt {
        font-size: 14px;
        margin-bottom: 10px;
        letter-spacing: 0px;
        line-height: 18px;
    }
    .home_sd_right {
        height: 250px;
    }
    .home_sd_right img {
        position: relative;
        object-position: top;
    }
    .home_team_left {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        background: rgba(255,255,255,.9);
    }
    .home_team, .hometext {
        padding: 30px 0;
    }
    .hometext_p_2 {
        font-size: 16px;
        letter-spacing: 0px;
        line-height: 23px;
        margin-bottom: 15px;
    }
    .outline_btn {
        min-width: 130px;
        font-size: 16px;
        padding: 10px 20px;
    }
    .hr_single {
        width: 100%;
        margin-bottom: 15px;
        padding: 10px 0;
    }
    .hc_single {
        width: 30%;
    }
    .footer_nav {
        flex-wrap: wrap;
        max-width: 100%;
        width: 100%;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #fff;
    }
    .email_fc {
        width: 100%;
    }
    .connect_fc, .mail_fc {
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #fff;
    }
    .footer_col.adress-contcts{
        width: 100%;
    }
    .cpi_cols {
        flex-direction: column;
    }
    .cpi_col:nth-child(2) {
        margin: 25px 0;
    }
    .service_desc_wrap,
    .service_contact .boxed_width {
        flex-direction: column;
    }
    .sdw_left,
    .sc_left {
        width: 100%;
        margin-bottom: 15px;
    }
    .sdw_left p,
    .sc_left {
        padding: 0;
    }
    .sdw_right,
    .sc_right {
        width: 100%;
    }
    .scl_review_text {
        margin-bottom: 15px;
    }
    .sc_right {
        position: relative;
        border-top: 0 solid var(--blue);
        padding-top: 15px;
    }
    .siw_ttl, .spw_ttl {
        font-size: 18px;
    }
    .about_team {
        flex-direction: column;
    }
    .at_left, .at_right {
        width: 100%;
    }
    .at_left {
        padding: 30px;
    }
    .about_text_sec {
        padding: 20px;
        /*flex-direction: column;*/
    }
    /*.ats_left,
    .ats_right {
        width: 100%;
    }*/
    .atsr_txt, .atsl_ttl, .ats_list li {
        font-size: 16px;
    }
    .atsr_ttl {
        font-size: 22px;
        /*margin: 15px 0;*/
    }
    .selects_wrap {
        padding: 10px;
    }
    .two_input_wrap {
        flex-direction: column;
    }
    .two_input_wrap input,
    .two_input_wrap select,
    .selects_wrap .single_select {
        width: 100%;
        margin-bottom: 15px;
    }
    .nt_team_category_title {
        margin: 0 10px;
    }
    .nt_team_category_title::before {
        width: calc(100vw - 20px);
    }
    .nt_team_category_title h2 {
        padding: 8px 7px;
        font-size: 14px;
    }
    .nt_team_single {
        width: 33.3333%;
    }
    .ntl_image {
        width: 300px;
        height: 300px;
        margin-bottom: 150px;
    }
    .ntl_ttl {
        font-size: 36px;
    }
    .section_diff_new .home_sd_left,
    .section_diff_new .home_sd_right {
        padding-top: 0;
        width: 100%;
    }
    .section_diff_new .home_sd_right {
        height: auto;
    }
    .section_diff_new .home_sd_right video {
        position: relative;
    }
    .about_section {
        flex-direction: column-reverse;
        height: auto;
    }
    .as_text {
        width: 100%;
        padding: 20px;
    }
    .as_image {
        position: relative;
        width: 100%;
        height: 150px;
        top: auto;
    }
    .ntl_info_wrap {
        flex-direction: column;
        align-items: center;
    }
    .ntl_text_wrap {
        width: 100%;
        margin-left: 0;
    }
    .nt_team_single {
        padding: 0px 10px;
        margin: 20px 0 0;
    }
    .nt_ts_name {
        font-size: 14px;
        text-align: left;
    }
    .nt_ts_position {
        font-size: 16px;
        text-align: left;
    }
    .nt_ts_info {
        height: 80%;
        padding: 5px;
    }
    .ast_ttl {
        font-size: 24px;
    }
    .ast_sub_ttl {
        font-size: 18px;
    }
    .ast_txt {
        font-size: 14px;
        line-height: 25px;
    }
    .banner_wrapper{
        height: calc(50vh - 100px);
    }
}

@media screen and (max-width: 500px) {
    #menu-services .menu-item a {
        font-size: 14px;
        text-transform: capitalize;
    }
    .banner_text_ttl, .banner_text_p {
        font-size: 14px;
        margin-bottom: 10px;
        line-height: 20px;
    }
    .banner_text_wrap {
        max-width: 65%;
    }
    .footer_icons {
        margin: 20px auto 0;
    }
    .connect_fc, .mail_fc {
        /*width: 100%;*/
    }
    .hsi_p {
        font-size: 20px;
    }
    .main_header {
        padding: 0 10px;
    }
    .nav_icon {
        margin-right: 5px;
    }
    .logo_icon {
        width: 27px;
    }
    .primary_btn {
        /*padding: 4.5px 5px;*/
    }
    .fi_single {
        height: 24px;
        width: 24px;
    }
    .hrs_stars {
        width: 100px;
        margin-bottom: 15px;
    }
    .modal_ttl {
        font-size: 14px;
    }
    .modal_ex {
        width: 40px;
        height: 40px;
    }
    .hometext {
        padding-left: 0px;
        padding-right: 0px;
    }
    .hsl_ttl,
    .hr_ttl,
    .hometext_p {
        font-size: 15px;
    }
    .hometext_p {
        font-size: 10.8px;
        padding: 1px 4px;
    }
    .hrs_ttl {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .hrs_txt {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .footer_nav {
         flex-wrap: nowrap;
         width: 100%;
    }
    .fc_logo_col {
        max-width: 75px;
        margin-right: 15px;
    }
    .home_sd_right {
        height: 150px;
    }
    .hsis_text {
        font-size: 14px;
    }
    .footer_col p, .footer_col a {
        font-size: 14px;
    }
    .footer_form form input[type=email], .footer_form form input[type=text] {
        height: 36px;
        font-size: 14px;
        padding-left: 7px;
        margin-bottom: 15px;
    }
    .footer_form form input[type=submit] {
        width: 40%;
        height: 37px;
        font-size: 15px;
    }
    .contact_form_wrap {
        padding: 50px 0;
    }
    .cfl_txt {
        font-size: 18px;
        line-height: 40px;
    }
    .cf_line input {
        height: 22px;
        font-size: 16px;
    }
    .cf_name {
        max-width: 150px;
    }
    .cf_email {
        max-width: 200px;
    }
    .cf_line select {
        width: 140px;
        height: 35px;
        font-size: 13px;
    }
    .cfw_ttl, .cpi_ttl {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .hometext_p_2 {
        font-size: 14px;
        line-height: 19px;
    }
    .about_text_sec {
        flex-direction: column;
    }
    .ats_left,
    .ats_right {
        width: 100%;
    }
    .atsr_ttl {
        margin: 15px 0;
    }
    .nt_team_single {
        width: 50%;
    }
    .footer_col .footer_icons a{
        width: 25px;
        height: 25px;
        display: block;
    }
}

.adress-contcts p{
    display: block;
    margin-bottom: 20px;
    line-height: normal;
}

@media(max-width: 1200px){
    .adress-contcts p{
         font-size: 10px;
    }
}


/*Top Benner*/
.top-banner{
    width: 100%;
    height: calc(100vh - 155px);
    -webkit-height: calc(100vh - 155px);
    min-height: 500px;
    background: url(./assets/img/home_baner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}
@media(max-width: 991px){
    .top-banner{
        min-height: 50vh;
        height: auto;
        padding: 20px;
    }
}
.top-banner .wrap-content{
    width: 98%;
    max-width: 1400px;
    margin: 0 auto;
}

.top-banner__title{
    color: #3EC6C1;
    font-size: 80px;
    max-width: 600px;
    line-height: 90px;
}

.top-banner__title span{
    background: #fff;
    padding: 5px 15px;
    margin-top: 20px;
    display: table;
}
.top-banner__text{
    color: #fff;
    font-size: 26px;
    max-width: 570px;
    display: block;
    margin: 30px 0;
}
.top-banner__say{
    color:#fff;
    font-size: 30px;
    max-width: 570px;
}
.hr_ttl.boxed_width__title{
    margin-bottom: 10px;
    font-weight: 500;
}

.about-page-pic{
    background: url(./assets/img/about_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.banner_wrapper_name-page{
    max-width: 1600px;
    width: 100%;
    margin: 0 auto 50px;
    padding: 0 20px;
    position: relative;
    height: calc(100vh - 100px );
}

.banner_wrapper_name-page .banner_wrapper_name-page-title{
    font-size: 80px;
    background: #fff;
    display: table;
    padding: 0 10px;
    font-weight: 400;
    position: absolute;
    bottom: 50px;
}

.banner_wrapper_name-page-title.banner_title-style{
    text-transform: lowercase;
}

@media(max-width: 961px){
    .about_services{
        padding: 75px 0 75px;
    }
    .about_services .hsi_single{
       height: auto;
    }
}
@media(max-width: 767px){
    .about_services .hsi_single{
        height: auto;
    }
    .banner_wrapper_name-page .banner_wrapper_name-page-title{
        font-size: 40px;
    }
}

@media(max-width: 991px){
    .top-banner__title{
        font-size: 32px;
        line-height: 32px;
    }
    .top-banner__title span{
        margin-top: 10px;
    }
    .top-banner__text{
        font-size: 16px;
    }
    .top-banner__say{
        font-size: 18px;
    }
}
.team-title{
    font-size: 36px;
    color: #7BD1CB;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
    font-weight: 300;
}
.team-title-text{
    font-size: 24px;
    display: table;
    margin: 10px auto 30px;
    text-align: center;
    font-weight: 300;
}
.description-team-text{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 10px;
}
@media(max-width: 1450px){
    header .main_menu_wrap .menu-item a {
        font-size: 10px;
    }
}

.sdw_headline{
    padding-bottom: 15px;
}

.services_include-list{
    width: 100%;
}

.banner_wrapper_name-page .sdw_headline{
    display: inline-block;
}

.services_include-list ul{
    list-style: none;
}
.services_include-list ul > li{
    border-top: 1px solid #000;
    color: var(--darkgrey);
    font-size: 24px;
    letter-spacing: .5px;
    line-height: 30px;
    font-weight: 400;
    padding: 15px 35px;
    position: relative;
}
.services_include-list ul > li:before{
    content: '';
    width: 25px;
    height: 25px;
    background: url(./assets/img/logo_icon.png);
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    background-size: contain;
    padding-top: 5px;
    position: absolute;
    left: 0;
}
.services_include-list ul > li:last-child{
     border-bottom: 1px solid #000;
}
@media(max-width: 991px){
    .services_include-list ul > li{
        font-size: 14px;
    }
    .sc_right p.sdw_headline{
        margin-top: 25px;
        margin-bottom: 0;
    }
}

.contact-map_box{
    padding: 50px 20px 0;
    display: block;
    width:96%;
    position: relative;
    overflow: hidden;
    max-width: 1240px;
    margin: 0 auto;
}
.map-contact{
    float: right;
    max-width: 600px;
    width:100%;
    margin-bottom: 75px;
}
@media(max-width: 960px){
    .map-contact{
        float: none;
        margin: 0 auto 40px;
        display: table;
    }
}
/*Portfolio*/
.portfolio_banner{
     background-image: url(assets/img/portfolio-pic.jpg);
}
.portfolio-box{
    padding: 50px 0 0;
}
.wrap-logo{
    display: flex;
    flex-wrap: wrap;
    padding: 0 20px;
    margin-bottom: 50px;
    justify-content: center;
    max-width: 1690px;
    margin: 0 auto 50px;
}
.wrap-logo img{
    width:45%;
    margin-left:5%;
}
.wrap-logo img:nth-child(1),
.wrap-logo img:nth-child(3){
    margin-left:0;
}
@media(max-width: 767px){
    .wrap-logo img{
        width: 90%;
    }
    .wrap-logo img:nth-child(1),
    .wrap-logo img:nth-child(3){
        margin-left:5%;
    }
}
.our-ofice_in-city__wrap{
    width: auto;
    display: table;
    position: absolute;
    bottom: 150px;
    right: 10%;
}
@media(max-width: 768px){
    .our-ofice_in-city__wrap{
        position: absolute !important;
        bottom: 20px;
        right: 1%;
    }
}
.our-ofice_in-city{
 float: right;
    position: absolute;
    right: 0;
    bottom: 10%;
    list-style: none;
    font-size: 20px;
    padding-right: 15px;
    padding: 0 5px;
    border-radius: 3px;
}
@media(max-width: 991px){
    .our-ofice_in-city{
        margin-right: 30px;
    }
}
.our-ofice_in-city li{
    padding: 5px 0;
}



@media(max-width: 768px){
    .our-ofice_in-city{
        bottom: -5px;
        font-size: 16px;
        margin-right: 15px;
    }
    .our-ofice_in-city li{
        padding: 2px 0;
    }
}

.service_design{
    padding-top: 100px;
}
.service_design_bottom{
     padding-bottom: 100px;
}

.cfw_info{
    position: relative;
    top: 0;
}

.wrap-logocarousel{
    margin-bottom: 30px;
}
@media(max-width: 960px){
    .cfw_info{
        top: 0;
    }
}
@media(max-width: 991px){
    .service_design{
        padding-top: 50px;
    }
    .service_design_bottom{
        padding-bottom: 50px;
    }
    .menu-item{
        margin: 0 !important;
    }

}
@media(max-width: 767px){
    .our-ofice_in-city{
        background: rgba(255, 255, 255, 0.6);
    }
}

@media(max-width: 500px){
     .our-ofice_in-city{
        margin-right:5px;
     }
}
.sub-menu .menu-item{
	min-width: 200px!important;
}
