*,
::after,
::before{margin: 0;padding: 0; box-sizing: border-box;}

:root{
    --white:#ffffff;
    --black:#000000;
    --black-two:#061430;
    --black-three:#0B1C2E;
    --light-black:#474747;
    --skyblue:#E0F1FF;
    --orange:#FB660A;
    --blue:#032675;
    --blue-two:#003661;
    --blue-three:#02102F;
    --blue-four:#8494B9;
    --blue-five:#4F679C;
    --gray:#F5F8FB;
    --graysky:#D3DCED;
    --graysky-two:#3E4961;
    --graysky-three:#BCC4D7;
    --charkol:#333333;
    --charkol-two:#081C4A;
    --secondary-font:'Lexend', sans-serif;
    --primary-font:'Inter', sans-serif;
}

html{font-size: 62.5%; scroll-behavior: smooth;}

body{
    background: var(--white);
    font-size: 1.6rem;
    line-height: 2.6rem;
    font-family: var(--primary-font);
    color: var(--charkol);
}
img{max-width: 100%;}
a{outline: none; transition: ease-in-out 0.5s;}
header,footer,aside,section,nav,div,p,ul,ol,li{margin: 0;padding: 0; list-style: none; outline: none;}
h1,h2,h3,h4,h5,h6{font-family: var(--secondary-font); color: var(--black-two);}
input{outline: none;}
input:focus,
input:visited{outline: none; border: none;}
.no_margin{margin: 0 !important;}
.main_wrapper{padding: 0 2rem; margin:0 auto; position: relative; max-width: 126rem;}

.top_wrapper{
    background: linear-gradient(180deg, rgba(8, 28, 74, 0.7) 0%, rgba(8, 28, 74, 0) 100%);
    width: 100%; position: relative; margin: -10rem 0 0 0; height: 75rem; overflow: hidden;
}

.hamburger,
.cross{display: none;}

.breadcrump{font-size: 1.4rem; color: var(--white);}
.breadcrump span{margin: 0 0.5rem;}
.breadcrump a{color: var(--white); text-decoration: none; font-weight: 700;}

/** HEADER **/
.social_btn{display: flex; flex-wrap: wrap;}
.social_btn a:not(:last-child){margin: 0 1rem 0 0 !important;}
.social_btn a img{margin: 0 !important;}
header{position: relative; z-index: 1;}
header::before{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(8, 28, 74, 0) 100%);
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width:100%;
    height: 10rem;
}
.top_header_info{display: flex; flex-wrap: wrap; justify-content: flex-end; align-items: center; padding:1.5rem 0;}
.top_header_info a:not(:last-child){margin-right: 2rem;}
.top_header_info a img{margin: 0 1rem 0 0;}
.top_header_info a{font-size: 1.5rem; font-weight: 600; color: var(--white); text-decoration: none; display: flex; flex-wrap: wrap; align-items: center; font-family: var(--primary-font);}
.bottom_header_wrapper{
    background: var(--white);
    border-radius: 1rem;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.bottom_header_wrapper a.logo{flex: 0 0 20rem; height:auto; margin: 0 0 0 2rem; display: flex; flex-wrap: wrap; justify-content: center; align-items: center;}
nav{margin-left: auto; flex: 1;}
nav ul{display: flex; flex-wrap: wrap; justify-content: flex-end; margin: 0 4rem 0 0;}
nav ul li{position: relative; line-height: 7rem;}
nav ul li ul{position: absolute; top: 5.3rem; left:-6rem; width:24rem; background: var(--white); display: flex; flex-direction: column; padding:3rem 1.5rem 1.5rem 1.5rem; border-radius: 0 0 1rem 1rem; display: none;}
.dropdown_arrow{
    position: relative;
    padding: 0 2rem 0 0;
}
.dropdown_arrow::after{
    width: 0.9rem;
    height: 0.9rem;
    position: absolute;
    top: 3rem;
    right: 0;
    border-top: 0.2rem solid var(--black);
    border-right: 0.2rem solid var(--black);
    content: "";
    transform: rotate(135deg);
    transition: var(--ease-in-out);
}
nav ul li:hover ul.dropdown_arrow::after{transform: rotate(135deg);}
nav ul li ul li{line-height: 3rem !important;}
nav ul li:hover ul{display: block;}
nav ul li ul li:not(:last-child){margin: 0 0 1rem 0;}
nav ul li:not(:last-child){margin: 0 3rem 0 0;}
nav ul li a{text-decoration: none; color: var(--black); font-size: 1.8rem; font-family: var(--secondary-font); font-weight: 600;}
a.call{
    background: var(--orange);
    font-family: var(--secondary-font);
    font-size: 2.8rem;
    color: var(--white);
    text-decoration: none;
    padding: 1rem 2rem;
    margin-left: auto;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    font-weight: bold;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
a.call:hover img{animation: shake 0.5s; animation-iteration-count: infinite;}
a.call img{margin: 0 2rem 0 -5rem; transition: ease-in-out 0.5s;}
@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
  }
/** END HEADER **/

.banner_slider{position: relative; margin: -15rem 0 0 0; overflow: hidden;}
.banner_slider .item{/*height: 90rem;*/ height: 82rem;}
.banner_slider img{position: absolute; top: 0; left: 0; right: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1;}
.banner_slider .item{padding-top: 40rem;}
.banner_slider .item .content{width: 87rem; margin: 0 auto;}
.banner_slider .item .content h1{
    font-size: 7rem; line-height: 6.8rem; font-weight: 700; color: var(--white);
    text-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.50); margin: 0 0 2rem 0; text-align: center;
}
.banner_slider .item .content p{text-align: center; color: var(--white); font-weight: 600; font-size: 2rem; margin: 0 0 4rem 0;}
.buttons_wrapper{display: flex; flex-wrap: wrap; justify-content: center;}
.buttons_wrapper a:not(:last-child){margin: 0 2rem 0 0;}
.buttons_wrapper a{width: 20rem;}

.owl-dots{
    position: absolute;
    z-index: 2;
    margin: 0 auto;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.owl-theme .owl-nav.disabled+.owl-dots{margin: 0 0 2rem 0;}
.owl-theme .owl-dots .owl-dot span{width: 20px !important; height: 6px !important; background: var(--white) !important; margin:0px 4px !important;}
.owl-theme .owl-dots .active span,
.owl-theme .owl-dots .owl-dot span:hover{background: var(--orange) !important;}

.fill_btn_orange,
.outline_btn_orange{
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center; border: 0.2rem solid var(--orange); color: var(--white); border-radius: 1rem; text-decoration: none; font-size: 1.7rem; font-weight: 600; height: 6rem; width: 20rem; text-transform: uppercase;
}
.fill_btn_orange{background: var(--orange);}
.fill_btn_orange:hover{background: var(--white); transform: translate(0, -0.6rem); color: var(--orange);}

.outline_btn_orange{background: var(--white); font-size: 2rem; font-weight: 700; color: var(--orange);}
.outline_btn_orange:hover{background: var(--orange); transform: translate(0, -0.6rem);  color: var(--white);}

.common_heading h3{text-align: left; font-size: 2rem; font-weight:500; text-transform: uppercase; color: var(--orange); padding-right: 8rem; position: relative; max-width: 25rem; display: table; margin: 0 auto 2.4rem;}
.common_heading h3::after{position: absolute; width: 3.5rem; height:0.2rem; background: var(--orange); top: 50%;
    border-radius: 1rem;
    content: "";
    right: 2.5rem;
    transform: translateY(-50%);
    margin-top: 0;
}
.common_heading h2{
    font-size: 4.6rem;
    line-height: 5rem;
    color: var(--blue-two);
    font-weight: 600;
    text-align: center;
}
.common_heading{display: table; margin: 0 auto 5rem; max-width:100rem;}
.owl-carousel{z-index: unset !important;}

/** SERVICE OUTER WRAPPER **/
.service_outer_wrapper{
    background: var(--gray);
    margin: 0;
    padding: 6rem 0;
}
.service_grid{display: grid; grid-template-columns: repeat(4,1fr); grid-gap: 2.5rem; margin: -12rem 0 6rem 0;}
.service_grid li{background: var(--white); border-radius: 1rem; box-shadow: 0 0.7rem 1rem 0 rgba(104, 92, 92, 0.05); padding: 3rem 2.5rem; transition: ease-in-out 0.5s; display: flex; flex-direction: column;}
.service_grid li::before{display: none !important;}
.service_grid li p{flex-grow: 1;}
.service_grid li:hover{box-shadow: 0 0.7rem 3rem 0 rgba(26, 22, 22, 0.071); transform: perspective(200px) translate3d(0, 0, 10px);}

.service_grid li .icon{margin: 0 0 1.5rem 0;}
.service_grid li h3{font-size: 2rem; line-height: 2rem; margin: 0 0 1rem 0;}
.service_grid li p{font-size: 1.4rem; line-height: 2.3rem; color: var(--light-black); margin: 0 0 2rem 0;}
.service_grid li a{margin-top: auto; 
    font-weight: bold;
    color: var(--orange);
    text-decoration: none;
 }
.service_grid li a:hover{text-decoration: none;}

.client_logos_grid{display: grid; grid-template-columns: repeat(7,1fr); grid-gap:0 5rem;}
.client_logos_grid img{filter: grayscale(100%); opacity: 0.8; transition: ease-in-out 0.5s;}
.client_logos_grid img:hover{filter: unset; opacity: unset;}
/** END SERVICE OUTER WRAPPER **/


/** INNER BANNER **/
.inner_pages_banner{position: relative; margin: -15rem 0 0 0; overflow: hidden; height:38rem;}
.inner_pages_banner img{position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1;}
.inner_pages_banner .main_wrapper{padding-top: 20rem;}
.inner_pages_banner .main_wrapper .breadcrump{margin-bottom: 3rem;}
.inner_pages_banner .main_wrapper .content h1{
    font-size:5rem; line-height:5rem; color: var(--white); font-weight: 700; text-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.4);
}
/** END INNER BANNER **/

/** LANDING BANNER **/
.landing_pages_banner{position: relative; margin: -15rem 0 0 0; overflow: hidden; height: 62rem;}
.landing_pages_banner img{position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1;}
.landing_pages_banner .main_wrapper{padding-top: 20rem;}
.landing_pages_banner .main_wrapper .breadcrump{margin-bottom: 5rem;}
.landing_pages_banner .main_wrapper .content{width: 61.4rem;}
.landing_pages_banner .main_wrapper .content h1{
    font-size:5.2rem; line-height: 5.8rem; color: var(--white); font-weight: 700; text-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.582);
    margin: 0 0 3rem 0;
}
.landing_pages_banner .main_wrapper .content h1 span{display: block; font-size: 4rem;}
/** END LANDING BANNER **/


/** INNER BANNER **/
.service_pages_banner{position: relative; margin: -15rem 0 0 0; overflow: hidden; height:61.4rem;}
.service_pages_banner img{position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1;}
.service_pages_banner .main_wrapper{padding-top: 32rem;}
.service_pages_banner .content{width: 87rem; margin: 0 auto;}
.service_pages_banner .content h1{
    font-size: 7rem; line-height: 6.8rem; font-weight: 700; color: var(--white);
    text-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.50); margin: 0 0 2rem 0; text-align: center;
}
.service_pages_banner .content p{text-align: center; color: var(--white); font-weight: 600; font-size: 3.6rem; margin: 0 0 4rem 0;}
/** END INNER BANNER **/

/** Home About Wrapper **/
.home_about_wrapper{margin: 0;padding: 10rem 0; border-bottom: 0.1rem solid #E8E8E8;}
.home_about_wrapper .top_block{margin: 0 0 6rem 0;}
.home_about_wrapper .top_block h2{text-align: center; font-weight: bold; font-size: 4rem; line-height: 4rem; margin: 0 0 2.8rem 0;}
.home_about_wrapper .top_block p{text-align: center; font-size: 1.7rem; font-weight: 500; padding: 0 4rem; line-height: 3rem;}
.home_about_wrapper .inner_about_wrapper{display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; padding: 0 5rem;}
.home_about_wrapper .inner_about_wrapper .content_wrapper{flex: 0 0 55rem;}
.home_about_wrapper .inner_about_wrapper .content_wrapper h3{font-size: 2.5rem; font-weight: bold; margin: 0 0 3rem 0;}
.home_about_wrapper .inner_about_wrapper .content_wrapper p:not(:last-child){margin: 0 0 2.8rem 0;}
.home_about_wrapper .inner_about_wrapper .content_wrapper p{font-size: 1.6rem; text-align: justify; line-height: 2.7rem;}
.owner_wrapper{position: relative;}
.owner_wrapper::before{
    background: url(../images/dots.svg) no-repeat;
    position: absolute;
    left: -5rem;
    top: 4srem;
    content: "";
    width: 2.7rem;
    height: 11rem;
}
.owner_wrapper img{border-radius: 1rem;}
.experience_block{
    background: var(--orange);
    width: 37rem;
    border-radius: 1rem 1rem 1rem 6rem;
    position: absolute;
    bottom: -4.5rem;
    right: -3.5rem;
    padding:3rem 2.3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;    
}
.experience_block span{
    font-size: 11.4rem;
    font-weight: bold;
    color: var(--white);
    letter-spacing: -0.6rem;
    font-family: var(--secondary-font);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.08);
}
.experience_block p{flex: 1; margin: 0 0 0 1.5rem; padding: 0 0 0 1.5rem; font-size: 2.4rem; line-height: 2.6rem; font-weight: 600; color: var(--white); border-left: 0.3rem solid var(--white);}
/** End Home About Wrapper **/

/** WHY CHOOSE Wrapper **/
.why_choose{padding: 8rem 0;}
.why_choose h2{text-align: center; font-size: 4rem; font-weight: bold; margin: 0 0 6rem 0;}
.choose_inner_wrapper{display: flex; flex-wrap: wrap;}
.first_block{flex: 0 0 37rem; margin: 0 1.7rem 0 0; height: 57.8rem;}
.others_block{flex:1; display: grid; grid-gap: 1.7rem; grid-template-columns: repeat(2,1fr);}
.others_block .block{height: 27.8rem;}

.first_block:hover img,
.others_block .block:hover img{transform: scale(1.1);}
.first_block:hover .overlay,
.others_block .block:hover .overlay{background: rgba(6, 20, 48,0.5);}

.others_block .block,
.first_block{border-radius: 1rem; color: var(--white); overflow: hidden; position: relative; padding: 3.6rem 2.8rem; display: flex; flex-wrap: wrap; align-items: flex-end;}
.first_block img,
.others_block .block img{object-fit: cover; width: 100%; height: 100%; position: absolute; top: 0; right: 0; left: 0; bottom: 0; z-index: -2; transition: ease-in-out 0.5s;}
.overlay{position: absolute; top: 0; right: 0; left: 0; bottom: 0;  background: rgba(6, 20, 48,0.8); z-index: -1; transition: ease-in-out 0.5s;}

.data_holder{margin: 0;padding: 0;}
.data_holder img{position: unset !important; margin: 0 0 1rem 0; width: unset !important; height: unset !important;}
.data_holder:hover img{transform: rotate(15deg) !important;}
.data_holder h3{font-size: 2.7rem; font-weight: bold; color: var(--white); margin: 0 0 1.5rem 0;}
.data_holder p{font-size: 1.6rem; font-weight: 400; line-height: 2.3rem;}
/** End WHY CHOOSE Wrapper **/

/** Map Wrapper **/
.map_wrapper{padding:0 0 10rem 0}
.map_wrapper h2{text-align: center; font-size: 4rem; margin: 0 0 3.6rem 0;}
ul.maptabs{display: flex; flex-wrap: wrap; justify-content: center; margin: 0 0 4rem 0;}
ul.maptabs li:not(:last-child){margin: 0 1.6rem 0 0;}
ul.maptabs li{font-size: 2.2rem; font-weight: 600; border-radius: 6rem; padding: 1rem 4rem; color: var(--orange); background: rgba(251, 102, 10, 0.2);}
.inner_map{margin: 0;padding: 0;}
/** End Map Wrapper **/

/** Get In Touch Wrapper **/
.get_in_touch_wrapper{
    background: url(../images/get_in_touch_bg.jpg) no-repeat top center;
    background-size: cover;
    margin: 0 0 6rem 0;
    position: relative;
}
.get_in_touch_wrapper .gradient_overlay{
    background: linear-gradient(180deg, rgba(6, 20, 48, 0.00) 20.62%, rgba(6, 20, 48, 0.90) 82.93%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.get_in_touch_wrapper .main_wrapper{z-index: 2;}
.inner_touch_wrapper{padding: 8rem 6rem 6rem; display: flex; flex-wrap: wrap;}
.left_cotent_wrapper{
    flex: 1; margin: 0 5.6rem 0 0;
    display: flex; flex-wrap: wrap;  align-items: flex-end;
}
.left_cotent_wrapper p{font-size: 2.2rem; line-height: 3.2rem; color: var(--white); font-weight: 500; margin: 0 0 4.5rem 0; flex: 1;}
.left_cotent_wrapper ul li:not(:last-child){border-bottom: 0.1rem solid rgba(245, 248, 251, 0.40); padding: 0 0 1.2rem 0; margin: 0 0 1.2rem 0;}
.left_cotent_wrapper ul li a{display: flex; flex-wrap: wrap; align-items: center; font-weight: bold; color: var(--white); font-size: 2.8rem; text-decoration: none; font-family: var(--secondary-font);}
.left_cotent_wrapper ul li a img{margin: 0 2rem 0 0;}
.frm_wrapper{width: 52.5rem; background: var(--white); border-radius: 1rem; padding:3rem 6rem; border-top: 0.4rem solid var(--orange); border-left: 0; border-right: 0; border-bottom: 0; position: relative; margin: -17rem 0 0 0; box-shadow: 0.2rem -1.1rem 2rem 0 rgba(0, 0, 0, 0.10);}
.frm_wrapper h2{text-align: center; font-size: 4rem; line-height: 3rem; margin: 0 0 2.7rem 0;}
.frm_wrapper .input_holder:not(:last-child){margin: 0 0 1.3rem 0;}
.frm_wrapper .input_holder input[type="text"],
.frm_wrapper .input_holder input[type="email"],
.frm_wrapper .input_holder input[type="tel"],
.frm_wrapper .input_holder textarea{
    width: 100%;
    height: 6.5rem;
    border-radius: 0.5rem;
    border-top: 0.2rem solid rgba(6, 20, 48, 0.20);
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    background: #E8ECF6;
    outline: none;
    font-size: 1.8rem;
    font-weight: 600;
    padding: 0 2rem;
    resize: none;
    font-family: var(--primary-font);
}
.frm_wrapper .input_holder textarea{height: 20rem; padding:2rem;} 
.frm_wrapper input[type="submit"]{
    background: var(--orange);
    width: 20.2rem;
    height: 6.7rem;
    border-radius: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto;
    outline: none;
    border: 0;
    cursor: pointer;
}
.innerdata{display: flex; flex-wrap: wrap; flex-direction: column; align-items: flex-start;}
/** End Get In Touch Wrapper **/

/** Newsletter Wrapper **/
.newsletter_wrapper{margin: 0 0 -6rem 0;}
.newsletter_wrapper h2{text-align: center; font-size: 2.8rem; font-weight: bold; margin: 0 0 1rem 0;}
.newsletter_wrapper p{text-align: center; font-size: 1.6rem; margin: 0 0 2rem 0;}
.inner_newsletter{
    background: var(--orange);
    max-width: 85rem; margin: 0 auto;
    border-radius: 2rem;
    padding: 3rem;
    display: flex;
    flex-wrap: wrap;
}
.inner_newsletter .input_holder:not(:last-child){margin: 0 1.1rem 0 0;}
.inner_newsletter .input_holder{flex: 1;}
.inner_newsletter .input_holder input[type="text"],
.inner_newsletter .input_holder input[type="email"]{
    background: var(--white);
    width: 100%;
    height: 5.8rem;
    border-radius: 0.5rem;
    outline: none;
    border: none;
    padding: 0 1.3rem;
    font-size: 1.8rem;
    color: var(--black);
    font-weight: 600;
}
.inner_newsletter input[type="submit"]{
    background: var(--black-three);
    width: 15.5rem;
    height: 5.8rem;
    border-radius: 0.5rem;
    outline: none;
    border: 0;
    color: var(--white);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-weight: bold;
    font-size: 1.8rem;
    cursor: pointer;
}
/** End Newsletter Wrapper **/

/** FOOTER **/
footer{
    background: var(--black-three);
    padding: 9rem 0 1rem;
}
footer p{text-align: center; font-size: 1.6rem; color: #F1F1F1; font-weight: 400; margin: 0 0 1.5rem 0;}
footer p a{color: var(--orange); text-decoration: none; font-weight: 400;}
footer p span{margin: 0 0.5rem;}
footer .bottom{display: flex; flex-wrap: wrap; justify-content: center; align-items: center;}
footer .bottom p{font-size: 1.6rem; color: #F1F1F1; margin: 0;}
footer .bottom p a{color: var(--orange); text-decoration: none; font-weight: 600;}
.min_section{display: flex; justify-content: center; align-items: center; margin: 0 0 2.5rem 0; font-size: 1.6rem; color: #F1F1F1;}
.min_section .address{margin: 0 4rem;}
.min_section span{color: var(--white); margin: 0 0.5rem 0 0;}
.min_section a{color: var(--orange); text-decoration: none; font-weight: 600;}
/** END FOOTER **/

/**Inner Wrapper**/
.inner_content_wrapper{padding:6rem 0 10rem;}
.inner_content_wrapper .home_about_wrapper{padding: 0; border-bottom: 0;}
.inner_content_wrapper .home_about_wrapper .inner_about_wrapper{padding: 0;}
.inner_content_wrapper .home_about_wrapper .inner_about_wrapper .owner_wrapper{width: 41rem;}
.inner_content_wrapper .home_about_wrapper .inner_about_wrapper .content_wrapper{flex: 1; margin: 0 0 0 6rem;}
.inner_content_wrapper .home_about_wrapper .top_block{margin-bottom: 4rem;}
.inner_content_wrapper .home_about_wrapper .top_block p{padding: 0; font-size: 2.1rem; font-weight: 600;}

.inner_content_wrapper h2{font-size: 3rem; margin: 0 0 2rem 0;}
.inner_content_wrapper h3{font-size: 2.4rem; margin: 0 0 2rem 0;}
.inner_content_wrapper h4{font-size: 2rem; margin: 0 0 2rem 0;}
.inner_content_wrapper h5{font-size:1.8rem; margin: 0 0 2rem 0;}
.inner_content_wrapper h6{font-size:1.6rem; margin: 0 0 2rem 0;}
.inner_content_wrapper p{margin: 0 0 2rem 0;}
.inner_content_wrapper p a,
.inner_content_wrapper ul li a,
.inner_content_wrapper ol li a{font-weight: bold; color: var(--orange); text-decoration: none;}
.inner_content_wrapper ul{margin: 0 0 2rem 0;}
.inner_content_wrapper ul li:not(:last-child){margin: 0 0 0.8rem 0;}
.inner_content_wrapper ul li{line-height: 2.4rem; position: relative; padding-left: 1.5rem;}
.inner_content_wrapper ul li::before{position: absolute; top: 0.8rem; left: 0; width: 0.7rem; height: 0.7rem; border-radius: 100%; background: var(--blue); content: "";}
.inner_content_wrapper ol{margin: 0 0 2rem 1.5rem;}
.inner_content_wrapper ol li{list-style:decimal;}
.inner_content_wrapper ol li:not(:last-child){margin: 0 0 1rem 0;}
/**End Inner Wrapper**/

/** Service Intro Wrapper **/
.service_intro_wrapper{
    background: var(--gray);
    padding: 4rem 0;
   
}
.service_intro_wrapper p{
    font-size: 2rem;
    line-height: 2.8rem;
    text-align: center;
    font-weight: 500;
}
.why_choose_wrapper{
    padding: 7.4rem 0;
    border-bottom: 0.1rem solid #E8E8E8;
}
.inner_why_choose_wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
    padding: 0 13rem;
}

.inner_why_choose_wrapper .owner_wrapper{width: 41rem; height: 36rem; position: relative;}
.inner_why_choose_wrapper .owner_wrapper::before{
    background: url(../images/dots.svg) no-repeat;
    position: absolute;
    left: -4rem;
    top: 1rem;
    content: "";
    width: 2.7rem;
    height: 11rem;
}
.inner_why_choose_wrapper .owner_wrapper::after{
    background: var(--orange);
    position: absolute;
    right:-2rem;
    top: 28rem;
    content: "";
    width: 8.8rem;
    height: 10rem;
    border-radius: 1rem;
    z-index: -1;
}
.inner_why_choose_wrapper .owner_wrapper img{width: 100%; height: 100%; object-fit: cover; border-radius: 1rem; border: 0.6rem solid var(--white);}
.inner_why_choose_wrapper .content_wrapper{flex: 1; margin: 0 0 0 6rem;}
h2.heading_title{font-size: 3.5rem; font-weight: bold; line-height: 3.5rem; margin: 0 0 3rem 0;}
.inner_why_choose_wrapper .content_wrapper ul{margin: 0; padding: 0;}
.inner_why_choose_wrapper .content_wrapper ul li:not(:last-child){margin-bottom: 3rem;}
.inner_why_choose_wrapper .content_wrapper ul li{font-size: 1.6rem; line-height: 2.4rem;}
/** End Service Intro Wrapper **/

/** Our Expertise Wrapper **/
.expertise_wrapper{padding: 6rem 0 8rem;}
.expertise_wrapper h2{text-align: center;}
.inner_expert_wrapper{padding: 0 10rem; display: flex; flex-wrap: wrap; justify-content: center;}
.inner_expert_wrapper .block{
    flex: 0 0 50rem;
    border-radius: 1rem;
    border: 0.1rem solid var(--graysky);
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0 20px 20px 0;
}
.inner_expert_wrapper .block:nth-child(2n){margin-right: 0;}
.inner_expert_wrapper .block .content{flex: 1; margin: 0 0 0 1.5rem;}
.inner_expert_wrapper .block .content h3{font-size: 2rem; font-weight: bold; margin: 0 0 1rem 0;}
.inner_expert_wrapper .block .content p{font-size: 1.6rem; line-height:2.2rem;}
/** End Our Expertise Wrapper **/

/** Two Blocks **/
.two_blocks_wrapper{
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 3.6rem 0;
}
.two_blocks_wrapper .block{flex: 1; padding: 6rem 0;}
.two_blocks_wrapper .block:hover .img_holder img{transform: scale(1.1);}
.two_blocks_wrapper .block h2{color: var(--white); font-size: 2.6rem; font-weight: bold; margin: 0 0 3rem 0;}
.two_blocks_wrapper .block p{color: var(--white); font-size: 1.8rem;}
.two_blocks_wrapper .block:first-child{padding-right: 5.8rem; padding-left: 10rem; background: #162D5D;}
.two_blocks_wrapper .block:last-child{padding-left: 5.8rem; padding-right: 10rem; background: #061430;}
.center_btn{margin: 0 auto 7rem;}
.img_holder{
    border-radius: 1rem;
    overflow: hidden;
    height: 20rem;
    margin: 0 0 3rem 0;
}
.img_holder img{width: 100%; height: 100%; object-fit: cover; transition: 0.5s ease-in-out;}
/** End Two Blocks **/


/** BLOG LANDING AND DETAILS **/
.inner_content_section{background: var(--gray); padding: 8rem 0 2rem 0; margin-bottom: 4rem;}
.featured_wrapper{margin-bottom: 10rem;}
.featured_wrapper a.outline{width: 13.2rem; margin: 4rem auto 0;}
.featured_wrapper .inner_wrapper{
    background: var(--black-two);
    border-radius: 1.2rem;
    padding: 5rem;
    display: flex;   
    flex-wrap:wrap;
    justify-content: space-between;
}
.featured_wrapper .cblock{
    background: var(--white);
    border-radius: 1.2rem;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    text-decoration: none;
    box-shadow: 0 0.7rem 1rem 0 rgba(104, 92, 92, 0.05);
    color: var(--black-two);
}
.cblock .content .bottom_part{
    margin-top: auto; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; font-size: 1.1rem; text-transform: uppercase; font-weight: 400; color: var(--black-two);
}
.cblock .content {
    padding: 3rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
.featured_wrapper .cblock .img_holder{
    width: 62.4rem;
    height: 40rem;
    margin: 0;
}
.featured_wrapper .cblock .content{flex: 1; padding: 4.6rem;}
.featured_wrapper .cblock .content h3{text-align: left; margin: 0 0 2.5rem 0; font-size: 2rem; line-height: 2.4rem; color: var(--black-two); font-weight: bold;}
.featured_wrapper .cblock .content p{font-size: 1.6rem; text-align: left; margin: 0 0 2rem 0;}
.featured_wrapper .cblock .content small{text-transform: uppercase; color: var(--orange); margin: 0 0 1.2rem 0; font-size: 1.1rem; font-weight: bold;}
.featured_wrapper .cblock .content .bottom_part .right{display: flex; flex-wrap: wrap; align-items: center;}
.featured_wrapper .cblock .content .bottom_part .right span{margin-left: 1rem;}
.all_blog_post_wrapper{margin: 0;padding: 0;}
.catblog_wrapper{display: grid; grid-gap:3.6rem; grid-template-columns: repeat(3,1fr);}
.catblog_wrapper .cblock{display: flex; flex-wrap: wrap; flex-direction: column; background: var(--white); border-radius: 0.6rem; color: var(--black-two); text-decoration: none; box-shadow: 0 0.7rem 1rem 0 rgba(104, 92, 92, 0.05);}
.catblog_wrapper .cblock .img_holder{margin: 0 !important;}
.catblog_wrapper .cblock .content{flex-grow: 1;}
.catblog_wrapper .cblock .content h3{font-size: 1.9rem; text-align: left; font-weight: bold; margin: 0 0 1rem 0; color: var(--black-two);}
.catblog_wrapper .cblock .content p{
    font-size: 1.6rem; text-align: left; line-height: 2.6rem; color: var(--black-two); margin: 0;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 26rem;}
.catblog_wrapper .cblock .bottom_part{padding: 0 2rem 2rem; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; font-size: 1.1rem;
    text-transform: uppercase; font-weight: 400; color: var(--black-two);}
.catblog_wrapper .cblock .bottom_part span{
    width: 3.3rem;
    height: 3.3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background:var(--orange) !important;
    border-radius: 100%;
    transition: all 0.5s ease-in-out 0s;
}

/** END BLOG LANDING AND DETAILS**/

/** BLOG POST DETAILS**/
.post_details_wrapper{display: flex; flex-wrap: wrap;}
.left_postwrapper{flex: 1; margin: 0 6rem 0 0;}
.left_postwrapper h1{font-size: 3.5rem; line-height: 4rem; font-weight: 700; color: var(--black-two); margin: 0 0 4.5rem 0; text-align: left;}
.left_postwrapper h1 a{color: var(--orange); text-decoration: none;}
.left_postwrapper img{max-height: 40rem; width: 100%; border-radius: 1.2rem; object-fit: cover; margin: 0 0 3rem 0;}
.left_postwrapper p{margin:0 0 3rem 0; font-size: 1.6rem; color: var(--black-two); line-height: 2.6rem; font-weight: 400; text-align: left;}
.left_postwrapper h2{font-size: 2.5rem;}
.left_postwrapper h3{font-size: 2rem;}
.left_postwrapper h4{font-size: 1.8rem;}
.left_postwrapper h5{font-size: 1.6rem;}
.left_postwrapper h6{font-size: 1.4rem;}
.left_postwrapper h2,
.left_postwrapper h3,
.left_postwrapper h4,
.left_postwrapper h5,
.left_postwrapper h6{font-weight: 700; margin: 0 0 2rem 0; color: var(--black-two); text-align: left;}
.left_postwrapper ul{margin:0 0 3rem 0;}
.left_postwrapper ul li:not(:last-child){margin: 0 0 1rem 0;}
.left_postwrapper ul li{font-size: 1.6rem; line-height: 2.6rem; color: var(--black-two); position: relative; padding-left: 2rem;}
.left_postwrapper ul li::before{position: absolute; top: 0.8rem; left: 0; border-radius: 100%; width: 0.8rem; height: 0.8rem; background: var(--black-two); content: "";}
.left_postwrapper ul li a,
.left_postwrapper p a{font-weight: bold; color: var(--orange); text-decoration: none;}
.left_postwrapper ul li a:hover,
.left_postwrapper p a:hover{color: var(--black-two); text-decoration: none;}
.left_postwrapper p strong{font-weight: bold; color: var(--gray-two);}
.metawrapper{margin: 0 0 4rem 0; display: flex; flex-wrap: wrap;}
.metawrapper .metablock:not(:last-child){margin: 0 4rem 0 0;}
.metawrapper .metablock{font-size: 1.5rem; color: var(--black-two); font-weight: 700;}
.metawrapper .metablock a{color: var(--orange); text-decoration: none;}
.metawrapper .metablock a:hover{color: var(--black-two);}
.metawrapper .metablock span{text-transform: uppercase; font-size: 1.1rem; font-weight: 400;}
.share_post{margin-top: 4rem;}
.share_post span{text-transform: uppercase; font-size: 1.1rem; color: var(--black-two); margin: 0 0 1rem 0; display: block;}
.share_post img{border-radius: unset !important; margin-bottom: unset !important;}

.sidebar{flex: 0 0 35rem;}
.sidebar .block:not(:last-child){margin: 0 0 4rem 0;}

.search_wrapper{display: flex; flex-direction: column;}
.search_wrapper .cblock:not(:last-child){margin: 0 0 2em 0;}
.search_wrapper .cblock{display: flex; flex-wrap: wrap; text-decoration: none;}
.search_wrapper .cblock .img_holder{width: 28rem;}
.search_wrapper .cblock .content{flex: 1;}
.search_wrapper .cblock .content .bottom_part span img{margin: 0; width: auto; height: auto;}
/** END BLOG POST DETAILS**/

.subscribe_wrap{
    border-radius: 12px;
    background: linear-gradient(180deg, #04CEF3 0%, #073B70 100%);
    backdrop-filter: blur(12.5px);
    padding: 5rem 2rem 2rem;
    margin-top: 19rem;
}
.subscribe_wrap img{margin: -14rem auto -2rem; display: block;}
.subscribe_wrap h3{text-align: center; font-size: 4.5rem; color: var(--white); font-weight: 400; line-height: 5rem; margin: 0 0 1rem 0;}
.subscribe_wrap h3 span{display: block; font-weight: bold;}
.subscribe_wrap h4{font-size: 1.8rem; font-weight: 400; color: var(--gray-two); text-align: center; margin: 0 0 2rem 0;}
.subscribe_wrap h4 span{font-weight: bold;}
.subscribe_wrap h5{text-align: center; font-size: 1.7rem; font-weight: 400; color: var(--gray-two); margin: 0 0 1rem 0;}
.frm_box{
    background: var(--black);
    width: 100%;
    height: 5.6rem;
    border-radius: 10rem;
    padding: 0;
    overflow: hidden;
}
.frm_box .inner_box{display: flex; flex-wrap: wrap; height: 100%;}
.frm_box .inner_box input[type="text"],
.frm_box .inner_box input[type="email"]{
    background: transparent !important;
    flex: 1;
    height: 100%;
    padding: 0 1.5rem;
    font-size: 1.5rem;
    font-family: var(--primery-font);
    color: var(--light-gray); 
    outline: none;  
    border: none;
    
}
.frm_box .inner_box input[type="submit"]{
    background: var(--orange);
    font-family: var(--primery-font);
    border: none;
    height: 100%;
    padding: 0 1rem;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
}
.search_bar .frm_box{background: var(--white);}
.search_bar .frm_box input[type="text"]{background: transparent; outline: none;}

/** Latest Post **/
.latest_post{margin-top: 6rem;}
.latest_post h2{font-size: 3rem; font-weight: 400; color: var(--black-two); margin: 0 0 3rem 0;}
.latest_post ul{margin: 0; padding: 0;}
.latest_post ul li:not(:last-child){margin: 0 0 2rem 0;}
.latest_post ul li a{
    background: var(--white);
    display: flex; flex-wrap: wrap;
    text-decoration: none;
    border-radius: 1.2rem;
    overflow: hidden;
    color: var(--black-two);
    text-decoration: none;
    box-shadow: 0 0.7rem 1rem 0 rgba(104, 92, 92, 0.05);
}
.latest_post ul li .img_holder{
    width: 11rem;
    height: auto;
    margin: 0;
    border-radius: 1.2rem 0 0 1.2rem;
}
.latest_post ul li .img_holder img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.latest_post ul li .content{padding: 2rem; flex: 1;}
.latest_post ul li .content h5{text-align: left; font-size: 1.6rem; color: var(--black-two); font-size: 1.6rem; margin: 0 0 1rem 0; line-height: 2rem;}
.latest_post ul li .content p{font-size: 1.1rem; line-height:1.6rem; text-align: left; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin: 0; width: 20rem;}
/** End Latest Post **/

/** Pagination **/
.pagination_wrapper{margin: 6rem 0 0 0;padding: 0;}
.pagination_wrapper ul{display: flex; flex-wrap: wrap; justify-content: center; align-items: center; display: none;}
.pagination_wrapper ul li:not(:last-child){margin: 0 1.5rem 0 0;}
.pagination_wrapper ul li a{
    border-radius: 0.5rem;
    border: 0.2rem solid var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.6rem 1.4rem;
    opacity: 0.25;
}
.pagination_wrapper ul li a:hover,
.pagination_wrapper ul li.active a{
    background: linear-gradient(89.84deg, #06C8E3 1.33%, #073B70 97.7%);
    opacity: 1; border: 0.2rem solid var(--sky);
}
.pagination a,
.pagination .current {
	width: 4rem;
    padding:1rem 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-weight: 400;
	font-size: 1.6rem;
    line-height: 1.6rem;
	color:var(--white);
	margin-right: 1.5rem;
    border-radius: 0.5rem;
    opacity: 0.25;
}
.pagination a:hover{opacity: 1;}
.pagination a{border: 0.2rem solid var(--white);}
.pagination a.prev,
.pagination a.next{border: none !important;}

.pagination .current{
	background: linear-gradient(89.84deg, #06C8E3 1.33%, #073B70 97.7%);
    opacity: 1; border: 0.2rem solid var(--sky);
}

.pagination .prev,
.pagination .prev:hover{background-image: url(../images/right-arrow.png) !important; transform: rotate(180deg);}
.pagination .next,
.pagination .next:hover{background-image: url(../images/right-arrow.png) !important; }

.pagination .prev,
.pagination .next{	
	width: 2rem;
    height: 2rem;
    background-size:cover ;
}

.pagination .nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
}
/** End Pagination **/

ul.catnav{display: flex; flex-wrap: wrap; justify-content: center; margin-bottom:6rem;}
ul.catnav li:not(:last-child){margin: 0 2rem 0 0;}

ul.catnav li{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    color: var(--black-two);
    border-radius: 100rem;
    border: 0.1rem solid var(--orange);
    height:4.5rem;
    line-height: 4.5rem;
    font-size: 1.4rem;
    padding: 0 3rem;
    cursor: pointer;
    position: relative;
    transition: ease-in-out 0.5s;
    font-weight: bold;
}

ul.catnav li::before{
    background: var(--orange);
    width: 0rem;
    height: 100%;
    position: absolute;
    top: 0;
    left: -0.2rem;
    content: "";
    z-index: -1;
    transition: ease-in-out 0.2s;
    border-radius: 100rem;
    border: 0.1rem solid var(--orange);
    opacity: 0;
}
ul.catnav li:hover::before{
    border: 0.1rem solid var(--orange);
    width: 100%;
    left: 0;
    opacity: 1;
}

ul.catnav li.active{background: var(--orange); border: 0.1rem solid var(--orange); color: var(--white);}
.cblock .content .bottom_part span{
    background: var(--orange);
    width: 3.3rem; height: 3.3rem;
    border-radius: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    transition: ease-in-out 0.5s;
}
.cblock .content .bottom_part span img{width: auto; height: auto;}
.share_post img{border-radius: unset !important; margin-bottom: unset !important;}
.social_block a:not(:last-child),
.social_block ul li:not(:last-child) {
    margin: 0 1rem 0 0;
}
.social_block {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

@media only screen and (max-width: 767px){
.main_wrapper{padding-left: 1.5rem; padding-right: 1.5rem;}
.top_header_info{justify-content: center; flex-direction: column;}
.top_header_info a{flex: 1; line-height: 1.6rem;}
.top_header_info a:not(:last-child){margin: 0 0 0.5rem 0;}
.bottom_header_wrapper{padding: 1.5rem; position: relative; justify-content: space-between;}
.bottom_header_wrapper a.logo{flex: 0 0 16rem; margin: 0;}
a.call{background: transparent; font-size: 0; padding: 0; margin: 0 4.5rem 0 0;}
a.call img{margin: 0 0 0 1rem; width: 4rem;}
nav{display: none;}
nav{
    background: var(--black-two);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: auto;
    z-index: 1;
    display: none;
    /*flex-wrap: wrap;
    align-items: center;
    justify-content: center;*/
    padding: 14rem 0 0 0;
}
nav ul{flex-direction: column; align-items: flex-start; padding: 0 ; margin: 0; width: 100%;}
nav ul li{width: 100%; padding: 0 2rem !important; text-align: center;}
nav ul li:not(:last-child){margin: 0 0 3rem 0;}
nav ul li a{font-size: 3rem; color: var(--white);}
nav ul li.btn{display: none;}
a.cross{position: absolute; top: 1rem; right: 1rem; font-size: 6rem; color: var(--charkol-black); text-decoration: none; font-weight: 100; display: block !important; width: 4rem; height: 4rem;}
nav ul li{line-height: 3rem;}
.dropdown_arrow::after{border-color: var(--white); right: 2rem; top: 1rem;}
nav ul li ul{position: unset; left: unset;  width:100%; border-radius: 1rem; background:#0e2146;}
nav ul li ul li a{font-size: 2rem;}

.hamburger{display: flex; flex-wrap: wrap; flex-direction: column; width: 3rem; height: 1.7rem; position: absolute; right: 0; margin: 0 1.5rem 0 0;}
.hamburger span{height: 0.3rem; border-radius: 0.3rem; background: var(--black);}
.hamburger span:not(:last-child){margin-bottom: 0.4rem;}

.banner_slider{margin: -15rem 0 0 0;}
.banner_slider .item{padding-top: 18rem; height: 50rem;}
.banner_slider .item .content{width: auto;}
.banner_slider img{height: 100%;}
.banner_slider .item .content h1{font-size: 2.4rem; line-height: 3rem; margin: 0 0 2rem 0;}
.banner_slider .item .content p{margin-bottom: 2rem; font-size: 1.6rem; line-height: 2.2rem;}
.buttons_wrapper a{margin: 0 auto; width: 14rem; height: 5rem; font-size: 1.5rem;}
.buttons_wrapper{flex-direction: column;}
.buttons_wrapper a:not(:last-child){margin: 0 0 1rem 0;}


.service_grid{display: flex; flex-wrap: nowrap; overflow: auto; grid-gap: unset; margin: -12rem 0 3rem 0;}
.service_grid::-webkit-scrollbar{display: none;}
.service_grid li:not(:last-child){margin: 0 1.5rem 0 0;}
.service_grid li{min-width: 28rem;}

.client_logos_grid{display: flex; flex-wrap: nowrap; overflow: auto; grid-gap: unset;}
.client_logos_grid::-webkit-scrollbar{display: none;}
.client_logos_grid img:not(:last-child){margin: 0 1rem 0 0;}

.home_about_wrapper{padding: 4rem 0;}
.home_about_wrapper .top_block{margin-bottom: 3rem;}
.home_about_wrapper .top_block h2{font-size: 3rem; margin: 0 0 2rem 0;}
.home_about_wrapper .top_block p{padding: 0; line-height: 2.6rem; font-size: 1.6rem;}
.home_about_wrapper .inner_about_wrapper{padding: 0; flex-direction: column;}
.owner_wrapper{width: 29rem; margin: 0 auto;}
.owner_wrapper::before{left: -3rem; top: 1rem; width: 2rem; height: 10.3rem; background-size: contain;}    
.home_about_wrapper .inner_about_wrapper .content_wrapper{flex: 1; margin: 8rem 0 0 0;}
.home_about_wrapper .inner_about_wrapper .content_wrapper h3{text-align: center;}
.experience_block{width: 25rem; padding:1.5rem; height: auto; right: 0; left:0; margin: 0 auto; border-radius: 1rem 1rem 1rem 4rem;}
.experience_block span{font-size: 5rem;}
.experience_block p{font-size: 1.5rem; margin-left: 1rem; padding-left: 1rem; line-height: 2rem;}

.why_choose{padding:4rem 0;}
.why_choose h2,
.map_wrapper h2{font-size: 3rem; line-height: 3.5rem; margin: 0 0 3rem 0;}

.choose_inner_wrapper{flex-direction: column;}
.first_block{flex: 1; margin: 0 0 1.7rem 0;}
.first_block img{height: auto;}
.others_block{grid-template-columns: repeat(1,1fr);}
.others_block .block, .first_block{padding: 2.5rem 2rem 3rem 2rem;}
.data_holder h3{font-size: 2.4rem; margin: 0 0 1rem 0;}
.map_wrapper{padding-bottom: 9rem;}
.data_holder img{width: 5rem !important; margin: 0 0 1rem 0;}
ul.maptabs{flex-wrap: nowrap; overflow: auto; justify-content: flex-start; margin: 0 0 2rem 0;}
ul.maptabs::-webkit-scrollbar{display: none;}
ul.maptabs li:not(:last-child){margin: 0 1rem 0 0;}
ul.maptabs li{font-size: 1.8rem; white-space: nowrap;}

.inner_touch_wrapper{padding: 4rem 0; flex-direction: column-reverse;}
.left_cotent_wrapper{margin: 0;}
.frm_wrapper{width: 100%; margin-top: -10rem; margin-bottom: 4rem; padding: 3rem;}
.frm_wrapper h2{font-size:3rem;}
.left_cotent_wrapper p{font-size: 2rem; text-align: center; line-height: 2.8rem;}
.left_cotent_wrapper ul{margin: 0 auto;}
.left_cotent_wrapper ul li a{font-size: 2.2rem;}
.left_cotent_wrapper ul li a img{margin: 0 1rem 0 0; width: 4rem;}

.get_in_touch_wrapper{margin-bottom: 4rem;}
.newsletter_wrapper h2{font-size: 2.4rem;}
.inner_newsletter{flex-direction: column;}
.inner_newsletter .input_holder:not(:last-child){margin: 0 0 1rem 0;}
.inner_newsletter input[type="submit"]{margin: 0 auto;}
footer p{display: flex; flex-wrap: wrap; flex-direction: column-reverse; margin: 0 0 1rem 0;}
footer p span:first-child{margin: 0 0 1rem 0;}
footer p small:first-child{display: none;}
footer .bottom{flex-direction: column;}
footer .bottom p{display: unset;}
footer .bottom p a{display: block;}
footer .bottom .social_btn{justify-content: center; margin: 1rem 0 0 0;}
.min_section{flex-direction: column;}
.min_section .address{margin: 1rem 0;}
.min_section .address{text-align: center;}

/**Inner Wrapper**/
.inner_content_wrapper{padding: 3rem 0 6rem;}
.inner_content_wrapper .home_about_wrapper .inner_about_wrapper .owner_wrapper{width: 100%;}
.inner_content_wrapper .home_about_wrapper .inner_about_wrapper .content_wrapper{margin: 2rem 0 0 0;}
.inner_content_wrapper .home_about_wrapper .top_block p{font-size: 1.6rem;}
.inner_pages_banner .main_wrapper .content h1{font-size: 4rem;}
.inner_pages_banner{height: 32rem;}
.inner_pages_banner .main_wrapper .breadcrump{margin-bottom: 1rem;}
.inner_content_wrapper h2{font-size: 2.6rem;}
.inner_content_wrapper h3{font-size: 2.2rem;}
.inner_content_wrapper h4{font-size: 2rem;}
.inner_content_wrapper h5,
.inner_content_wrapper h6{font-size: 1.8rem;}
/**End Inner Wrapper**/

/** Service Landing **/
.service_pages_banner .content{width: auto;}
.service_pages_banner .content h1{font-size: 3.5rem; line-height:3.5rem; margin: 0 0 1rem 0;}
.service_pages_banner .content p{font-size: 2.2rem; margin: 0 0 2rem 0;}
.service_pages_banner .content a{
    margin: 0 auto;
    width: 14rem;
    height: 5rem;
    font-size: 1.5rem;
}
.service_pages_banner{height: 45rem;}
.service_pages_banner .main_wrapper{padding-top: 23rem;}
.inner_why_choose_wrapper{padding: 0; flex-direction: column;}
.inner_why_choose_wrapper .owner_wrapper{width: 30rem;}
.inner_why_choose_wrapper .owner_wrapper::after{top: 27rem; right: -1rem;}
.inner_why_choose_wrapper .owner_wrapper::before{left: -3rem;}
.inner_why_choose_wrapper .content_wrapper{margin: 4rem 0 0 0;}
.inner_expert_wrapper{flex-direction: column; padding: 0;}
.inner_expert_wrapper .block{flex-direction: column; align-items: center; flex: 1; margin: 0 0 15px 0;}
.inner_expert_wrapper .block .content{margin: 1.5rem 0 0 0;}


h2.heading_title{text-align: center; font-size: 3rem;}
.inner_why_choose_wrapper .content_wrapper ul li:not(:last-child){margin-bottom: 2rem;}
.why_choose_wrapper{padding: 4rem 0;}
.expertise_wrapper{padding-top: 4rem; padding-bottom: 6rem;}

.inner_expert_wrapper .block .content h3,
.inner_expert_wrapper .block .content p{text-align: center;}

.two_blocks_wrapper{flex-direction: column;}
.two_blocks_wrapper .block:first-child,
.two_blocks_wrapper .block:last-child{padding: 3rem;}
.two_blocks_wrapper .block p{font-size: 1.7rem;}
/** End Service Landing **/

/** BLOG LANDING AND DETAILS**/
.inner_content_section{padding-top: 4rem;}
.featured_wrapper .cblock .img_holder{width: 100%; height: 25rem;}
.featured_wrapper .cblock .content{padding: 2.5rem;}
.featured_wrapper .cblock .content p{margin-bottom: 3rem;}

ul.catnav{flex-wrap: nowrap; overflow: auto; justify-content: flex-start; margin-bottom: 3rem; padding: 0.8rem 0;}
ul.catnav::-webkit-scrollbar{display: none;}
ul.catnav li{white-space: nowrap; padding: 0 3rem;}
ul.catnav li:not(:last-child){margin-right: 1rem;}
.catblog_wrapper{grid-template-columns: repeat(1,1fr);}
.pagination_wrapper ul li:not(:last-child){margin-right: 1rem;}

.post_details_wrapper{flex-direction: column;}
.left_postwrapper{margin: 0;}
.left_postwrapper h1{font-size: 2.6rem; line-height: 3.4rem;}
.metawrapper{flex-direction: column;}
.metawrapper .metablock{line-height: 1.6rem;}
.metawrapper .metablock:not(:last-child){margin: 0 0 1rem 0;}
.left_postwrapper h2,
.left_postwrapper h3,
.left_postwrapper h4,
.left_postwrapper h5,
.left_postwrapper h6{line-height: 3rem;}
.sidebar{flex: 1;}
.subscribe_wrap h3{font-size: 4.5rem !important; margin: 0 0 1rem 0;}
.pagination_wrapper nav{display: block !important; position: unset !important;}
.blog_wrapper .inner_wrapper{padding:0; flex-direction: column; background: transparent;}
.blog_block:first-child{flex: 1; margin: 0 0 2rem 0;}
.blog_block a{flex-direction: column;}
.blog_block .cblock .img_holder{width: 100% !important;}
.blog_block:first-child a .content,
.blog_block .cblock .content{padding: 2.5rem !important;}
.features_wrapper{margin-bottom: 10rem;}
.blog_wrapper h2{text-align: center;}
.features_wrapper p{text-align: center; font-size: 1.8rem;}
.grid_wrapper{grid-template-columns:repeat(1,1fr);}
.grid_wrapper .cblock p{text-align: left; font-size: 1.6rem; margin-bottom: 2rem;}
.cblock .content{padding: 3rem 2rem;}
.catblog_wrapper .cblock .bottom_part{padding: 0 2rem 2rem;}
.latest_post ul li a{flex-wrap: nowrap;}
.featured_wrapper {margin-bottom: 2rem;}

/** END BLOG LANDING AND DETAILS**/


}

@media only screen and (min-width: 768px) and (max-width: 1023px){
.top_header_info{justify-content: center;}

nav{display: none;}
nav{
    background: var(--black-two);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: auto;
    z-index: 1;
    display: none;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}
nav ul{flex-direction: column; align-items: flex-start; padding: 0 2rem; width: 100%;}
nav ul li:not(:last-child){margin: 0 0 3rem 0;}
nav ul li a{font-size: 3rem; color: var(--white);}
nav ul li.btn{display: none;}
a.cross{position: absolute; top: 1rem; right: 1rem; font-size: 6rem; color: var(--charkol-black); text-decoration: none; font-weight: 100; display: block !important; width: 4rem; height: 4rem;}
nav ul li{line-height: 3rem; width: 100%;}
.dropdown_arrow::after{border-color: var(--white); right: 2rem; top: 1rem;}
nav ul li ul{position: unset; left: unset; display: block; width:100%; border-radius: 1rem; background:#0e2146;}
nav ul li ul li a{font-size: 2rem;}

.hamburger{display: flex; flex-wrap: wrap; flex-direction: column; width: 4.5rem; height:3rem; margin: 0 4rem 0 auto;}
.hamburger span{height: 0.6rem; border-radius: 0.3rem; background: var(--black);}
.hamburger span:not(:last-child){margin-bottom: 0.6rem;}
a.call{font-size: 2rem; padding: 1rem; margin-left: unset;}
a.call img{width: 5rem; margin: 0 1rem 0 -4rem;}

.banner_slider{margin: -17rem 0 0 0; }
.banner_slider .item{padding-top: 21rem; height: 55rem;}
.banner_slider .item .content{width: 50rem;}
.banner_slider img{height: 100%;}
.banner_slider .item .content h1{font-size:4rem; line-height:4.5rem; margin: 0 0 1rem 0;}
.banner_slider .item .content p{margin-bottom: 2.5rem;}

.service_grid{display: flex; flex-wrap: nowrap; overflow: auto; grid-gap: unset; margin: -12rem 0 3rem 0;}
.service_grid::-webkit-scrollbar{display: none;}
.service_grid li:not(:last-child){margin: 0 2.5rem 0 0;}
.service_grid li{min-width: 32rem;}
.service_grid li h3{font-size: 2.3rem; margin: 0 0 2rem 0;}

.client_logos_grid{display: flex; flex-wrap: nowrap; overflow: auto; grid-gap: unset;}
.client_logos_grid::-webkit-scrollbar{display: none;}
.client_logos_grid img:not(:last-child){margin: 0 2rem 0 0;}

.home_about_wrapper{padding: 6rem 0;}
.home_about_wrapper .top_block p{padding: 0; font-size: 1.6rem; line-height: 2.4rem;}
.home_about_wrapper .top_block{margin-bottom: 4rem;}
.home_about_wrapper .inner_about_wrapper{padding: 0; flex-direction: column;}
.home_about_wrapper .inner_about_wrapper .content_wrapper{flex: 1; margin-top:10rem;}
.home_about_wrapper .inner_about_wrapper .content_wrapper h3{text-align: center; font-size: 3rem;}

.why_choose{padding: 5rem 0;}
.why_choose h2{font-size: 3.5rem; margin: 0 0 4rem 0;}

.first_block{flex:1; margin: 0 0 1.7rem 0;}
.others_block .block, .first_block{font-size: 2rem;}
.data_holder img{width: 4rem !important;}
.choose_inner_wrapper{flex-direction: column;}
.data_holder h3{font-size: 2.2rem; margin-bottom: 1rem;}

.map_wrapper{padding-bottom: 6rem;}
.map_wrapper h2{font-size: 3.5rem;}
ul.maptabs li:not(:last-child){margin-right: 1rem;}
ul.maptabs li{font-size: 1.6rem;}

.inner_touch_wrapper{padding: 6rem 0;}
.left_cotent_wrapper{margin: 0 3rem 0 0;}
.left_cotent_wrapper p{font-size: 1.8rem; line-height: 2.4rem;}
.left_cotent_wrapper ul li a{font-size: 2.2rem;}
.frm_wrapper{width: 38rem; padding: 2.5rem;}
.frm_wrapper h2{font-size: 3rem; margin-bottom: 2rem;}
.frm_wrapper .input_holder input[type="text"], .frm_wrapper .input_holder input[type="email"], .frm_wrapper .input_holder input[type="tel"]{height: 5rem;}

.newsletter_wrapper p{padding: 0 13rem;}
.inner_newsletter{justify-content: center;}
.inner_newsletter .input_holder{flex: 1;}

.min_section{flex-direction: column;}
.min_section .address{margin: 1rem 0;}
.min_section .address{text-align: center;}
/** Inner Pages **/
.inner_pages_banner{height:35rem;}
.inner_pages_banner .main_wrapper{padding-top: 20rem;}
.inner_pages_banner .main_wrapper .content h1{font-size: 5rem; line-height: 5rem;}

.about_top_wrapper{padding: 5rem 0;}
.about_intro_content{margin-bottom: 2rem;}
.about_steps_wrapper{display: flex; flex-wrap: nowrap; overflow: auto; padding: 3rem 0 0 2rem;}
.about_steps_wrapper::-webkit-scrollbar{display: none;}
.about_steps_wrapper .block{flex: 0 0 35rem;}
.about_steps_wrapper{grid-gap: 4rem;}
.specialties_grid{grid-template-columns: repeat(2,1fr); grid-gap: 2rem;}
/** End Inner Pages **/

/**Inner Wrapper**/
.inner_content_wrapper{padding: 3rem 0 6rem;}
.inner_content_wrapper .home_about_wrapper .inner_about_wrapper .owner_wrapper{width: 60%;}
.inner_content_wrapper .home_about_wrapper .inner_about_wrapper .content_wrapper{margin: 2rem 0 0 0;}
.inner_content_wrapper .home_about_wrapper .top_block p{font-size: 1.8rem; line-height: 3rem;}
/**End Inner Wrapper**/

/** End Service Landing **/
.service_pages_banner{height: 45rem;}
.service_pages_banner .main_wrapper{padding-top: 22rem;}
.service_pages_banner .content{width: auto;}
.service_pages_banner .content h1{font-size: 5rem; line-height: 5rem;}
.service_pages_banner .content p{font-size: 2.2rem;}
.inner_why_choose_wrapper .content_wrapper{margin-left: 0; margin-top: 4rem;}
.inner_why_choose_wrapper{padding: 0 10rem;}
.inner_why_choose_wrapper .owner_wrapper{width: 100%;}
.inner_expert_wrapper{padding: 0;}
.inner_expert_wrapper .block{flex: 0 0 35rem;}
.two_blocks_wrapper .block:first-child,
.two_blocks_wrapper .block:last-child{padding:5rem 3rem;}
/** End Service Landing **/

 /** BLOG LANDING AND DETAILS**/
 .featured_wrapper{margin-bottom: 6rem;}
 .featured_wrapper .cblock .img_holder{width: 100%; height: 25rem;}
 .featured_wrapper .cblock .content{padding: 4rem;}
 .featured_wrapper .cblock .content p{margin-bottom: 4rem;}
 ul.catnav{flex-wrap: nowrap; overflow: auto; justify-content: flex-start; margin-bottom: 5rem;}
 ul.catnav::-webkit-scrollbar{display: none;}
 .catblog_wrapper{grid-template-columns:repeat(2,1fr);}

 .post_details_wrapper{flex-direction: column;}
 .left_postwrapper{margin: 0 0 3rem 0;}
 .left_postwrapper h1{font-size: 3rem; line-height: 3.5rem; margin: 0 0 2.5rem 0;}
 .subscribe_wrap h3{margin: 0 0 1rem 0 !important;}
 .subscribe_wrap h3 span{display: inline-block;}
 .latest_post ul li .content p{width: 100%; white-space: unset; text-overflow: unset; overflow: unset; font-size: 1.4rem;}
 .inner_content_section{padding-top: 4rem;}
 /** END BLOG LANDING AND DETAILS**/
}

@media only screen and (min-width: 1024px) and (max-width: 1200px){
a.logo{flex: 0 0 30rem;}
nav ul li:not(:last-child){margin-right: 2rem;}

.inner_pages_banner{height: 38rem;}
.inner_pages_banner .main_wrapper{padding-top: 22rem;}
.inner_pages_banner .main_wrapper .content h1{font-size: 5rem; line-height: 5rem;}
.about_steps_wrapper{grid-gap: 4rem;}
.specialties_grid{grid-template-columns: repeat(2,1fr); grid-gap: 2rem;}
.home_about_wrapper .inner_about_wrapper{padding: 0;}
.owner_wrapper{flex: 0 0 45rem; margin: 0 6rem 0 0;}
.owner_wrapper::before{left: -1rem; top: -2rem;}
.home_about_wrapper .inner_about_wrapper .content_wrapper{flex:1;}

.data_holder img{width: 4.5rem !important;}
.data_holder h3{font-size: 2rem;}
.first_block{flex: 0 0 33rem;}

.inner_touch_wrapper{padding-left: 0; padding-right: 0;}
.frm_wrapper{width: 45rem;}

.inner_content_wrapper .home_about_wrapper .inner_about_wrapper .content_wrapper{margin: 9px;}
.inner_content_wrapper .home_about_wrapper .inner_about_wrapper{align-items: flex-start;}
.inner_content_wrapper .home_about_wrapper .inner_about_wrapper .owner_wrapper{width: 100%; margin: 0 3rem 0 0;}
.inner_why_choose_wrapper{padding: 0;}
.inner_why_choose_wrapper .content_wrapper{margin: 0;}
.inner_expert_wrapper{padding: 0;}
.inner_expert_wrapper .block{flex: 0 0 48rem;}
.two_blocks_wrapper .block:last-child,
.two_blocks_wrapper .block:first-child{padding: 6rem;}

 /** BLOG LANDING AND DETAILS**/
 .catblog_wrapper{grid-gap: 1rem;}
 .featured_wrapper .cblock .img_holder{width: 40rem;}
 .left_postwrapper h1{font-size: 2.8rem; line-height: 4rem; margin: 0 0 2rem 0;}
 .left_postwrapper h2, .left_postwrapper h3, .left_postwrapper h4, .left_postwrapper h5, .left_postwrapper h6{line-height: 3.5rem;}
 .latest_post ul li .content p{display: none;}
 .search_wrapper .cblock .img_holder img{margin: 0; border-radius: unset;}
 .search_wrapper .cblock .content{padding: 2.5rem;}
 .search_wrapper .cblock .content h3{margin: 0 0 1.2rem 0; line-height: 2.4rem;}
 .search_wrapper .cblock .content p{line-height: 2.2rem; margin: 0 0 1.2rem 0;}
 /** END BLOG LANDING AND DETAILS**/
}

@media only screen and (min-width: 1400px){}

@media only screen and (min-width: 1440px){}

@media only screen and (min-width: 1600px){}

@media only screen and (min-width: 1920px){
    .banner_slider .item{height: 87rem; padding-top: 30rem;}
    .main_wrapper{max-width: 160rem;}
    .home_service_wrapper{padding: 8rem 0px 14rem;}
    .service_card{height: 30rem;}
    .service_card .heading_block h3{font-size: 2.4rem; line-height: 2.8rem;}
    .home_about_content{flex: 0 0 60rem;}
    .about_img_wrapper{width: 80rem;}
    .first_img_box{width: 70rem;}
}





