@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
}

.row>* {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

:root {
    --body-font-family: 'Outfit', sans-serif;
    --e-global-color-white: #fff;
    --e-global-color-black: #000;
    --e-global-color-theme: #00A6FF;
    --e-global-color-theme-dark: #0491dd;
}

img {
    max-width: 100%;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

a,
a:hover {
    text-decoration: none;
    color: var(--e-global-color-white);
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    max-width: 1240px;
}

body {
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-weight: 400;
    color: var(--e-global-color-text);
    font-family: var(--body-font-family);
}

.section {
    position: relative;
    padding: 10rem 0;
    clear: both;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

.heading h5 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--e-global-color-theme);
}

.heading h2 {
    font-size: 4.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--e-global-color-dark);
}

.heading h2 span {
    color: var(--e-global-color-theme);
}

header,
.logo img {
    transition: all .3s ease;
}


/* #menu_background_overlay,
.hamburger_menu,
.mobile_view,
.mobile_hamburger {
    display: none;
} */

.mobile_hamburger {
    display: none;
}

header {
    width: 100%;
    float: left;
    position: fixed;
    top: 2rem;
    left: 0;
    z-index: 9;
}

.header_bottom {
    width: 100%;
    padding: 1.5rem 1.5rem;
    border-radius: 99rem;
    background: var(--e-global-color-white);
}

.header_bottom .row {
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: auto;
    max-width: 16rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.header_content {
    width: 100%;
    max-width: calc(100% - 16rem);
    position: relative;
}

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

.menu {
    width: auto;
    float: left;
    display: flex;
    align-items: center;
}

.menu ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.menu ul li {
    position: relative;
    font-size: 1.5rem;
    line-height: 100%;
}

.menu ul li a {
    padding: .5rem 1rem;
    position: relative;
    font-weight: 400;
    display: block;
    text-transform: capitalize;
    color: var(--e-global-color-black);
}

.menu ul li.active>a,
.menu ul li:hover>a {
    color: var(--e-global-color-theme);
}

.menu ul li.child_menu>a span:after {
    font-family: 'FontAwesome';
    content: "f107";
    position: absolute;
    right: .4rem;
    top: 0;
    bottom: 0;
    margin: auto;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu ul li.child_menu .child_menu_panel {
    -webkit-box-shadow: 0 .3rem 1.5rem 0 rgb(0 0 0 / 5%);
    box-shadow: 0 .3rem 1.5rem 0 rgb(0 0 0 / 5%);
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--e-global-color-theme);
    -webkit-transform: translateY(-1rem);
    transform: translateY(-1rem);
    pointer-events: none;
    max-height: none;
    z-index: 999;
    min-width: 22rem;
    list-style: none;
    visibility: hidden;
    opacity: 0;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
}

.menu ul li.child_menu .child_menu_panel li {
    width: 100%;
}

.menu ul li.child_menu .child_menu_panel li a {
    padding: 1rem 2rem;
}

.menu ul li.child_menu:hover .child_menu_panel {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    pointer-events: auto;
}

.header_button {
    /*	width: 16%;*/
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header_button .theme_button {
    padding: 1rem 2rem;
    margin: 0;
    font-size: 1.6rem;
}

.theme_button {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 130%;
    text-transform: uppercase;
    padding: 1.8rem 3rem;
    display: inline-block;
    border-radius: 1rem;
    color: var(--e-global-color-white);
    background: var(--e-global-color-theme);
    transition: all .3s;
}

.theme_button:hover {
    background: var(--e-global-color-theme-dark);
}

.button_round {
    border-radius: 99rem;
}

.header_call {
    display: flex;
    align-items: center;
}

.header_call a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    color: var(--e-global-color-black);
}

.header_call a .call_icon {
    width: 2.4rem, ;
}

.header_call a .call_text {
    width: calc(100% - 34px);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 100%;
}

.header_social {}

.header_social ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}

.header_social ul li a {
    font-size: 2rem;
    color: var(--e-global-color-black);
}


/*-- header end --*/

canvas {
    display: block;
    vertical-align: bottom;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
}

.home_banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 15rem 0 20rem 0;
}


/*.home_banner:after {
	width: 100%;
	height: 28rem;
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
	background: url(../images/banner-down.png);
	background-size: 100% auto;
}*/

.banner_image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.banner_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

.home_banner_overlay {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
    z-index: 1;
    position: absolute;
    background: var(--e-global-color-black);
}

.home_banner_content {
    padding: 0;
    position: relative;
    z-index: 3;
    font-size: 2.2rem;
    line-height: 160%;
    font-weight: 400;
    color: var(--e-global-color-black);
    margin: 0;
    text-align: left;
    max-width: 45%;
    flex: 0 0 45%;
}

.home_banner_content h1 {
    color: var(--e-global-color-black);
    text-transform: capitalize;
    font-size: 5.8rem;
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 2rem;
}

.blue_tag {
    color: var(--e-global-color-white);
    font-size: 3.4rem;
    line-height: 130%;
    font-weight: 600;
    background: var(--e-global-color-theme);
    padding: .7rem 1rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.home_sec2 {
    background: #FCFCFC;
}

.home_sec2_left {}

.home_sec2_list {
    margin-top: 3rem;
    display: inline-block;
}

.home_sec2_list ul {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.home_sec2_list ul li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
}

.home_sec2_list ul li .hs2_list_icon {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background: var(--e-global-color-theme);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.home_sec2_list ul li .hs2_list_text {
    width: calc(100% - 9rem);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--e-global-color-black);
}

.home_sec2_list ul li .hs2_list_text h4 {
    margin-bottom: .7rem;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--e-global-color-black);
}

.home_sec2_list ul li .hs2_list_text p {
    margin: 0;
}

.home_sec2_right {}

.home_sec2_image {
    height: 33rem;
    margin-bottom: 3rem;
}

.home_sec2_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home_sec3 {
    background: var(--e-global-color-light-gray);
}

.home_sec3_left {}

.home_sec3_left_image {
    width: 100%;
    height: 60rem;
}

.home_sec3_left_image img {
    width: 100%;
    /* height: 100%;
    object-fit: cover;
    object-position: center; */
}

.home_sec3_bottom {
    padding: 4rem 0 0;
    display: flex;
    align-items: center;
}

.home_sec3_bottom_icon {
    margin-right: 1rem;
}

.home_sec3_bottom_icon i {
    font-size: 6rem;
    color: var(--e-global-color-theme);
}

.home_sec3_bottom_content {
    color: var(--e-global-color-text);
}

.home_sec3_bottom_content h3 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--e-global-color-dark);
}

.home_sec3_right {
    padding-top: 0;
}

.home_sec3_right .heading h2 span {
    display: inline-block;
}

.home_sec3_right_bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4rem;
    margin-top: 3rem;
}

.home_sec3_right_bottom .button .theme_button {
    padding: 1.4rem 2rem;
    border-radius: 0;
}

.home_sec3_right_bottom .button .theme_button img {
    margin-left: 2rem;
}

.call_help {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
}

.call_help_icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: var(--e-global-color-black);
    display: flex;
    align-items: center;
    justify-content: center;
}

.call_help_text h6 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--e-global-color-black);
}

.call_help_text h3 {
    font-size: 3rem;
    font-weight: 500;
    color: var(--e-global-color-black);
}

.home_sec4 {}

.home_sec4_wrap {
    margin-top: 5rem;
}

.home_sec4_box {
    width: 100%;
}

.home_sec4_box_image {
    width: 100%;
    height: 32rem;
    position: relative;
}

.home_sec4_box_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home_sec4_box_image .arrow_icon {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background: var(--e-global-color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.home_sec4_box_content {
    width: 100%;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2.4rem;
    color: #383838;
    margin-top: 1rem;
}

.home_sec4_box_content h4 {
    font-size: 2.2rem;
    line-height: 3.6rem;
    font-weight: 600;
    color: #383838;
}

.home_sec5 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 84.2rem;
    background-size: cover !important;
    background-position: top center !important;
}

.black_overlay {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .2;
    position: absolute;
    z-index: 1;
    background: var(--e-global-color-black);
}

.home_sec5 .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play_button {
    width: 12rem;
    height: 12rem;
    background: rgb(0, 0, 0, 0.4);
    border-radius: 50%;
    border: solid .3rem var(--e-global-color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
    color: var(--e-global-color-white);
}

.home_sec6 {}

.project_sec {
    padding: 0;
    overflow: hidden;
}

.project_slider {
    width: 100%;
    margin-top: 3rem;
}

.project_image_box {
    padding: 0 1rem;
}

.project_image_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slick-list {
    width: 100%;
    /* padding-left: 6rem; */
}

.home_sec8 {}

.home_sec8 .home_sec4_box_content h4 {
    color: var(--e-global-color-black);
}

.home_sec8 .date {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    font-size: 1.4rem;
    font-weight: 500;
    color: #717171;
}

.home_sec7 {
    position: relative;
    width: 100%;
    background: url('../images/testimonial.png') left center;
    min-height: 79.5rem;
}

.testimonial-slider-area {
    position: relative;
    width: 100%;
    min-height: 33.9rem;
    border-radius: 1rem;
    background: #CEEEFF;
    transform: rotate(5deg);
    margin-left: 1.3rem;
    top: 5.5rem;
}

.testimonial-slider-area::after {
    content: '';
    position: absolute;
    top: 0;
    left: -1.3rem;
    width: 100%;
    min-height: 33.9rem;
    border-radius: 1rem;
    background: #fff;
    transform: rotate(-5deg);
}

.inner-content-area {
    position: relative;
    width: 100%;
    min-height: 33.9rem;
    border-radius: 1rem;
    z-index: 89;
    transform: rotate(-5deg);
    padding: 3.5rem 3rem 3.5rem 2rem;
}

.content-sleder {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.upper-content {
    position: relative;
    width: 100%;
}

.upper-content p {
    font-family: var(--body-font-family);
    font-size: 2.2rem;
    color: var(--e-global-color-black);
    line-height: 3.6rem;
}

.lower-content {
    position: relative;
    width: 100%;
    display: flex;
    gap: 2rem;
}

.customer_pic {
    position: relative;
    width: 62px;
    height: 62px;
    border-radius: 100%;
    overflow: hidden;
}

.name_tag {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.name_tag h4 {
    font-family: var(--body-font-family);
    font-size: 2.2rem;
    color: var(--e-global-color-black);
    line-height: 3.6rem;
}

.name_tag h4 span {
    font-family: var(--body-font-family);
    font-size: 1.8rem;
    color: #CDCDCD;
    font-weight: 300;
}

.rating {
    display: flex;
}

.testmonial-slide .slick-dots {
    position: relative;
    width: 100%;
    display: flex;
    margin-top: 1.8rem;
}

.testmonial-slide .slick-dots li {
    overflow: hidden;
}

.testmonial-slide .slick-dots li button {
    width: 25px;
    height: 3px;
    background: #F0F0F0;
    padding: 0;
}

.testmonial-slide .slick-dots li button::before {
    display: none;
}

.testmonial-slide .slick-dots li.slick-active button {
    background: #00A6FF;
}

footer {
    position: relative;
    padding: 12.0rem 0 4rem;
    background: url('../images/footer-bg.jpg');
    min-height: 86.7rem;
    background-repeat: no-repeat;
  	background-size: cover;
  	background-position: center top;
    position:relative;
}
footer:before{
    position:absolute;
    content:"";
    width:100%;
    height:100%;
    left:0;
    top:0;
    background:rgba(0,0,0,0.5);
}

.footer_heading {
    position: relative;
    width: 100%;
    margin-bottom: 2.4rem;
}

.footer_heading h3 {
    font-family: var(--body-font-family);
    color: var(--e-global-color-white);
    font-size: 2.6rem;
    line-height: 3.6rem;
    font-weight: bold;
}

.content p {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 3.2rem;
    color: var(--e-global-color-white);
    max-width: 38.3rem;
    width: 100%;
}

.content ul {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content ul li a {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1.2rem;
    line-height: 2.2rem;
    color: var(--e-global-color-white);
}

.content ul li {
    display: flex;
    gap: 1.5rem;
}

.content ul li i {
    color: var(--e-global-color-white);
}

.content ul li span {
    color: var(--e-global-color-white);
}

.footer_bottom {
    border-top: solid .1rem #A0AABA2B;
    margin-top: 4rem;
    padding: 3rem 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--e-global-color-white);
}

.big_txt {
    color: var(--e-global-color-white);
    text-transform: uppercase;
    font-size: 16.0rem;
    line-height: 18.0rem;
    font-family: var(--body-font-family);
    font-weight: 200;
}

.home_sec4_bottom {
    margin-top: 5rem;
}

.gallery_box_image {
    height: 30rem;
    margin-bottom: 3rem;
}

.gallery_box_image a {
    width: 100%;
    height: 100%;
}

.gallery_box_image a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*-------- padding use ---------*/

.nopadTop {
    padding-top: 0;
}

.padtop {
    padding-top: 7.5rem;
}


/*-------- Home Page End ---------*/

.about_sec1_image {
    width: 100%;
    height: 40rem;
}

.about_sec1_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*-------- About Page End ---------*/

.contact_sec1 {
    padding-bottom: 0;
}

.contact_sec1_left {
    padding-right: 5rem;
}

.contact_sec1_details {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 2.5rem;
}

.contact_sec1_icon {
    width: auto;
    margin-right: 1.5rem;
}

.contact_sec1_icon i {
    font-size: 4rem;
    color: var(--e-global-color-theme);
}

.contact_sec1_content h4 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--e-global-color-dark);
}

.contact_sec1_right {}

.contact_form {
    padding: 5rem;
    display: inline-block;
    position: relative;
    z-index: 2;
    margin-bottom: -8rem;
    background: var(--e-global-color-white);
    box-shadow: 0 .5rem 1.5rem 0 rgb(0 0 0 / 10%);
}

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

.contact_form form .form-group {
    margin-bottom: 1.5rem;
}

.contact_form form input,
.contact_form form textarea {
    width: 100%;
    min-height: 5rem;
    font-size: 1.4rem;
    font-weight: 300;
    border-radius: 0;
    border: solid .1rem #E3E3E3;
    padding: .5rem .5rem .5rem 3rem;
}

.contact_form form textarea {
    resize: none;
    height: 15rem;
}

.contact_form form input.contact_send {
    width: auto;
    height: auto;
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .16rem;
    background-color: #00BF71;
    padding: 2rem 4rem;
    display: inline-block;
    border-radius: 0.3rem;
    color: var(--e-global-color-white);
    background: var(--e-global-color-theme);
}

.contact_sec2 iframe {
    width: 100%;
    height: 50rem;
    margin: 0;
}


/*-------- About Page End ---------*/

.services_page {}

.services_sec:nth-child(even) {
    background: var(--e-global-color-light-gray);
}

.services_sec:nth-child(even)>.container>.row {
    flex-direction: row-reverse;
}


/*-------- FAQ Page End ---------*/

.faq_page {
    width: 100%;
}

.accordion {
    padding: 0 2rem;
    box-shadow: 0 0.5rem 1.5rem 0 rgb(0 0 0 / 10%);
    border-style: solid;
    border-width: 0;
    border: 0.1rem solid #f5f5f5;
    border-radius: 0.5rem;
    background-color: #fff;
    margin-bottom: 2rem;
}

.accordion .accordion_heading h2 {
    cursor: pointer;
    padding: 2rem 0;
}

.accordion .collapse {
    padding: 0 0 2rem 0;
}