

html {
  scroll-behavior: smooth;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

strong {
    font-weight: 600;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.tab-content > .tab-pane {
    display: none;
    position: relative;
}

.tab-content > .active {
    display: block;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}

/*****************************************/
.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.justify-evenly {
    justify-content: space-evenly;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.slick-slider {
    width: 100%;
    margin: 0;
}

.eqlh {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.float-left {
    float: left;
}

.clear-both {
    clear: both;
}
/****************************************/


/**heder*/
.header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
    padding: 0px 40px;
    box-sizing: border-box;
    background: transparent;
    height: 100px;
    /*box-shadow: 0 0 10px rgb(0 0 0 / 20%);*/
}

.header.sticky {
    background: #222;
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
}
.header-main {
    padding: 0;
    border-radius: 4px;
    height: 76px;
    width: 100%;
}

.header .logo {
    padding: 0px 0px;
    width: 136px;
    float: left;
    margin-right: 0;
}

.header .logo img {
    width: 100%;
}

.header .logo a {
    font-size: 30px;
    text-transform: capitalize;
    color: #e91e63;
    font-weight: 600;
}

.header .nav-menu {
    padding: 0 15px;
    float: left;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .menu > .menu-item {
    display: inline-block;
    position: relative;
    padding: 0;
}
/*.menu-active {
    color: #88b04b !important;
}*/

.header .menu > .menu-item > a {
    /*display: block;
    padding: 25px 12px;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 16px;
    text-decoration: none;
    line-height: 1.6;
    border-bottom: 3px solid transparent;
    font-weight: 400;
    text-transform: uppercase;*/
    display: block;
    padding: 35px 20px;
    color: #fff;
    font-weight: 400;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1.6;
    border-bottom: 3px solid transparent;
}

.header .menu > .menu-item > a .plus {
    border: solid #fff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    vertical-align: middle;
    margin-top: -5px;
    margin-left: 6px;
    transform: rotate(45deg);
}

.header .menu > .menu-item > .plus {
    /*border: solid #fff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    vertical-align: middle;
    margin-top: -5px;
    margin-left: 6px;
    transform: rotate(45deg);*/
    border: solid #fff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    vertical-align: middle;
    margin-top: -5px;
    margin-left: 6px;
    transform: rotate(45deg);
    position: absolute;
    right: 5px;
    top: 47px;
}

/*.header .menu > .menu-item:hover > a .plus{
    border: solid #fff;
    border-width: 0 2px 2px 0;
}*/
.header .menu > .menu-item > a .plus:after {
    transform: translate(-50%,-50%) rotate(-90deg);
}

.header .menu > .menu-item:hover > a {
    color: #88b04b;
}

.header .menu > .menu-item > .sub-menu {
    box-shadow: 0px 0 10px rgb(0 0 0 / 20%);
    width: 235px;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #ffffff;
    padding: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

@media(min-width: 992px) {
    
    .header .menu > .menu-item-has-children:hover > .sub-menu {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .header .menu > .menu-item-has-children:hover > a .plus:after {
        transform: translate(-50%,-50%) rotate(0deg);
    }
}

.header .menu > .menu-item > .sub-menu > .menu-item {
    display: block;
}
/*.header .menu > .menu-item > .sub-menu > .menu-item > a:last-child{
    border-bottom: none;
}*/
.header .menu > .menu-item > .sub-menu > .menu-item > a {
    display: block;
    margin: 12px 20px;
    font-weight: 600;
    color: #000;
    transition: all 0.3s ease;
    text-transform: capitalize;
    
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid #ebebeb;
    display: flex;
    padding-bottom: 11px;
}

.header .menu > .menu-item > .sub-menu > .menu-item > a:before {
    display: block!important;
    content: '';
    width: 0;
    height: 2px;
    margin-top: 6px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    background-color: #4d8546;
}

.header .menu > .menu-item > .sub-menu > .menu-item:hover>a:before {
    width: 10px;
    margin-right: 5px;
}

.header .open-nav-menu {
    height: 34px;
    width: 40px;
    /* margin-right: 35px; */
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header .open-nav-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: #fff;
    position: relative;
}

.header .open-nav-menu span:before,
.header .open-nav-menu span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    box-sizing: border-box;
}

.header .open-nav-menu span:before {
    top: -7px;
}

.header .open-nav-menu span:after {
    top: 7px;
}

.header .close-nav-menu {
    height: 40px;
    width: 40px;
    background-color: #ffffff;
    margin: 0 0 15px 15px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
}

.header .close-nav-menu img {
    width: 16px;
}

.header .menu-overlay {
    position: fixed;
    z-index: 999;
    background-color: rgba(0,0,0,0.5);
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.right-header-part {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    text-align: right;
}

.logo-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow {
    display: flex;
    align-items: center;
    position: relative;
    top: 0;
    margin-left: 5px;
    float: right;
    left: 0;
}

@media(max-width: 991px) {
    .header .menu-overlay.active {
        visibility: visible;
        opacity: 1;
    }
    .header .menu>.menu-item>.plus {
        background: url(../images/arrow-dropdown.jpg);
        background-repeat: no-repeat;
        width: 76px;
        height: 37px;
        right: 20px;
        top: 15px;
        border-width: unset !important;
        border: none !important;
        transform: unset;
        right: 0 !important;
        top: 0px !important;
        padding: 0 !important;
        margin: 0;
    }
    .header .nav-menu {
        flex-direction: column;
        align-items: start;
        justify-content: start;
    }
    .right-header-part {
        margin-top: 20px;
        margin-left: 10px;
    }
    .header .nav-menu {
        position: fixed;
        right: -280px;
        visibility: hidden;
        width: 280px;
        height: 100%;
        top: 0;
        overflow-y: auto;
        background-color: #222222;
        z-index: 1000;
        padding: 15px 0;
        transition: all 0.5s ease;
    }

    .header .nav-menu.open {
        visibility: visible;
        right: 0px;
    }

    .header .menu  {
        width: 100%;
    }
    .header .menu > .menu-item {
        display: block;
        margin: 0;
    }

    .header .menu > .menu-item-has-children > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header .menu > .menu-item > a {
        color: #ffffff;
        padding: 12px 15px;
        border-bottom: 1px solid #333333;
    }

    .header .menu > .menu-item:first-child > a {
        border-top: 1px solid #333333;
    }

    .header .menu > .menu-item > a .plus:before, 
    .header .menu > .menu-item > a .plus:after {
        background-color: #ffffff;
    }

    .header .menu > .menu-item-has-children.active > a .plus:after {
        transform: translate(-50%,-50%) rotate(0deg);
    }

    .header .menu > .menu-item > .sub-menu {
        width: 100%;
        position: relative;
        opacity: 1;
        visibility: visible;
        border: none;
        background-color: transparent;
        box-shadow: none;
        transform: translateY(0px);
        padding: 0px;
        left: auto;
        top: auto;
        max-height: 0;
        overflow: hidden;
    }

    .header .menu > .menu-item > .sub-menu > .menu-item > a {
        padding: 12px 20px;
        color: #ffffff;
        border-bottom: 1px solid #333333;
    }

    .header .close-nav-menu,
    .header .open-nav-menu {
        display: flex;
    }
}
/**heder*/  

/******************/
/* Keyframe animations */
@keyframes anim-rotate {
  0% {
    transform: rotate(30deg);
  }
  50% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(30deg);
  }
}
@keyframes anim-updown {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(30px);
  }
  100% {
    transform: translateX(0);
  }
}
.elem-updown {
  animation: anim-updown 5s infinite;
}
@keyframes anim-move {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(30px);
  }
  100% {
    transform: translateX(0);
  }
}
.elem-move {
  animation: anim-move 5s infinite;
}
@keyframes anim-rotate-full {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.elem-rotate-full {
  animation: anim-rotate-full 12s infinite;
}
@keyframes anim-zoom {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
.elem-zoom {
  animation: anim-zoom 5s infinite;
}
/******************/
.top-banner {
     background: #fff;
     overflow: hidden;
     height: 100vh;
}

.banner-content {
    position: absolute;
    width: 40%;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    margin: 0 auto;
    text-align: center;
    right: 0;
}
.top-banner img {
    width: 100%;
    min-height: 780px;
    object-fit: cover;
    display: block;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 3000ms linear;
    -moz-transition: all 3000ms linear;
    -ms-transition: all 3000ms linear;
    -o-transition: all 3000ms linear;
    transition: all 3000ms linear;
}
.banner-slider .slick-active img{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    transition: all 3000ms linear;
}
.banner-text {
    position: absolute;
    left: 15%;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    margin: 0 auto;
}
.banner-text h5 {
    font-size: 16px;
    color: #fff;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}
.banner-text h1 {
    font-size: 64px;
    color: #fff;   
    line-height: 65px;
    font-weight: 700;
}
/*.banner-text h1:before{
    content: " ";
    display: block;
    background: #006dd4;
    border: none !important;
    width: 3em !important;
    height: 3em !important;
    margin: 0 !important;
    line-height: 1;
    position: absolute;
    top: -55px;
    left: -1.2em;
    z-index: -1;
}*/
.banner-text p {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    margin: 0 auto;
    margin-top: 40px;
    display: inline-block;
    line-height: 26px;
}
.banner-slider-contant {
    position: relative;
}
.banner-overlay-patch {
    transform: translate3d(0px, 0px, 0px);
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    position: absolute;
    transition: opacity 1s;
    pointer-events: none;
    width: 75%;
    height: 100%;
    left: -1px;
    top: 0;
    opacity: 0.5;
}
.top-banner .slick-dots {
        display: flex !important;
        justify-content: center;
        margin-top: -60px;
        z-index: 1;
        position: relative;
    }
    .top-banner .slick-dots li {
        margin-right: 10px !important;
    }
    .top-banner .slick-dots li button {
        width: 12px;
        height: 12px;
        border: none;
        border-radius: 50%;
        font-size: 0;
        background: #d3e3ff;
        cursor: pointer;
    }
    .top-banner .slick-dots li.slick-active button {
        background: #030aa4;
    }
.slick-slider .slick-prev {
    display: none !important;
}
.slick-slider .slick-next {
    display: none !important;
}
.top-banner .slide-arrow.prev-arrow {
    left: 20px;
}
.top-banner .slide-arrow.next-arrow {
    right: 20px;
}
.top-banner .slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    text-align: center;
    background: transparent;
    z-index: 1;
    cursor: pointer;
    opacity: 0.5;
}
.top-banner .slide-arrow.prev-arrow:before {
    content: ' \276E';
}
.top-banner .slide-arrow.next-arrow:before {
    content: ' \276F';
}
.top-banner .slide-arrow:before {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    margin: auto;
    font-size: 27px;
    color: #ffffff;
}
/**************************************************/
.welcome-to-my-word-sec {
    padding-top: 120px;
    padding-bottom: 60px;
    position: relative;
    /* overflow: hidden; */
    background: #fff;
}
.welcome-to-my-word-sec .de-intro-1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 200px;
}
.common-header1 {
    width: 52%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 72px;
}
.common-header1 h4 {
    position: relative;
    display: inline-block;
    line-height: 1;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: #222;
    font-weight: 700;
}
.common-header1 p {
    position: relative;
    display: block;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
    font-size: 1.25rem;
    font-weight: 300;
    color: #948daa;
}
.common-header1 h4:before, .common-header1 h4:after {
    content: '';
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-bottom-color: #88b04b;
    position: absolute;
    top: 2.5px;
}
.common-header1 h4:before {
    border-left-color: #88b04b;
    right: -30px;
}
.common-header1 h4:after {
    border-right-color: #88b04b;
    left: -30px;
}
.welcome-to-my-word-sec-box {
    border: 1px solid #e0e0e0;
    padding: 48px;
    border-radius: 12px;
    position: relative;
    background: #fff;
    transition: 0.3s;
    margin-bottom: 60px;
}
.welcome-to-my-word-sec-box:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #88b04b;
    transition: 0.3s;
    z-index: -1;
    border-radius: 12px;
}
.welcome-to-my-word-sec-box:hover:after {
    transform: rotate(-10deg);
}
.welcome-to-my-word-sec-box:hover {
    box-shadow: 10px 10px 50px rgb(0 0 0 / 10%);
    border-color: #fff;
}
.welcome-to-my-word-sec-box img{
    width: 48px;
    height: 48px;
    margin-bottom: 25px;
}
.welcome-to-my-word-sec-box h4{
    font-size: 28px;
    margin-bottom: 18px;
    color: #222;
    font-weight: 700;    
}
.welcome-to-my-word-sec-box p{
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 26px;
    color: #615978;
}
/**************************************************/
.home-about-us-sec {
    padding-bottom: 120px;
    padding-top: 120px;
    background: #f2f5fb;
    position: relative;
    /* overflow: hidden; */
}
.home-about-us-sec .de-about-1 {
    position: absolute;
    right: 10%;
    top: -8%;
}
.home-about-us-sec .de-about-2 {
    position: absolute;
    left: 5%;
    bottom: -3%;
    z-index: 2;
}
.home-about-us-sec-left {
    position: relative;
    text-align: center;
}

.home-about-us-sec-left .about-img-1{
    border-radius: 10px;
}

.home-about-us-sec-left .about-img-2{
    border-radius: 10px;
    width: 200px;
}
.home-about-us-sec .home-about-us-sec-left:before, .home-about-us-sec .home-about-us-sec-left:after {
    position: absolute;
    content: '';
}
.home-about-us-sec .home-about-us-sec-left:before {
    width: 60px;
    height: 60px;
    border-radius: 7px;
    border: 5px solid #88b04b;
    left: 30px;
    top: 20px;
}
.home-about-us-sec .home-about-us-sec-left:after {
    width: 36px;
    height: 36px;
    background: #88b04b;
    left: 332px;
    bottom: -50px;
    border-radius: 4px;
}
.home-about-us-sec .about-img-2 {
    position: absolute;
    left: 0;
    bottom: -50px;
}
.home-about-us-sec .home-about-us-sec-right {

}
.home-about-us-sec .home-about-us-sec-right h5{
    display: block;
    font-size: 18px;
    text-transform: uppercase;
    color: #88b04b;
    font-weight: 700;
    margin-bottom: 10px;
}
.home-about-us-sec .home-about-us-sec-right h2{
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 20px;
    color: #222;
    font-weight: 700;
}
.home-about-us-sec .home-about-us-sec-right p{
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 30px;
    color: #615978;
    margin-bottom: 1rem;
}
.home-about-us-sec .home-about-us-sec-right ul{
    margin-top: 36px;
    margin-bottom: 36px;
}
.home-about-us-sec .home-about-us-sec-right ul li{
    margin-bottom: 18px;
}
.home-about-us-sec .home-about-us-sec-right ul li h4{
    font-size: 16px;
    margin-bottom: 4px;
    text-transform: uppercase;
    color: #222;
    font-weight: 700;
}
.home-about-us-sec .home-about-us-sec-right ul li span{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #615978;
}
.home-about-us-sec .home-about-us-sec-right ul li span a{
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 26px;
    color: #615978;
    text-decoration: none;
}
/**************************************************/
.home-services-sec {
    padding-top: 120px;
    padding-bottom: 60px;
    position: relative;
    background-color: #333;
    /* overflow: hidden; */
    /*background-color: #333;
    background: url(../images/our-work-bg.jpg) no-repeat center center;
    background-size: cover;
    padding-bottom: 107px;
    position: relative;
    z-index: 1;
    padding-top: 120px;*/
}
.home-services-sec .de-intro-1 {
    position: absolute;
    right: 30px;
    top: 0;
    z-index: 1;
    width: 200px;
}
.home-services-sec .de-intro-2 {
    position: absolute;
    left: 5%;
    top: 12%;
    z-index: 2;
}
.home-services-sec .de-intro-3 {
    position: absolute;
    right: 5%;
    top: 48%;
    z-index: 2;
}
.home-services-sec .de-intro-4 {
    position: absolute;
    left: 5%;
    bottom: -2%;
    z-index: 2;
    width: 200px;
}
.common-header1.colr-white h4 {
    color: #fff;
}
.common-header1.colr-white p {
    color: #bdb9cb;
}
.home-services-sec-box {
    border: 1px solid #474747;
    padding: 60px 48px;
    border-radius: 12px;
    position: relative;
    transition: 0.3s;
    margin-bottom: 60px;
}

.home-services-sec-box:hover {
    box-shadow: 10px 10px 50px rgb(0 0 0 / 10%);
    border-color: #fff;
    background: #fff;
}
.home-services-sec-box img{
    width: 100%;
    height: 250px;
    margin: 0 auto 30px;
    display: block;
    object-fit: cover;
    filter: gray;
     -webkit-filter: grayscale(1);
    transition: all 0.5s linear;
}
.home-services-sec-box:hover img{
    filter: none;
    -webkit-filter: grayscale(0);
      -webkit-transform: scale(1.01);
    transition: all 0.5s linear;
}
.home-services-sec-box h4{
    font-size: 28px;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 700;
    text-align: center;
}
.home-services-sec-box:hover h4 {
    color: #222;
}
.home-services-sec-box:hover p {
    color: #615978;
}
.home-services-sec-box p{
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 26px;
    color: #bdb9cb;
    text-align: center;
}
/**************************************************/
.why-work-with-me-sec {
    padding-bottom: 120px;
    padding-top: 120px;
    position: relative;
    /* overflow: hidden; */
    background: #fff;
}
.why-work-with-me-sec .de-about-1 {
    position: absolute;
    right: 10%;
    top: -8%;
}
.why-work-with-me-sec .de-about-2 {
    position: absolute;
    left: 5%;
    bottom: -3%;
    z-index: 2;
}
.padd-left-50 {
    padding-left: 50px;
}
.padd-right-50 {
    padding-right: 50px;
}
.why-work-with-me-sec-left {
    position: relative;
    text-align: center;
}
.why-work-with-me-sec-left:before {
    position: absolute;
    content: '';
    width: 100px;
    height: 100px;
    border-radius: 7px;
    border: 5px solid #90af59;
    background: #90af59;
    left: -20px;
    bottom: -40px;
    z-index: 0;
}
.why-work-with-me-sec-left:after {
    position: absolute;
    content: '';
    width: 130px;
    height: 100px;
    border-radius: 7px;
    border: 5px solid #90af59;    
    right: -20px;
    top: -40px;
    z-index: 0;
}
.why-work-with-me-sec-left img{
    border-radius: 10px;
    box-shadow: -5px 5px 10px rgb(0 0 0 / 50%);
}
.why-work-with-me-sec .about-img-2 {
    position: absolute;
    left: 0;
    bottom: -200px;
}
.why-work-with-me-sec .why-work-with-me-sec-right {
    
}
.why-work-with-me-sec .why-work-with-me-sec-right.white-patch-box {
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(0 0 0 / 14%);
    position: relative;
    left: -160px;
    top: 120px;
    width: 110%;
}
.why-work-with-me-sec .why-work-with-me-sec-right h5{
    display: block;
    font-size: 18px;
    text-transform: uppercase;
    color: #88b04b;
    font-weight: 700;
    margin-bottom: 10px;
}
.why-work-with-me-sec .why-work-with-me-sec-right h2{
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 20px;
    color: #222;
    font-weight: 700;
}
.about-cont-bg {
    background: #f2f5fb;
    background: url(../images/about-cont-bg-1.jpg) no-repeat center center;
    background-size: cover;
    padding-bottom: 107px;
    position: relative;
    z-index: 1;
    padding-top: 120px;
    overflow: hidden;
    background-attachment: fixed;
}

.why-work-with-me-sec .why-work-with-me-sec-right p{
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 30px;
    color: #615978;
    margin-bottom: 1rem;
}
.why-work-with-me-sec .why-work-with-me-sec-right.why-elephants-common-slider-box h4{
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
}
.why-work-with-me-sec .why-work-with-me-sec-right.why-elephants-common-slider-box ul{
    margin-top: 20px;
}
.why-work-with-me-sec .why-work-with-me-sec-right.why-elephants-common-slider-box ul li{
    margin-bottom: 15px;
    font-family: 'Open Sans', sans-serif;
}
.why-work-with-me-sec .why-work-with-me-sec-right ul{
    margin-top: 36px;
    margin-bottom: 0;
}
.why-work-with-me-sec .why-work-with-me-sec-right ul li{
    margin-bottom: 36px;
    display: flex!important;
}
.why-work-with-me-sec .why-work-with-me-sec-right ul li img{
    width: 48px;
    height: 48px;
    margin-right: 25px;
}
.why-work-with-me-sec .why-work-with-me-sec-right ul li h4{
    font-size: 22px;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: #222;
    font-weight: 700;
}
.why-work-with-me-sec .why-work-with-me-sec-right ul li p{
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 26px;
    color: #615978;
}
/**************************************************/

/***********************************/
.testimonial {
    background-color: #333;
    background: url(../images/testimonial-bg.jpg) no-repeat center center;
    background-size: cover;
    padding-bottom: 107px;
    position: relative;
    z-index: 1;
    padding-top: 120px;
    overflow: hidden;
    background-attachment: fixed;
}
.testimonial-slider {
    margin-top: 60px;
}
.testimonial-slider .event-part-box{
    background: #fff;
    margin: 0 10px;
    border-radius: 10px;
    overflow: hidden;
}
.testimonial-slider .event-part-box a{
    text-decoration: none;
}
.testimonial .customers-container {
}
.testimonial-slider .slick-track {
    display: flex !important;
}
.testimonial-slider .slick-track .slick-slide {
    display: flex !important;
    height: inherit !important;
}
.testimonial-slider-box-area {
    margin: 0;
    position: relative;
}
.testimonial-slider-box {
    flex-direction: column;
    padding: 15px;
    margin: 0px 10px 35px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    padding-top: 40px;
}
.testimonial-slider-box-left {
    padding: 40px 30px 29px 40px;
    box-shadow: 0px 8px 0px 0px rgb(40 120 235 / 10%);
    background: #fff;
    border-radius: 10px;
}
.testimonial-slider-box-left h2 {
    font-size: 42px;
    color: #fff;
    text-align: center;
    background: #fe754f;
    width: 90px;
    height: 90px;
    border-radius: 100%;
    line-height: 90px;
    margin-right: 20px;
}
.testimonial-slider-box-left h4 {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #000;
    -webkit-transition: color .3s;
    transition: color .3s;
}
.testimonial-slider-box-left h5 {
    font-size: 16px;
    color: rgba(0,0,0,.5);
    font-weight: 400;
    margin-top: 10px;
}
.testimonial-slider-box-left p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 26px;
    color: #615978;
    text-align: center;
}
.testimonial-comma-imgs {
    margin-bottom: 20px;
    width: 75px;
    height: 75px;
    margin: -80px auto 40px;
    background: #88b04b;
    padding: 15px;
    box-sizing: border-box;
    border-radius: 50%;
} 

.testimonial-sec-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}
.testimonial-sec-img img {
    width: 100%;
}
.lient-details {
    display: flex;
    align-items: center;
    margin-top: 40px;
    justify-content: center;
}
.testimonial-slider-img {
    min-height: 173px;
    width: 100%;
}
.testimonial-slider-box img {
    padding: 0;
    width: 100%;
}
.testimonial-slider-cont {
    padding: 20px;
    position: relative;
    text-align: left;
}
.testimonial-slider .slick-dots {
    display: flex !important;
    justify-content: center;
    margin-top: 0px;
}
.testimonial-slider .slick-dots li {
    margin-right: 10px !important;
}
.testimonial-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    font-size: 0;
    background: #d3e3ff;
    cursor: pointer;
}
.testimonial-slider .slick-dots li.slick-active button {
    background: #e25f3a;
}
.testimonial-slider-box a:hover {
    color: #ff0000;
    transition: all 0.3s ease;
}
.testimonial-slider .slide-arrow.prev-arrow {
    right: 11%;
}
.testimonial-slider .slide-arrow.next-arrow {
    right: 3%;
}
.testimonial-slider .slide-arrow:hover {
    background: #fff;
    border: 4px solid #ff;
}
.testimonial-slider .slide-arrow:hover::before {
    color: #1d70ab;
}
.testimonial-slider .slide-arrow {
    position: absolute;
    top: -20%;
    width: 50px;
    height: 50px;
    text-align: center;
    z-index: 1;
    cursor: pointer;
    border: 2px solid #fff;
    opacity: 1;
    transition: all 0.3s linear;
    border-radius: 50%;
    background: transparent;
    display: none !important;
}
.slide-arrow.slick-disabled {
    opacity: 0.5;
    pointer-events: none;
}
.testimonial-slider .slide-arrow.prev-arrow:before {
    content: ' \279C';
    transform: translateY(-50%) scale(-1);
    top: 52%;
}
.testimonial-slider .slide-arrow.next-arrow:before {
    content: ' \279C';
}
.testimonial-slider .slide-arrow:before {
    position: absolute;
    top: 47%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    margin: auto;
    font-size: 22px;
    color: #fff;
}

/*.testimonial .testimonial-slider-box .testimonial-slider-box-left .lient-details {
    display: block;
    text-align: center;
}*/

/*.testimonial .testimonial-slider-box .testimonial-slider-box-left .lient-details h2 {
    margin: auto;
}*/

/*.testimonial .testimonial-slider-box .testimonial-slider-box-left h4 {
    margin-top: 27px;
}
*/

/*.testimonial .testimonial-slider-box .testimonial-slider-box-left .lient-details {
    margin-bottom: 56px;
}*/
/***********************************/
.from-my-blog-sec {
    padding-bottom: 36px;
    position: relative;
    padding-top: 120px;
    overflow: hidden;
    background: #fff;
}
.from-my-blog-sec .de-blog-1 {
    position: absolute;
    left: 0;
    top: 20px;
    width: 210px;
}
.from-my-blog-sec .de-blog-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 250px;
}
.from-my-blog-sec-cont-area {

}
.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-big{
    position: relative;
}
.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-big .from-my-blog-sec-cont-area-big-cont{
    position: absolute;
    left: 48px;
    bottom: 48px;
    right: 48px;
}
.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-big .from-my-blog-sec-cont-area-big-cont ul{
    margin-bottom: 10px;
}
.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-big .from-my-blog-sec-cont-area-big-cont ul li{
    display: inline-block;
    margin-right: 12px;
    font-size: 16px;
    color: #fff;
}
.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-big .from-my-blog-sec-cont-area-big-cont ul li svg{vertical-align: bottom;}
.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-big .from-my-blog-sec-cont-area-big-cont ul li span{
    
}
.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-big .from-my-blog-sec-cont-area-big-cont h2{
    font-size: 30px;
    color: #fff;
    font-weight: 700;
    line-height: 40px
}
.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-big .from-my-blog-sec-cont-area-big-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-big .from-my-blog-sec-cont-area-big-img img{display: block;}
.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-big .from-my-blog-sec-cont-area-big-img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}
.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-big:hover .from-my-blog-sec-cont-area-big-img:after {
    background: rgba(0, 0, 0, 0.5);
}

.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small{
    position: relative;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    transition: 0.3s all linear;
    margin-bottom: 20px;
}
.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small:hover .from-my-blog-sec-cont-area-small-img {
    opacity: 1;
    transition: 0.3s all linear;
}
.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small:hover .from-my-blog-sec-cont-area-small-cont ul li{
    color: #fff;
    transition: 0.3s all linear;
}
.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small:hover .from-my-blog-sec-cont-area-small-cont h2{
    color: #fff;
    transition: 0.3s all linear;
}
.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small .from-my-blog-sec-cont-area-small-cont{
    position: absolute;
    left: 30px;
    bottom: 30px;
    right: 30px;
    top: 30px;
}
.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small .from-my-blog-sec-cont-area-small-cont ul{
    margin-bottom: 10px;
    position: absolute;
    height: 100%;
    bottom: 0;
    margin-bottom: 0;
    width: 100%;
}
.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small .from-my-blog-sec-cont-area-small-cont ul li{
    display: inline-block;
    margin-right: 12px;
    font-size: 16px;
    color: #948daa;
    transition: 0.3s all linear;
}
.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small .from-my-blog-sec-cont-area-small-cont ul li.from-my-blog-sec-cont-area-small-cont-top{
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}
.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small .from-my-blog-sec-cont-area-small-cont ul li.from-my-blog-sec-cont-area-small-cont-bottom{
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
}
.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small .from-my-blog-sec-cont-area-small-cont ul li svg{
    
vertical-align: bottom;
}
.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small .from-my-blog-sec-cont-area-small-cont ul li span{
    
}
.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small .from-my-blog-sec-cont-area-small-cont h2{
    font-size: 22px;
    color: #222;
    font-weight: 700;
    line-height: 33px;
    margin-top: 30px;
    transition: 0.3s all linear;
}
.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small .from-my-blog-sec-cont-area-small-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    opacity: 0;
    transition: 0.3s all linear;
}
.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small .from-my-blog-sec-cont-area-small-img img{
    display: block;
}
.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small .from-my-blog-sec-cont-area-small-img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}
.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small:hover .from-my-blog-sec-cont-area-small-img:after {
    background: rgba(0, 0, 0, 0.5);
}
/**************************************************/
.get-in-touch-sec {
    position: relative;
    padding: 100px 0;
    background: url(../images/get-in-touch-sec-bg.jpg) no-repeat center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: bottom;
    background-size: cover;
    text-align: center;
}
.get-in-touch-sec-info-box {
    display: flex;
    align-items: center;
}
.get-in-touch-sec-info-box .get-in-touch-sec-info-box-icon{    
    width: 70px;    
    height: 70px;    
    background: #90af59;    
    overflow: hidden;    
    border-radius: 50%;    
    position: relative;
}
.get-in-touch-sec-info-box .get-in-touch-sec-info-box-icon svg{    
    position: absolute;    
    top: 50%;    
    left: 50%;    
    transform: translate(-50%, -50%);    
    fill: #fff;    
    width: 30px;    
    height: 30px;
}
.get-in-touch-sec-info-box .get-in-touch-sec-info-box-text{    
    width: 80%;    
    margin-left: 30px;
    text-align: left;
}
.get-in-touch-sec-info-box .get-in-touch-sec-info-box-text h4{
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    -webkit-transition: color .3s;
    transition: color .3s;
}
.get-in-touch-sec-info-box .get-in-touch-sec-info-box-text p{
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    margin-top: 10px;
}
.get-in-touch-sec-info-box .get-in-touch-sec-info-box-text p a{
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    margin-top: 10px;
    text-decoration: none;
}

.get-in-touch-sec-map-form {
    margin-top: 80px;
}

.fgroup.used label, .fgroup input:focus ~ label, .fgroup input.used ~ label, .fgroup input.used ~ label, .fgroup input.inused ~ label, .fgroup textarea:focus ~ label, .fgroup textarea.used ~ label, .fgroup textarea.inused, .fgroup select:focus ~ label, .fgroup select.used ~ label, .fgroup select.inused ~ label {
    top: 0;
    left: 10px;
    font-size: 12px;
    background: transparent;
    color: #222;
    padding: 3px;
}
.fgroup label {
    position: absolute;
    top: 24px;
    left: 15px;
    transition: all 0.3s;
    pointer-events: none;
    padding: 0px;
    font-weight: 400;
    font-size: 16px;
    color: #222;
    display: revert;
}
.fgroup {
    position: relative;
    text-align: left;  
    /*  margin-bottom: 20px;*/
}
.get-in-touch-sec-map{
    overflow: hidden;
    border-radius: 10px;
}
.get-in-touch-sec-form {
    padding-left: 80px;
}
.get-in-touch-sec-map-form .form-cont input, .get-in-touch-sec-map-form .form-cont textarea {
    width: 100%;
    padding: 21px 14px;
    margin: 0px 0 20px;
    color: #222;
    font-weight: 400;
    font-size: 16px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 10px;
    outline: none;
}
.get-in-touch-sec-map-form .form-cont input::placeholder, .get-in-touch-sec-map-form .form-cont textarea::placeholder {
    color: #222;
}
.get-in-touch-sec-map-form .form-cont textarea {
    min-height: 110px;
    resize: none;
}
.get-in-touch-sec-map-form .form-cont input:focus {
    top: -5px;
}
.get-in-touch-sec-map-form .form-cont select {
    width: 100%;
    padding: 20px;
    margin: 15px 0;
    color: #000;
    border: none;
    font-weight: 400;
    font-size: 15px;
    box-sizing: border-box;
    border-radius: 5px;
    background-position: 0 0;
    outline: -webkit-focus-ring-color auto 0px;    /* -webkit-appearance: none;
       -moz-appearance: none; */
    background: #fff;
}
.get-in-touch-sec-map-form .form-cont input::placeholder, .get-in-touch-sec-map-form .form-cont textarea::placeholder {
    color: #222;
}
/**************************************************/

.vision-mission-sec {
    position: relative;
    padding: 0px 0;
    background: #fff;
}
.pad-top-100 {
    padding-top: 100px;
}
.pad-bot-100 {
    padding-bottom: 100px;
}
.vision-mission-sec .row  {
    /* align-items: center; */
}
.vision-mission-sec .row .col-lg-6 {
    padding: 0;
    margin: 0;
}
.vision-mission-sec-img {
    width: 100%;
}
.vision-mission-sec-img img{
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
}
.vision-mission-sec-cont {
    padding: 100px;
    box-shadow: 0 0 20px rgb(0 0 0 / 50%);
}
.vision-mission-sec-cont h2{
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
}
.vision-mission-sec-cont p{
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 30px;
    color: #fff;
    margin-bottom: 1rem;
}
.vision-mission-sec-cont.color1{
    background:  #455054;
}
.vision-mission-sec-cont.color2{
    background:  #318798;
}
.vision-mission-sec-cont.color3{
    background:  #d55669;
}
.vision-mission-sec-cont.color4{
    background:  #e79d46;
}
.vision-mission-sec-cont ul{

}
.vision-mission-sec-cont ul li{
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 30px;
    color: #fff;
    margin-bottom: 1rem;
    padding-left: 44px;
    margin-bottom: 25px;
    background: url(../images/bullet-icon-img.png) no-repeat;
    list-style: none;
    background-position: 0 5px;
}

.contact-form-address {
    background: #333;
}
.contact-form-address .get-in-touch-sec-form {
    padding-right: 80px;
}
/***********************************/
.news-sec {
    padding: 100px 0;
    position: relative;

}
.news-sec-box {
    padding: 6px;
    text-align: center;
    margin: 10px 6px 35px;
    position: relative;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 0 10px rgb(0 0 0 / 16%);
    border-radius: 10px;
    height: 280px;
}
.news-sec-box:hover img {
    transform: scale(1.02);
    transition: 0.3s all linear;
}
.news-sec-box img{
    width: 100%;
    object-fit: cover;
    height: 100%;
    transition: 0.3s all linear;
}

.portfolio-images {
    padding: 85px 0 65px;
    overflow: hidden;
}

.lg-toolbar .lg-close:after {
    content: ' \2715' !important;
}

.lg-actions .lg-next:before {
    content: ' \276F' !important;
}

.lg-actions .lg-prev:after {
    content: ' \276E' !important;
}

.lg-outer .lg-toogle-thumb {
    display: none;
}

.lg-outer .lg-thumb {
    margin: auto;
}

.lg-outer .lg-item.lg-current img {
    border-radius: 10px;
}

.portfolio-images .tz-gallery li img {
    width: 100%;
    height: 278px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px 10px 0 0;
}

.portfolio-images .tz-gallery ul {
    margin: 20px 15px;
    /* border: 1px solid #000; */
    box-shadow: 0 0 22px 11px #f8f8f8;
}

.portfolio-images .tz-gallery ul .event-slider-cont {
    padding: 20px;
    position: relative;
    text-align: left;
}

.portfolio-images .tz-gallery ul .event-slider-cont a {
    font-size: 20px;
    color: #292929;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 32px;
    text-decoration: none;
}

.portfolio-images .tz-gallery ul .event-slider-cont a small {
    font-size: 16px;
    color: #959595;
    font-weight: 500;
}

.portfolio-images .tz-gallery ul .event-slider-cont a span {
    width: 27px;
    height: 27px;
    top: 6px;
    right: -3px;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.portfolio-images .tz-gallery ul .event-slider-cont a span svg {
    top: 0px;
    left: -30px;
    position: absolute;
    transition: all 0.3s ease;
}

.portfolio-images .tz-gallery ul li:hover b {
    color: #fb7901;
}

.portfolio-images .tz-gallery ul li:hover .event-slider-cont a span svg {
    left: 0;
    color: #fb7901;
}

#lg-actual-size,
#lg-zoom-out,
#lg-actual-size,
#lg-download,
.lg-autoplay-button,
#lg-zoom-in,
.lg-fullscreen {
    display: none;
}

.portfolio-images .lightbox:hover img {
    transform: scale(1.1);
    opacity: 1;
}

.portfolio-images .portfolio-img-box {
    height: 255px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    border-radius: 6px;
}

.portfolio-images .portfolio-img-box img {
    height: 100%;
    opacity: 0.9;
    transition: 0.3s linear all;
    width: 100%;
    border-radius: 6px;
}

.portfolio-images .portfolio-img-box .hover-slider-img {
    opacity: 0;
    transition: 0.25s all linear;
}

.portfolio-images .portfolio-img-box .click-to {
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.25s all linear;
}

.portfolio-images .portfolio-img-box a span {
    width: 27px;
    height: 27px;
    top: 6px;
    right: -3px;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.portfolio-images .portfolio-img-box .click-to .search-btn {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(-50%);
    margin: auto;
    color: #fff;
}

.portfolio-images .portfolio-img-box a span svg {
    top: 0px;
    position: absolute;
    left: -30px;
    transition: all 0.3s ease;
}

.portfolio-images .portfolio-img-box .click-to .search-btn svg {
    width: 25px;
    height: 25px;
}

.portfolio-images .portfolio-img-box:hover .img-zoom {
    transform: scale(1.1);
    transition: 0.25s all linear;
}

.portfolio-images .portfolio-img-box:hover .main-slider-img {
    opacity: 0;
    transition: 0.25s all linear;
}

.portfolio-images .portfolio-img-box:hover .hover-slider-img {
    opacity: 1;
    transition: 0.3s all linear;
    position: absolute;
    top: 0;
    left: 0;
}

.portfolio-images .portfolio-img-box:hover .click-to {
    opacity: 1;
    transition: 0.25s all linear;
}

.portfolio-images .portfolio-img-box:hover a span svg {
    left: 0px;
    transition: all 0.3s ease;
}

.portfolio-images .column {
    flex: 25%;
    max-width: 50%;
    padding: 0 10px 40px;
}

.portfolio-images .column img {
    margin-top: 40px;
    vertical-align: middle;
    width: 100%;
    transition: 0.5s linear all;
    opacity: 0.8;
}

.portfolio-images .column img:hover {
    transform: scale(1.05);
    transition: 0.5s linear all;
    opacity: 1;
}
.portfolio-images.testimonials-sec .event-part-box {
    padding: 0;
    width: 100%;
}
.portfolio-images.testimonials-sec .event-part-box a{
    text-decoration: none;
}
.portfolio-images.video-sec .event-part-box {
    border: 1px solid #ddd;
    transition: all 0.3s linear;
}
.portfolio-images.video-sec .event-part-box:hover {
    border: 1px solid transparent;
    transition: all 0.3s linear;
}
.portfolio-images .event-part-box {
    position: relative;
    cursor: pointer;
    height: auto;
    object-fit: cover;
    object-position: center;
    margin: 15px 5px;
    overflow: hidden;
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    position: relative;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 0 10px rgb(0 0 0 / 15%);
    box-shadow: 10px 20px 25px #0000000d;
    border-radius: 10px;
    transition: all 0.3s linear;
    width: 100%;
}
.portfolio-images .event-part-box:hover {
    box-shadow: #0003 -10px 20px 25px;
    translate: 7px -7px;
    translate: 0px -10px;
    transition: all 0.3s linear;
}

.portfolio-images .mediabox {
    /*position: absolute;
    height: 100%;
    width: 100%;
    top: 0;*/
    text-decoration: none;
    /* position: relative; */
    cursor: pointer;
}
.portfolio-images.video-sec .mediabox .play-icon{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    box-sizing: border-box;
    left: 0;
    top: 0;
    background: rgb(0 0 0 / 20%);
    cursor: pointer;
}
.portfolio-images.video-sec .mediabox .play-icon img.youtube-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s linear;
    width: 80px;
    height: auto;
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}
.portfolio-images.video-sec .event-part-box:hover .mediabox .play-icon img{
    transform: translate(-50%, -50%) scale(1.1);
    transition: all 0.3s linear;
}
.portfolio-images.testimonials-sec .mediabox2:after {
    position: absolute;
    top: 220px;
    right: 15px;
    display: block;
    width: 78px;
    height: 52px;
    content: "";
    /* background-color: #ffffff80; */
    background-image: url(../images/play-triangle.png);
    background-repeat: no-repeat;
    background-position: 0;
    background-size: 77px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
  transition: all 0.3s linear;
}
.portfolio-images.testimonials-sec .event-part-box:hover .mediabox:after {
    -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
  filter: grayscale(0%);
  transition: all 0.3s linear;
}

.portfolio-images .mediabox:hover + .event-content p{
    color: #88b04b;
}

.testimonials-sec h2 {
    font-size: 32px;
    line-height: 42px;
    margin-top: 60px;
    color: #90af59;
    font-weight: 600;
    border-bottom: 4px solid #90af59;
    display: inline-block;
    margin-bottom: 20px;
}

.news-header ul li a{
    color: #565054;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
}

.img-box-event {
    position: relative;
}

.portfolio-images .img-box-event img {
    width: 100%;
    height: 278px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px 10px 0 0;
    position: relative;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  transition: all 0.3s linear;
}
.event-part-box:hover .img-box-event img {
    -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
  filter: grayscale(0%);
  transition: all 0.3s linear;
}

.event-content {
    padding: 15px 20px 0;
    position: relative;
    /* text-align: left; */
    display: block;
}

.testimonials-sec .event-content  {
    text-align: left;
    padding-bottom: 20px;
}
.event-content h4 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 15px;
    font-style: italic;
    color: #292929;
    font-weight: 500;
    text-decoration: none;
}
.testimonials-sec .event-content p {
    color: #8999aa;
}
.event-content p {
    font-size: 18px;
    color: #292929;
    font-weight: 500;
    line-height: 28px;
    text-decoration: none;
}

/***********************************/

footer{
    background: #fff;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding: 110px 0 30px 0;
    overflow: hidden;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding: 110px 0 30px 0;
    /*position: sticky; 
    bottom: 0;
    z-index: -1;*/
}
footer .box ul{
    list-style-type: none;
    padding-left: 0;
}
footer .box ul li{
    text-decoration: none;
    
    font-size: 16px;
    color: #6d6d6d;
    width: 100%;
}
footer .box ul li a{
    text-decoration: none;
    
    font-size: 16px;
    color: #6d6d6d;
    width: 100%;
    padding-bottom: 2px;
}
footer .box ul li a svg{
    vertical-align: middle;
    margin-right: 10px;
}
footer .box ul li a img{
    margin-right: 16px;
}
footer .box ul li a:hover{
    border-bottom: 1px solid #fff;
}
footer .box h3{
    margin: 18px 0;
    font-size: 22px;
    color: #90af59;
    position: relative;
    height: 25px;
    font-weight: 600;
}

footer .box p{
    margin-top: 12px;
    text-align: left;
    line-height: 24px;
    
    font-size: 16px;
    color: #6d6d6d;
    margin-bottom: 20px;
}
footer .box ul li{
    margin-bottom: 0.5rem;
    line-height: 28px;
}
footer .underline_text ul li{
    margin-bottom: 15px;
    line-height: 25px;
    position: relative;
}
footer .underline_text ul li:after{
    content: "";
    border-bottom: 1px solid #6d6d6d;
    width: 120px;
    position: absolute;
    left: 0;
    bottom: -4px;
}
.location_img {
  float: left;
  margin-top: 3px;
}
.location_text {
  float: left;
  width: 84%;
  margin-left: 14px;
}
.clear {
    clear: both;
}

.link_over {
    cursor: pointer;
    font-weight: 700 !important;
}

.link_over:hover {
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}
.copyright-area {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #dadada;
    padding-top: 30px;
    margin: 93px auto 0;
}
.copyright-area a {
    margin-left: 10px;
    background: #90af59;
    width: 50px;
    height: 50px;
    display: inline-block;
    border-radius: 50%;
    position: relative;
    color: #90af59;
}
.copyright-area a svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    fill: #fff;
}
.copyright-text{
    text-align: left;
    line-height: 24px;
    font-size: 16px;
    color: #6d6d6d;
}
.copyright-text a{
    background: transparent;
    color: #90af59;
    text-decoration: none;
}
/***********************************/
.home-guarantee-job-courses {
    position: relative;
    padding: 100px 0;
    /*overflow: hidden;*/
    display: block;
    background: #fff;
}

.common-header {
    display: block;
    margin-bottom: 40px;
}

.common-header h2 {
    color: #111;
    font-size: 46px;
    line-height: 56px;
    font-weight: bold;
}

.common-header p {
    color: #f5c142;
    font-size: 18px;
    line-height: 28px;
    margin-top: 10px;
}

.courses-list-box {
    position: relative;
    margin-bottom: 40px;
    float: left;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ccc;
    transition: all 0.3s linear;
    bottom: 0px;
}

.courses-list-box:hover {
    box-shadow: 0px 5px 10px rgb(0 0 0 / 10%);
    bottom: 10px;
    border: 1px solid transparent;
    transition: all 0.3s linear;
}

.courses-list-img {
    position: relative;
}

.courses-list-img img {
    width: 100%;
    display: block;
}

.courses-list-img .courses-list-img-patch {
    position: absolute;
    top: 0;
    left: 0px;
    background: linear-gradient(to bottom, rgba(101, 100, 96, 0.8) 0%, rgba(101, 100, 96, 0) 35%, rgba(101, 100, 96, 0) 45%, rgba(101, 100, 96, 0.8) 100%);
    padding: 20px;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}

.courses-list-img .courses-list-img-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.courses-list-img .courses-list-img-text h4 {
    font-size: 25px;
    line-height: 25px;
    color: #fff;
    text-transform: uppercase;
}

.courses-list-cont {
    /*border: 1px solid #f1f1f2;*/
    padding: 20px;
    box-sizing: border-box;
    float: left;
    border-radius: 0 0 10px 10px;
}

.courses-list-cont h3 {
    color: #111;
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
}

.courses-list-cont p {
    color: #111;
    font-size: 16px;
    line-height: 26px;
    margin-top: 10px;
    float: left;
    font-weight: 300;
    margin-bottom: 20px;
}
/***********************************/
a.common-btn {
    border-radius: 5px;
    padding: 16px 45px 16px 25px;
    color: #fff;
    background: #88b04b;
    border: 1px solid #88b04b;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    line-height: 16px;
    cursor: pointer;
    width: auto;
    height: 16px;
    position: relative;
    overflow: hidden;
}
a.common-btn span {
    position: relative;
    z-index: 1;
    left: 0;
}
a.common-btn b {
    position: absolute;
    right: 20px;
    top: 16px;
    z-index: 1;
}
a.common-btn:after {
    content: "";
    background: #fff;
    width: 0%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
a.common-btn:hover::after {
    width: 100%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
a.common-btn:hover {
    color: #88b04b;
    border: 1px solid #88b04b;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.btn-center {
    display: flex;
    justify-content: center;
}
/***********************************/
.video-bg {
    width: 200px;
}
.video-bg video{
    width: 100%;
}
.top-right-0 {
    position: absolute;
    top: 0;
    right: 40px;
    width: 200px;
}
.bott-left-0 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
}
.right-top-80 {
    top: -80px;
    z-index: 2;
}
.left-bott-80 {
    bottom: -80px;
}
/***********************************/
.banner-img-section {
    position: relative;
    overflow: hidden;
}

.heading2 {
    font-size: 48px;
    color: #222;
    font-weight: 700;
}

.banner-img-section:before {
    content: " ";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
}

.banner-img-section .banner-img img {
    display: block;
    height: 400px;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.banner-img-section.about-binita-rege-sec .banner-img img {
    object-position: 0 72%;
}

.banner-img-section .content-part {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    transform: translateY(-50%);
}

.banner-img-section .content-part .heading2 {
    color: #fff;
    text-transform: capitalize;
}

.banner-img-section .content-part h5 {
    text-align: center;
    display: block;
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    margin-bottom: 17px;
}

.banner-img-section .content-part p {
    color: #fff;
    margin-top: 20px;
}
/***********************************/
.full-img-banner {
    background: url(../images/full-img-banner.jpg) no-repeat center center;
    background-size: cover;
    padding-bottom: 300px;
    position: relative;
    z-index: 1;
    padding-top: 300px;
    overflow: hidden;
    /*background-attachment: fixed;*/
}
.full-img-banner2 {
    background: url(../images/full-img-banner2.jpg) no-repeat center center;
    background-size: cover;
    padding-bottom: 300px;
    position: relative;
    z-index: 1;
    padding-top: 300px;
    overflow: hidden;
    /*background-attachment: fixed;*/
}
/***********************************/
.about-anand-shinde-journey-sec {
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
    background: #f2f5fb;
}
.about-anand-shinde-journey-box {
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    border: 1px solid #ccc;
    position: relative;
    margin: 0 40px 80px;
    transition: all 0.3s linear;
    bottom: 0px;
}
.about-anand-shinde-journey-box:hover {
    box-shadow: 0px 5px 10px rgb(0 0 0 / 10%);
    bottom: 10px;
    border: 1px solid transparent;
    transition: all 0.3s linear;
}
.about-anand-shinde-journey-box h5{
    font-size: 20px;
    line-height: 35px;
    color: #615978;
}
.about-anand-shinde-journey-box span{
    position: absolute;
    top: -40px;
    left: -40px;
    font-size: 80px;
    font-weight: 800;
    text-transform: uppercase;
    -webkit-text-stroke: 4px #90af59;
    color: transparent;
    border: 4px solid #90af59;
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 76px;
    background: #fff;
    border-radius: 10px;
}
.about-anand-shinde-journey-box:hover span {
    -webkit-text-stroke: 4px #fff;
    border: 4px solid #90af59;
    background: #90af59;
    transition: all 0.3s linear;
}

/***********************************/
.breadcrumb {
    margin-bottom: 20px;
}

.breadcrumb .breadcrumb-item {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    font-weight: 500 !important;
    font-size: 12px !important;
}

.breadcrumb .breadcrumb-item a {
    text-decoration: none;
    color: #fff;
    font-weight: 500 !important;
    font-size: 12px !important;
    margin-bottom: 0;
}

.breadcrumb .breadcrumb-item.active,
.breadcrumb .breadcrumb-item a:hover {
    color: #90af59;
}

.breadcrumb-item::after {
    float: right;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    color: #fff;
    content: var(--bs-breadcrumb-divider, "/");
}

.breadcrumb-black-text .breadcrumb-item::after {
    color: #000;
}
.team-member {
    padding: 120px 0;
    background: #f2f5fb;
}

.team-member h5 {
    font-weight: 600;
    font-size: 51px;
    color: #000;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    /* text-transform: uppercase; */
    margin-top: 100px;
}

/*.team-member h1:after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: 0;
    left: 0;
    margin: auto;
    width: 100px;
    height: 10px;
    background: red;
}*/

.team-member-slider .slick-track {
    display: flex !important;
}

.team-member-slider .slick-track .slick-slide {
    display: flex !important;
    height: inherit !important;
}

.team-member-slider-box:hover .team-member-black-patch {
    bottom: 0%;
    transition: all 0.3s ease 0s;
}

.team-member-slider-box:hover h2 {
    display: none;
    transition: all 0.3s ease 0s;
}

.team-member-slider-box {
    flex-direction: column;
    padding: 20px;
    text-align: center;
    margin: 10px 20px 35px;
    position: relative;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 0 15px rgb(0 0 0 / 20%);
    border-radius: 10px;
    /*border: 1px solid #ccc;*/
}
.box-spaceing .team-member-slider-box {
    margin: 10px 00px 35px;
}

.team-member-slider-img {
    min-height: 173px;
    cursor: pointer;
    width: 100%;
}

.team-member-slider-box img {
    padding: 0;
    width: 100%;
    display: block;
    border-radius: 10px;
}

.team-member-black-patch {
    background: #fff;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: -85px;
    padding: 10px 20px 20px 20px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    display: flex;
    flex-direction: column;
}

.team-member-slider-box h2 {
    position: relative;
    line-height: 26px;
    text-transform: uppercase;
    text-align: left;
    color: #000;
    font-size: 20px;
    /* -webkit-writing-mode: vertical-lr; */
    -ms-writing-mode: tb-lr;
    /* writing-mode: vertical-lr; */
    bottom: 0;
    transition: all 0.3s ease 0s;
}

.team-member-slider-box h3 {
    font-weight: 400;
    font-size: 24px;
    color: #f35151;
    padding: 0;
    text-align: left;
    margin: 10px 0 16px;
    line-height: 26px;
}

.box-spaceing .team-member-slider-box h3 {
    font-size: 20px;
}
.box-spaceing .team-member-slider-box {
    padding: 12px;
}

.team-member-slider-box a {
    font-weight: 400;
    font-size: 30px;
    color: #f35151;
    padding: 0;
    text-align: left;
    margin: 0 0 16px;
    line-height: 26px;
    text-decoration: none;
    left: 0;
}

.team-member-slider-box p {
    font-size: 16px;
    font-weight: 400;
    color: #777;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    padding-right: 0;
    text-align: left;
}

.team-member-slider-box a:hover {
    color: #ff0000;
}

.team-member-black-patch-link {
    display: flex;
    margin: 11px 0 0;
}

.team-member-black-patch-link a {
    margin-right: 10px;
}
/***********************************/
.our-work-sec.why-work-with-me-sec .why-work-with-me-sec-right.white-patch-box {
    left: -120px;
    top: 50%;
    width: 100%;
}
.mar-top-20 {
    margin-top: 20px;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}
.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 0.3rem;
    outline: 0;
}
.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}
.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}
.modal-backdrop.fade {
    opacity: 0;
}
.modal-backdrop.show {
    opacity: 0.5;
}
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}
.our-work-popup .modal-dialog {
    max-width: 602px
}
.our-work-popup .modal-header {
    border-bottom: 1px solid #ddd
}
.our-work-popup .modal-header .modal-title {
    font-size: 22px;
    line-height: 32px;
    color: #000b33;
    font-weight: 700;
    width: 88%;
}
.our-work-popup .modal-header .modal-title span {
    font-size: 16px;
    line-height: 20px;
    color: #000b33;
    font-weight: 400;
}
.our-work-popup .modal-header img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 10px;
    object-fit: cover;
}
.our-work-popup .modal-dialog {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(-50%) !important;
}
.our-work-popup .modal-header .btn-close {
    width: 10px;
    height: 10px;
    background: #48572c;
    position: absolute;
    top: 18px;
    right: 22px;
    border-radius: 100%;
    border-width: 0;
    color: #fff;
    padding: 14px;
    cursor: pointer
}
.our-work-popup .modal-header .btn-close svg {
    width: 15px;
    height: 15px;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    margin: auto;
}
.our-work-popup .modal-body {
    padding: 20px;
    max-height: 400px;
    overflow: auto;
    padding-bottom: 0;
    margin-bottom: 20px
}
.our-work-popup .modal-body strong {
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    color: #000b33;
    display: block;
    margin-bottom: 15px
}
.our-work-popup .modal-body p {
    color: #606060;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
}
.our-work-popup .modal-body h4 {
    color: #606060;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
}
.our-work-popup .modal-body p:last-child {
    margin-bottom: 0px;
}
.our-work-popup .modal-body .list-type {
    padding-left: 47px;
    margin: 21px 0 34px 0
}
.our-work-popup .modal-body .list-type li {
    margin-bottom: 15px;
    font-size: 15px;
    color: #606060;
    line-height: 22px;
    position: relative
}
.our-work-popup .modal-body .list-type li:before {
    content: " ";
    width: 20px;
    height: 20px;
    background: url(../images/bullet-icon-img.png) no-repeat;
    position: absolute;
    top: 3px;
    left: -32px
}
.our-work-popup .modal-body .list-type li .innter-list {
    padding-left: 30px;
    margin: 20px 0
}
.our-work-popup .modal-body .list-type li .innter-list li:before {
    content: '\2713';
    display: inline-block;
    color: #90af59;
    padding: 0 6px 0 0;
    position: absolute;
    left: -27px;
    font-weight: 800;
    background: none;
}
.our-work-popup .modal-body .form-section .mb-3 .form-control {
    padding: 17px 23px;
    border-radius: 10px;
    background: #f8f8f8;
    outline: 0;
    border: 0;
    font-size: 16px;
    color: #606060;
    font-weight: 500;
    resize: none
}
.our-work-popup .modal-body .form-section .red-btn {
    padding: 14px 39px;
    display: block;
    width: 170px;
    margin: auto;
    margin-top: 20px;
    cursor: pointer
}
.our-work-popup .modal-body .form-section .red-btn.submiting_btn {
    width: 230px
}
.our-work-popup .modal-body .file-upload {
    display: block;
    text-align: center;
    font-size: 12px
}
.our-work-popup .modal-body .file-upload .file-select {
    display: block;
    border: 2px solid #606060;
    color: #34495e;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    text-align: left;
    background: #fff;
    overflow: hidden;
    position: relative
}
.our-work-popup .modal-body .file-upload .file-select .file-select-button {
    background: #606060;
    padding: 0 10px;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    font-weight: 600;
    vertical-align: top;
    color: #fff;
    text-transform: capitalize
}
.our-work-popup .modal-body .file-upload .file-select .file-select-name {
    line-height: 40px;
    display: inline-block;
    padding: 0 10px;
    font-size: 13px;
    font-weight: 500;
    width: 48%;
    color: #000
}
.our-work-popup .modal-body .form-section p {
    font-size: 13px;
    margin-top: 6px;
    color: #000b33
}
.our-work-popup .modal-body .file-upload .file-select:hover {
    border-color: #34495e;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out
}
.our-work-popup .modal-body .file-upload .file-select:hover .file-select-button {
    background: #34495e;
    color: #fff;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out
}
.our-work-popup .modal-body .file-upload.active .file-select {
    border-color: #3fa46a;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out
}
.our-work-popup .modal-body .file-upload.active .file-select .file-select-button {
    background: #3fa46a;
    color: #fff;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out
}
.our-work-popup .modal-body .file-upload .file-select input[type=file] {
    z-index: 100;
    cursor: pointer;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0
}
.our-work-popup .modal-body .file-upload .file-select.file-select-disabled {
    opacity: .65
}
.our-work-popup .modal-body .file-upload .file-select.file-select-disabled:hover {
    cursor: default;
    display: block;
    border: 2px solid #606060;
    color: #34495e;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    margin-top: 5px;
    text-align: left;
    background: #fff;
    overflow: hidden;
    position: relative
}
.our-work-popup .modal-body .file-upload .file-select.file-select-disabled:hover .file-select-button {
    background: #606060;
    color: #666;
    padding: 0 10px;
    display: inline-block;
    height: 40px;
    line-height: 40px
}
.our-work-popup .modal-body .file-upload .file-select.file-select-disabled:hover .file-select-name {
    line-height: 40px;
    display: inline-block;
    padding: 0 10px
}
/***********************************/

.why-elephants-common-sec {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    background: #fff;
}
.why-elephants-common-slider .slick-track {
    display: flex !important;
}
.why-elephants-common-slider .slick-track .slick-slide {
    display: flex !important;
    height: inherit !important;
}
.why-elephants-common-slider-box {
    flex-direction: column;
    padding: 0px 50px 0 0;
    margin: 0;
    position: relative;
}
.why-elephants-common-slider-img {
    min-height: 173px;
    width: 100%;
}
.why-elephants-common-slider-box img {
    padding: 0;
    width: 100%;
}
.why-elephants-common-sec .why-elephants-common-right{
    padding-left: 50px;
}
.why-elephants-common-sec .why-elephants-common-right img{
    border-radius: 10px;
}
.why-elephants-common-slider-cont {
    padding: 40px;
    position: relative;
}
.why-elephants-common-slider-box ul {
    margin-top: 40px;
}
.why-elephants-common-slider-box ul li {
    color: #565054;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    padding-left: 44px;
    margin-bottom: 25px;
    background: url(../images/red-bullet-icon-img.png) no-repeat;
    list-style: none;
    background-position: 0 5px;
}
.why-elephants-common-slider-box ul li span {
    font-weight: 700;
    font-size: 22px;
}
.why-elephants-common-slider .slick-dots {
    display: flex !important;
    justify-content: center;
    margin-top: 10px;
}
.why-elephants-common-slider .slick-dots li {
    margin-right: 10px !important;
}
.why-elephants-common-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    font-size: 0;
    background: #d3e3ff;
    cursor: pointer;
}
.why-elephants-common-slider .slick-dots li.slick-active button {
    background: #01aa97;
}
.why-elephants-common-sec .slide-arrow.prev-arrow {
    right: 100px;
    width: 40px;
}
.why-elephants-common-sec .slide-arrow.next-arrow {
    right: 0;
}
.why-elephants-common-sec .slide-arrow {
    position: absolute;
    top: -45px;
    width: 80px;
    height: 40px;
    text-align: center;
    z-index: 1;
    cursor: pointer;
    border: 2px solid #90af59;
    opacity: 1;
    transition: all 0.3s linear;
    border-radius: 10px;
    background: #fff;
}
.slider-arrow-pos .slide-arrow {
    top: 0px;
}
.why-elephants-common-sec .slide-arrow:hover {
    background: #90af59;
}
.why-elephants-common-sec .slide-arrow.next-arrow:hover::after {
    color: #fff;
}
.why-elephants-common-sec .slide-arrow.prev-arrow:before {
    content: ' \276E';
}
.why-elephants-common-sec .slide-arrow.next-arrow:before {
    content: '\276F';
    right: unset;
    left: 54px;
}
.why-elephants-common-sec .slide-arrow.next-arrow:after {
    content: "More";
    width: 0%;
    height: 100%;
    position: absolute;
    top: 9px;
    left: 15px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    font-size: 15px;
    color: #90af59;
    pointer-events: none;
    font-weight: 600;
}
.why-elephants-common-sec .slide-arrow.next-arrow:hover::before {
    color: #fff;
}
.why-elephants-common-sec .slide-arrow.prev-arrow:hover::before {
    color: #fff;
}
.why-elephants-common-sec .slide-arrow:before {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    margin: auto;
    font-size: 20px;
    color: #90af59;
    line-height: 20px;
}
.why-elephants-common-box-area {
    margin-top: 40px;
}
.why-elephants-common-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 12%);
    padding: 30px;
    margin-bottom: 20px;
}
.why-elephants-common-box h4 {
    color: #90af59;
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 20px;
}
.why-elephants-common-box p {
    color: #565054;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
}
.why-elephants-common-sec .common-header {
    margin-bottom: 0;
}
/***********************************/
.faqs-sec {
    margin: 60px 0;
    position: relative;
    overflow: hidden;
  }
  .faqs-sec h2 {
    font-size: 24px;
    font-weight: bold;
    color: #ec268f;
    text-align: center;
    padding: 0px 0 50px;
    text-transform: uppercase;
  }
  .accordion .wrapper {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}
.accordion .toggle, .accordion
.content, .accordion a {
}
.accordion .toggle {
    width: 100%;
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 16px;
    color: #111130;
    font-weight: 600;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px 0;
}
.accordion .content {
    position: relative;
    font-size: 14px;
    line-height: 30px;
    height: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.accordion .content p {
    font-size: 18px;
    padding: 15px 0px 15px 50px;
    color: #101010;
    font-weight: 400;
}
.accordion .content p a{
    color: #d93d8d;
}
.accordion .content p a strong{
    font-weight: 600;
}

.accordion .content p.big {
    padding-top: 0;
    font-weight: 600;
}
.accordion .fab {
    color: #ff0000;
}
.accordion .wrapper .toggle {
    text-align: left;
    display: block;
    padding: 20px 0px 0px;
    color: #90af59;
    font-weight: 600;
    font-size: 24px;
    display: flex;
    justify-content: start;
    align-items: center;
}
/*.accordion .wrapper .toggle.active, .accordion .wrapper .toggle:focus, .accordion .wrapper .toggle:hover {
    color: #bd1823;
}*/

/*.accordion.active .wrapper .toggle {
    color: #c12732;
}*/
.accordion .wrapper .toggle i {
    float: right;
    line-height: 30px;
}
.toggle_click-font {
    font-size: 22px;
}
.toggle_unclick-font {
    font-size: 22px;
}
.accordion .wrapper .toggle img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
    float: left;
}
.accordion .wrapper .toggle 
.accordion .wrapper .toggle span {
    float: left;
    width: 88%;
}
.accordion .wrapper .toggle .icon {
    float: left;
    color: #fff;
    font-size: 30px;
    width: 30px;
    height: 30px;
    /* background: #bd1823; */
    position: relative;
    margin-right: 20px;
    border: 1px solid #ccc;
}
.accordion .wrapper .toggle span {
    width: 80%;
}
.accordion .wrapper .toggle .icon svg {
    width: 23px;
    height: 23px;
    color: #000;
    font-weight: 600;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
    transform: translateY(-50%);
}
.accordion .wrapper .toggle .icon.fa-chevron-circle-up:before {
    background: url("../images/pluse.png") no-repeat;
    width: 14px;
    height: 15px;
    content: " ";
    position: absolute;
    top: 8px;
    left: 8px;
}
.accordion .wrapper .toggle .icon.fa-chevron-circle-down:before {
    background: url("../images/minus.png") no-repeat;
    width: 16px;
    height: 5px;
    content: " ";
    position: absolute;
    top: 12px;
    left: 7px;
}
.accordion .wrapper ul {
    padding: 0px 0px 0px 50px;
}
.accordion .wrapper ul li {
    color: #565054;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    padding-left: 44px;
    margin-bottom: 15px;
    background: url(../images/red-bullet-icon-img.png) no-repeat;
    list-style: none;
    background-position: 0 5px;
}
@media (max-width: 575px) {
    .container {
        padding: 0 !important;
        width: 93%;
    }
}
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
.about-cont-bg2 {
    background: #f2f5fb;
}
/***********************************/


@media(max-width: 1366px) {
    .banner-text {
        left: 8%;
    }
    .banner-text h1 {
        font-size: 56px;
        line-height: 66px;
    }
    .header .menu > .menu-item > a {
        padding: 25px 6px;
    }
    .bott-left-0 {
        width: 140px;
    }
    .top-right-0 {
        width: 140px;
    }
    .home-about-us-sec .about-img-2 {
        left: 40px;
        bottom: -20px;
        width: 120px;
    }
    .why-work-with-me-sec .why-work-with-me-sec-right.white-patch-box {
        top: 100px;
    }
}
@media(max-width: 1280px) {
    .why-work-with-me-sec .why-work-with-me-sec-right.white-patch-box {
        top: 100px;
    }
}
@media(max-width: 1024px) {
    .header .logo {
        margin-right: 20px;
    }
    .header .logo {
        width: 100px;
    }
    .header .menu > .menu-item > a {
        padding: 25px 4px;
        font-size: 16px;
    }
    .why-work-with-me-sec .why-work-with-me-sec-right {
        padding-left: 30px;
    }
    .from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small .from-my-blog-sec-cont-area-small-cont h2 {
        font-size: 18px;
        line-height: 26px;
    }
    .from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small .from-my-blog-sec-cont-area-small-cont {
        left: 15px;
        bottom: 15px;
        right: 15px;
        top: 15px;
    }
    .from-my-blog-sec .de-blog-2 {
        position: absolute;
        right: 3%;
        bottom: 3%;
    }
    .get-in-touch-sec-form {
        padding-left: 30px;
    }
    .home-services-sec-box {
        padding: 20px 15px;
        margin-bottom: 30px;
    }
    .welcome-to-my-word-sec-box {
        padding: 20px;
        margin-bottom: 30px;
    }
    .testimonial-slider-box {
        margin: 0px 0px 35px;
    }
}
@media(max-width: 768px) {
    
    .top-banner .slide-arrow {
        display: none !important;
    }
    .home-services-sec-box {    
        padding: 20px 20px;
    }
    .home-services-sec-box h4 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    .home-services-sec-box p {
        font-size: 16px;
        line-height: 24px;
    }
    .welcome-to-my-word-sec-box p {
        font-size: 16px;
        line-height: 24px;
    }
    .header .menu > .menu-item > a {
        padding: 10px 16px;
        font-size: 16px;
    }
    .vision-mission-sec .row.flip-div {
        flex-direction: column-reverse;
    }
    .why-work-with-me-sec {
        padding-bottom: 60px;
        padding-top: 60px;
    }
    .about-cont-bg {
        padding-bottom: 60px;
        padding-top: 60px;
    }
    .why-work-with-me-sec-left {
        position: relative;
        text-align: center;
        margin-top: 40px;
    }
    .why-work-with-me-sec .why-work-with-me-sec-right.white-patch-box {
        left: 0;
        width: 87%;
        top: 0;
    }
    .contact-form-address .get-in-touch-sec-form {
        padding: 0;
    }
    .get-in-touch-sec-form {
        padding-left: 0px;
        margin-bottom: 40px;
    }
    .our-work-sec.why-work-with-me-sec .why-work-with-me-sec-right.white-patch-box {
        left: 0;
        top: 0;
        width: 85%;
    }
    /*.home-guarantee-job-courses a.common-btn {
        display: block;
    }*/
    .courses-list-cont p {
        float: unset;
    }
    .welcome-to-my-word-sec-box h4 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    .why-work-with-me-sec .why-work-with-me-sec-right {
        padding-left: 0;
        margin-top: 50px;
    }
    .from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small .from-my-blog-sec-cont-area-small-cont {
        left: 30px;
        bottom: 30px;
        right: 30px;
        top: 30px;
    }
    .from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-big .from-my-blog-sec-cont-area-big-img img {
        display: block;
        width: 100%;
    }
    .from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-big {
        margin-bottom: 50px;
    }
    .get-in-touch-sec-info-box .get-in-touch-sec-info-box-icon {
        width: 50px;
        height: 50px;
    }
    .get-in-touch-sec-info-box .get-in-touch-sec-info-box-text {
        width: 72%;
        margin-left: 12px;
    }
    .get-in-touch-sec-info-box .get-in-touch-sec-info-box-icon svg {
        width: 25px;
        height: 25px;
    }
    .banner-text {
        width: 92%;
    }
    .top-banner {
        height: auto;
    }
    .top-banner .row {
        flex-direction: column-reverse;
    }
    .top-banner-left {
        height: 60vh;
    }
    .top-banner-right {
        width: 100%;
        position: relative;
        top: unset;
        transform: unset;
    }
    .top-banner-right img {
        width: 80%;
        object-fit: cover;
        margin: 130px auto;
        min-height: unset;
        position: relative;
    }/*
    .banner-text {
        left: unset;
        top: unset;
        transform: unset;
        text-align: center;
    }*/
    .home-about-us-sec .about-img-2 {
        bottom: 60px;
    }
    .home-about-us-sec .home-about-us-sec-left:after {
        bottom: -20px;
    }
    .home-about-us-sec .home-about-us-sec-right {
        margin-top: 100px;
    }
}

@media(max-width: 575px) {
    .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        width: 93%;
    }
    .common-header1 {
        width: 90%;
    }
    .get-in-touch-sec-info-box {
        margin-bottom: 40px;
    }
    .get-in-touch-sec-form {
        padding-left: 0;
        margin-top: 0px;
    }
    .copyright-text {
        margin-bottom: 20px;
    }
    .why-work-with-me-sec {
        padding-bottom: 60px;
    }
    .copyright-area {
        flex-direction: column;
        align-items: center;
    }
    .container {
        padding: 0 !important;
    }
    footer {
        padding: 110px 20px 30px;
    }
    .logo-nav {
        padding: 10px 20px;
    }
    .banner-text h1 br {
        display: none;
    }
    .home-about-us-sec .home-about-us-sec-right h2 {
        font-size: 40px;
    }
    .why-work-with-me-sec .why-work-with-me-sec-right h2 {
        font-size: 34px;
    }
    .banner-text h1 {
        font-size: 50px;
        line-height: 55px;
    }
    .why-work-with-me-sec .why-work-with-me-sec-right p {
        font-size: 16px;
        line-height: 26px;
    }
    .padd-right-50 {
        padding-right: 0;
    }
    .banner-text {
        width: 90%;
        left: 20px;
    }
    .banner-text a {
        font-size: 18px;
        padding: 20px 20px;
    }  
    .about-cont-bg .row {
        flex-direction: column-reverse;
    } 
    .vision-mission-sec-cont {
        padding: 50px;
    } 
    .why-work-with-me-sec .why-work-with-me-sec-right.white-patch-box {
        left: 0;
        width: 100%;
        top: 0;
        box-sizing: border-box;
    }
    .about-anand-shinde-journey-box h5 {
        font-size: 18px;
        line-height: 28px;
    }
    .about-anand-shinde-journey-box span {
        font-size: 60px;
        width: 70px;
        height: 70px;
        line-height: 70px;
    }
    .team-member-black-patch {
        bottom: 0;
    }
    .team-member-slider-box h2 {
        display: none;
    }
    .our-work-sec.why-work-with-me-sec .why-work-with-me-sec-right.white-patch-box {
        left: 0;
        top: 0;
        width: 100%;
    }
    .heading2 {
        font-size: 42px;
        line-height: 52px;
        width: 90%;
        margin: 0 auto;
    }
    .common-header h2 {
        font-size: 36px;
        line-height: 46px;
    }
    .why-elephants-common-sec .why-elephants-common-right {
        padding-left: 0;
        margin-bottom: 50px;
    }
    .from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-big .from-my-blog-sec-cont-area-big-cont h2 {
        font-size: 24px;
        color: #fff;
        font-weight: 700;
        line-height: 30px;
    }
    .get-in-touch-sec-map-form {
        margin-top: 0px;
    }
    .box-spaceing .team-member-slider-box {
        padding: 20px;
        margin: 10px 20px 35px;
    }
    .why-work-with-me-sec .why-work-with-me-sec-right.white-patch-box {
        padding: 30px;
    }
    .why-elephants-common-sec .row {
        flex-direction: column-reverse;
    }
}

@media(max-width:460px) {
    .why-work-with-me-sec-left:before {
        width: 80px;
        height: 80px;
        left: 0;
        bottom: -25px;
    }
    .why-work-with-me-sec-left:after {
        width: 70px;
        height: 100px;
        right: -8px;
    }
    .home-about-us-sec .about-img-2 {
        bottom: -30px;
        left: 0;
    }
    .home-about-us-sec .home-about-us-sec-left:before {
        width: 60px;
        height: 60px;
        border-radius: 7px;
        left: unset;
        top: -20px;
        right: 0;
    }
    .why-work-with-me-sec .why-work-with-me-sec-right h2 {
        font-size: 30px;
        line-height: 40px;
    }
    .about-anand-shinde-journey-box {
        padding: 30px;
        margin: 0 30px 80px;
    }
}
@media(max-width:420px) {
    
}
@media(max-width:400px) {
    .top-banner .de-hero-5 {
        bottom: 2%;
    }
    .home-about-us-sec .home-about-us-sec-right h2 {
        font-size: 36px;
    }
    .why-work-with-me-sec .why-work-with-me-sec-right h2 {
        font-size: 36px;
    }
    .home-about-us-sec .home-about-us-sec-right ul {
        margin-top: 28px;
        margin-bottom: 0;
    }
    .home-services-sec .de-intro-3 {
        right: -12%;
    }
    .from-my-blog-sec .de-blog-1 {
        left: -6%;
    }
    .from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-big .from-my-blog-sec-cont-area-big-cont {
        position: absolute;
        left: 20px;
        bottom: 20px;
        right: 20px;
    }
    .from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-big .from-my-blog-sec-cont-area-big-cont h2 {
        font-size: 26px;
        line-height: 30px;
    }
}
@media(max-width:320px) {
    
}
@media only screen and (min-width:0) and (max-width:1023px) {

}
