@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

:root {
    --primary-color: #0000ff;
    --highlight-color: #ffffff;
    --s_backgound-color: #f3f3f3;
    --secondary-color: #ffffff;
    --text-color: #202020;
    --p-color: #696969;
    font-family: 'Poppins', sans-serif;
}

p {
    font-size: 15px;
    line-height: 33px;
    font-weight: inherit;
    letter-spacing: 0.35px;
}

body {
    font-family: 'Poppins', sans-serif !important;
}

p,
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', sans-serif !important;
}

ul {
    font-family: 'Poppins', sans-serif !important;
}

/* navbar  */


#header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
}

.navbar {
    /* padding: 0 60px; */
    background: var(--secondary-color);
    border: none;
    border-radius: 0;
    margin: 0 !important;
    box-shadow: 0px 3px 6px 0px rgba(5, 37, 95, 0.2);
}

.navbar-brand {
    padding: 0px 15px;
    /* margin-left: 40px !important; */
}
#logo{
    height: 60px;
    margin-top: 12px;
}

.navbar .navbar-nav>li>a {
    padding: 25px 25px;
    margin: 5px 0px;
    color: #000000;
    font-size: 16px;
    letter-spacing: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    background: none;
}

.navbar .navbar-nav>li>a:hover {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color) !important;
    /* background: var(--primary-color) !important; */
    transition: all 0.3s ease;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color) !important;
    background: none !important;
    transition: all 0.3s ease;
}

.nav_btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    letter-spacing: 0.3px;
    font-weight: 400;
    padding: 10px 25px;
    margin-top: 18px;
    position: relative;
    border: none;
    font-size: 16px;
    margin-left: 25px;
    border-radius: 50px;
}

/* slider start  */

.carousel-fade .carousel-inner .item {
    opacity: 0;
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
}

.carousel-fade .carousel-inner .active {
    opacity: 1;
    transition: all .5s;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    opacity: 0;
    z-index: 1;
    transition: all 2s;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
    transition: all 2s;
}

.carousel-fade .carousel-control {
    z-index: 1;
    transition: all 2s;
}

@media all and (transform-3d),
(-webkit-transform-3d) {

    .carousel-fade .carousel-inner>.item.next,
    .carousel-fade .carousel-inner>.item.active.right {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        transition: all 2s;
    }

    .carousel-fade .carousel-inner>.item.prev,
    .carousel-fade .carousel-inner>.item.active.left {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        transition: all 2s;
    }

    .carousel-fade .carousel-inner>.item.next.left,
    .carousel-fade .carousel-inner>.item.prev.right,
    .carousel-fade .carousel-inner>.item.active {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        transition: all 2s;
    }
}

.left_products-control {
    position: absolute;
    top: 45%;
    left: 4%;
    font-size: 30px;
    color: var(--secondary-color);
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
    filter: alpha(opacity=50);
    opacity: 1;
    /* padding: 7px 10px !important; */
    border-radius: 50%;
}

.right_products-control {
    position: absolute;
    top: 45%;
    right: 4%;
    font-size: 30px;
    /* padding: 7px 10px !important; */
    color: var(--secondary-color);
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
    filter: alpha(opacity=50);
    opacity: 1;
    border-radius: 50%;
}

.left_products-control,
.left_products-control :hover {
    color: var(--secondary-color) !important;
}

.right_products-control,
.right_products-control :hover {
    color: var(--secondary-color) !important;
}

#myCarousel {
    background: var(--primary-color);
    width: 100%;
}

#slider_image_z {
    animation-name: img_slider_animation_z;
    animation-iteration-count: 1;
    animation-duration: 2s;
    transition: all 1s;
    position: relative;
    float: right;
    right: 0;
    padding-right: 70px;
}

@-webkit-keyframes img_slider_animation_z {
    0% {
        right: -30%;
        opacity: 0;
    }

    40% {
        right: -30%;
        opacity: 0;
    }

    100% {
        right: 0;
        opacity: 1;
    }
}

#slider_caption {
    position: absolute;
    top: 280px;
    width: 45%;
    text-align: left;
    padding: 10px 15px;
    left: 120px;
    animation-name: img_slider_animation_text;
    animation-iteration-count: 1;
    animation-duration: 2.5s;
    transition: all 1s;
}

@-webkit-keyframes img_slider_animation_text {
    0% {
        opacity: 0;
    }

    75% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.slider_h {
    font-size: 32px;
    letter-spacing: 1px;
    font-weight: 700;
    line-height: 50px;
}

.slider_p {
    color: var(--secondary_color);
    line-height: 28px;
    padding-top: 10px;
    font-size: 18px;
    letter-spacing: 0.5px;
}

/* slider end */




#about {
    width: 100%;
    height: auto;
    background: #02155a;
    padding: 60px 0;
}

#about_btm {
    width: 100%;
    height: auto;
    padding: 60px 0;
    background: var(--s_backgound-color);
}

#approach {
    width: 100%;
    height: auto;
    padding: 60px 0;
    background: var(--s_backgound-color);
}

.h_sh {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    padding-bottom: 10px !important;
}

.ah_sh {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    padding-bottom: 10px !important;
}

.abt_sh {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: inherit;
    letter-spacing: 0.65px;
    padding-top: 20px !important;
    line-height: inherit;
}

.abt_bsh {
    line-height: inherit;
    font-size: 32px;
    font-weight: 700;
    color: #02155a;
    line-height: inherit;
    letter-spacing: 0.65px;
}

.abt_shh {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: inherit;
    letter-spacing: 0.65px;
}

.abt_bshh {
    font-size: 20px;
    font-weight: 700;
    color: #02155a;
    line-height: inherit;
    letter-spacing: 0.65px;
}

.abt_p {
    font-size: 15px;
    line-height: 33px;
    letter-spacing: 0.3px;
    padding-top: 12px !important;
    color: var(--secondary-color);

}

.abt_pp {
    font-size: 15px;
    line-height: 32px;
    letter-spacing: 0.3px;
    padding-top: 10px !important;
}

.abt_btn {
    background: none;
    border: 2px solid transparent;
    padding: 12px 30px;
    font-size: 15px;
    letter-spacing: 0.5px;
    background: var(--primary-color);
    font-weight: 400;
    margin-top: 15px !important;
    transition: all 0.3s ease-in;
    color: var(--secondary-color);
    border-radius: 5px;
}

.ser_btn {
    background: none;
    border: 2px solid transparent;
    border-color: white;
    padding: 12px 30px;
    font-size: 15px;
    letter-spacing: 0.5px;
    background: var(--primary-color);
    font-weight: 300;
    margin-top: 15px !important;
    transition: all 0.3s ease-in;
    color: var(--secondary-color);
    border-radius: 5px;
}

#abt_img {
    border-radius: 5px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .1);
}

#services {
    width: 100%;
    height: auto;
    background: var(--secondary-color);
    padding: 60px 0;
}
#home_section{
    width: 100%;
    height: auto;
    background: var(--secondary-color);
    padding: 60px 0;
}

.ser_ssh {
    font-size: 19px;
    font-weight: 300;
    color: var(--primary-color) !important;
    padding-bottom: 10px !important;
    letter-spacing: 0.35px;
}

.price_ssh {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color) !important;
    padding-bottom: 10px !important;
    letter-spacing: 0.35px;
}

.ser_sh {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color) !important;
    line-height: inherit;
    letter-spacing: 0.65px;
}

.price_sh {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color) !important;
    line-height: inherit;
    letter-spacing: 0.65px;
}

#ser_box {
    text-align: left;
    padding: 50px 30px;
    transition: 0.5s all ease-in-out;
    position: relative;
    border-radius: 10px;
    background: #02155a;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .2);
    position: relative;
    z-index: 1;
    height: 100%;
    transition: all 0.3s ease-in;
    margin-top: 50px;
}

#ser_box:hover {
    transition: all 0.3s ease-in;
    background: linear-gradient(to right bottom);
    cursor: pointer;
}

.ser_icon {
    font-size: 32px;
    color: var(--secondary-color);
}

.ser_h {
    font-size: 20px;
    font-weight: 600;
    color: white !important;
    line-height: inherit;
    letter-spacing: 0.65px;
    padding-top: 20px !important;
}

.ser_p {
    font-size: 15px;
    line-height: 32px;
    letter-spacing: 0.15px;
    padding-top: 10px !important;
    color: white;
}

.services-des-it ul li {
    color: var(--primary-color);
    font-size: 18px;
    line-height: 1.1;
    font-weight: 500;
    margin: 8px 0;
    list-style: none;
    position: relative;
    padding-left: 20px;
}

*,
::after,
::before {
    box-sizing: border-box;
}

user agent stylesheet li {
    display: list-item;
    text-align: -webkit-match-parent;
}

user agent stylesheet ul {
    list-style-type: disc;
}

.sma-eco-subtitle {
    font-size: 19px;
    font-weight: 1.0;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #7833f3;
}


/* .row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
} */

.services-it-bg:hover .services-des-it {
    opacity: 1;
    visibility: visible;
}

.services-it-bg:hover+.s-icon {
    opacity: 1;
    visibility: hide;
    display: none;
}

.services-info-it {
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    height: calc(100% - 50px);
}

.services-it .btn-learn {
    padding: 10px 30px;
    border: 2px solid #fff;
    border-radius: 30px;
    font-size: 17px;
    color: #fff;
    max-width: auto;
    display: inline-block;
    position: absolute;
    left: 30px;
    bottom: 20px;
}

.services-it-bg:hover .btn-learn {
    border-color: transparent !important;
    background: var(--primary-color);
    color: var(--secondary-color) !important;
}

a {
    text-decoration: none;
    color: #7833f3;
}

*,
::after,
::before {
    box-sizing: border-box;
}

user agent stylesheet a:-webkit-any-link {
    color: -webkit-link;
    cursor: pointer;
    text-decoration: underline;
}

.services-it-bg {
    background: #02155a !important;
    border: 2px solid #02155a !important;
    padding: 30px 10px 20px 20px;
    color: #fff;
    height: 365px;
    position: relative;
}

.services-des-it {
    display: block;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    visibility: visible;
    opacity: 0;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.services-des-it ul li::before {
    content: "\2022";
    color: var(--primary-color) !important;
    font-weight: bold;
    display: inline-block;
    font-size: 26px;
    line-height: 1;
    left: 0;
    position: absolute;
    top: -1px;
    height: 15px;
}

*,
::after,
::before {
    box-sizing: border-box;
}

.services-des-it ul {
    padding: 0 !important;
    margin: 0 !important;
}

.services-des-it ul li {
    color: #02155a;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 500;
    margin: 8px 0;
    list-style: none;
    position: relative;
    padding-left: 20px;
}

user agent stylesheet li {
    text-align: -webkit-match-parent;
}

user agent stylesheet ul {
    list-style-type: disc;
}

.services-it-bg .service-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 15px;
    color: #FFF;
}

.services-des-it {
    display: block;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.services-it-bg:hover {
    background: var(--secondary-color) !important;
    border: 2px solid #02155a;

}

.services-it-bg:hover .service-title {
    color: #02155a !important;
}

.services-it-bg {
    background: #001b42;
    border: 2px solid #001b42;
    padding: 30px 10px 20px 20px;
    color: #fff;
    height: 365px;
    position: relative;
}

.services-info-it img {
    /* height: 110px; */
    position: absolute;
    display: block;
}
.services-it-bg:hover .services-info-it img {
    display: none;
}

img {
    max-width: 100%;
    height: auto;
}

*,
::after,
::before {
    box-sizing: border-box;
}

img {
    overflow-clip-margin: content-box;
    overflow: clip;
}

.s-icon:hover {
    display: none;
}
.s-icon{
    height: 110px;
}

.services-it-bg {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 30px 10px 20px 20px;
    color: #fff;
    height: 365px;
    position: relative;
}

.col-lg-4 .col-lg-4 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}


.services-des-it ul li::before {
    content: "\2022";
    color: #FFF;
    font-weight: bold;
    display: inline-block;
    font-size: 26px;
    line-height: 1;
    left: 0;
    position: absolute;
    top: -1px;
    height: 15px;
}

*,
::after,
::before {
    box-sizing: border-box;
}

*,
::after,
::before {
    box-sizing: border-box;
}

.services-it {
    /* padding: 0 30px 50px; */
    margin-top: 40px;
}


#clients_top {
    width: 100%;
    height: auto;
    padding: 125px 0;
    background: url(../../images/back.jpg);
    background-size: cover;
    background-position: center;
}

.tc_h {
    color: #ffffff;
    text-align: center;
    padding-bottom: 10px !important;
    font-weight: 600;
}

.tc_p {
    color: #ffffff;
    text-align: center;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.5px;
}

#our_clients {
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: var(--s_backgound-color);
}

.client_box {
    padding: 15px;
    box-shadow: 0px 0px 15px 0px rgb(48 71 73 / 25%);
    margin-top: 25px;
    background: #ffffff;
}


#contact {
    width: 100%;
    height: auto;
    padding: 50px 0;
    background: var(--s_backgound-color);
}

.contact_h {
    text-align: center;
    padding-bottom: 50px !important;
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 0.6px;
}

.contact_sh {
    color: #333;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 28px;
}

.contact_li {
    margin: 0;
    padding: 0;
    margin-top: 25px !important;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
}

.contact_li li {
    color: #222;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.35px;
    list-style: none;
    line-height: 30px;
    padding-top: 10px;
}

#contact_form {
    margin-top: 10px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%) !important;
    padding: 25px;
    background: #ffffff;
}

.form_input {
    padding: 23px 20px !important;
    border: 1px solid var(--text-color);
    border-radius: 0;
    margin-top: 25px;
    color: var(--text-color);
    letter-spacing: 0.5px;
}

::placeholder {
    color: var(--text-color) !important;
    letter-spacing: 0.5px;
}

.contact_btn {
    background: var(--primary-color);
    border: none;
    border-radius: 0;
    font-size: 18px;
    padding: 10px 35px;
    color: #ffffff;
    margin-top: 20px;
}


#footer_main {
    width: 100%;
    height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
    background: #f3f3f3;
    position: relative;
}

.footer_t_h {
    color: var(--text-color);
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 7px !important;
    margin-top: 8px !important;
}

.footer_p {
    color: var(--text-color);
    line-height: 32px;
}

.footer_t_p {
    letter-spacing: 0.3px;
    color: var(--text-color);
}

.footer_cd {
    padding: 0;
    margin: 0;
}

.footer_cd li {
    color: var(--text-color);
    list-style: none;
    line-height: 30px;
    padding: 5px 0;
    font-weight: 400;
    letter-spacing: 0.35px;
    line-height: 30px;
}

.footer_cd_h {
    padding-bottom: 10px !important;
    font-weight: 600;
    font-size: 17px;
}

#footer_logo {
    margin: auto;
    margin-bottom: 20px;
}

.footer_social {
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer_social li {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: var(--text-color);
    line-height: 32px;
    border-radius: 100%;
    color: var(--highlight-color);
    margin: 10px 5px;
}

.footer_h {
    padding-bottom: 10px !important;
    color: var(--text-color);
    font-size: 20px;
    font-weight: 600;
}


.footer_li {
    padding: 0;
    margin: 0;
}

.footer_li li {
    color: var(--text-color);
    list-style: none;
    line-height: 30px;
    padding: 6px 0;
    font-weight: 400;
}

.footer_li li i {
    margin-right: 5px;
}

.footer_li li strong {
    color: var(--text-color);
}

.copyrights {
    margin-top: 15px !important;
    color: var(--text-color);
    padding-top: 20px !important;
    text-align: center;
}

.copy_p {
    margin-top: 30px !important;
    color: var(--text-color);
    text-align: center;
}


#bredcum {
    width: 100%;
    height: auto;
    padding: 100px 0;
    background: url(../../images/back.jpg);
    /* background: var(--primary-color); */
    /* /* background-repeat: no-repeat; */
    background-size: cover;
    background-position: center;
    text-align: center;
}

.bredcum_h {
    color: var(--secondary-color);
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 20px !important;
    letter-spacing: 1px;
}

.bredcum_li {
    padding: 0;
    margin: 0;
}

.bredcum_li li {
    font-size: 18px;
    padding: 10px 8px;
    display: inline-block;
    color: var(--secondary-color);
}

.bredcum_li li i {
    font-size: 15px !important;
}

.bredcum_li li.active {
    color: var(--secondary-color);
}

.mt-40 {
    margin-top: 40px;
}

.ser_Btn {
    float: right;
    border: 2px solid #00A3FF;
    background: transparent;
    color: black;
    padding: 10px 30px;
    border-radius: 5px;
    margin-top: 30px;
}

#pricing {
    width: 100%;
    height: auto;
    padding: 80px 0;
    background-color: white;
}

.pricing_box {
    width: 100%;
    height: auto;
    padding: 50px 25px;
    background: #0000FF;
    margin-top: 50px;
    border-radius: 5px;
    transition: all 0.3s ease-in;
    transform: translateY(0px);
    overflow: hidden;
}

.pricing_box:hover {
    transform: translateY(-10px);
    transition: all 0.3s ease-in;
}

.pricing_box::before {
    content: "";
    background: var(--primary-color);
    position: absolute;
    right: -38px;
    top: -38px;
    bottom: 0px;
    text-align: left;
    width: 100px;
    height: 100px;
    border-radius: 50px 50px 50px 50px;
    transition: 0.3s;
    transform: rotate(0deg) scale(1);
}

.price_y {
    color: white;
    font-weight: 700;
    letter-spacing: 0.65px;
}

.price_p {
    font-weight: 700;
    font-size: 28px;
    color: #0000FF;
    letter-spacing: 0.5px;
    padding: 20px 0 !important;
}

.year {
    font-size: 18px;
    color: white;
}

.price_list_li {
    padding: 0;
    margin: 0;
}

.price_list_li li {
    font-size: 17px;
    list-style: none;
    letter-spacing: 0.3px;
    line-height: inherit;
    padding-top: 10px;
    padding-bottom: 5px;
    color: white;
}

.price_list_li li i {
    font-size: 12px;
    color: white;
    margin-right: 5px;
}

.price_btn {
    background: linear-gradient(var(--primary-color));
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .2);
    position: relative;
    color: var(--secondary-color);
    padding: 10px 30px;
    border: none;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 0.3px;
    font-size: 16px;
    transition: all 0.3s ease-in;
}

.price_btn:hover {
    background: #0000FF;
    transition: all 0.3s ease-in;
}

/* #map {
    box-shadow: 0px 0px 15px 0px rgb(48 71 73 / 20%);
    margin-top: 40px;
} */

.abt_p strong {
    color: var(--primary-color);
}

#img-center {
    margin: auto;
}

.approach_li {
    padding: 0;
    margin: 0;
}

.approach_li li {
    padding: 8px 0 !important;
    margin-left: 20px;
    font-weight: inherit;
}

.abt_b_img {
    margin-top: 25px;
    /* box-shadow: 0px 0px 20px 0px rgba(2, 21, 90, 0.1) */
}

.abt_b_img img {
    max-height: 75px;
    margin: auto;
}


#reviews {
    width: 100%;
    height: auto;
    padding: 100px 0;
    background: var(--secondary-color);
}

.gtco-testimonials .owl-stage-outer {
    padding: 30px 0;
}

.gtco-testimonials .owl-nav {
    display: none;
}

.gtco-testimonials .owl-dots {
    text-align: center;
}

.gtco-testimonials .owl-dots span {
    position: relative;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    display: block;
    background: none;
    border: 2px solid var(--primary-color);
    margin: 0 5px;
}

.gtco-testimonials .owl-dots .active span {
    background: var(--primary-color);
    box-shadow: none;
    height: 12px;
    width: 12px;
    margin-bottom: -1px;
}

.gtco-testimonials .card {
    background: var(--secondary-color);
    /* margin: 0 20px; */
    padding: 20px;
    border-radius: 0px;
    border: 0;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, .07);
    text-align: left;
}

#testimonials_img {
    width: 75px;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    right: 50px;
}

.gtco-testimonials .card .card-img-top {
    border-radius: 50%;
    margin: 15px auto 0;
    width: 85px;
    border: 5px solid var(--secondary-color);
}

.card-text {
    padding-top: 15px !important;
}

.t_d {
    color: var(--primary-color) !important;
    font-size: 14px;
    letter-spacing: 0.3px;
    padding-top: 5px !important;
    font-weight: 800;
}

.gtco-testimonials .card h5 {
    color: #333333;
    font-size: 22px;
    letter-spacing: 0.35px;
    padding-top: 15px !important;
    font-weight: 700;
}

.gtco-testimonials .card p {
    color: #333333;
    letter-spacing: 0.3px;
    line-height: 30px;
    font-weight: 500;
    font-weight: 400;
}

.gtco-testimonials .active {
    opacity: 1;
    transition: all 0.3s;
}

.gtco-testimonials .center {
    opacity: 1 !important;
    transition: all 0.3s;
    border-radius: 10px;
}

.gtco-testimonials .center .card {
    background: var(--primary-color) !important;
}

.gtco-testimonials .center h5 {
    font-size: 22px;
    color: var(--secondary-color);
}

.gtco-testimonials .center .t_d {
    color: var(--secondary-color) !important;
}

.gtco-testimonials .center h5 span {
    color: var(--secondary-color);
}

.gtco-testimonials .center p {
    color: var(--secondary-color);
}

.gtco-testimonials .center .card-img-top {
    max-width: 100%;
    height: 120px;
    width: 120px;
}

@media (max-width: 767px) {
    .gtco-testimonials {
        margin-top: 20px;
    }
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    outline: 0;
}

.owl-carousel button.owl-dot {
    outline: 0;
    opacity: 1 !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.center {
    text-align: center !important;
}

.multi_sh {
    font-weight: 600;
    color: #000000;
    margin-top: 20px !important;
}

.multi_p {
    font-size: 26px;
    line-height: 1.7;
    font-weight: 300;
    padding-top: 10px !important;
}
.multi_li{
    padding: 0;
    margin: 0;
    margin-top: 20px !important;
}
.multi_li li {
    margin-bottom: 20px;
    margin-left: 0px;
    font-size: 19px;
    list-style: none;
}

.multi_li li::before {
    content: "\2022";
    color: var(--primary-color) !important;
    font-weight: bold;
    font-size: 26px;
    line-height: 1;
    padding-right: 5px;
    position: relative;
    top: 2.5px;
}

#our_works{
    width: 100%;
    height: auto;
    padding: 60px 0;
}
.ccs_box{
    margin-top: 40px;
    max-width: 340px;
}
.ccs_h{
    font-weight: 600;
    font-size: 26px;
    margin: 25px 0 10px !important;
}
.ccs_p{
    font-size: 16px;
    margin-top: 5px !important;
}
.ccs_btn{
    background: #02155a;
    color: var(--secondary-color);
    border: 2px solid #001b42;
    padding: 12px 35px;
    margin-top: 10px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease-in;
}
.ccs_btn:hover{
    background: transparent;
    transition: all 0.3s ease-in;
    border: 2px solid #02155a;
    color: #02155a;
    font-weight: 400;
}

#form{
    width: 100%;
    height: auto;
    padding: 60px 0;
    background: #02155a;
}
.form_h{
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px !important;
}
.form_p{
    font-size: 26px;
    color: var(--secondary-color);
    line-height: 1.5;
    font-weight: 300;
    margin-bottom: 40px !important;
}
.h_form{
    border: 2px solid var(--primary-color);
    border-radius: 0;
    height: 48px;
    padding: 0 15px;
    margin-bottom: 15px;
    line-height: 46px;
}
.h_form::placeholder{
    color: var(--primary-color) !important;
}
.h_form_btn{
    border-radius: 50px;
    padding: 18px 45px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    font-size: 20px;
    margin-top: 5px;
    transition: all 0.3s ease;
}
.h_form_btn:hover{
    background: var(--secondary-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

#footr_img{
    width: 100%;
    margin: auto;
}
.sma-label{
    margin-top: 20px !important;
    display: block;
    margin-bottom: 0 !important;
}

.ml-90{
    margin-left: 90px;
}
.ft-60{
    font-size: 56px;
    line-height: 1.2;
}

.social_icon{
    padding: 0;
    margin: 0;
}
.social_icon li{
    display: inline-block;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-size: 17px;
    padding-top: 5px;
    border-radius: 50px;
    margin-right: 10px;
    text-align: center;
}

#module-faqs{
    padding: 80px 0 !important;
}
.contact-title {
    font-size: 50px;
    line-height: 1.05;
    color: #021844;
    /* padding-bottom: 25px; */
    position: relative;
    margin-bottom: 25px !important;
    font-weight: bold;
}
.contact_phone{
    font-size: 26px;
    font-weight: bold;
}
.contact_phone::after{
    width: 250px;
    content: "";
    height: 2px;
    left: 10px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: -5px;
}

.contact-sub-title{
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px !important;
    color: var(--primary-color);
}
.content-list li{
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 17px;
    letter-spacing: 0px;
}
.content-list{
    padding: 0 !important;
    margin: 0 !important;
}
.content-list li .l-title{
    width: 40%;
    color: var(--primary-color);
}
.content-list li .l-content{
    width: 60%;
    word-break: break-word;
}

.bg{
    background: #f3f3f3 !important;
}

.pl-40{
    padding-left: 40px !important;
}