@import "scrollbar_ma.css";

* {
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
p {
    font-family: 'OpenSans-Regula';
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
}

a.active {
    background: var(--hoverColor);
}

img {
    vertical-align: middle;
    object-fit: cover;
}

.flot_prb {
    clear: both;
}

.full_wrapper {
    width: 100%;
}

.container {
    width: 1170px;
    margin: 0 auto;
}

@font-face {
    src: url(../webfonts/Pacifico.ttf);
    font-family: 'Pacifico';
}

@font-face {
    src: url(../webfonts/OpenSans-Regular.ttf);
    font-family: 'OpenSans-Regula';
}

@font-face {
    src: url(../webfonts/Lato-Regular.ttf);
    font-family: 'Lato-Regular';
}

/* fonts import ends */

:root {
    --hoverColor: #ffc155;
}

:root {
    --gradientColor: repeating-linear-gradient(to right, #709dca, var(--hoverColor), #709dca, #709dca, var(--hoverColor), #709dca);
}

/*color function ends*/

.back_to_top {
    color: #fff;
    width: 45px;
    height: 45px;
    font-size: 22px;
    text-align: center;
    line-height: 45px;
    cursor: pointer;
    border-radius: 15px;
    background: var(--gradientColor);
    display: none;
    position: fixed;
    z-index: 999;
    right: 30px;
    bottom: 30px;
}

/* back_to_top ends */
.menu_bg.fixed {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    animation: fixed_animate 1s linear;
    background: #709dca;
}

@keyframes fixed_animate {
    0% {
        transform: translateY(-100px);
    }

    100% {
        transform: translateY(0px);
    }
}

.heading {
    width: 100%;
    text-align: center;
}

.heading h3 {
    font-weight: 800;
    font-size: 27px;
    color: #709dca;
    text-transform: uppercase;

}

.heading span {
    position: relative;
}

.heading span::before {
    position: absolute;
    content: '';
    top: 7px;
    left: 24px;
    width: 85px;
    height: 2px;
    background: var(--hoverColor);
}

.heading span::after {
    position: absolute;
    content: '';
    top: 7px;
    left: -96px;
    width: 85px;
    height: 2px;
    background: var(--hoverColor);
}


.heading i {
    color: var(--hoverColor);
}

/* heading ends*/

.logo a {
    color: var(--hoverColor);
    font-size: 30px;
    text-transform: capitalize;
    font-family: 'Pacifico';
}

.footer .f_cont .ft_logo a {
    color: #fff;
}

/*=== common css ends ===*/

/*=== menu css start ===*/
.menu_bg {
    background: aliceblue;
}

.menu_bg .menu_wrap {
    height: 100px;
    display: flex;
    line-height: 100px;
}

.menu_bg .menu_wrap .logo {
    width: 50%;
    height: 100%;
}

.menu_bg .menu_wrap .menu {
    width: 50%;
    height: 100%;
}

.menu_bg .menu_wrap .menu ul li {
    float: left;
}

.menu_bg .menu_wrap .menu ul li a {
    color: #222222;
    font-size: 18px;
    padding: 15px 18px;
    border-radius: 5px;
    text-transform: capitalize;
    transition: all linear 0.4s;
    -o-transition: all linear 0.4s;
    -ms-transition: all linear 0.4s;
    -moz-transition: all linear 0.4s;
    -webkit-transition: all linear 0.4s;
}

.menu_bg .menu_wrap .menu ul li a:hover {
    color: #fff;
    background: var(--hoverColor);
}

/*=== menu css ends ===*/

/*=== slider css start ===*/

.slider_bg .demo1 .slide .slide-desc h2 {
    color: #fff;
    font-size: 48px;
    font-weight: bold;
}

.slider_bg .demo1 .slide .slide-desc p {
    color: #fff;
    font-size: 25px;
}

/*=== slider css ends ===*/

/*=== services css start ===*/
.services_bg {
    background: aliceblue;
    padding-top: 85px;
    padding-bottom: 95px;
}

.services_bg .services {
    height: 645px;
    background: aliceblue;
}

.services_bg .services .serv_title {
    text-align: center;
}

.services_bg .services .serv_title h2 {
    color: #709dca;
    font-size: 26px;
    font-weight: bold;
    text-transform: uppercase;
}

.services_bg .services .serv_title p {
    color: #394b50;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 40px;
    text-transform: capitalize;
}

.services_bg .services .service_cont {
    width: 500px;
    height: 170px;
    float: left;
    padding: 15px;
    margin: 15px 35px;
    margin-left: 40px;
    background: #fff;
    border: 1px solid #f5f0f0;
    box-sizing: border-box;
    transition: all linear 0.4s;
    -o-transition: all linear 0.4s;
    -ms-transition: all linear 0.4s;
    -moz-transition: all linear 0.4s;
    -webkit-transition: all linear 0.4s;
    animation: services 1s linear;
}

@keyframes services {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.services_bg .services .service_cont .cont_icon {
    float: left;
    width: 50px;
    padding-top: 5px;
}

.services_bg .services .service_cont .cont_icon i {
    color: #709dca;
    font-size: 35px;
}

.services_bg .services .service_cont:hover {
    transform: translateY(-20px);
    border: 1px solid #f2eeee;
}

.services_bg .services .service_cont:hover .cont_icon i {
    color: var(--hoverColor);
    text-transform: capitalize;
    transition: all linear 0.4s;
    -o-transition: all linear 0.4s;
    -ms-transition: all linear 0.4s;
    -moz-transition: all linear 0.4s;
    -webkit-transition: all linear 0.4s;
}

.services_bg .services .service_cont .cont_text {
    float: left;
    width: 403px;
    padding-left: 10px;
    box-sizing: border-box;
}

.services_bg .services .service_cont .cont_text h3 {
    color: #394b50;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: 'Lato-Regular';
    text-transform: capitalize;
    transition: all linear 0.4s;
    -o-transition: all linear 0.4s;
    -ms-transition: all linear 0.4s;
    -moz-transition: all linear 0.4s;
    -webkit-transition: all linear 0.4s;
}

.services_bg .services .service_cont:hover .cont_text h3 {
    color: var(--hoverColor);
    transform: translateX(80px);
}

.services_bg .services .service_cont .cont_text p {
    color: #7b7b7b;
    font-size: 13px;
    line-height: 25px;
}

/*=== services css ends ===*/

/*=== about css ends ===*/
.about_bg {
    height: 625px;
    background-color: var(--hoverColor);
    position: relative;
    z-index: 1;
}

.about_bg::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: url(../images/abt_bg.jpg) no-repeat;
    background-size: cover;
    z-index: -1;
}

.about_bg .about {
    height: 100%;
    display: flex;
}

.about_bg .about .item {
    width: 50%;
    height: 100%;
    padding-left: 80px;
    position: relative;
}

.about_bg .about .item h3 {
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    margin-top: 95px;
    margin-bottom: 35px;
    text-transform: uppercase;
    transition: all linear 0.4s;
    -o-transition: all linear 0.4s;
    -ms-transition: all linear 0.4s;
    -moz-transition: all linear 0.4s;
    -webkit-transition: all linear 0.4s;
}

.about_bg .about .item h3:hover {
    transform: translateX(100px);
}

.about_bg .about .item p {
    color: #fff;
    font-size: 13px;
    line-height: 25px;
}

.about_bg .about .item p.last_p {
    margin-top: 35px;
    margin-bottom: 85px;
}

.about_bg .about .item a {
    color: #fff;
    font-size: 14px;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    padding: 15px 20px;
    display: inline-block;
    border: 1px solid #fff;
    text-transform: uppercase;
    font-family: 'Lato-Regular';
    background: var(--hoverColor);
    z-index: 1;
}

.about_bg .about .item a::before {
    content: '';
    width: 130%;
    height: 100%;
    top: 0;
    left: -140%;
    z-index: -1;
    position: absolute;
    transform: skewX(-20deg);
    background: var(--gradientColor);
    transition: all linear 0.4s;
    -o-transition: all linear 0.4s;
    -ms-transition: all linear 0.4s;
    -moz-transition: all linear 0.4s;
    -webkit-transition: all linear 0.4s;
}

.about_bg .about .item a:hover::before {
    left: -20px;
}

/*=== about css ends ===*/

/*=== gallery css start ===*/
.gallery_bg {
    height: 1000px;
    background: aliceblue;
}

.gallery_bg .gallery {
    padding-top: 100px;
    width: 970px;
    height: 240px;
}

.gallery_bg .gallery .heading p {
    color: #7b7b7b;
    margin-top: 25px;
    margin-bottom: 50px;

}

.gallery_bg .gallery .btn {
    margin-left: 200px;
}

.gallery_bg .gallery .btn button[type='button'] {
    font-size: 16px;
    border: none;
    cursor: pointer;
    padding: 15px;
    background: #fff;
    margin-right: 20px;
    font-family: 'OpenSans-Regula';
    transition: all linear 0.4s;
    -o-transition: all linear 0.4s;
    -ms-transition: all linear 0.4s;
    -moz-transition: all linear 0.4s;
    -webkit-transition: all linear 0.4s;
}

.gallery_bg .gallery .btn button[type='button']:hover {
    color: #fff;
    background: var(--hoverColor);
}

.gallery_bg .gallery_filter .gl_item {
    width: 25%;
    height: 300px;
    float: left;
    position: relative;
    overflow: hidden;
}

.gallery_bg .gallery_filter .gl_item img {
    width: 100%;
    height: 100%;
}

.gallery_bg .gallery_filter .gl_item .overlay {
    color: #fff;
    width: 100%;
    height: 100%;
    background: rgba(255, 193, 85, 0.67);
    position: absolute;
    top: -100%;
    left: 0;
    text-align: center;
    transition: all linear 0.4s;
    -o-transition: all linear 0.4s;
    -ms-transition: all linear 0.4s;
    -moz-transition: all linear 0.4s;
    -webkit-transition: all linear 0.4s;
}

.gallery_bg .gallery_filter .gl_item:hover .overlay {
    top: 0;
}

.gallery_bg .gallery_filter .gl_item .overlay a {
    width: 35px;
    height: 35px;
    padding: 10px;
    display: inline-block;
    margin-top: 80px;
    border: 1px solid #fff;
    border-radius: 50%;
}

.gallery_bg .gallery_filter .gl_item .overlay a > i {
    color: #fff;
    font-size: 24px;
    margin-top: 5px;
}

.gallery_bg .gallery_filter .gl_item .overlay h3 {
    color: #fff;
    margin-top: 20px;
    margin-bottom: 10px;
}

.gallery_bg .gallery_filter .gallery_bg ul li {
    float: left;
    background: #709dca;
    margin-right: 5px;
}

/*=== gallery css ends ===*/

/*=== counter css start ===*/

.counter_bg {
    background: url(../images/fun_bg.jpg) no-repeat;
    background-size: cover;
    height: 400px;
    position: relative;
}

.counter_bg::before {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
}

.counter_bg .counter_wrp {
    position: relative;
}

.counter_bg .counter_wrp .counter_item {
    color: #fff;
    text-align: center;
    margin: 68px;
    float: left;
}

.counter_bg .counter_wrp .counter_item span {
    width: 80px;
    height: 80px;
    display: inline-block;
    border: 2px solid #fff;
    margin-top: 30px;
    border-radius: 50%;
    transition: all linear 0.4s;
    -o-transition: all linear 0.4s;
    -ms-transition: all linear 0.4s;
    -moz-transition: all linear 0.4s;
    -webkit-transition: all linear 0.4s;
}

.counter_bg .counter_wrp .counter_item:hover span {
    color: var(--hoverColor);
    border: 2px solid var(--hoverColor);
}

.counter_bg .counter_wrp .counter_item span i {
    text-align: center;
    padding-top: 30px;
    font-size: 25px;
}

.counter_bg .counter_wrp .counter_item h4 {
    font-size: 50px;
    margin-top: 20px;
}

.counter_bg .counter_wrp .counter_item p {
    font-size: 18px;
    text-transform: uppercase;
}

/*=== counter css ends ===*/

/*=== testimonial css start ===*/

.testimonial_bg {
    height: 400px;
    background: aliceblue;
    padding-top: 75px;
    padding-bottom: 50px;
}

.testimonial_bg .testimonial .testi_wrap {
    height: 100%;
    margin-top: 70px;
    display: flex;
    /* background: #90a39d;*/
    position: relative;
}

.testimonial_bg .testimonial .testi_wrap ul.slick-dots {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial_bg .testimonial .testi_wrap ul.slick-dots li.slick-active button {
    width: 15px;
    height: 15px;
    border: 2px solid #709dca;
    border-radius: 50%;
    background: #fff;
}

.testimonial_bg .testimonial .testi_wrap ul.slick-dots li {
    float: left;
    border: none;
    margin: 5px;
}

.testimonial_bg .testimonial .testi_wrap ul.slick-dots li button {
    width: 15px;
    height: 15px;
    font-size: 0;
    cursor: pointer;
    background: #747474;
    border: 2px solid #747474;
    border-radius: 50%;
}

.testimonial_bg .testimonial .testi_wrap .test_cont {
    width: 470px;
    height: 220px;
}

.testimonial_bg .testimonial .testi_wrap .test_cont .text p {
    color: #747474;
    font-style: italic;
    line-height: 25px;
    font-size: 13px;
    padding: 20px;
    margin: 0 50px;
    background: #f6f3f3;
    position: relative;
}

.testimonial_bg .testimonial .testi_wrap .test_cont .text p::after {
    content: '';
    position: absolute;
    border-right: 25px solid #f6f3f300;
    border-bottom: 25px solid #f6f3f3;
    bottom: -25px;
    left: 40px;
    transform: rotate(90deg);
}

.testimonial_bg .testimonial .testi_wrap .test_cont .pic {
    display: flex;
    height: 35px;
    margin-top: 15px;
}

.testimonial_bg .testimonial .testi_wrap .test_cont .pic img {
    margin-right: 25px;
    margin-left: 55px;
}

.testimonial_bg .testimonial .testi_wrap .test_cont .pic p {
    display: inline;
    margin-top: 12px;
    font-size: 13px;
}

.testimonial_bg .testimonial .testi_wrap .test_cont .pic p span {
    font-weight: bold;
}

/*=== testimonial css ends ===*/

/*=== footer css start ===*/

.footer_bg {
    background: #273a43;
}

.footer_bg .footer {
    height: 400px;
}

.footer_bg .footer .f_cont {
    float: left;
    width: 270px;
    height: 235px;
    padding-top: 70px;
    padding-bottom: 35px;
    margin-right: 30px;
}

.footer_bg .footer .f_cont h3 {
    color: #fff;
    font-size: 22px;
    padding-bottom: 25px;
}

.footer_bg .footer .f_cont p {
    color: #c3c3c3;
    font-size: 14px;
    line-height: 25px;
    font-family: 'Lato-Regular';
}

.footer_bg .footer .f_cont i {
    color: #71b6d5;
    font-size: 24px;
}

.footer_bg .footer .f_cont ul {
    margin-top: 10px;
}

.footer_bg .footer .f_cont ul li {
    line-height: 40px;
}

.footer_bg .footer .f_cont ul li:hover span {
    color: var(--hoverColor);
}

.footer_bg .footer .f_cont ul li > span {
    color: #fff;
    margin-left: 10px;
    font-size: 14px;
    cursor: pointer;
    font-family: 'OpenSans-Regula';
    transition: all linear 0.4s;
    -o-transition: all linear 0.4s;
    -ms-transition: all linear 0.4s;
    -moz-transition: all linear 0.4s;
    -webkit-transition: all linear 0.4s;
}

.footer_bg .footer .sln_md .f_sln {
    margin-top: 20px;
}

.footer_bg .footer .sln_md .top {
    width: 100%;
    display: flex;
}

.footer_bg .footer .sln_md .top .left {
    width: 35px;
    margin-top: 6px;
}

.footer_bg .footer .sln_md .top .right {
    width: 235px;
}

.footer_bg .footer .sln_md .top .right p {
    margin-bottom: 5px;
}

.footer_bg .footer .sln_md .top .right span {
    color: #71b6d5;
    font-size: 16px;
}

.footer_bg .footer .latest_news {
    margin-right: 0;
}

.footer_bg .footer .latest_news p {
    margin-bottom: 35px;
}

.footer_bg .footer .latest_news form input {
    color: #fff;
    border: none;
    background: #000;
}

.footer_bg .footer .latest_news form input[type='email'] {
    border: none;
    padding: 12px;
    font-size: 14px;
    border-radius: 5px 0 0 5px;
}

.footer_bg .footer .latest_news form input[type='submit'] {
    border: none;
    padding: 12px;
    cursor: pointer;
    font-size: 14px;
    background: #71b6d5;
    border-radius: 0 5px 5px 0;
}

/*=== footer css ends ===*/
