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

::-webkit-scrollbar {
    background-color: #2c3034;
    width: 0.5vw;
}

::-webkit-scrollbar-thumb {
    background-color: #1abc9c;
    border-radius: 20px 20px;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}


header{
    padding: 15px 120px ;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /*background-color:#F5F7FFFF;*/
    /*box-shadow: 0 2px 16px hsla(230, 75%, 32%, .15);*/
    z-index: 1000;
    transition: all .50s ease;

    /*z-index: 10001;*/
    /*position: absolute;*/
    /*top: 0;*/
    /*left: 0;*/
    /*width: 100%;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*padding: 15px 120px;*/
    /*transition: 0.5s ease;*/
}

header .brand{
    color: #1abc9c;
    font-size: 2.5em;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

header .brand span{
    color: #ffffff;
}

header .navigation{
    position: relative;
}

header .navigation .navigation-items a{
    position: relative;
    color: #ffffff;
    font-size: 1.5em;
    font-weight: 500;
    text-decoration: none;
    margin-left: 30px;
    transition: 0.3s ease;
}


header .navigation .navigation-items a:before{
    content: '';
    position: absolute;
    background: #ffffff;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    transition: 0.3s ease;
}

header .navigation .navigation-items a:hover:before{
    width: 100%;
}

header.sticky{
    /*padding: 15px 115px;*/
    background: transparent;
    backdrop-filter: blur(35px);
    background-color: #2c3034;
}

.header-icon{
    display: flex;
}


header .search.active{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(1,1,1,0.5);
}

header .search .navigation-items a{
    color: #222;
    font-size: 1.2em;
    margin: 20px;
}

header .search .navigation-items a:before{
    background: #222;
    height: 5px;
}

header .search.active .navigation-items {
    background: #fff;
    width: 600px;
    max-width: 600px;
    margin: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgb(1 1 1);
}


input,
button {
    border: none;
    outline: none;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

.nav__search,
.nav__login,
.nav__close {
    font-size: 26px;
    margin-left: 7px;
    color: #ffffff;
    cursor: pointer;
    transition: color .4s;
}

:is( .nav__search, .nav__login):hover {
    color: #1abc9c;
}
.search,
.login {
    border: none;
    outline: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: hsla(230, 75%, 15%, .1);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px); /* For safari */
    padding: 8rem 1.5rem 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s;
}

.search__close,
.login__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 35px;
    color: #1abc9c;
    cursor: pointer;
}


/*=============== SEARCH ===============*/
.search__form {
    display: flex;
    align-items: center;
    column-gap: .5rem;
    background-color: #F0F2FFFF;
    box-shadow: 0 8px 32px hsla(230, 75%, 15%, .2);
    padding-inline: 1rem;
    border-radius: .5rem;
    transform: translateY(-1rem);
    transition: transform .4s;
}

.search__icon {
    font-size: 1.25rem;
    color: #1abc9c;
}

.search__input {
    width: 100%;
    padding-block: 1rem;
    background-color: #F0F2FFFF;
    color: #5A5E72FF;
}

.search__input::placeholder {
    color:#5A5E72FF;
}

/* Show search */
.show-search {
    opacity: 1;
    pointer-events: initial;
}

.show-search .search__form {
    transform: translateY(0);
}
/*=============== LOGIN ===============*/
.login__form,
.login__group {
    display: grid;
}

.login__form {
    background-color: #F0F2FFFF;
    padding: 2rem 1.5rem 2.5rem;
    box-shadow: 0 8px 32px hsla(230, 75%, 15%, .2);
    border-radius: 1rem;
    row-gap: 1.25rem;
    text-align: center;
    transform: translateY(-1rem);
    transition: transform .4s;
}

.login__title {
    font-size: 1.25rem;
    color: #1abc9c;
}

.login__group {
    row-gap: 1rem;
}

.login__label {
    display: block;
    text-align: initial;
    color: #1abc9c;
    font-weight: 500;
    margin-bottom: .25rem;
}

.login__input {
    width: 100%;
    background-color: #F0F2FFFF;
    border: 2px solid #F0F2FFFF;
    padding: 1rem;
    border-radius: .5rem;
    color:#5A5E72FF;
}

.login__input::placeholder {
    color: #5A5E72FF;
}

.login__signup {
    margin-bottom: .5rem;
}

.login__signup a {
    color: #1abc9c;
}

.login__forgot {
    display: inline-block;
    color: #1abc9c;
    margin-bottom: 1.25rem;
}

.login__button {
    display: inline-block;
    background-color: #1abc9c;
    width: 100%;
    color: #fff;
    font-weight: 600;
    padding: 1rem;
    border-radius: .5rem;
    cursor: pointer;
    transition: box-shadow .4s;
}

.login__button:hover {
    box-shadow: 0 4px 24px hsl(168, 76%, 42%);
}

/* Show login */
.show-login {
    opacity: 1;
    pointer-events: initial;
}

.show-login .login__form {
    transform: translateY(0);
}



/*=============== BREAKPOINTS ===============*/
/* For medium devices */
@media screen and (min-width: 576px) {
    .search,
    .login {
        padding-top: 5rem;
    }

    .search__form {
        max-width: 450px;
        margin-inline: auto;
    }

    .search__close,
    .login__close {
        width: max-content;
        top: 2rem;
        left: 0;
        right: 0;
        margin-inline: auto;
        font-size: 2rem;
    }

    .login__form {
        max-width: 400px;
        margin-inline: auto;
    }
}

/* For large devices */
@media screen and (min-width: 1023px) {

    .login__form {
        padding: 3rem 2rem 3.5rem;
    }
}













.home{
    padding: 100px 120px;
}

.home{
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: #1abc9c;
}

.home:before{
    z-index: 777;
    content: '';
    position: absolute;
    background: rgba(26, 188, 156, 0.2);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.home .content{
    z-index: 888;
    color: #fff;
    width: 70%;
    margin-top: 50px;
    display: none;
}

.home .content.active{
    display: block;
}

.home .content h1{
    font-size: 5em;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 75px;
    margin-bottom: 15px;
}

.home .content h1 span{
    font-size: 1.2em;
    font-weight: 600;
}

.home.content p{
    margin-bottom: 50px;
}

.home p{
    margin-bottom: 40px;
    font-size: 15px;
}

/*.home .content a{
    background: #fff;
    padding: 15px 35px;
    color: #1abc9c;
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
}*/

.main_read {
    padding: 0px 25px;
    background: transparent;
    z-index: 222;
    display: inline-block;
    text-align: center;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    line-height: 48px;
    border: 1px solid #1abc9c;
    border-radius: 0px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    text-decoration: none;
}

.main_read img {
    position: absolute;
    top: 50%;
    right: -30px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;

}

.main_read:hover {
    background: #1abc9c;
    color: #222222;
    border: 1px solid #1abc9c;
    text-decoration: none;


}
.main_read:hover img {
    right: -38px;
}

.home .media-icons{
    font-size: 13px;
    z-index: 888;
    position: absolute;
    right: 30px;
    display: flex;
    flex-direction: column;
    transition: 0.5s ease;
}

.home .media-icons a{
    color: #ffffff;
    font-size: 1.6em;
    transition: 0.3s ease;
}

.home .media-icons a:not(:last-child){
    margin-bottom: 20px;
}

.home .media-icons a:hover{
    transform: scale(1.3);
}

.home video{
    z-index: 000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-navigation{
    z-index: 888;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(80px);
    margin-bottom: 12px;
}

.slider-navigation .nav-btn{
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(255,255,255, 0.5);
    transition: 0.3s ease;
}

.slider-navigation .nav-btn.active{
    background: #1abc9c;
}

.slider-navigation .nav-btn:not(:last-child){
    margin-right: 20px;
}

.slider-navigation .nav-btn:hover{
    transform: scale(1.2);
}

.video-slide{
    position: absolute;
    width: 100%;
    clip-path: circle(0% at 0 50%);
}

.video-slide.active{
    clip-path: circle(150% at 0 50%);
    transition: 2s ease;
    transition-property: clip-path;
}

@media (max-width: 1040px){
    header{
        padding: 12px 20px;
    }

    .home{
        padding: 100px 20px;
    }

    .home .media-icons {
        right: 30px;
    }

    header .navigation{
        display: none;
    }

    header .navigation.active{
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(1,1,1,0.5);
    }

    header .navigation .navigation-items a{
        color: #222;
        font-size: 1.2em;
        margin: 20px;
    }

    header .navigation .navigation-items a:before{
        background: #222;
        height: 5px;
    }

    header .navigation.active .navigation-items {
        background: #fff;
        width: 600px;
        max-width: 600px;
        margin: 20px;
        padding: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 5px;
        box-shadow: 0 5px 25px rgb(1 1 1);
    }

    .menu-btn{
        background: url(../images/icon/menu.png)no-repeat;
        background-size: 30px;
        background-position: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        transition: 0.3s ease;
    }

    .menu-btn.active{
        z-index: 999;
        background: url(../images/icon/close.png)no-repeat;
        background-size: 25px;
        background-position: center;
        transition: 0.3s ease;
    }

    @media (max-width: 768px) {
        .home .content h1 {
            font-size: 4em;
            letter-spacing: 3px;
            line-height: 55px;
            margin-bottom: 10px;
        }

        .home .content h1 span {
            font-size: 40px;
        }

    }

    @media (max-width: 540px){
        .home .content h1 {
            font-size: 39px;
            width: 80%;
        }

        .home .content h1 {
            letter-spacing: 2px;
            line-height: 54px;
            margin-bottom: 11px;
        }

        .home .content h1 span {
            font-size: 30px;
            font-weight: 100;
        }
        .home .content {
            width: 80%;
        }
    }
}

/*<!--====  About Page  ====-->*/

.boxed_wrapper{
    position: relative;
    overflow-x: hidden;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
}


/*@media (min-width:1200px) {
    .container {
        max-width: 1200px;
        padding: 0px 15px;
    }
}*/

.optimization-application{
    position: relative;
    padding: 95px 0px 0px 0px;
}

#content_block_17 .content-box h3{
    position: relative;
    display: block;
    font-size: 25px;
    line-height: 36px;
    font-weight: 600;
    margin-bottom: 28px;
    font-family: 'Ubuntu', sans-serif;
    /*font-weight: 800;*/
    color: #0F172B;
}

#content_block_17 .content-box .text{
    position: relative;
    padding-bottom: 49px;
}

#content_block_17 .content-box .text p{
    position: relative;
    font-size: 16px;
    margin-bottom: 30px;
}

#content_block_17 .content-box .text p:last-child{
    margin-bottom: 0px;
}

#content_block_17 .content-box .list-item{
    display: block;
    margin-bottom: 56px;
}

#content_block_17 .content-box .list-item li{
    position: relative;
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    line-height: 30px;
    margin-bottom: 18px;
    padding-left: 45px;
}

#content_block_17 .content-box .list-item li:before{
    position: absolute;
    content: "\f14a";
    font-family: 'Font Awesome 5 Free';
    font-size: 18px;
    line-height: 30px;
    color: #1abc9c;
    font-weight: 700;
    left: 0px;
    top: 2px;
}

/*#content_block_17 .content-box .list-item li:last-chld{*/
/*    margin-bottom: 0px;*/
/*}*/

.optimization-application .section-title{
    line-height: 45px;
    margin-bottom: 8px;
    font-family: 'Pacifico', cursive;
    font-weight: 700;
    color: #1abc9c;
    font-size: 20px;
}


#content_block_17 .content-box .sec-title h2:before {

}

#content_block_17 .content-box{
    position: relative;
    padding: 40px 0px;
}

.main_btn {
    padding: 0px 25px;
    background: transparent;
    z-index: 222;
    display: inline-block;
    text-align: center;
    color: #222222;
    font-size: 12px;
    font-weight: 500;
    line-height: 48px;
    border: 1px solid #38d39f;
    border-radius: 0px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    text-decoration: none;


}
.main_btn img {
    position: absolute;
    top: 50%;
    right: -30px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;

}

.main_btn:hover {
    background: #38d39f;
    color: #222222;
    border: 1px solid #38d39f;
    text-decoration: none;

}
.main_btn:hover img {
    right: -38px;
}

#image_block_17 .image-box{
    position: relative;
    display: block;
    padding: 0px 60px 0px 140px;
}

#image_block_17 .image-box .image{
    position: relative;
    display: inline-block;
    border-radius: 10px;
    box-shadow: 0 0px 15px 0px rgba(0, 0, 0, 0.1);
}

#image_block_17 .image-box .image img{
    border-radius: 5px;
}

#image_block_17 .image-box .image-1 img{
    width: 100%;
}

#image_block_17 .image-box .image-1{
    border-radius: 0px;
}

#image_block_17 .image-box .image-2{
    position: absolute;
    left: 0px;
    top: 130px;
}

#image_block_17 .image-box .image-3{
    position: absolute;
    left: 55px;
    bottom: 40px;
}

#image_block_17 .image-box .image-4{
    position: absolute;
    right: -25px;
    bottom: 70px;
}

@media (max-width: 1200px) {
    .optimization-application .content-box{
        padding-top: 0px;
    }
}

@media (max-width: 767px) {
    .optimization-application.elements #content_block_17 .content-box{
        padding-top: 0px;
    }

    .optimization-application{
        padding: 65px 10px 70px;
    }

}

@media (max-width: 599px) {
    .optimization-application .image-box .image{
        display: none;
    }

    .optimization-application .image-box .image-1{
        display: block;
    }

    .optimization-application .image-box .image-1 img{
        width: 100%;
    }

    .optimization-application .image-box{
        padding: 0px;
    }

}

@media only screen and (max-width: 499px) {
    #image_block_17 .image-box{
        padding: 0px;
    }

    #image_block_17 .image-box .image{
        display: block;
    }

    #image_block_17 .image-box .image-2,
    #image_block_17 .image-box .image-3,
    #image_block_17 .image-box .image-4 {
        display: none;
    }

}

/*<!--====  Services Page  ====-->*/

.sec-title.center {
    text-align: center;
}
.sec-title {
    position: relative;
    display: block;
}
.service-style-three{
    position: relative;
    /*padding-top: 60px;*/
    padding: 60px 0px 0px 0px;
}

.service-style-three .image-layer{
    position: absolute;
    width: 345px;
    height: 880px;
    left: 0px;
    bottom: -220px;
    background-repeat: no-repeat;
}

.service-style-three .sec-title h1{
    line-height: 40px;
    margin-bottom: 115px;
    margin-top: 5px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    color: #0F172B;;
}

.service-style-three .sec-title h2{
    font-family: 'Pacifico', cursive;
    font-weight: 700;
    color: #1abc9c;
    font-size: 20px;
    margin-top: 60px;
}


.service-block-three{
    position: relative;
    margin-bottom: 140px;
}

.service-block-three .inner-box{
    position: relative;
    display: block;
    background: #fff;
    border-radius: 20px;
    text-align: center;
    padding: 0px 40px 55px 40px;
    box-shadow: 0 0px 20px 0px rgba(0, 0, 0, 0.1);
    transition: all 500ms ease;
}

.service-block-three:hover .inner-box{
    transform: translateY(-15px);
    box-shadow: 0 0px 20px 0px rgba(0, 0, 0, 0.2);
}

.service-block-three .inner-box .icon-box{
    position: relative;
    display: inline-block;
    font-size: 60px;
    color: #fff;
    width: 170px;
    height: 160px;
    line-height: 160px;
    text-align: center;
    margin-top: -75px;
    z-index: 1;
    margin-bottom: 32px;
}

.service-block-three .inner-box .icon-box .bg-layer{
    position: absolute;
    width: 170px;
    height: 160px;
    left: 0px;
    top: 0px;
    background-repeat: no-repeat;
    z-index: -1;
    transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
}

.service-block-three:hover .inner-box .icon-box .bg-layer {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    /*-ms-filter: grayscale(100%);*/
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.service-style-three .inner-container{
    position: relative;
    margin: 0px -10px;
}

.service-style-three .single-column{
    padding: 0px 25px;
}

.service-block-three .inner-box h3{
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 32px;
    font-weight: 500;
    color: #222;
    margin-bottom: 17px;
}

.service-block-three .inner-box h3 a{
    display: inline-block;
    color: #222;
    text-decoration: none;
}

.service-block-three .inner-box h3 a:hover{
    color: #4527a4;
}

.service-block-three .inner-box .text{
    position: relative;
    display: block;
    font-size: 16px;
    margin-bottom: 34px;
}
.service-block-three .inner-box .link-btn a{
    position: relative;
    display: inline-block;
    font-size: 40px;
    line-height: 40px;
    color: #2c3034;
    font-weight: 700;
}

.service-block-three:hover .inner-box .link-btn a{
    color: #1abc9c;
}

.service-style-three .single-column:nth-child(2){
    padding-top: 190px;
}
.service-style-three .single-column:last-child{
    padding-top: 90px;
}

@media (max-width: 1200px) {
    .service-style-three .single-column{
        padding: 0px 15px;
    }

    .service-style-three .inner-container{
        margin: 0px;
    }

    .service-style-three .image-layer{
        display: none;
    }
}

@media (max-width: 991px) {
    .service-style-three .single-column:nth-child(2),
    .service-style-three .single-column:last-child{
        padding-top: 0px;
    }
}

@media (max-width: 767px) {
    .service-style-three{
        padding-top: 70px;
    }

    .service-style-three:before{
        display: none;
    }
}


/*<!--====  Call To Action Area   ====-->*/
.call-action {
    padding: 50px 10px;
    background-image:url('../images/pexels-malinda-bandara-16508252.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    position:relative;
}
.call-action.overlay:before{
    background: rgba(26, 188, 156, 0.25);
    opacity:0.9;
}

.overlay:before{
    position:absolute;
    content:"";
    left:0;
    top:0;
    height:100%;
    width:100%;
    background:#000;
}

.call-action .call-content{
    text-align:center;
}

.call-action .call-content h3 {
    font-family: 'Montserrat', sans-serif;
    margin:0;
    text-transform: capitalize;
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    padding-top: 6px;
}
.call-action .call-content h3 .span2{
    font-family: 'Montserrat', sans-serif;
    color:#fff;
    font-weight:500;
    font-size:14px;
    display:block;
    padding:0;
    margin:15px 0px 20px 0px;
}

.call-action .call-content{}
.call-action .call-content .button{}
.call-action .call-content .button .btn{
    background:#fff;
    color:#333;
}
.call-action .call-content .button .btn:before{
    display:none;
}
.call-action .call-content .button .btn:hover{
    background:#fff;
    color:#333;
}




/*.main_btn:hover.prev img {*/
/*    right: -50px;*/
/*}*/


/*<!--====  Best Place Page  ====-->*/

.best-section{
    border: 0;
    margin: 0;
    box-sizing: border-box;
    padding: 0px 0px 70px;
}

.best-section .main-header h2 {
    font-family: 'Pacifico', cursive;
    font-weight: 700;
    color: #1abc9c;
    font-size: 20px;
    margin-top: 60px;
    text-align: center;
}

.best-section .main-header p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #000000;
    text-align: center;
}

.img-box{
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.img-box{
    height: 100%;
}

.img-box{
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    height: 100%;
    align-items: flex-start;
    /*background-image: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);*/
    display: flex;
    min-height: 100%;
    justify-content: center;
    padding: 10px 24px;
}

.card-grid{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    max-width: 1200px;
    width: 100%;
}

.card{
    list-style: none;
    position: relative;
    border-radius: 26px;
}

.card:before{
    content: '';
    display: block;
    padding-bottom: 150%;
    width: 100%;
}

.card__background{
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    bottom: 0;
    filter: brightness(0.75) saturate(1.2) contrast(0.85);
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform-origin: center;
    trsnsform: scale(1) translateZ(0);
    transition:
            filter 200ms linear,
            transform 200ms linear;
}

.card:hover .card__background{
    transform: scale(1.05) translateZ(0);
}

.card-grid:hover > .card:not(:hover) .card__background{
    filter: brightness(0.5) saturate(0) contrast(1.2) blur(20px);
}

.card__content{
    left: 0;
    padding: 24px;
    position: absolute;
    top: 0;
}

.card__category{
    color: rgba(255,255,255,0.6);
    font-size: 1.5rem;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.card__heading{
    color: rgba(255,255,255,0.9);
    font-size: 2rem;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.2);
    line-height: 1.4;

}

@media(min-width: 540px){
    .card-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 960px){
    .card-grid{
        grid-template-columns: repeat(4, 1fr);
    }
}

/*<!--====  Video Page  ====-->*/

.video-promo {
    padding: 150px 0;
}

.video-promo .content-block {
    width: 60%;
    margin: 0 auto;
    text-align: center;
}

.video-promo .content-block h2 {
    font-size: 30px;
    color: #fff;
}

.video-promo .content-block p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #fff;
}

.video-promo .content-block a:focus {
    outline: 0;
}

.testimonial .testimonial-slider .item {
    padding-bottom: 10px;
}

.bg-1 {
    background: url(../images/pexels-malinda-bandara-16508252.jpg) fixed no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: inline-block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #1abc9c;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid #1abc9c;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

/*<!--====  testimonials Page  ====-->*/
.testimonials{
    padding:60px 0px;
    /*background: #232323;*/
}
.testimonials-grid-1 {
    width: 200px;
}
.testimonials .heading{
    text-align: center;
    font-family: 'Pacifico', cursive;
    font-weight: 700;
    color: #1abc9c;
    font-size: 20px;
    margin-bottom: 55px;
}
.w3-testimonials-head h3 {
    color: #1abc9c;
}

.testimonials h5 {
    font-size: 25px;
    color: #1abc9c;
}
.w3l-info1 h1{
    font-size: 3em;
    color: #000;
    text-transform: uppercase;
    line-height:1.4em;
    letter-spacing:0.2em;
    font-weight: 900;
}
.w3l-info1 p {
    font-size: 15px;
    color: #000;
    letter-spacing: 1px;
    line-height: 1.8em;
    margin-top: 20px;
    margin-bottom:15px;
    padding-right: 60px;
}
.w3l-info1 h3 {
    font-size: 3em;
    color:#1abc9c;
}
.testimonials h5 {
    font-size: 16px;
    color: #282727;
    margin-top: 10px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: capitalize;
}
.testimonials i.fa.fa-quote-left {
    margin-right: 1em;
    color: #1abc9c;
}
.testimonials i.fa.fa-quote-right {
    margin-left: 1em;
    color: #1abc9c;
}
.testimonials h4 {
    font-size: 22px;
    color: #000;
    text-transform: uppercase;
    color: #1abc9c;
}
.flexslider .slides > li {
    display: block;
}

.special-star{
    color: #ffe300;
}

@media(max-width: 1280px){

    .about, .w3-services, .team-section, .packages, .testimonials, .special, .contact {
        padding: 4em 0;
    }

}

@media(max-width: 991px){

    .testimonials-grid-1 {
            width: 200px;
            float: left;
    }
    .testimonials-grid-2 {
            float: left;
            width: 72%;
            padding: 0;
    }

}

@media(max-width: 768px){
    .callbacks_nav.next {
        right: 44%;
    }
    .about_left {
        min-height: 400px;
    }
}

@media(max-width: 767px){

    .about, .w3-services, .team-section, .packages, .testimonials, .special, .contact {
        padding: 3em 0;
    }

}
@media(max-width: 736px){

    .testimonials-grid-2 {
            float: left;
            width: 70%;
            padding: 0;
    }

}
@media(max-width: 667px){

    .testimonials-grid-2 {
            float: none;
            width: 100%;
            padding: 0 15px;
    }
    .testimonials-grid-1 {
            width: 200px;
            float: none;
            margin-bottom: 20px;
    }
}

@media(max-width: 480px){

    .w3l-info1 p {
        font-size: 13px;
        padding-right: 10px;
    }
    .testimonials h4 {
        font-size: 20px;
    }
    .testimonials h5 {
        font-size: 15px;
    }

}

/*<!--====  Subscribe Page  ====-->*/

.subscribe-section{
    padding: 60px 10px 20px;
}

.subscribe-section img{
    max-width: 100%;
    filter: drop-shadow(0px 1px 0px black);
}

#content_block_06 .content-box .sec-title h2{
    margin-bottom: 54px;
    font-family: 'Pacifico', cursive;
    font-weight: 700;
    color: #1abc9c;
    font-size: 20px;
}

#content_block_06 .content-box .text{
    position: relative;
    font-size: 16px;
    margin-bottom: 44px;
}

#content_block_06 .content-box .subscribe-form .form-group{
    position: relative;
    margin: 0px;
}

#content_block_06 .content-box .subscribe-form .form-group input[type='email']{
    position: relative;
    width: 100%;
    height: 60px;
    border: 2px solid #dddddd;
    border-radius: 30px;
    font-size: 16px;
    margin-bottom: 30px;
    padding: 10px 40px;
}

#content_block_06 .content-box .subscribe-form .form-group input:focus{
    border-color: #1abc9c;
}

#content_block_06 .content-box .subscribe-form .form-group button{
    padding: 15px 44px;
}

#content_block_06 .content-box{
    position: relative;
    padding-top: 68px;
}

input,textarea{
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    font-size: 15px;
}

input:focus,
textarea:focus{
    outline: none;
    box-shadow: none;
    transition: all 500ms ease;
}

.theme-btn-two{
    position: relative;
    display: inline-block;
    overflow: hidden;
    border:none;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background: #1abc9c;
    border-radius: 30px;
    text-align: center;
    padding: 10px 30px;
    cursor: pointer;
    z-index: 1;
    transition: all 500ms ease;
}

.theme-btn-two:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: #fff;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(0.2, 1);
    transform: scale(0.2, 1);
    z-index: -1;
}

.theme-btn-two:hover::before {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.theme-btn-two:hover{
    color: #1abc9c;
    background: #fff;
    box-shadow: 0 0 15px rgba(26, 188, 156, 0.5);
}

.float-bob-y {
    animation-name: float-bob-y;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: float-bob-y;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: float-bob-y;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob-y;
    -ms-animation-duration: 2s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob-y;
    -o-animation-duration: 2s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}


/*<!--====  Footer Page  ====-->*/

.footer-link li {
    display: inline-block;
    position: relative;
    padding: 0 25px 0 20px;
}

.footer-link li a {
    color: inherit;
}

.footer-link li:before {
    content: "";
    height: 8px;
    width: 8px;
    background-color: #1abc9c;
    position: absolute;
    top: 50%;
    left: 0;
    border-radius: 4px;
    transform: translateY(-50%);
}

.site-footer .recent-posts-entry .widget-post-bx .widget-post .dz-media {
    width: 80px;
    min-width: 80px;
    border-radius:  8px;
}

.site-footer .recent-posts-entry .widget-post-bx .widget-post .title {
    font-family: Roboto, sans-serif;
}

.site-footer .recent-posts-entry .widget-post-bx .widget-post .title a {
    color: #fff;
    text-decoration: none;
}

.site-footer .recent-posts-entry .widget-post-bx .widget-post .dz-info {
    padding-left: 15px;
}

.site-footer.style-1 {
    color: #9d9aaa;
    font-size: 1.5rem;
    background-color:#2c3034;
    background-position: center;
    background-size: cover;
}

.site-footer.style-1 .footer-top {
    padding: 120px 0 80px;
}

.site-footer.style-1 .footer-top .text {
    margin: 0 50px 45px;
}

.site-footer.style-1 .footer-top .footer-logo {
    margin-bottom: 25px;
}

.site-footer.style-1 .footer-top .footer-logo img {
    height: 60px;
}

.site-footer.style-1 .widget-title {
    margin-bottom: 25px;
}

.site-footer.style-1 .widget-title .title {
    color: #fff;
    font-size: 2rem;
}

.site-footer.style-1 .footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    background-position: center;
    background-size: cover;
    padding: 0;
}

.site-footer.style-1 .footer-bottom .fb-inner {
    padding-top: 20px;
    padding-bottom: 20px;
}

.site-footer.style-1 .footer-bottom ul li {
    display: inline-block;
}

.site-footer.style-1 .footer-bottom ul li a {
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
}

.site-footer.style-1 .footer-bottom ul li a:hover {
    color: #1abc9c;
}

.site-footer.style-1 .footer-bottom ul li:before {
    color: #1abc9c;
}

.site-footer.style-1 .footer-bottom ul li:last-child {
    padding-right: 0;
}

.site-footer.style-1 .footer-title {
    padding-bottom: 0;
    margin-bottom: 10px;
}

.widget_getintuch ul li {
    position: relative;
    margin-bottom: 20px;
    padding-left: 52px;
    min-height: 45px;
}

.widget_getintuch ul li h5, .widget_getintuch ul li .h5 {
    font-size: 20px;
    line-height: 1.33;
    margin-bottom: 5px;
}

.widget_getintuch ul li i {
    position: absolute;
    left: 0;
    top: 4px;
    height: 40px;
    width: 40px;
    min-width: 40px;
    line-height: 40px;
    margin-right: 10px;
    text-align: center;
    background-color: #1abc9c;
    display: block;
    color: #fff;
    font-size: 16px;
    border-radius: 30px;
}


.wp-block-latest-posts li a:before,
.wp-block-categories-list li a:before,
.wp-block-archives-list li a:before,
.widget_categories ul li a:before,
.widget_archive ul li a:before,
.widget_meta ul li a:before,
.widget_pages ul li a:before,
.widget_recent_comments ul li a:before,
.widget_nav_menu ul li a:before,
.widget_recent_entries ul li a:before,
.widget_services ul li a:before {
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    display: block;
    left: -1.5rem;
    top: 0.063rem;
    font-size: 12px;
    font-weight: 900;
    color: #007BFFFF;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
}

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

li {
    list-style: none;
}


.text-link{
    color: #1abc9c !important;
    text-decoration: none;
}


.bg-primary {
    background-color: #1abc9c !important;
}

b,
strong,
.strong {
    font-weight: 500;
}

.dz-separator.style-1 {
    height: 8px;
    display: block;
    width: 82px;
    position: relative;
    margin: 0;
}
.dz-separator.style-1:before, .dz-separator.style-1:after {
    content: "";
    height: 1px;
    width: 80px;
    position: absolute;
    background: #1abc9c;
    left: 0;
}

.dz-separator.style-1:after {
    width: 80%;
    bottom: 0;
}

.dz-separator.style-1:before {
    width: 100%;
    top: 0;
}

.dz-separator.style-2 {
    width: 45px;
    height: 2px;
    background-color: #000;
}

.dz-media img{
    width: 100%;
}

.widget_about p {
    margin-top: -13px;
}

.widget ul.list-2 li,
ul.list-2 li {
    width: 50%;
    margin-top: 10px;
    float: left;
}

/* widget listing*/
.wp-block-latest-posts,
.wp-block-categories-list,
.wp-block-archives-list,
.widget_categories ul,
.widget_archive ul,
.widget_meta ul,
.widget_pages ul,
.widget_recent_comments ul,
.widget_nav_menu ul,
.widget_recent_entries ul,
.widget_services ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.wp-block-latest-posts li,
.wp-block-categories-list li,
.wp-block-archives-list li,
.widget_categories ul li,
.widget_archive ul li,
.widget_meta ul li,
.widget_pages ul li,
.widget_recent_comments ul li,
.widget_nav_menu ul li,
.widget_recent_entries ul li,
.widget_services ul li {
    padding-bottom: 1.125rem;
    margin-bottom: 0.8125rem;
    position: relative;
    padding: 0.5rem 0rem 0.5rem 1.5rem;
    margin-bottom: 0;
    line-height: 1.25rem;
}

.wp-block-latest-posts li a,
.wp-block-categories-list li a,
.wp-block-archives-list li a,
.widget_categories ul li a,
.widget_archive ul li a,
.widget_meta ul li a,
.widget_pages ul li a,
.widget_recent_comments ul li a,
.widget_nav_menu ul li a,
.widget_recent_entries ul li a,
.widget_services ul li a {
    color: inherit;
    text-transform: capitalize;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
    position: relative;
    text-decoration: none;
}

.wp-block-latest-posts li a:before,
.wp-block-categories-list li a:before,
.wp-block-archives-list li a:before,
.widget_categories ul li a:before,
.widget_archive ul li a:before,
.widget_meta ul li a:before,
.widget_pages ul li a:before,
.widget_recent_comments ul li a:before,
.widget_nav_menu ul li a:before,
.widget_recent_entries ul li a:before,
.widget_services ul li a:before
{
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    display: block;
    left: -1.95rem;
    top: 0.5rem;
    font-size: 12px;
    font-weight: 900;
    color: #1abc9c;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
}

.wp-block-latest-posts li a:hover,
.wp-block-categories-list li a:hover,
.wp-block-archives-list li a:hover,
.widget_categories ul li a:hover,
.widget_archive ul li a:hover,
.widget_meta ul li a:hover,
.widget_pages ul li a:hover,
.widget_recent_comments ul li a:hover,
.widget_nav_menu ul li a:hover,
.widget_recent_entries ul li a:hover,
.widget_services ul li a:hover,
.btn-facebook:hover,
.btn-instagram:hover,
.btn-twitter:hover{
    color: #1abc9c;
}

.wp-block-latest-posts li a:hover:before,
.wp-block-categories-list li a:hover:before,
.wp-block-archives-list li a:hover:before,
.widget_categories ul li a:hover:before,
.widget_archive ul li a:hover:before,
.widget_meta ul li a:hover:before,
.widget_pages ul li a:hover:before,
.widget_recent_comments ul li a:hover:before,
.widget_nav_menu ul li a:hover:before,
.widget_recent_entries ul li a:hover:before,
.widget_services ul li a:hover:before {
    transform: rotate(45deg);
}

.recent-posts-entry .widget-post-bx .widget-post {
    display: flex;
    align-items: center;
    border-radius: 0.25rem;
    margin-bottom: 20px;
    transition: all 0.5s;
}

.recent-posts-entry .widget-post-bx .widget-post .dz-media {
    width: 110px;
    min-width: 110px;
    border-radius: 8px;
}

.recent-posts-entry .widget-post-bx .widget-post .dz-info {
    padding-left: 20px;
}

.recent-posts-entry .widget-post-bx .widget-post .dz-meta {
    margin-bottom: 0;
}

.recent-posts-entry .widget-post-bx .widget-post .dz-meta ul {
    line-height: 1;
}

.recent-posts-entry .widget-post-bx .widget-post .dz-meta ul li {
    color: #1abc9c;
    font-family: Rubik, sans-serif;
    position: relative;
}

.recent-posts-entry .widget-post-bx .widget-post .title {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.social-list {
    display: inline-block;
}

.social-list li {
    margin-left: 2px;
    margin-right: 2px;
    display: inline-block;
}

.social-list li a {
    height: 40px;
    width: 40px;
    line-height: 40px;
    color: #fff;
    display: block;
    text-align: center;
    padding: 0;
    text-align: center;
    justify-content: center;
    border-radius: 5px;
}

/*.social-list li a:after {*/
/*    left: -55%;*/
/*}*/

/*.social-list li a:hover {*/
/*    color: #fff;*/
/*}*/

/*.social-list li a:hover:after {*/
/*    left: 120%;*/
/*}*/

/*.social-list.style-1 li a {*/
/*    background-color: rgba(255, 255, 255, 0.2);*/
/*}*/

/*.social-list.style-1 li a:hover {*/
/*    background-color: #fff;*/
/*    color: #1abc9c;*/
/*}*/

/*.social-list.style-2 {*/
/*    margin: 0 -5px;*/
/*    display: flex;*/
/*}*/

/*.social-list.style-2 li {*/
/*    display: inline-block;*/
/*    padding: 0 5px;*/
/*}*/

/*.social-list.style-2 li a {*/
/*    height: 40px;*/
/*    width: 40px;*/
/*    background-color: #1abc9c;*/
/*    display: block;*/
/*    text-align: center;*/
/*    line-height: 40px;*/
/*    border-radius: 4px;*/
/*    color: #fff;*/
/*    box-shadow: 0 5px 15px -10px #1abc9c;*/
/*}*/

/*.facebook {*/
/*    background-color: #3b5999;*/
/*}*/

/*.instagram {*/
/*    background-color: #ff1d7d;*/
/*}*/

/*.twitter {*/
/*    background-color: #55acef;*/
/*}*/

.heart {
    width: 60px;
    height: 60px;
    display: inline-block;
    background: url("../images/like.png");
    cursor: pointer;
    margin: -25px -15px;
}

.heart-blast {
    background-position: -1680px 0;
    transition: background 1s steps(28);
}

.theme-btn {
    background-color: #ffffff;
    border-radius: 40px;
    bottom: 10px;
    color: #ffffff;
    display: flex;
    height: 50px;
    left: 10px;
    min-width: 50px;
    position: fixed;
    text-align: center;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.theme-btn i {
    font-size: 22px;
    line-height: 50px;
}

.theme-btn.bt-support-now {
    background: linear-gradient(to right, #fb8405 0, #ff6804 100%, #ff9e04 200%);
    /* Old browsers */
    bottom: 70px;
    text-decoration: none;
}

.theme-btn.bt-buy-now {
    content: "\f067";
    background: linear-gradient(to right, #61dc9c 0, #11c99c 100%, #61dc9c 200%);
    text-decoration: none;

}

.theme-btn span {
    display: table-cell;
    vertical-align: middle;
    font-size: 16px;
    letter-spacing: -15px;
    opacity: 0;
    line-height: 50px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.theme-btn:focus, .theme-btn:active, .theme-btn:hover {
    color: #fff;
    padding: 0 20px;
}

.theme-btn:focus span, .theme-btn:active span, .theme-btn:hover span {
    opacity: 1;
    letter-spacing: 1px;
    padding-left: 10px;
}


@media only screen and (max-width: 1199px) {
    .widget_getintuch ul li h5, .widget_getintuch ul li .h5 {
        font-size: 18px;
        line-height: 1.2;
    }
}

@media only screen and (max-width: 1400px) {
    .site-footer.style-1 .footer-top {
        padding: 100px 0 60px;
    }
}

@media only screen and (max-width: 991px) {
    .site-footer.style-1 .footer-top {
        padding: 70px 0 30px;
    }

    .site-footer.style-1 .footer-bottom .text-end {
        margin-top: 15px;
    }
}

@media only screen and (max-width: 575px) {
    .site-footer.style-1 .footer-top {
        padding: 50px 10px 10px;
    }

    .site-footer.style-1 .footer-top .text {
        margin: 0 0px 30px;
    }

    .site-footer.style-1 .footer-top .footer-logo {
        margin-bottom: 30px;
    }
}

@media (max-width: 1199px) {
    .widget_getintuch{
        margin-top: 20px;
    }
    .recent-posts-entry{
        margin-top: 20px;
    }

}

/*<!--====  Back to Top   ====-->*/

.back-to-top {
    color: #1abc9c;
    font-size: 1.3rem;
    position: fixed;
    bottom: 160px;
    right: -30px;
    transform: rotate(0.25turn);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
    z-index: 1;
    text-decoration: none;
}

.back-to-top.active {
    z-index: 1000;
    right: -5px;
    opacity: 1;
    visibility: visible;
    color: #1abc9c;
    text-decoration: none;
}

.back-to-top::after {
    content: "";
    position: absolute;
    top: 10px;
    left: calc(100% + 7px);
    width: 100px;
    height: 1px;
    background-color: #1abc9c;
    /*text-decoration: none;*/
}



/*<!--====  About Page   ====-->*/
/* page title */

.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}

.page-title {
    position: relative;
    /*padding: 320px 0px 160px;*/
    padding: 406px 0px 160px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
}

.page-title:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background-color: rgba(0, 0, 0, 0.5);
}

.page-title .auto-container {
    position: relative;
}

.page-title .text {
    position: relative;
    color: #ffffff;
    font-size: 16px;
    margin-top: 12px;
    font-family: 'Roboto', sans-serif;
}

.page-title h2 {
    position: relative;
    color: #ffffff;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2em;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.page-breadcrumb {
    position: relative;
    margin-top: 30px;
}

.page-breadcrumb li {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    padding-right: 15px;
    color: #1abc9c;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
}

.page-breadcrumb li:after {
    position: absolute;
    content: "/";
    right: -2px;
    top: 1px;
    color: #ffffff;
    font-size: 18px;
    font-family: 'FontAwesome';
}

.page-breadcrumb li:last-child::after {
    display: none;
}

.page-breadcrumb li:last-child {
    padding-right: 0px;
    margin-right: 0px;
}

.page-breadcrumb li a {
    color: #ffffff;
    font-weight: 400;
    text-transform: capitalize;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.page-breadcrumb li a:hover {
    color: #1abc9c;
    text-decoration: none;
}

@media only screen and (max-width: 599px){
    .page-title .pull-right {
        width: 100%;
    }
}

/** weworks-section **/

.weworks-section{
    position: relative;
    padding: 80px 10px 20px;
    overflow-x: hidden;
    overflow-y: hidden;
}

.weworks-section .section-title {
    line-height: 45px;
    margin-bottom: 8px;
    font-family: 'Pacifico', cursive;
    font-weight: 700;
    color: #1abc9c;
    font-size: 20px;
}

#content_block_47 .content-box .sec-title h2{
    margin-bottom: 43px;
}

#content_block_47 .content-box .text{
    position: relative;
    font-size: 16px;
    margin-bottom: 45px;
}


.weworks-section .content-box{
    padding-top: 70px;
}

#content_block_47 .content-box .upper-box{
    position: relative;
    margin-bottom: 160px;
    margin-right: 30px;
}

#content_block_47 .content-box .counter-inner .single-counter-box{
    position: relative;
    margin-bottom: 77px;
}

#content_block_47 .content-box .counter-inner .single-counter-box .count-outer span{
    position: relative;
    display: inline-block;
    font-size: 36px;
    line-height: 45px;
    font-weight: 500;
    color: #222;
    margin-bottom: 12px;
}

#content_block_47 .content-box .counter-inner .single-counter-box h3{
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 32px;
    color: #1abc9c;
    font-weight: 500;
    padding-top: 14px;
}

#content_block_47 .content-box .counter-inner .single-counter-box h3:before{
    position: absolute;
    content: '';
    background: #afafaf;
    width: 30px;
    height: 1px;
    left: 0px;
    top: 0px;
}

#content_block_48 .inner-box .single-item{
    position: relative;
    background: #fff;
    box-shadow: 0 0px 15px 0px rgba(0, 0, 0, 0.1);
    padding: 40px 40px 44px 40px;
    text-align: center;
    border-radius: 20px;
    margin-bottom: 50px;
    overflow: hidden;
    transition: all 500ms ease;
}

#content_block_48 .inner-box .single-item:hover{
    background: #1abc9c;
    transform: translateY(-5px);
    box-shadow: 0 0px 25px 0px rgba(0, 0, 0, 0.2);
}

#content_block_48 .inner-box .single-item .icon-box{
    position: relative;
    display: inline-block;
    min-height: 125px;
    margin-bottom: 28px;
}

#content_block_48 .inner-box .single-item h3{
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 30px;
    color: #222;
    font-weight: 500;
    margin-bottom: 19px;
    transition: all 500ms ease;
}

#content_block_48 .inner-box .single-item h3 a{
    display: inline-block;
    color: #222;
    text-decoration: none;
}

#content_block_48 .inner-box .single-item .text{
    position: relative;
    font-size: 16px;
    line-height: 28px;
    transition: all 500ms ease;
}


#content_block_48 .inner-box .single-item:hover h3,
#content_block_48 .inner-box .single-item:hover h3 a,
#content_block_48 .inner-box .single-item:hover .text{
    color: #fff;
}

#content_block_48 .inner-box .single-column{
    padding: 0px 35px;
}

#content_block_48 .inner-box .single-item:before {
    content: '';
    width: 493px;
    height: 493px;
    background: rgba(113, 231, 198, 0.75);
    border-radius: 50%;
    position: absolute;
    top: -330px;
    left: -60px;
    z-index: -1;
    transform: translate(-50% , -50%);
    opacity: 0;
}


#content_block_48 .inner-box .single-item:after{
    content: '';
    width: 493px;
    height: 493px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    position: absolute;
    top: -230px;
    left: -60px;
    z-index: -1;
    transform: translate(-50% , -50%);
    opacity: 0;
}

#content_block_48 .inner-box .single-item:hover:before,
#content_block_48 .inner-box .single-item:hover:after{
    opacity: 1;
    transform: translate(0% , 0%);
    transition: all 0.9s linear;
}

#content_block_48 .inner-box{
    position: relative;
}

#content_block_48 .inner-box .bg-layer{
    position: absolute;
    width: 805px;
    height: 730px;
    top: 50px;
    right: 0px;
    background-repeat: no-repeat;

}

@media (max-width: 991px) {
    .weworks-section {
        padding: 0px 10px 20px
    }

}

/*<!--====  Best Place Page   ====-->*/

.pad-tb {
    padding-top: 100px;
    padding-bottom: 100px;
    overflow-x: hidden;
}
.about-sec-rpb.pad-tb{
    padding-bottom: 200px;
}
html .mt60{
    margin-top: 60px;
}

.ps-block{
    padding: 0 25px;
}
.ps-block h3 {
    font-size: 34px;
    line-height: 46px;
}
.ps-block p{
    font-size: 16px;
    line-height: 28px;
}

.image-block1 img {
    -webkit-box-shadow: -20px 20px 35px #dcdcdc, 20px -40px 35px #ffffff;
    box-shadow: -20px 20px 35px #dcdcdc, 20px -40px 35px #ffffff;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    width: 100%;
}

.common-heading.ptag h2 {
    position: relative;
    display: block;
    font-size: 25px;
    line-height: 36px;
    font-weight: 500;
    margin-bottom: 28px;
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    color: #0F172B;
    text-align: center;
}

.common-heading.ptag p {
    font-size: 16px;
    line-height: 28px;
    text-align: center;
}

.common-heading > span {
    color: #1abc9c;
    font-family: 'Pacifico', cursive;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
    display: block;
    text-align: center;

}

.v-center {
    align-self: center;
    align-items: center;
}

.ps-block span{
    font-size: 60px;
    font-family: 'Poppins', sans-serif;
    border-radius: 100%;
    border: 1px solid #e8e8e8;
    width: 100px;
    height: 100px;
    display: block;
    text-align: center;
    line-height: 100px;
    margin: 0 0 20px 0;
    color: #1abc9c;
    border-radius: 68% 32% 64% 36% / 59% 59% 41% 41%;
    background: #f5f5ff;
    animation: border-transform 6s linear infinite;
}

@keyframes border-transform{
    0%,100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; }
    14% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; }
    28% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; }
    42% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; }
    56% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%; }
    70% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; }
    84% { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; }
}



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

    .order1 {
        order: 1
    }
    .order2 {
        order: 2
    }
    .pad-tb {
        padding: 60px 10px 60px;
    }

    .common-heading h2,
    .common-heading h4,
    .common-heading>span,
    .header-heading p
    .common-heading.ptag p{
        text-align: center
    }
    .ps-block {
        padding: 0;
        margin: 30px 0 0
    }

}


/*<!--====  Contact Page   ====-->*/


.contact-section{
    position: relative;
    padding: 160px 0px 100px 0px;
}

.contact-section .info-content .single-info-box{
    position: relative;
    padding: 0px 30px;
    text-align: center;
    color: #777777;
    line-height: 30px;
    font-weight: 400;
    background: #ffffff;
    font-family: 'Ubuntu', sans-serif;
}

.contact-section .info-content .single-info-box .icon-box{
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.contact-section .info-content .single-info-box .icon-box img{
    position: relative;
    width: auto;
    transition: all 500ms ease;
}

.contact-section .info-content .single-info-box:hover .icon-box img{
    transform: scale(1.05);
}

.contact-section .info-content .single-info-box h2{
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 40px;
    color: #222;
    font-weight: 500;
    margin: 18px;
}

.contact-section .info-content .single-info-box .text{
    position: relative;
    font-size: 16px;
    margin-bottom: 14px;
}

.contact-section .info-content .single-info-box a{
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: #1abc9c;
}

.contact-section .info-content .single-info-box a:hover{
    text-decoration: underline;
}

.contact-section .info-content,
.contact-section .image-container{
    position: relative;
    margin-bottom: 110px;
}

.contact-section .contact-form-area .form-inner .form-group{
    position: relative;
    margin-bottom: 30px;
}

.contact-section .contact-form-area .form-inner .form-group i{
    position: absolute;
    top: 23px;
    right: 30px;
    font-size: 15px;
    font-weight: 700;
    color: #1abc9c;
    z-index: 1;
}

.contact-section .contact-form-area .form-inner .form-group input[type='text'],
.contact-section .contact-form-area .form-inner .form-group input[type='email'],
.contact-section .contact-form-area .form-inner .form-group textarea{
    position: relative;
    width: 100%;
    height: 60px;
    background: #fff;
    padding: 10px 60px 10px 30px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 30px;
    border: 3px solid #fff;
    box-shadow: 0 0px 20px 0px rgba(0, 0, 0, 0.1);
    transition: all 500ms ease;
}

.contact-section .contact-form-area .form-inner .form-group textarea{
    height: 200px;
    resize: none;
    border-radius: 20px;
}

input:focus,
textarea:focus{
    outline: none;
    box-shadow: none;
    transition: all 500ms ease;
}

.contact-section .contact-form-area .form-inner .form-group input:focus,
.contact-section .contact-form-area .form-inner .form-group textarea:focus{
    border-color: #1abc9c;
}

.contact-section .contact-form-area .form-inner .message-btn{
    margin: 0px;
    text-align: center;
}

.contact-section .contact-form-area .form-inner .message-btn .theme-btn-two{
    padding: 13px 38px;
    font-weight: 400;
}

.contact-section .contact-form-area .sec-title h2{
    text-align: center;
    margin-bottom: 63px;
    position: relative;
    display: block;
    font-size: 36px;
    line-height: 48px;
    /*color: #222222;*/
    font-weight: 500;
    padding-bottom: 31px;
    font-family: 'Ubuntu', sans-serif;
}

/*<!--====  Map Section   ====-->*/
.map-section{
    position: relative;
}


.map-section #contact-google-map {
    position: relative;
    width: 100%;
    height: 575px;
}

@media (max-width: 1200px) {
    .contact-section .info-content .single-info-box{
        padding: 0px 30px;
    }

}

@media only screen and (max-width: 991px){
    .contact-section .info-content .single-info-box {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .contact-section{
        padding: 70px 0px;
    }

    .contact-section .info-content, .contact-section .image-container{
        margin-bottom: 30px;
    }

}

@media (max-width: 575px) {
    .contact-section .default-form{
        padding: 10px;
    }
}

/*<!--====  Gallery Page   ====-->*/

.section-title h1{
    /*line-height: 45px;*/
    margin-bottom: 8px;
    font-family: 'Pacifico', cursive;
    font-weight: 700;
    color: #1abc9c;
    font-size: 20px;
}

.section-title h2{
    position: relative;
    display: block;
    font-size: 25px;
    /*line-height: 36px;*/
    /*font-weight: 500;*/
    /*margin-bottom: 28px;*/
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    color: #0F172B;
}


/*===============================
	Latest Works
================================*/
.latest-works{
    padding: 70px 0px;
}
.latest-works .section-title {
    text-align:left;
    /*margin-bottom:30px;*/
}
.latest-works .section-title h2:after{
    left:0;
    margin-left:0px;
}
/* works-menu */
.latest-works .works-menu {
    text-align: left;
    padding-bottom: 15px;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 35px;
    margin-right: 24px;
}
/*.latest-works .works-menu ul{*/
/*    margin-left: -27px;*/
/*}*/
.latest-works .works-menu ul li {
    position: relative;
    font-size: 13px;
    font-weight: 500;
    color: #888;
    display: inline-block;
    margin-right: 8px;
    padding: 9px 23px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 3;
    border-radius: 30px;
    border: 1px solid #dedede;
    background: transparent;
}
.latest-works .works-menu ul li:last-child{
    margin-right:0;
}

.gallery{
    margin-top: 100px;
}


.latest-works .works-menu ul li span {
    display: block;
    color: #fff;
    font-size: 13px;
    background: #1abc9c;
    height: 27px;
    width: 34px;
    line-height: 30px;
    position: absolute;
    top: 10px;
    left: 50%;
    margin-left: -17px;
    text-align: center;
    border-radius: 3px;
    font-weight: 600;
    z-index:-1;
    -webkit-transition:all 0.2s ease;
    -moz-transition:all 0.2s ease;
    transition:all 0.2s ease;
    opacity:0;
    visibility:hidden;
}
.latest-works .works-menu ul li span::before {
    position: absolute;
    content: "";
    left: 50%;
    bottom: -10px;
    border: 5px solid #1abc9c;
    border-bottom: 5px solid transparent;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    margin-left: -5px;
}
.latest-works .works-menu ul li:hover span{
    top:-39px;
    opacity:1;
    visibility:visible;
}
.latest-works .works-menu ul li:hover{
    cursor:pointer;
}
.latest-works .works-menu ul li.active{
    color:#fff;
    cursor:pointer;
    background:#1abc9c;
    border-color:#1abc9c;
}
/* single-work */
.latest-works .single-work{
    position:relative;
    margin-bottom:30px;
    overflow:hidden;
    z-index:9;
}
.latest-works .single-work:before{
    background: rgba(26, 188, 156, 0.5);
    top:0px;
    left:0;
    content: "";
    height: 100%;
    width:100%;
    left:0px;
    position: absolute;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    opacity:0;
    visibility:hidden;
    z-index:5;
}
.latest-works .single-work:hover:before{
    opacity:0.9;
    visibility:visible;
}
.latest-works .single-work img{
    width:100%;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index:-1;
}

.latest-works .single-work video {
    width: 100%;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: -1;
}

.latest-works .single-work:hover img{
    transform:scale(1.2);
}

.latest-works .single-work:hover video{
    transform:scale(1.2);
}
.latest-works .single-work .works-hover{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    padding:35px;
    opacity:0;
    visibility:hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index:9;
}
.latest-works .single-work:hover .works-hover{
    opacity:1;
    visibility:visible;
}
.latest-works .single-work .works-hover a{
    display:inline-block;
    -webkit-transition:all 0.4s ease;
    -moz-transition:all 0.4s ease;
    transition:all 0.4s ease;
}
.latest-works .single-work .works-hover h4 {
    color: #fff;
    font-size: 15px;
    margin-bottom:20px;
    position: relative;
    text-transform: uppercase;
    transform: translateY(-20px);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    /*background: #fff;*/
    color: #ffffff;
    display: inline-block;
}
.latest-works .single-work .works-hover h4 a{
    color:#1abc9c;
    padding: 5px 10px;
}
.latest-works .single-work:hover .works-hover h4{
    transform: translateY(0px);
}
.latest-works .single-work .works-hover p{
    color:#fff;
    font-size:15px;
    transform: translateY(-20px);
    -webkit-transition:all 0.3s ease;
    -moz-transition:all 0.3s ease;
    transition:all 0.3s ease;
}
.latest-works .single-work:hover .works-hover p{
    transform: translateY(0px);
}
.latest-works .single-work .works-hover .link {
    font-size: 13px;
    color: #fff;
    background: transparent;
    text-align: center;
    position: absolute;
    display: block;
    z-index: 9999;
    border-radius: 100%;
    border: 1px solid #fff;
    height: 40px;
    width: 40px;
    line-height: 39px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    right: 35px;
    bottom: 35px;
}
.latest-works .single-work .works-hover .link:hover{
    background:#fff;
    color:#1abc9c;
    border-color:transparent;
}

@media only screen and (max-width: 767px){
    .latest-works .works-menu ul li {
        padding: 5px 18px;
        margin-bottom: 10px;
    }
}
@media (min-width: 768px) {

    .latest-works.top {
        margin-top: 120px;
    }

    .latest-works .single-work .works-hover {
        padding: 15px;
    }

    .latest-works .single-work .works-hover .link {
        right: 15px;
        bottom: 15px;
    }

    .latest-works .works-menu {
        text-align: right;
        margin-bottom: 30px;
        /*margin-top: 0;*/

    }
    .latest-works .works-menu ul li {
        padding: 5px 18px;
        margin-bottom:10px;
    }

}

@media (max-width: 559px) {
    .gallery {
        margin-top: 257px;
    }

    .latest-works .works-menu {
        margin-top: 30px;
    }

}

/*<!--====  Loader   ====-->*/
#preloader {
    background-color: #2c3034;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #1abc9c;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #1abc9c;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}
#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #1abc9c;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}