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

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');



:root {

    --primary-color: #00468c;

    --black: #0D121E;

}





* {

    margin: 0;

    padding: 0;

}



html,

body {

    font-family: "Manrope", sans-serif;

}



a {

    transition: all 0.3s ease;

    text-decoration: none !important;

    outline: none !important;

    color: var(--primary-color);

}



a:active {

    background-color: transparent;

}



ul {

    padding: 0;

    margin: 0;

}



ul,

li {

    list-style-type: none;

}



img {

    display: block;

    max-width: 100%;

    width: 100%;

    height: auto;

}



p {

    color: #000000;

    font-size: 16px;

    font-weight: 500;

    margin-bottom: 15px;

}



.sec-title {

    text-align: center;

    margin-bottom: 50px;

}

.sec-title.left {

    text-align: left;

}

.sec-title h2 {

    font-size: 50px;

    color: #000;

    font-weight: 800;

    margin-top: 10px;

}

.sec-title h2 span {

    color: var(--primary-color);

}

.sec-title .sub-title {

    position: relative;

    display: inline-block;

    text-transform: uppercase;

    font-size: 16px;

    line-height: 16px;

    color: #6e6e6e;

    font-weight: 600;

    z-index: 1;

}

/* .sec-title .sub-title::before {

    content: "";

    position: absolute;

    bottom: -2px;

    left: 0;

    right: 0;

    height: 8px;

    background-color: #ffa7046e;

    z-index: -1;

} */

.sec-title p {

    font-size: 20px;

    color: #000;

    font-weight: 500;

}





/* .header {

    position: absolute;

    width: 100%;

    z-index: 9;

} */



.theme-btn {

    display: inline-block;

    position: relative;

    overflow: hidden;

    z-index: 1;

    background-color: var(--primary-color);

    border-color: transparent;

    color: #ffffff;

    border-radius: 5px;

    font-size: 14px;

    font-weight: 700;

    padding: 10px 35px;

    border: 2px solid var(--primary-color);

    border-style: solid;

    box-shadow: none;

    transition: all 0.3s ease 0s;

    cursor: pointer;

    z-index: 1;

    position: relative;

}

.theme-btn::before {

    position: absolute;

    content: "";

    z-index: -1;

    display: block;

    left: -20%;

    right: -20%;

    top: -4%;

    height: 150%;

    width: 150%;

    bottom: 0;

    background: #ffffff;

    transform: skewX(45deg) scale(0, 1);

    transition: all 0.5s ease 0s;

}

.theme-btn:hover:before {

    transform: skewX(45deg) scale(1, 1);

}



/* -----------------

Top Bar

--------------------*/



.top-bar {

    background-color: var(--primary-color);

    padding: 0px 0;

    /* border-bottom: 1px solid #ffffff33; */

}



.top-bar .wrapper {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    gap: 50px;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;

    -webkit-box-pack: end;

        -ms-flex-pack: end;

            justify-content: flex-end;

}

.top-bar .wrapper ul li {

    display: inline-block;

    font-size: 14px;

    color: #fff;

    padding: 13px 20px 11px 0;

}



.top-bar .wrapper ul li {

    display: inline-block;

    margin-right: 0px;

    padding: 13px 20px 11px 0;

    color: #978e8e;

    font-size: 14px;

}

.top-bar .wrapper ul li:last-child {

    border-right: none;

}

.top-bar .wrapper ul li i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 28px;
    height: 28px;
   line-height: 28px;
   text-align: center;
   background: var(--secondary-color);
   border-radius: 50px;
}

.top-bar .wrapper ul li a {

    transition: all 0.3s ease;

    color: #978e8e;

}



.top-bar .wrapper.right ul {

    display: flex;

}

.top-bar .wrapper.right ul li {

    display: inline-block;

    font-size: 14px;

    margin-left: 20px;

    padding: 11px 0;

    color: #fff;

}

.top-bar .wrapper.right ul li a {

    color: #fff;

    text-transform: capitalize;

    float: right;

    font-size: 14px;

    display: contents;

}

.top-bar .wrapper.right ul li a:hover {

    color: var(--primary-color);

}

.top-bar .wrapper.right .top-menu li a {

    color: #978e8e;

}





/* -----------------

Navbar

--------------------*/







/* Reset Navbar */

.sm-clean {

    background: transparent !important;

}

.navbar .navbar-collapse {

    justify-content: space-between;

}

/* New Navbar */

#main-nav {

    margin-left: auto;

}

#main-nav #main-menu > li {

    padding: 0 30px 0 0;

    position: relative;

}

#main-nav #main-menu > li.dropdown > a {

    margin: 0 10px 0 0;

}

#main-nav #main-menu > li > a {

    color: #000;

    font-size: 16px;

    font-weight: 600;

    line-height: 22px;

    padding: 40px 0;

    position: relative;

}

#main-nav #main-menu > li > a.active,

#main-nav #main-menu > li:hover > a {

    color: #0065cb;

}

#main-nav #main-menu > li > a.active:after {

    transform: scale(1);

}

#main-nav #main-menu > li > a span {

    position: relative;

}

#main-nav #main-menu > li > a span::after {

    content: "";

    display: block;

    position: absolute;

    left: 0;

    width: 100%;

    bottom: 0;

    height: 1px;

    background-color: var(--secondary-color);

    transform: scaleX(0);

    transform-origin: right;

    transition: 300ms ease transform;

}

#main-nav #main-menu > li > a.active span:after,

#main-nav #main-menu > li > a span:hover:after {

    transform: scaleX(1);

    transform-origin: left;

}

#main-nav #main-menu > li:hover > a.active:after {

    transform: scale(0);

    opacity: 0;

}

#main-nav #main-menu > li > a .sub-arrow {

    border-color: #5e5e5e transparent transparent transparent;

    right: -5px;

    display: inline-block;

}

/* #main-nav #main-menu .dropdown > a::after {
    content: "";
    border-width: 4px;

    border-style: solid dashed dashed dashed;

    border-color: #5e5e5e transparent transparent transparent;

    right: -5px;

    display: inline-block;

    position: relative;

} */



#main-nav #main-menu > li > ul > li > ul {

    border-radius: 0 !important;

    border: none;

    left: 6px !important;

}

@media screen and (min-width: 768px) {

    #main-nav #main-menu > li > ul::before,

    #main-nav #main-menu > li > ul::after {

        display: none;

    }

    #main-nav #main-menu > li > ul {

        left: 0px !important;

        margin-top: 0 !important;

        width: 380px;

        opacity: 0;

        transform: translateY(50px);

        transition: all 300ms ease;

        display: block !important;

        visibility: hidden;

        padding: 20px 10px;

        border-top: 4px solid var(--primary-color);

        box-shadow: 0 3px 30px rgba(0, 0, 0, .08);

        border-radius: 5px !important;

    }

    

    #main-nav #main-menu > li > ul li ul {

        box-shadow: 0 3px 30px rgba(0, 0, 0, .08);

        border-radius: 24px !important;

        padding: 20px 10px;

    }

}

#main-nav #main-menu > li:hover > ul {

    opacity: 1;

    visibility: visible;

    transform: translateY(0px);

}

#main-nav #main-menu > li > ul li a {

    color: #000;

    transition: 300ms ease color;

    position: relative;

    margin: 0 10px;

    padding: 10px 10px;

    font-size: 16px;

    font-weight: 600;

    display: block;

    background-color: transparent;

    -ms-transition: all .45s ease;

    -o-transition: all .45s ease;

    -moz-transition: all .45s ease;

    -webkit-transition: all .45s ease;

    transition: all .45s ease;

}

#main-nav #main-menu > li > ul li a:hover {

    color: #0065cb;

    padding-left: 35px;

}



#main-nav #main-menu > li > ul li a::before {

    content: "";

    position: absolute;

    left: 0px;

    top: 50%;

    transform: translateY(-50%);

    width: 10px;

    height: 2px;

    opacity: 0;

    visibility: hidden;

    background: rgb(0, 93, 224);

    transition: 0.3s linear;

}

#main-nav #main-menu > li > ul li:hover a::before {

    opacity: 1;

    visibility: visible;

    left: 15px;

}







.navbar {

    padding: 0;

    position: sticky;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 999;

    -webkit-transition: 0.5s;

    -o-transition: 0.5s;

    transition: 0.5s;

    border-bottom: 1px solid rgba(255, 255, 255, 0.15);

    background: #fff;

    backdrop-filter: blur(5px);

}



.fixed-header {

    background-color: #fff !important;

    width: 100%;

    z-index: 999;

    position: fixed;

    top: -1px;

    -webkit-box-shadow: 0 -2px 18px 0 #0000001c;

            box-shadow: 0 -2px 18px 0 #0000001c;

}



.navbar-brand {

    width: 220px;

}



.navbar-brand.dark {

    display: none;

}



.fixed-header .navbar-brand.dark {

    display: block;

}

.fixed-header .navbar-brand.light {

    display: none;

}



/* .navbar {

  padding: 0;

  background-color: #fff !important;

  border-bottom: 1px solid #e7e7e7;

} */



/* Menu Lines */

.navbar .navbar-toggler {

    -webkit-box-shadow: none;

            box-shadow: none;

}

.navbar .navbar-toggler-icon {

    width: 24px;

    height: 0px;

    position: relative;

    padding: 0;

    float: left;

    margin: 14px 0;

    border-top: 2px solid var(--primary-color);

}

.navbar .navbar-toggler-icon::before,

.navbar .navbar-toggler-icon::after {

    content: "";

    position: absolute;

    display: block;

    border-top-width: 2px;

    border-top-style: solid;

    left: 0;

    right: 0;

    top: 0;

    -webkit-transition: 300ms ease all;

    -o-transition: 300ms ease all;

    transition: 300ms ease all;

    -webkit-transform: translateY(0);

    -ms-transform: translateY(0);

    transform: translateY(0);

    -webkit-transform-origin: -0.75px 1px;

    -ms-transform-origin: -.75px 1px;

    transform-origin: -0.75px 1px;

    border-top-color: var(--primary-color);

}

.navbar .navbar-toggler-icon::before {

    -webkit-transform: translateY(-10px);

    -ms-transform: translateY(-10px);

    transform: translateY(-10px);

}

.navbar .navbar-toggler-icon::after {

    -webkit-transform: translateY(7px);

    -ms-transform: translateY(7px);

    transform: translateY(7px);

}





.navbar .navbar-collapse {

    position: relative !important;

}



.menu-opened {

    background-color: #fff !important;

    padding-bottom: 40px;

}



.menu-opened .navbar-toggler-icon,

.menu-opened .navbar-toggler-icon::before,

.menu-opened .navbar-toggler-icon::after,

.fixed-header .navbar-toggler-icon,

.fixed-header .navbar-toggler-icon::before,

.fixed-header .navbar-toggler-icon::after {

    border-color: #000;

}





.navbar .dropdown {

    position: inherit;

}



.navbar-nav>li {

    padding: 0 45px 0 0;

}

.navbar-nav>li:last-child {

    padding-right: 0;

}



/* .navbar-nav>li:last-child {

    margin-right: 0;

} */



.navbar-nav li .nav-link {

    padding: 35px 0px !important;

    color: #000 !important;

    font-weight: 700;

    font-size: 16px;

    text-transform: capitalize;

    position: relative;

}

.fixed-header .navbar-nav li .nav-link {

    color: #000 !important;

}



.navbar-nav li .nav-link.active,

.navbar-nav li:hover .nav-link {

    color: #db9000 !important;

}





.dropdown-menu,

.sub-dropdown-menu {

    border-bottom: none;

    border-left: none;

    border-right: none;

    border-top: none;

    -webkit-box-shadow: 0 10px 10px 0 #00000017;

    box-shadow: 0 10px 10px 0 #00000017;

    width: 270px;

    opacity: 0;

    visibility: hidden;

    -webkit-transform-origin: top center;

    transform-origin: top center;

    -webkit-transform: scaleY(0) translateZ(100px);

    transform: scaleY(0) translateZ(100px);

    -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;

    transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;

    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;

    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;

    z-index: 99;

    background-color: rgb(255, 255, 255);

    padding: 25px 20px 15px;

    border-top-left-radius: 0px;

    border-top-right-radius: 0px;

    border-bottom-left-radius: 10px;

    border-bottom-right-radius: 10px;

    border-top: 4px solid var(--primary-color);

}



.dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

    -webkit-transform: scaleY(1) translateZ(0px);

    transform: scaleY(1) translateZ(0px);

}

.dropdown-menu li {

    margin-bottom: 5px;

}

.dropdown-menu li a {

    padding: 6px 10px 6px;

    font-weight: 700;

    font-size: 16px;

    color: var(--black);

    text-transform: capitalize;

}



.dropdown-menu li a,

.sub-dropdown-menu li a {

    border-bottom: 1px solid #ffffff1c;

    -webkit-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

    transition: all 0.3s ease;

}



.dropdown-menu li a:hover,

.sub-dropdown-menu li a:hover {

    background-color: #F7F9FA;

}



.dropdown-menu li:last-child a {

    border-bottom: 0px solid;

}



.dropdown .dropdown-toggle::after {

    content: "+";

    position: absolute;

    right: -15px;

    border: none;

}

.navbar-nav li.dropdown:hover .dropdown-toggle::after {

    content: "-";

}





.navbar .contact-info {

    position: relative;

    display: flex;

    align-items: center;

    margin-left: 10px;

    padding-left: 30px;

    border-left: 1px solid #0000002e;

}



.navbar .contact-info .call-box {

    position: relative;

    display: flex;

    align-items: center;

    z-index: 5;

}

.navbar .contact-info .call-box .icon {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    font-size: 25px;

    color: var(--primary-color);

    -webkit-transition: all 500ms ease;

    transition: all 500ms ease;

}

.navbar .contact-info .call-box .content {

    margin-left: 10px;

    top: 3px;

    position: relative;

}

.navbar .contact-info .call-box .content p {

    display: block;

    font-size: 12px;

    font-weight: 700;

    color: #636363;

    margin-bottom: 0px;

}

.navbar .contact-info .call-box .content h5 {

    font-size: 16px;

    font-weight: 700;

    line-height: 20px;

    color: #000;

}

.navbar .contact-info .call-box .content h5 a {

    color: #000;

}

.navbar .contact-info .btn-box {

    position: relative;

    display: block;

    margin-left: 30px;

    padding: 19px 0;

}

.navbar .contact-info .btn-box .theme-btn {

    background-color: #000;

    color: var(--primary-color);

}



.fixed-header .btn-box .theme-btn {

    background-color: var(--primary-color) !important;

    color: #000 !important;

}



.fixed-header .contact-info .call-box .content h5 a,

.fixed-header .contact-info .call-box .content p {

    color: var(--black);

}







@media only screen and (min-width: 992px) {

    .dropdown .dropdown-menu {

        display: block;

    }



    .sub-dropdown:hover .sub-dropdown-menu {

        display: block;

    }

}









/* -----------------

Banner Area

--------------------*/





.banner-slider {

    position: relative;

    z-index: 1;

}

.banner-slider .shape-1 {

    width: 578px;

    height: 315px;

    background-image: linear-gradient(290deg, #71d971 0%, var(--primary-color) 100%);

    transform: skewY(15deg);

    position: absolute;

    left: 7.5%;

    top: 25%;

    z-index: 1;

}

.banner-slider .shape-2 {

    width: 578px;

    height: 315px;

    background-image: linear-gradient(290deg, #71d971 0%, var(--primary-color) 100%);

    transform: skewY(15deg);

    position: absolute;

    left: 3.5%;

    top: 50%;

    z-index: 1;

}

.banner-slider .shape-3 {

    width: 578px;

    height: 315px;

    background: #ffffff;

    opacity: 0.2;

    transform: skewY(15deg);

    position: absolute;

    left: 12%;

    top: 40%;

    z-index: 1;

}

.banner-slider .shape-4 {

    width: 578px;

    height: 315px;

    background: linear-gradient(90deg, #71d971 0%, var(--primary-color) 100%);

    opacity: 0.8;

    transform: skewY(15deg);

    position: absolute;

    right: -10%;

    top: 76%;

    z-index: 1;

}

.banner-slider .shape-5 {

    width: 358px;

    height: 195px;

    background: linear-gradient(280deg, #71d971 0%, var(--primary-color) 100%);

    opacity: 0.8;

    transform: skewY(15deg);

    position: absolute;

    right: -6%;

    top: 67%;

    z-index: 1;

}





.banner-slider .slide-item {

    position: relative;

    z-index: 1;

    /* padding-top: 165px; */

    /* padding-bottom: 65px; */

    /* height: 100vh; */

    overflow: hidden;

}

.banner-slider .slide-item:before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    background: #00213a;

    opacity: 0.2;

    width: 100%;

    height: 100%;

    z-index: 1;

}

.banner-slider .slide-item .image-layer {

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    background-repeat: no-repeat;

    background-position: center bottom;

    background-size: cover;

    /* -webkit-transform: scale(1);

    -ms-transform: scale(1);

    transform: scale(1); */

    -webkit-transition: all 8000ms linear;

    -moz-transition: all 8000ms linear;

    -ms-transition: all 8000ms linear;

    -o-transition: all 8000ms linear;

    transition: all 8000ms linear;

}

.banner-carousel .active .slide-item .image-layer {

    -webkit-transform: scale(1.25);

    -ms-transform: scale(1.25);

    transform: scale(1.25);

}

.banner-carousel .content-box {

    position: absolute;

    width: 100%;

    top: 50%;

    transform: translateY(-50%);

    max-width: 35%;

    z-index: 5;

    padding: 0 0px;

    z-index: 999;

}

.banner-carousel .content-box .sub-title {

    position: relative;

    display: block;

    font-size: 16px;

    text-transform: uppercase;

    font-weight: 700;

    color: #fff;

    letter-spacing: 1px;

    text-align: left;

    display: inline-block;

    border-radius: 24px;

    margin-bottom: 20px;

    opacity: 0;

    -webkit-transform: translateY(-50px);

    -moz-transform: translateY(-50px);

    -ms-transform: translateY(-50px);

    -o-transform: translateY(-50px);

    transform: translateY(-50px);

    -webkit-transition: all 1000ms ease;

    -moz-transition: all 1000ms ease;

    -ms-transition: all 1000ms ease;

    -o-transition: all 1000ms ease;

    transition: all 1000ms ease;

}

.banner-carousel .content-box .sub-title i {

    font-size: 5px;

    vertical-align: middle;

    margin-right: 3px;

    color: #fff;

}

.banner-carousel .active .content-box .sub-title {

    opacity: 1;

    -webkit-transition-delay: 700ms;

    -moz-transition-delay: 700ms;

    -ms-transition-delay: 700ms;

    -o-transition-delay: 700ms;

    transition-delay: 700ms;

    -webkit-transform: translateY(0);

    -moz-transform: translateY(0);

    -ms-transform: translateY(0);

    -o-transform: translateY(0);

    transform: translateY(0);

}

.banner-carousel .content-box h2 {

    position: relative;

    display: block;

    font-family: "Cal Sans", sans-serif;

    font-size: 3.5vw;

    line-height: 3.5vw;

    font-weight: 700;

    padding:0px 0px 0px;

    text-align:left;

    text-transform: capitalize;

    color: #fff;

    margin-bottom: 30px;

    opacity: 0;

    -webkit-transform: translateY(-50px);

    -moz-transform: translateY(-50px);

    -ms-transform: translateY(-50px);

    -o-transform: translateY(-50px);

    transform: translateY(-50px);

    -webkit-transition: all 1000ms ease;

    -moz-transition: all 1000ms ease;

    -ms-transition: all 1000ms ease;

    -o-transition: all 1000ms ease;

    transition: all 1000ms ease;

}

.banner-carousel .active .content-box h2 {

    opacity: 1;

    -webkit-transition-delay: 700ms;

    -moz-transition-delay: 700ms;

    -ms-transition-delay: 700ms;

    -o-transition-delay: 700ms;

    transition-delay: 700ms;

    -webkit-transform: translateY(0);

    -moz-transform: translateY(0);

    -ms-transform: translateY(0);

    -o-transform: translateY(0);

    transform: translateY(0);

}

.banner-carousel .content-box h2 span {

    position: relative;

    display: block;

    color: transparent;

    -webkit-text-stroke-width: 1px;

    -webkit-text-stroke-color: rgba(255, 255, 255, 1);

}

.banner-carousel .content-box .lower-box {

    position: relative;

    display: block;

    width: 650px;

    opacity: 0;

    -webkit-transform: translateY(10px);

    -moz-transform: translateY(10px);

    -ms-transform: translateY(10px);

    -o-transform: translateY(10px);

    transform: translateY(10px);

    -webkit-transition: all 1000ms ease;

    -moz-transition: all 1000ms ease;

    -ms-transition: all 1000ms ease;

    -o-transition: all 1000ms ease;

    transition: all 1000ms ease;

}

.banner-carousel .active .content-box .lower-box {

    opacity: 1;

    -webkit-transition-delay: 1000ms;

    -moz-transition-delay: 1000ms;

    -ms-transition-delay: 1000ms;

    -o-transition-delay: 1000ms;

    transition-delay: 1000ms;

    -webkit-transform: translateY(0);

    -moz-transform: translateY(0);

    -ms-transform: translateY(0);

    -o-transform: translateY(0);

    transform: translateY(0);

}

.banner-carousel .content-box .lower-box .text {

    position: relative;

    display: block;

    font-family: "Golos Text", sans-serif;

    font-size: 1.3vw;

    line-height: 1.5vw;

    color: #fff;

    margin-bottom: 31px;

    /* max-width: 360px; */

}





.banner-carousel .content-box .wrapper {

    position: relative;

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    margin-top: 40px;

}

.banner-carousel .content-box .wrapper .video-box {

    position: relative;

    display: flex;

    align-items: center;

    margin-left: 35px;

}

.banner-carousel .content-box .wrapper .video-box a {

    color: #fff;

}

.banner-carousel .content-box .wrapper .video-box .video-icon {

    position: relative;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-align: center;

    -ms-flex-align: center;

    align-items: center;

    -webkit-box-pack: center;

    -ms-flex-pack: center;

    justify-content: center;

    width: 44px;

    height: 44px;

    line-height: 44px;

    text-align: center;

    font-size: 15px;

    color: var(--primary-color);

    background-color: #fff;

    border-radius: 50%;

    transition: all 0.5s ease;

    -moz-transition: all 0.5s ease;

    -webkit-transition: all 0.5s ease;

    -ms-transition: all 0.5s ease;

    -o-transition: all 0.5s ease;

}

.banner-carousel .content-box .wrapper .video-box .video-icon:before {

    content: "";

    position: absolute;

    top: -4px;

    left: -4px;

    right: -4px;

    bottom: -4px;

    border: 4px solid #ffffff33;

    border-radius: 50%;

}

.banner-carousel .content-box .wrapper .video-box .video-icon .ripple, 

.banner-carousel .content-box .wrapper .video-box .video-icon .ripple:before, 

.banner-carousel .content-box .wrapper .video-box .video-icon .ripple:after {

    position: absolute;

    top: 50%;

    left: 50%;

    width: 60px;

    height: 60px;

    border-radius: 50%;

    -webkit-transform: translate(-50%, -50%);

    transform: translate(-50%, -50%);

    -ms-box-shadow: 0 0 0 0 #ffffff99;

    -o-box-shadow: 0 0 0 0 #ffffff99;

    -webkit-box-shadow: 0 0 0 0 #ffffff99;

    box-shadow: 0 0 0 0 #ffffff99;

    -webkit-animation: ripple 3s infinite;

    animation: ripple 3s infinite;

}

.banner-carousel .content-box .wrapper .video-box .video-icon .ripple:before {

    -webkit-animation-delay: 0.9s;

    animation-delay: 0.9s;

    content: "";

    position: absolute;

}

.banner-carousel .content-box .wrapper .video-box .video-icon .ripple:after {

    -webkit-animation-delay: 0.6s;

    animation-delay: 0.6s;

    content: "";

    position: absolute;

}

@keyframes ripple {

    70% {

        box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);

    }

    100% {

        box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);

    }

}





.banner-slider .owl-nav {

    position: absolute;

    top: 50%;

    right: 77px;

    height: 315px;

    margin-top: -150px;

}



.banner-slider .owl-dots {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    width: 100%;

    position: absolute;

    left: 0;

    right: 0;

    bottom: 40px;

    padding: 16px 0;

    margin: 0 auto !important;

    height: 0;

    line-height: 0;

    border-radius: 16px;

}

.banner-slider .owl-dots .owl-dot span {

    position: relative;

    display: block;

    width: 16px;

    height: 16px;

    border-radius: 50%;

    background-color: transparent;

    border: 1px solid #fff;

    margin: 0;

    -webkit-transition: all 300ms ease;

    transition: all 300ms ease;

}



.banner-slider .owl-dots .owl-dot:hover span, 

.banner-slider .owl-dots .owl-dot.active span {

    background-color: #fff;

}















/* welcome-section */

.welcome-section {

    position: relative;

    display: block;

    padding: 120px 0;

    overflow: hidden;

    z-index: 1;

}

.welcome-section .sec-title {

    margin-bottom: 30px;

}

.welcome-section .left-box {

    position: relative;

    display: block;

    margin-right:60px;

    margin-left: 100px;

}

.welcome-section .img-box {

    position: relative;

    display: block;

    z-index: 1;

}

.welcome-section .img-box img {

    transition: all 500ms linear;

    transition-delay: 0.2s;

}

.welcome-section .img-box .img-1 {

    position: relative;

    display: block;

    overflow: hidden;

    z-index: 1;

    border-radius: 20px;

}

/* .welcome-section .img-box .img-1 img {

    border-radius: 20px;

} */

.welcome-section .img-box .img-1::before {

    position: absolute;

    top: 0;

    left: -100%;

    display: block;

    content: '';

    width: 50%;

    height: 100%;

    background: #ffffff36;

    transform: skewX(17deg);

    z-index: 1;

}

.welcome-section .img-box .img-1:hover::before {

    -webkit-animation: shine 1.9s;

    animation: shine 1.9s;

}

.welcome-section .img-box .img-1:hover img {

    transform: scale(1.1) rotate(0deg);

    transition: all 500ms linear;

    transition-delay: 0.1s;

}



.welcome-section .img-box .img-2 {

    position: absolute;

    left: -150px;

    bottom: -100px;

    z-index: 2;

}

.welcome-section .img-box .img-2 img {

    border-radius: 20px;

    border: 6px solid #fff;

}

.welcome-section .img-box .img-2::after {

    background: rgba(255, 255, 255, 0.3);

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 0;

    opacity: 1;

    z-index: 9;

    pointer-events: none;

}

.welcome-section .img-box .img-2:hover::after {

    height: 100%;

    opacity: 0;

    -webkit-transition: all 400ms linear;

    transition: all 400ms linear;

}



.welcome-section .img-box .shape-1 {

    position: absolute;

    top: 91px;

    left: -100px;

    z-index: -1;

}

.welcome-section .img-box .shape-2 {

    position: absolute;

    left: -22px;

    top: -14px;

    z-index: -1;

}



.welcome-section .img-box .exp-box {

    position: absolute;

    left: -90px;

    top: -30px;

    z-index: 2;

    background: #1c7cdd;

    padding: 50px 40px;

    border-radius: 10px;

    text-align: center;

    box-shadow: 0 5px 15px 0 #00000000;

}

.welcome-section .img-box .exp-box img {

    width: 50px;

    margin: auto;

}

.welcome-section .img-box .exp-box .text {

    margin-top: 10px;

}

.welcome-section .img-box .exp-box .text h2 {

    font-size: 65px;

    color: #fff;

    font-weight: 900;

    margin: 0;

}

.welcome-section .img-box .exp-box .text p {

    font-size: 20px;

    line-height: 20px;

    color: #fff;

    font-weight: 500;

    margin: 0;

}



.welcome-section .shape-3 {

    position: absolute;

    top: 0;

    left: 0;

    z-index: -1;

}



.welcome-section .shape-4 {

    position: absolute;

    right: 90px;

    bottom: 80px;

    z-index: -1;

}

.welcome-section .points {

    position: relative;

    display: block;

    margin-top: 24px;

    margin-bottom: 40px;

}

.welcome-section .points li {

    position: relative;

    display: flex;

    align-items: center;

    margin-bottom: 20px;

}

.welcome-section .points li .icon {

    position: relative;

    display: inline-block;

}

.welcome-section .points li .icon span {

    position: relative;

    display: inline-block;

    font-size: 18px;

    color: var(--primary-color);

}

.welcome-section .points li .text {

    margin-left: 10px;

}

.welcome-section .points li .text p {

    font-weight: 500;

    color: var(--black);

    margin: 0;

}

.welcome-section .btn-box {

    margin-top: 35px;

}















/* solutions-section */

.solutions-section {

    padding: 0 0 110px 0;

    background-image: url("../images/bg-1.png");

}





.solutions-section .item .img-box {

    position: relative;

    overflow: hidden;

    border-top-left-radius: 5px;

    border-top-right-radius: 5px;

}

.solutions-section .item .img-box .shape-1 {

    width: 355px;

    height: 205px;

    background: linear-gradient(90deg, #71d971 0%, #00468c 100%);

    transform: skewY(15deg);

    position: absolute;

    right: -9%;

    top: 48%;

    opacity: 0;

    visibility: hidden;

    transition: all 0.3s linear;

    z-index: 1;

}

.solutions-section .item:hover .img-box .shape-1,

.solutions-section .item:hover .img-box .shape-2 {

    opacity: 0.8;

    visibility: visible;

}



.solutions-section .item .img-box .shape-2 {

    width: 355px;

    height: 120px;

    background: linear-gradient(280deg, #71d971 0%, #00468c 100%);

    transform: skewY(15deg);

    position: absolute;

    right: -35%;

    top: 42%;

    opacity: 0;

    visibility: hidden;

    transition: all 0.3s linear;

    z-index: 1;

}

.solutions-section .item .img-box .img {

    display: block;

    position: relative;

}

.solutions-section .item .img-box .img::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    background: linear-gradient(180deg, #FFFFFF00 30%, #010f31 90%);

    width: 100%;

    height: 100%;

    opacity: 0.8;

    z-index: 0;

}

.solutions-section .item .img-box .text {

    position: absolute;

    bottom: 0;

    left: 0;

    padding: 0 40px;

    z-index: 1;

    opacity: 0;

    visibility: hidden;

    transition: all 0.3s linear;

}

.solutions-section .item:hover .img-box .text {

    opacity: 1;

    visibility: visible;

    transform: translateY(-45px);

}

.solutions-section .item .img-box .text p {

    color: #fff;

    text-align: center;

    margin: 0;

}

.solutions-section .item .content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    background: #ffffff;

    border: 1px solid #ebebeb;

    border-top: 0;

    border-bottom-left-radius: 5px;

    border-bottom-right-radius: 5px;

    padding: 20px 40px;

}

.solutions-section .item .content h3 {

    font-size: 18px;

    font-weight: 700;

    line-height: 25px;

    color: #231e32;

}

.solutions-section .item .content .read-more {

    width: 40px;

    height: 40px;

    line-height: 40px;

    border-radius: 50%;

    text-align: center;

    font-size: 14px;

    background: var(--primary-color);

    color: #ffffff;

        flex: 0 0 auto;

    display: inline-block;

}



.solutions-section .owl-nav .owl-prev {

    left: -30px;

}

.solutions-section .owl-nav .owl-next {

    right: -30px;

}

.solutions-section .owl-nav button {

    color: var(--primary-color) !important;

    background-color: #fff !important;

    border-radius: 50%;

    margin: 0 10px;

    width: 40px;

    height: 40px;

    font-size: 20px !important;

    box-shadow: 0 0 16px 0 #00000038;

    text-align: center;

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    -webkit-transition: all 0.5s ease;

    -moz-transition: all 0.5s ease;

    -ms-transition: all 0.5s ease;

    -o-transition: all 0.5s ease;

    transition: all 0.5s ease;

}

.solutions-section .owl-nav button:hover {

    background-color: var(--primary-color) !important;

    color: #fff !important;

}







/* services-section */

.services-section {

    background-color: var(--primary-color);

    background-image: url("../images/services-bg.jpg");

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center center;

    padding: 80px 0;

}



.services-section .sec-title > *,

.services-section .sec-title > h2 span {

    color: #fff;

}



.services-section .item .img-box {

    border-radius: 5px;

    overflow: hidden;

}



.services-section .item .img-box img {

    -webkit-transition: 0.3s ease;

    -o-transition: 0.3s ease;

    transition: 0.3s ease;

}

.services-section .item:hover .img-box img {

    transform: scale(1.1);

}



.services-section .item .content {

    padding-top: 20px;

}

.services-section .item .content h3 {

    color: #fff;

    font-size: 20px;

    font-weight: 600;

    margin-bottom: 10px;

}

.services-section .item .content p {

    color: #ffffffc4;

    font-weight: 300;

    margin-bottom: 0;

}



.services-section .owl-nav {

    display: flex;

    align-items: center;

    gap: 10px;

}

.services-section .owl-nav button {

    position: relative;

    top: auto;

    left: auto;

    right: auto;

    bottom: auto;

    width: 48px;

    height: 48px;

    display: flex;

    border: none;

    justify-content: center;

    align-items: center;

    font-size: 22px !important;

    color: var(--primary-color) !important;

    background-color: #fff !important;

    border: 1px solid #fff;

    border-radius: 50%;

    margin: 0;

    text-align: center;

    opacity: 1;

    transition: all 500ms ease;

    z-index: 100;

}

.services-section .owl-nav button:hover {

    background-color: var(--primary-color) !important;

    color: #fff !important;

}







/* why-choose */

.why-choose {

    background-image: url("../images/bg-2.jpg");

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center center;

    padding: 80px 0;

    margin-bottom: 80px;

}

.why-choose .img-box {padding-right:60px;}

.why-choose .img-box img {
  transition: 500ms linear 0.2s;
  border-radius: 20px;
  margin-bottom: 20px;
}

.why-choose .points {

    position: relative;

    display: block;

    margin-top: 24px;

    margin-bottom: 40px;

}

.why-choose .points li {

    position: relative;

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 30px;

}

.why-choose .points li .icon {

    position: relative;

    display: inline-block;

    width: 50px;

    height: 50px;

    flex: 0 0 auto;

}

.why-choose .points li .icon img {

    filter: invert(13%) sepia(89%) saturate(3387%) hue-rotate(199deg) brightness(94%) contrast(101%);

}

.why-choose .points li .icon span {

    position: relative;

    display: inline-block;

    font-size: 22px;

    color: var(--primary-color);

}

.why-choose .points li .text {

    margin-left: 10px;

}

.why-choose .points li .text p {

    font-weight: 700;

    font-size: 20px;

    color: var(--black);

    margin: 0;

}

@media (max-width: 576px) {
.why-choose .img-box {padding-right:0px;}
}








.inner-banner {

    position: relative;

    z-index: 2;

}

.inner-banner .inner {

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    padding: 0 60px;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-align: center;

    -ms-flex-align: center;

    align-items: center;

    -webkit-box-pack: start;

    -ms-flex-pack: start;

    justify-content: flex-start;
	

}

.inner-banner .content-box {

    position: absolute;

    left: 0;

    z-index: 9;

    top: 50%;

    transform: translateY(-50%);

}

.inner-banner .content-box .caption-title {
    color: #fff;
    font-weight: 600;
    font-size: 2.5vw;}











/* about-section */

.about-section {

    position: relative;

    display: block;

    padding: 100px 0 80px;

    overflow: hidden;

    z-index: 1;

}

.about-section .sec-title {

    margin-bottom: 30px;

}

.about-section .left-box {

    position: relative;

    display: block;

}

.about-section .img-box {

    position: relative;

    display: block;

    z-index: 1;
    padding-right:60px;
	
}

.about-section .img-box img {

    transition: all 500ms linear;

    transition-delay: 0.2s; border-radius:20px; margin-bottom:20px;

}

.about-section .img-box .img-1 {

    position: relative;

    display: block;

    overflow: hidden;

    z-index: 1;

    border-radius: 20px;

    float: right;

    transform: translateY(135px) translateX(35px);

}

/* .about-section .img-box .img-1 img {

    border-radius: 20px;

} */

.about-section .img-box .img-1::before {

    position: absolute;

    top: 0;

    left: -100%;

    display: block;

    content: '';

    width: 50%;

    height: 100%;

    background: #ffffff36;

    transform: skewX(17deg);

    z-index: 1;

}

.about-section .img-box .img-1:hover::before {

    -webkit-animation: shine 1.9s;

    animation: shine 1.9s;

}

.about-section .img-box .img-1:hover img {

    transform: scale(1.1) rotate(0deg);

    transition: all 500ms linear;

    transition-delay: 0.1s;

}



.about-section .img-box .img-2 {

    position: absolute;

    left: 0px;

    top: 0px;

    z-index: -1;

    border-radius: 5px;

}

.about-section .img-box .img-2 img {

    border-radius: 20px;

    border: 6px solid #fff;

}

.about-section .img-box .img-2::after {

    background: rgba(255, 255, 255, 0.3);

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 0;

    opacity: 1;

    z-index: 9;

    pointer-events: none;

}

.about-section .img-box .img-2:hover::after {

    height: 100%;

    opacity: 0;

    -webkit-transition: all 400ms linear;

    transition: all 400ms linear;

}



.about-section .img-box .shape-1 {

    position: absolute;

    top: 235px;

    left: 65px;

    z-index: -2;

}

.float-bob-y {

    -webkit-animation-name: float-bob-y;

    animation-name: float-bob-y;

    -webkit-animation-duration: 2s;

    animation-duration: 2s;

    -webkit-animation-iteration-count: infinite;

    animation-iteration-count: infinite;

    -webkit-animation-timing-function: linear;

    animation-timing-function: linear;

}



@keyframes float-bob-y {

    0% {

        transform: translateY(-20px);

    }

    50% {

        transform: translateY(-10px);

    }

    100% {

        transform: translateY(-20px);

    }

}



.about-section h4 {

    color: var(--primary-color);

    font-size: 25px;

    font-weight: 600;

}

.about-section .points {

    position: relative;

    display: block;

    margin-top: 15px;

    margin-bottom: 40px;

}

.about-section .points li {

    position: relative;

    display: flex;

    align-items: center;

    margin-bottom: 20px;

}

.about-section .points li .icon {

    position: relative;

    display: inline-block;

}

.about-section .points li .icon span {

    position: relative;

    display: inline-block;

    font-size: 18px;

    color: var(--primary-color);

}

.about-section .points li .text {

    margin-left: 10px;

}

.about-section .points li .text p {

    font-weight: 500;

    color: var(--black);

    margin: 0;

}

@media (max-width: 576px) {
.about-section .img-box {padding-right:0px;}
}








/* industries-section */

.industries-section {

    padding: 60px 0;

}



.industries-section .item {

    margin-top: 0px;

    margin-bottom: 30px;

    box-shadow: rgba(0, 0, 0, 0.09) 0px 0px 20px 0px;

    position: relative;

    z-index: 1;

    background: rgb(255, 255, 255);

    padding: 30px 30px 12px;

    border-radius: 5px;

    overflow: hidden;

    min-height: 290px;

}

.industries-section .item::before {

    content: "";

    position: absolute;

    left: 0px;

    top: 0px;

    width: 100%;

    height: 100%;

    z-index: -1;

    opacity: 0;

    visibility: hidden;

    background: linear-gradient(148deg, #71d971 0%, #00468c 100%);

    transition: 0.3s linear;

}

.industries-section .item:hover::before {

    opacity: 1;

    visibility: visible;

}

.industries-section .item .img-box {

    overflow: hidden;

    border-radius: 5px;

}

.industries-section .item .img-box img {

    transition: all 500ms linear;

}

.industries-section .item:hover .img-box img {

    transform: scale(1.05);

}

.industries-section .item .content {

    margin-top: 15px;

}

.industries-section .item .content h3 {

    text-align: center;

    color: var(--primary-color);

    font-size: 20px;

    font-weight: 700;

    transition: 0.3s linear;

}

.industries-section .item:hover .content h3 {

    color: #fff;

}

/* solution-page-section */

.solution-page-section {

    position: relative;

    display: block;

    padding: 100px 0 80px;

    overflow: hidden;

    z-index: 1;

}

.solution-page-section .content .sec-title {

    margin-bottom: 20px;

}

.solution-page-section .sec-title p {

    font-size: 16px;

}



.solution-page-section .img-box {

    overflow: hidden;

    border-radius: 10px;

}

.solution-page-section .content.right {

    margin-left: 20px;

}

.solution-page-section .content.left {

    margin-right: 20px;

}

.solution-page-section h4 {

    color: #408b40;

    font-size: 30px;

    font-weight: 800;

    margin-bottom: 10px;

}

.solution-page-section .content h5 {

    font-weight: 900;

    font-size: 17px;

    color: var(--primary-color);

    margin-bottom: 2px;

}

.solution-page-section h6 {
    font-size:24px;
    font-weight: 800;
	color: var(--primary-color);
    margin-bottom: 10px;
}

.solution-page-section .points {

    position: relative;

    display: block;

    margin-top: 15px;

    margin-bottom: 0px;

}

.solution-page-section .points li {

    position: relative;

    display: flex;

    align-items: center;

    margin-bottom: 20px;

}

.solution-page-section .sub-points {

    margin-top: 10px;

    margin-bottom: 15px;

}

.solution-page-section .sub-points li {

    margin-bottom: 5px;

}

.solution-page-section .points li .icon {
    position: relative;
    display: inline-block;
	
}

.solution-page-section .points li .icon span {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: var(--primary-color);
	padding:0px; margin:4px 0px 0px 0px;
}

.solution-page-section .points li .text {

    margin-left: 10px;

}

.solution-page-section .points li .text h5 {

    font-weight: 900;

    font-size: 17px;

    color: var(--primary-color);

    margin-bottom: 2px;

}

.solution-page-section .points li .text p {

    font-weight: 500;

    color: var(--black);

    margin: 0;

}
.solution-why-choose {

    background-color: var(--primary-color);

    background-image: url("../images/services-bg.jpg");

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center center;

    padding: 80px 0;

    /* margin-bottom: 80px; */

}



.solution-why-choose .img-box {

    overflow: hidden;

    border-radius: 10px;

}

.solution-why-choose .content.left {

    margin-right: 40px;

}

.solution-why-choose .content.right {

    margin-left: 40px;

}

.solution-why-choose .content h4 {

    color: #fff;

    font-size: 25px;

    font-weight: 700;

    margin-bottom: 10px;

}

.solution-why-choose .content p {

    color: #fff;

}

.solution-why-choose .points {

    position: relative;

    display: block;

    margin-top: 24px;

    margin-bottom: 40px;

}

.solution-why-choose .points li {

    position: relative;

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

    padding-bottom: 20px;

    border-bottom: 1px solid #ffffff1f;

}

.solution-why-choose .points li .icon {

    position: relative;

    display: flex;

    flex: 0 0 auto;

    justify-content: center;

    align-items: center;

}

.solution-why-choose .points li .icon img {

    filter: invert(13%) sepia(89%) saturate(3387%) hue-rotate(199deg) brightness(94%) contrast(101%);

}

.solution-why-choose .points li .icon span {

    position: relative;

    display: inline-block;

    font-size: 22px;

    color: #fff;

}

.solution-why-choose .points li .text {

    margin-left: 10px;

}

.solution-why-choose .points li .text h5 {

    font-weight: 900;

    font-size: 16px;

    color: #fff;

    margin-bottom: 2px;

}

.solution-why-choose .points li .text p {

    font-weight: 500;

    color: #fff;

    margin: 0;

}





.solution-why-two .sec-title {

    margin-bottom: 30px;

}

.solution-why-two .sec-title h2 {

    font-size: 35px;

    margin-top: 0;

}

.solution-why-two .img-box {
    margin-right: 0;
}

.solution-why-two .img-box img{}

.solution-why-two .content.left {

    margin-right: 50px;

}

.solution-why-two .content.right {

    margin-left: 50px;

}





.solution-tools-section {

    padding: 0 0 80px;

}

.solution-tools-section .item {

    padding: 10px 30px;

    background-color: #fff;

    box-shadow: rgba(0, 0, 0, 0.09) 0px 0px 20px 0px;

    border-radius: 6px;

    overflow: hidden;

    margin-bottom: 20px;

}

.solution-tools-section .item img {

    -webkit-transition: 0.3s ease;

    -o-transition: 0.3s ease;

    transition: 0.3s ease;

    filter: grayscale(1);

    opacity: 0.6;

}

.solution-tools-section .item:hover img {

    transform: scale(1.1);

    filter: none;

    opacity: 1;

}













/* testimonials-section */

.testimonials-section {

    position: relative;

    display: block;

    padding: 80px 0;

    z-index: 1;

}

.testimonials-section .bg {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center;

    z-index: -1;

}



.testimonials-section .item {

    position: relative;

    display: flex;

    align-items: center;

}

.testimonials-section .item .content {

    flex: 1;

    margin-left: 90px;

    position: relative;

}

.testimonials-section .item > .content::before {

    content: "";

    position: absolute;

    left: -30px;

    top: -30px;

    background-image: url("../images/quote.png");

    width: 100%;

    height: 100%;

    background-repeat: no-repeat;

}

.testimonials-section .item p {

    font-size: 30px;

    line-height: 48px;

    font-weight: 600;

    color: #000c29;

}

.testimonials-section .item .info {

    position: relative;

    display: flex;

    margin-top: 46px;

}

.testimonials-section .item .info .img {

    position: relative;

    display: block;

}

.testimonials-section .item .info .img img {

    width: auto;

    border-radius: 50%;

}

.testimonials-section .item .info .content {

    position: relative;

    display: block;

    margin-left: 0px;

}

.testimonials-section .item .info .content h3 {

    font-size: 20px;

    font-weight: 700;

    line-height: 28px;

    color: #000;

    margin: 0;

}

.testimonials-section .item .info .content p {

    font-size: 14px;

    line-height: 24px;

    color: var(--primary-color);

    margin-top: 3px;

}

.testimonials-section .owl-nav {

    display: flex;

    align-items: center;

    gap: 10px;

}

.testimonials-section .owl-nav button {

    position: relative;

    top: auto;

    left: auto;

    right: auto;

    bottom: auto;

    width: 48px;

    height: 48px;

    display: flex;

    border: none;

    justify-content: center;

    align-items: center;

    font-size: 22px !important;

    color: #000 !important;

    background-color: var(--secondary-color) !important;

    border-radius: 50%;

    margin: 0;

    text-align: center;

    opacity: 1;

    transition: all 500ms ease;

    z-index: 100;

}

.testimonials-section .owl-nav button:hover {

    background-color: var(--primary-color) !important;

    color: #fff !important;

}







.training-section .inner {

    background: #ffffff;

    box-shadow: 0px 0px 144px 0px rgba(0, 0, 0, 0.04);

    border-radius: 10px;

    padding: 30px 30px;

    position: relative;

    margin-bottom: -150px;

    z-index: 5;

}

.training-section .inner .item img {

    -webkit-transition: 0.3s ease;

    -o-transition: 0.3s ease;

    transition: 0.3s ease;

    filter: grayscale(1);

    opacity: 0.6;

}

.training-section .inner .item:hover img {

    transform: scale(1.1);

    filter: none;

    opacity: 1;

}



/* cta-section */

.cta-section{

    padding-top: 210px;

    padding-bottom: 60px;

    position: relative;

    z-index: 2;

    overflow: hidden;

    background-image: url("../images/cta-bg.jpg");

    background-repeat: no-repeat;

    background-size: cover;

    background-position: top;

}

/* .cta-section .inner::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background-color: var(--primary-color);

    opacity: 0.7;

    z-index: -1;

} */

.cta-section .content {

    display: flex;

}

.cta-section .content .icon {

    float: left;

    width: 80px;

    height: 80px;

    line-height: 95px;

    border-radius: 80px;

    background-color: var(--secondary-color);

    text-align: center;

    margin-right: 20px;

    margin-top: 10px;

}

.cta-section .content .icon span {

    font-size: 35px;

    color: #000;

}

.cta-section .content h2 {

    color: #fff;

    font-size: 40px;

    font-weight: 800;

}

.cta-section .content p {

    color: #ffffffd5;

}

.cta-section .content h4 {

    color: #fff;

    font-size: 20px;

    font-weight: 800;

}

.cta-section .btn-box {

    float: right;

}



.cta-section .btn-box .theme-btn {

    background-color: #fff;

    border-color: #fff;

    color: var(--primary-color);

    padding: 13px 35px;

}

.cta-section .btn-box .theme-btn:hover {

    color: #fff;

}

.cta-section .btn-box .theme-btn::before {

    background: var(--primary-color);

}









/* -----------------

Footer Section

--------------------*/

footer {

    position: relative;

    display: block;

    background-color: var(--primary-color);

    background-image: url("../images/footer-bg.jpg");

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center;

    overflow: hidden;

    z-index: 1;

    padding: 50px 0;

}

/* footer::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background-color: #02170ba3;

    z-index: -1;

} */



footer .footer-content {

    padding: 0;

}



footer .widget h2 {

    color: var(--primary-color);

    font-size: 20px;

    text-transform: capitalize;

    font-weight: 800;

    margin-bottom: 20px;

    margin-right: 15px;

    padding-bottom: 0px;

    position: relative;

}



footer .widget {

    padding-top: 50px;

}

footer .widget p {

    color: #000;

    margin: 0;

}

footer .widget-about .logo-box {

    width: 250px;

    margin-bottom: 30px;

}

footer .widget-about p {

    text-align: justify;

    font-weight: 500;

    font-size: 16px;

    color: #000;

}



footer .widget-links,

footer .widget-contact {

    position: relative;

    display: block;

    margin-left: 20px;

}



footer .widget-links .nav-links ul {

    padding: 0;

    list-style-type: none;

}



footer .widget-links .nav-links ul li {

    margin-bottom: 0;

}



footer .widget-links .nav-links ul li a {

    color: #000;

    font-size: 16px;

    padding: 8px 0;

    font-weight: 500;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;

    -webkit-transition: 0.3s ease;

    -o-transition: 0.3s ease;

    transition: 0.3s ease;

}



/* footer .widget-links .nav-links ul li a:before {

    content: "\f105";

    font-family: "FontAwesome";

    padding-right: 10px;

    color: #7ed200;

    font-size: 12px;

} */



footer .widget-links .nav-links ul li a:hover {

    color: var(--primary-color);

    background-color: transparent;

    padding-left: 10px;

}



footer .widget-contact .contact-info ul {

    padding: 0;

}



footer .widget-contact .contact-info ul li {

    position: relative;

    display: flex;

    margin-bottom: 25px;

}



footer .widget-contact .contact-info ul li .content h3 {

    font-size: 16px;

    font-weight: 500;

    color: #000;

    line-height: 26px;

    margin-bottom: 0;

}

footer .widget-contact .contact-info ul li .content p {

    font-size: 16px;

    line-height: 22px;

}



footer .widget-contact .contact-info ul li .icon {

    position: relative;

    display: inline-block;

}

footer .widget-contact .contact-info ul li .icon span {

    position: relative;

    display: inline-block;

    font-size: 20px;

    color: #27a527;

    margin-top: 5px;

}

footer .widget-contact .contact-info ul li:nth-child(1) .icon span,

footer .widget-contact .contact-info ul li:nth-child(2) .icon span {

    font-size: 22px;

}



footer .widget-contact .contact-info ul li .content {

    position: relative;

    display: block;

    margin-left: 12px;

}



footer .widget-contact .contact-info ul li p {

    display: -ms-grid;

    display: grid;

    text-align: left;

    font-size: 16px;

    color: #000;

    font-weight: 600;

}



footer .widget-contact .contact-info ul li a {

    color: #000;

    font-size: 16px;

    font-weight: 600;

}



footer .widget-contact .contact-info ul li a.email {

    margin-top: 10px;

}



/* footer .widget-contact .contact-info h4 {

  font-size: 15px;

  color: #fff;

  margin-bottom: 20px;

} */



/* ----------------------

Footer Bottom Section

------------------------*/

.footer-bottom {

    padding: 20px 0;

    border-top: 1px solid #0d121e1a;

}



.footer-bottom p,

.footer-bottom p a {

    margin: 0;

    color: #000;

    font-size: 16px;

    font-weight: 500;

}



.footer-bottom .copyrights {

    float: left;

}



.footer-bottom .design {

    float: right;

}



.social-icons {
    margin-top:0px;
    margin-bottom:0px;

}

.social-icons li {

    display: inline-block;

    margin: 0 5px;

}



.social-icons li a {

    width: 40px;

    height: 40px;

    display: block;

    background-color: var(--primary-color);

    color: #fff;

    border: 1px solid var(--primary-color);

    border-radius: 50px;

    text-align: center;

    line-height: 40px;

    -webkit-transition: 600ms ease all;

    -o-transition: 600ms ease all;

    transition: 600ms ease all;

}

.social-icons li a:hover {

    background-color: #fff;

}

.social-icons li a:hover i {

    color: var(--primary-color);

}



.social-icons li a i {

    font-size: 16px;

}



/* ----------------------

Go To Top

------------------------*/



.scroll-top {

    width: 45px;

    height: 45px;

    line-height: 40px;

    border: none;

    position: fixed;

    bottom: 105%;

    right: 50px;

    font-size: 22px;

    border-radius: 50%;

    z-index: 99;

    color: #ffffff;

    text-align: center;

    cursor: pointer;

    background: var(--primary-color);

    -webkit-transition: 0.5s ease;

    -o-transition: 0.5s ease;

    transition: 0.5s ease;

  }

  .scroll-top i {

    color: #fff;

  }

  .scroll-top:hover{

    background: var(--black);

  }

  .scroll-top.show {

    bottom: 45px;

  }

  .scroll-top i {

    color: #fff;

    transform: rotate(90deg);

    display: inline-block;

  }

  .scroll-top:after {

    position: absolute;

    z-index: -1;

    content: '';

    top: 100%;

    left: 5%;

    height: 10px;

    width: 90%;

    opacity: 1;

    background: -o-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);

    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);

  }

  













.captcha-img {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

}



.captcha-img img {

    width: 200px;

}



#captcha_reload i {

    color: #000000;

    font-size: 22px;

    line-height: 40px;

    padding-left: 10px;

}



#captcha-field {

    margin: 0;

}



#captcha-error {

    text-align: center;

}



#captcha-error p {

    margin: 0;

}



#captcha_reload i {

    color: #000;

    font-size: 20px;

    height: 100%;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;

}



#captcha-field {

    margin-top: 0px;

}



#captcha_image {

    width: 80%;

    height: 100%;

    margin: 0 0px 0 0;

    text-align: center;

}



#success_message {

    text-align: center;

    background-color: #dff2d5;

    padding: 5px 10px;

    border: 1px solid #399d04;

    margin-top: 20px;

}



#success_message h3 {

    color: #000;

    font-size: 16px;

    font-weight: 500;

    margin: 0;

}



.help-block.error,

#file-error p {

    color: #f00;

    font-size: 14px;

}



#employment_type-error {

    position: absolute;

    top: 100%;

}



#error_message {

    text-align: center;

    background-color: #f2d5d5;

    padding: 5px 10px;

    border: 1px solid #9d0404;

    margin-top: 20px;

}



#error_message h3 {

    color: #000;

    font-size: 16px;

    font-weight: 500;

    margin: 0;

}



@media only screen and (min-width: 1320px) {

    .container {

        max-width: 1320px;

    }

}



@media only screen and (max-width: 1399px) {

    .banner-slider .slide-content .content .sub-heading h4 {

        font-size: 16px;

    }

    .banner-slider .slide-content .content .heading h2 {

        font-size: 45px;

        margin-bottom: 15px;

    }

    .banner-slider .slide-content .content .sub-heading-2 h5 {

        font-size: 28px;

    }

}



@media only screen and (max-width: 1199px) {

    .top-bar .wrapper.right .top-menu {

        display: none;

    }

    .navbar .contact-info {

        display: none;

    }

    .banner-slider .slide-content .content .sub-heading h4 {

        font-size: 16px;

        margin-bottom: 15px;

    }

    .banner-slider .slide-content .content .heading h2 {

        font-size: 40px;

        margin-bottom: 15px;

    }

    .banner-slider .slide-content .content .sub-heading-2 h5 {

        font-size: 25px;

    }

    .welcome-section .right-box {

        margin-top: 80px;

    }

    .chairmans-message .bottom-bar {

        margin: 60px 0 0 0;

    }

    .testimonials-section .left {

        margin-bottom: 40px;

    }

    .testimonials-section .sec-title h2 br {

        display: none;

    }

    .cta-section .inner .content .icon {

        margin-bottom: 30px;

    }

    footer .widget {

        margin-bottom: 40px;

    }

    footer .widget-links:before,

    footer .widget-contact:before {

        width: 0;

    }

    footer .widget-links, 

    footer .widget-contact {

        margin-left: 0;

    }

}



@media only screen and (max-width: 1199px) {

    .banner-carousel .content-box .lower-box {

        width: 400px;

    }

    .banner-carousel .active .content-box h2 {

        margin-bottom: 10px;

    }

    .banner-slider .slide-content .content .sub-heading h4 {

        font-size: 16px;

        margin-bottom: 0;

    }

    .banner-slider .slide-content .content .heading h2 {

        font-size: 30px;

        margin-bottom: 0;

    }

    .banner-slider .slide-content .content .sub-heading-2 h5 {

        font-size: 20px;

        margin-bottom: 30px;

    }
    
    .solution-page-section .content.right {
        margin-left: 0px;
        margin-top: 30px;
    }
    .contact-page-sec .img-box {
        padding-right: 0px;
    }

}



@media only screen and (max-width: 991px) {

    .top-bar {

        display: none;

    }

    .navbar {

        background-color: #fff !important;

        padding: 20px 0;

    }

    .navbar-brand.light {

        display: none;

    }

    .navbar-brand.dark {

        display: block;

    }

    .navbar-nav {

        margin-top: 30px;

    }

    .navbar-nav li .nav-link {

        padding: 10px 0px !important;

        color: var(--black) !important;

    }

    .dropdown .dropdown-toggle::after {

        content: "\f107";

        font-family: FontAwesome;

    }

    .navbar-nav li.dropdown:hover .dropdown-toggle::after {

        content: "\f107";

        font-family: FontAwesome;

    }

    .banner-slider .slide-content {

        padding: 190px 0 120px;

    }

    .banner-slider .slide-content .content {

        top: 60%;

    }

    .banner-slider .shape-1 {

        width: 450px;

        height: 250px;

    }

    .banner-slider .shape-2 {

        width: 450px;

        height: 250px;

        top: 46%;

    }

    .banner-slider .shape-3 {

        width: 450px;

        height: 250px;

    }

    .banner-slider .shape-4 {

        width: 450px;

        height: 250px;

        top: 81%;

    }

    .banner-slider .shape-5 {

        width: 250px;

        height: 180px;

        top: 71%;

        right: -5%;

    }

    .services-section .heading {

        margin-bottom: 40px;

    }

    .why-choose .img-box {

        margin-right: 0px;

    }

    .why-choose .content {

        margin-top: 60px;

    }

    .testimonials-section .item .content {

        margin-left: 50px;

    }

    .testimonials-section .item > .content::before {

        top: 0;

    }
    .solution-why-choose .content.right {
        margin-left: 0px;
        margin-top: 40px;
    }
    .solution-why-choose .img-box {
        margin-bottom: 30px;
    }

    .cta-section {

        padding-top: 220px;

        padding-bottom: 60px;

    }

    .cta-section .content {

        justify-content: center;

    }

    .cta-section .content .text h2 {

        text-align: center;

    }

    .cta-section .btn-box {

        float: none;

        text-align: center;

        margin-top: 30px;

    }



    footer .footer-newsletter .title {

        font-size: 26px;

    }

    footer .widget {

        padding-top: 0px;

        margin-bottom: 40px;

    }

    footer .widget-about {

        padding-top: 40px;

    }

    footer .widget-about-col {

        margin-bottom: 40px;

    }

    .footer-bottom .copyrights,

    .footer-bottom .design {

        float: none;

    }

    .footer-bottom .copyrights p,

    .footer-bottom .design p {

        text-align: center;

    }

}





@media only screen and (max-width: 767px) {

    #main-nav {

        padding-top: 30px;

    }

    #main-nav #main-menu > li > a {

        padding: 10px 0;

    }

    #main-nav #main-menu > li > a .sub-arrow {
        background-color: #f1f1f1;
        margin-left: 10px;
        top: 11px;
		float:right;
    }

    .banner-slider .shape-1 {

        width: 350px;

        height: 190px;

    }

    .banner-slider .shape-2 {

        width: 350px;

        height: 190px;

        top: 46%;

    }

    .banner-slider .shape-3 {

        width: 350px;

        height: 190px;

        top: 37%;

    }

    .banner-slider .shape-4 {

        width: 350px;

        height: 190px;

    }

    .banner-slider .shape-5 {

        width: 220px;

        height: 150px;

        top: 71%;

        right: -5%;

    }

    .banner-carousel .content-box .lower-box {

        width: 280px;

    }

    .banner-slider .slide-content .image {

        display: none;

    }

    .banner-slider .slide-content {

        padding: 240px 0 350px;

    }

    .sec-title h2 {

        font-size: 30px;

    }

    .welcome-section .img-box .exp-box {

        position: relative;

        left: 0;

        top: 0;

        padding: 20px 30px 30px;

        margin-top: 20px;

    }

    .welcome-section .left-box {

        margin-right: 0;

        margin-left: 0;

    }

    .solutions-section .owl-nav {

        text-align: center;

        margin-top: 40px;

    }

    .solutions-section .owl-nav button {

        position: relative;

        transform: translateY(0%);

    }

    .solutions-section .owl-nav .owl-prev {

        left: 0;

    }

    .solutions-section .owl-nav .owl-next {

        right: 0;

    }

    .testimonials-section .item {

        flex-direction: column;

    }

    .testimonials-section .item .content {

        margin-left: 0;

        margin-top: 50px;

    }

    .testimonials-section .item > .content::before {

        left: 0;

    }

    .testimonials-section .item .info {

        margin-top: 0px;

    }

    .testimonials-section .item .info > .content {

        margin-top: 0px;

    }

    

    footer .footer-newsletter .newsletter-form {

        max-width: 498px;

        margin: 0 auto 0 0;

        position: relative;

    }

    footer .footer-newsletter .title {

        font-size: 26px;

        margin-bottom: 30px;

    }

}


@media (max-width: 576px) {
.cntimg{margin-right:0px;}
}
@media only screen and (max-width: 575px) {

    .banner-slider .owl-dots {

        display: none;

    }

    .banner-slider .shape-1 {

        width: 300px;

        height: 110px;

        left: 5%;

    }

    .banner-slider .shape-2 {

        width: 300px;

        height: 110px;

        top: 46%;

        left: 1.5%;

    }

    .banner-slider .shape-3 {

        width: 300px;

        height: 110px;

        top: 37%;

        left: 7.5%;

    }

    .banner-slider .shape-4 {

        display: none;

    }

    .banner-slider .shape-5 {

        display: none;

    }

    .banner-carousel .content-box .sub-title {

        margin-bottom: 5px;

        font-size: 12px;

    }

    .banner-carousel .content-box {

        max-width: 45%;

    }

    .banner-carousel .content-box h2 {

        font-size: 3.5vw;

        line-height: 3.5vw;

    }
	

}



@media only screen and (max-width: 480px) {

    .banner-slider .slide-content .content .heading h2 {

        font-size: 21px;

    }

    .banner-carousel .content-box .lower-box .text {

        font-size: 2.2vw;

        line-height: 2.5vw;

    }

}

.tranisc{ padding:100px 0px 0px 0px;}
.emls{ padding:0px 0px 0px 0px;}
.emls p a{color: #000000;}
.cont-info p span{ position: relative; display: inline-block; font-size:16px; color: #27a527;margin:0px; padding:0px;}
.cntimg{ border-radius:20px; position:relative; overflow:hidden; margin:0px 20px 40px 0px;}

.fmbox{
  position: relative;
  display: block;
  z-index: 1;
  padding-right:60px;
}

.fom{background-color:#fff; padding:40px; margin:0px 0px 0px 0px; border:1px solid #eee; border-radius:40px;
box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);}
.fom h2 {font-size:40px;color:#000;font-weight:800;margin-top:10px;}
.fom h2 span{color:#01468a;}
.fom ul{ overflow:hidden;  }
.fom ul li{ margin:0px 0px 10px 0px; font-size:20px; position:relative; padding:4px 0px 0px 0px;}
.fom ul li label{ position:relative; font-weight:normal; font-size:14px; margin:0;}
.fom ul li input,.fom ul li textarea{ color:#333; font-size:14px; border-radius:18px; padding:12px;}
.fom ul li label.error{ font-size:12px; color:#db1313; bottom:6px; right:20px; font-weight:normal; position:absolute; z-index:666; }
.fom button{ padding:10px 30px; border-radius:5px; font-weight:600;}

.map{ padding:20px 0px 0px 0px;}


