/* ===================================
    Table of Content
====================================== */

/*  - Fonts
    - General
    - Header And Nav-Bar
    - Slider
    - About
    - Services
    - Gallery
    - Counter
    - Video Model
    - Testimonials
    - Blog
    - Contact
    - Google-Map
    - Footer
    - Loader
    - Media Queries   */

/* ===================================
    Google font
====================================== */

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

.main-font {
    font-family: 'Raleway', sans-serif;
}

.alt-font {
    font-family: 'Open Sans', sans-serif;
}

/* ===================================
    Scrollbar
====================================== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    width: 8px;
    background: white;
    border-left: 0 solid white;
    border-right: 0 solid white;
}

::-webkit-scrollbar-thumb {
    background: #4163BB;
    width: 0;
    height: 25%;
    transition: .5s ease;
    cursor: pointer;
}

/* ===================================
   Scroll Top
====================================== */
.go-top {
    position: fixed;
    cursor: pointer;
    bottom: 15px;
    right: 75px;
    color: #ffffff;
    background-size: 200% auto;
    background: #4163BB;
    border-radius: 50%;
    z-index: 4;
    width: 50px;
    text-align: center;
    height: 52px;
    line-height: 42px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .9s;
    -o-transition: .9s;
    transition: .9s;
    -webkit-transform: translateY(150px);
    -ms-transform: translateY(150px);
    transform: translateY(150px);
}


.go-top.active {
    -webkit-animation: slideInRight 1s;
    animation: slideInRight 1s;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.go-top i {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.go-top i:last-child {
    opacity: 0;
    visibility: hidden;
    top: 60%;
}

.go-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: 200% auto;
    background: #4163BB;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    border-radius: 50%;
}

.go-top:hover,
.go-top:focus {
    color: #ffffff;
    background-position: right center;
}

.go-top:hover::before,
.go-top:focus::before {
    opacity: 1;
    visibility: visible;
}

.go-top:hover i:first-child,
.go-top:focus i:first-child {
    opacity: 0;
    top: 0;
    visibility: hidden;
}

.go-top:hover i:last-child,
.go-top:focus i:last-child {
    opacity: 1;
    visibility: visible;
    top: 50%;
}

/* ===================================
    Image Hover
====================================== */

.hover-effect::before,
.hover-effect::after {
    content: "";
    background: #fff;
    height: 0;
    width: 0;
    z-index: 1;
    position: absolute;
    -webkit-transition-duration: 1.3s !important;
    -o-transition-duration: 1.3s;
    transition-duration: 1.3s !important;
}

.hover-effect::before {
    right: 0;
    opacity: 1;
    bottom: 0;

}

.hover-effect::after {
    top: 0;
    opacity: .7;
    left: 0;
}

.hover-effect:hover::after,
.hover-effect:hover::before {
    height: 100%;
    opacity: 0;
    width: 100%;
}

/* Use in BLog */
.image {
    overflow: hidden;
}

a.image {
    display: block;
}

.image img {
    width: 100%;
    height: 100%;
    display: block;
}

.image,
.image img {
    position: relative;
}

/* Use in BLog */
.image {
    overflow: hidden;
}

a.image {
    display: block;
}

.image img {
    width: 100%;
    height: 100%;
    display: block;
}

.image,
.image img {
    position: relative;
}

/* ===================================
    General
====================================== */

body {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: #202020;
    font-weight: 300;
    line-height: 32px;
    width: 100%;
    overflow-x: hidden
}

a,
input,
button,
.navbar,
.fixedmenu,
.tp-bullet,
.owl-dot,
.owl-prev,
.owl-next {
    transition: ease-in-out 0.2s;
    -webkit-transition: ease-in-out 0.2s;
    -moz-transition: ease-in-out 0.2s;
    -ms-transition: ease-in-out 0.2s;
    -o-transition: ease-in-out 0.2s;
}

section,
.section-padding {
    position: relative;
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.rev_slider_wrapper {
    width: 100% !important;
}

.btn.focus,
.btn:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

p:last-child {
    margin-bottom: 0 !important;
    font-family: 'Open Sans', sans-serif;
}

.fa,
.far,
.fas {
    display: inline;
}

a:active,
a:hover {
    color: #4163BB;
}

li {
    list-style: none;
    text-decoration: none;
}

blockquote {
    /* border-left: 2px solid; */
    padding: 10px 15px 10px 35px;
    margin: 25px 0;
    font-size: 18px;
    line-height: 28px;
    margin-top: 32px;
    margin-bottom: 32px;
}

blockquote>cite {
    font-weight: 400;
    font-size: 14px;
    display: block;
}

.hidden {
    display: none;
}

section {
    padding: 7.5rem 0;
}

::selection {
    background-color: #4163BB;
    color: #ffffff;
}

/* transition none */
.no-transition * {
    transition-timing-function: initial;
    -moz-transition-timing-function: initial;
    -webkit-transition-timing-function: initial;
    -o-transition-timing-function: initial;
    -ms-transition-timing-function: initial;
    transition-duration: 0s;
    -moz-transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -o-transition-duration: 0s;
    -ms-transition-duration: 0s;
}

/* overlay */
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* opacity */
.opacity-full {
    opacity: 1;
}

.opacity-1 {
    opacity: .1;
}

.opacity-2 {
    opacity: .2;
}

.opacity-3 {
    opacity: .3;
}

.opacity-4 {
    opacity: .4;
}

.opacity-5 {
    opacity: .5;
}

.opacity-6 {
    opacity: .6;
}

.opacity-7 {
    opacity: .7;
}

.opacity-8 {
    opacity: .8;
}

.opacity-9 {
    opacity: .9;
}

/*font-weight*/
.font-weight-100 {
    font-weight: 100;
}

.font-weight-200 {
    font-weight: 200;
}

.font-weight-300 {
    font-weight: 300;
}

.font-weight-300 {
    font-weight: 400;
}

.font-weight-500 {
    font-weight: 500;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-700 {
    font-weight: 700;
}

/* button */
.btn {
    -webkit-appearance: initial;
    overflow: hidden;
    position: -webkit-sticky;
    position: sticky;
    z-index: 2;
    display: inline-block;
    font-size: 15px;
    border: 2px solid transparent;
    letter-spacing: .5px;
    line-height: inherit;
    border-radius: 0;
    text-transform: capitalize;
    width: auto;
    font-family: 'Raleway', sans-serif;
    font-weight: normal;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease !important;
    transition: all .5s ease !important;
}

/* Blue button */
.btn.btn-blue {
    background: #4163BB;
    border-color: #4163BB;
    color: #ffffff
}

.btn.btn-blue:hover {
    background: #000 !important;
    border-color: #000;
    color: #ffffff !important
}

/* Green button */
.btn.btn-green {
    background: #81a109;
    border-color: #81a109;
    color: #ffffff
}

.btn.btn-green:hover {
    background: #33c9dd !important;
    border-color: #33c9dd;
    color: #ffffff !important
}

/* Transparent button */
.btn.btn-trans {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff
}

.btn.btn-trans:hover {
    background: #4163BB !important;
    border-color: #4163BB;
    color: #ffffff !important
}

/* button size */
.btn.btn-small {
    font-size: 12px;
    padding: 4px 1.8em;
}

.btn.btn-medium {
    font-size: 16px;
    padding: 10px 48px;
    line-height: 1.8em
}

.btn.btn-large {
    font-size: 16px;
    padding: 14px 30px;
    line-height: 1.8em;
}

.btn.btn-rounded {
    border-radius: 50px;
}

/* Text color */
.text-green {
    color: #81a109;
}

.text-blue {
    color: #33c9dd;
}

.text-black {
    color: #212331;
}

.text-grey {
    color: #f6f6f6;
}

.text-white {
    color: #ffffff;
}

/* Background color */
.bg-green {
    background: #81a109;
}

.bg-blue {
    background: #33c9dd;
}

.bg-black {
    background: #000000;
}

.bg-gray {
    background: #f6f6f6;
}

.bg-transparent {
    background: transparent;
}

.margin-top {
    margin-top: 30px;
}

.margin-bottom {
    margin-bottom: 30px;
}

/*Social Icon Hover Bg Hover */
.social-icon:hover {
    color: #FFFFFF !important;
    background: #4163BB !important;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

/* ===================================
        Header
   ====================================== */

/* nav top default */

header a.logo {
    display: inline-block;
    padding-top: .4rem;
}

header a.logo img {
    max-width: 270px;
    vertical-align: sub;
}

.navbar-top-default {
    position: absolute;
    top: 0;
    z-index: 99;
    overflow: hidden;
    height: 70px;
    width: 100%;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    background-color: #fff;
    border-bottom: solid 1px rgba(255, 255, 255, 0.30);
}

.header-appear .navbar-top-default {
    height: 70px;
    position: fixed;
    z-index: 99;
    background: #ffffff;
    -webkit-animation-name: animationFade;
    animation-name: animationFade;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}

.header-appear .navbar-top-default {
    background: #fff;
    border-bottom: none;
    /* padding: 0; */
}

.navbar-top-default #megaone {
    margin-right: -30px;
}

/*Navbar Simple*/

.navbar-simple .navbar-nav .nav-link {
    font-size: 15px;
    color: #000;
    font-weight: 700;
    text-align: center;
    padding: 0.4rem 1.5rem;
}

.nav-box-round .navbar-nav .nav-link {
    border-radius: 20px;
}

.header-appear .nav-box-round .navbar-nav .nav-link.active {
    background-color: #a07bf7;
    color: #ffffff !important;
}

.header-appear .nav-box-round .navbar-nav .nav-link:hover {
    color: #a07bf7;
}

/*nav line*/

.nav-line .navbar-nav .nav-link.active:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    visibility: visible;
    opacity: 1;
}

.nav-line .navbar-nav .nav-link:before {
    position: relative;
    content: '';
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: table;
    height: 3px;
    border-radius: 2px;
    bottom: -28px;
    -webkit-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    background: #FFBF00;
    visibility: hidden;
    opacity: 0;
}

/* ===================================
    Side Menu
====================================== */


.side-menu {
    width: 40%;
    position: fixed;
    right: 0;
    top: 0;
    background: #4163BB;
    z-index: 1032;
    height: 100%;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    -o-transition: -o-transform .5s ease;
    -o-transition: transform .5s ease;
    transition: transform .5s ease;
    -webkit-transition: transform .5s ease;
    overflow: hidden;
}

.side-menu.left {
    left: 0;
    right: auto;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.side-menu.before-side {
    width: 280px;
}

.side-menu.side-menu-active,
.side-menu.before-side {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.pul-menu .side-menu.side-menu-active {
    visibility: visible;
    opacity: 1;
}

.side-menu .navbar-brand {
    margin: 0 0 2.5rem 0;
}

/*Side overlay*/
#close_side_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    -webkit-transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
    -o-transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
    display: none;
    z-index: 1031;
    opacity: 0.4;
}

/*side clode btn*/
.side-menu .btn-close {
    height: 33px;
    width: 33px;
    display: inline-block;
    text-align: center;
    position: absolute;
    top: 25px;
    right: 50px;
    cursor: pointer;
}

.side-menu.before-side .btn-close {
    display: none;
}

.side-menu .btn-close::before,
.side-menu .btn-close::after {
    position: absolute;
    left: 16px;
    content: ' ';
    height: 24px;
    width: 2px;
    background: #fff;
    top: 5px;
}

.side-menu .btn-close:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.side-menu .btn-close:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/*side open btn*/

.sidemenu_btn,
.sidemenu_btn_mobile {
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    width: 36px;
    padding: 6px;
    margin-right: 1rem;
    margin-top: .7rem;
    position: absolute;
    right: 15px;
    display: inline-block;
}


.sidemenu_btn span,
.sidemenu_btn_mobile span {
    height: 2px;
    width: 100%;
    background: #000;
    display: block;
}

.sidemenu_btn span:nth-child(2),
.sidemenu_btn_mobile span:nth-child(2) {
    margin: 4px 0;
}

.side-menu .inner-wrapper {
    padding: 3.5rem 5rem;
    height: 100%;
    position: relative;
    overflow-y: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.pul-menu.pushwrap .side-menu .inner-wrapper {
    padding: 3.5rem 2.5rem;
}

.side-menu .side-nav {
    margin-bottom: 30px;
    display: block;
}

.side-nav .navbar-nav .nav-item {
    display: block;
    margin: 10px 0;
    padding: 0 !important;
    opacity: 0;
    -webkit-transition: all 0.8s ease 500ms;
    -o-transition: all 0.8s ease 500ms;
    transition: all 0.8s ease 500ms;

    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
}

.side-nav .navbar-nav .nav-item:first-child {
    -webkit-transition-delay: .1s;
    -o-transition-delay: .1s;
    transition-delay: .1s;
}

.side-nav .navbar-nav .nav-item:nth-child(2) {
    -webkit-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s;
}

.side-nav .navbar-nav .nav-item:nth-child(3) {
    -webkit-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s;
}

.side-nav .navbar-nav .nav-item:nth-child(4) {
    -webkit-transition-delay: .4s;
    -o-transition-delay: .4s;
    transition-delay: .4s;
}

.side-nav .navbar-nav .nav-item:nth-child(5) {
    -webkit-transition-delay: .5s;
    -o-transition-delay: .5s;
    transition-delay: .5s;
}

.side-nav .navbar-nav .nav-item:nth-child(6) {
    -webkit-transition-delay: .6s;
    -o-transition-delay: .6s;
    transition-delay: .6s;
}

.side-nav .navbar-nav .nav-item:nth-child(7) {
    -webkit-transition-delay: .7s;
    -o-transition-delay: .7s;
    transition-delay: .7s;
}

.side-nav .navbar-nav .nav-item:nth-child(8) {
    -webkit-transition-delay: .8s;
    -o-transition-delay: .8s;
    transition-delay: .8s;
}

.side-nav .navbar-nav .nav-item:nth-child(9) {
    -webkit-transition-delay: .9s;
    -o-transition-delay: .9s;
    transition-delay: .9s;
}

.side-menu.side-menu-active .side-nav .navbar-nav .nav-item {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.side-nav .navbar-nav .nav-link {
    display: inline-table;
    color: #fff;
    padding: 2px 0 3px 0 !important;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: normal;
    position: relative;
    border-radius: 0;
}

.side-nav .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    background: #fff;
    display: inline-block;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
    -o-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
    transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
}

.side-nav .navbar-nav .nav-link:hover::after,
.side-nav .navbar-nav .nav-link:focus::after,
.side-nav .navbar-nav .nav-link.active::after {
    width: 100%;
}

.side-nav .navbar-nav .nav-link.active {
    background: transparent;
}

.side-menu p {
    margin-top: .5rem;
    margin-bottom: 0;
}

.social-icons-simple {
    margin-bottom: 0;
    margin-left: -10px;
}

.social-icons-simple li {
    display: inline-block;
}

.social-icons-simple li a {
    display: block;
    font-size: 16px;
    height: 36px;
    line-height: 38px;
    border: 1px solid transparent;
    text-align: center;
    width: 36px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    -webkit-transition: background-color .5s ease;
    -o-transition: background-color .5s ease;
    transition: background-color .5s ease;
}

.social-icons-simple li a:hover {
    background-color: #FFFFFF;
}

.social-icons-simple li.animated-wrap a:hover {
    background-color: transparent;
    color: #ffffff;
}

@-webkit-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/* ===================================
        Slider
====================================== */

.tp-bannertimer {
    background: #2d2d2d;
}

.slider-heading {
    font-size: 72px;
}

.slider-paragraph {
    font-size: 24px;
    font-weight: 300;
    font-family: "Open Sans", sans-serif !important;
}

.slider-section {
    overflow-x: hidden;
}

/* ===================================
        About
====================================== */

.img-sec {
    position: relative;
    padding-right: 50px;
    padding-bottom: 50px;
}

.about_img {
    padding: 3%;
    background-color: #f6f6f6;
    position: relative;
}

.margin_aboutimg {
    margin-left: 10%;
}

.about_img img {
    height: 100%;
    width: 100%;
}

.green_rectangle {
    position: absolute;
    width: 60%;
    height: 67%;
    bottom: 1%;
    background-color: #4163BB;
}

.colored_heading {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: #4163BB;
    margin-bottom: 0;
    letter-spacing: 0;
}

.about-heading {
    text-align: left;
    margin-top: 70px;
}

.heading {
    font-size: 50px;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    color: #212331;

}

.margin_heading {
    margin-top: 25px;
    margin-bottom: 25px;
}

.info {
    color: #797979;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
}

.margin_button {
    margin-top: 25px;
}

/* ===================================
    Types of Gardening
====================================== */

.card {
    background-color: #fff;
    /* border: 0 solid rgba(0, 0, 0, .125); */
}

.card-body {
    padding: 2.25rem;
}

.cover:hover {
    border-radius: 15px;
    -webkit-box-shadow: 2px 2px 15px #e1e1e1;
    box-shadow: 2px 2px 15px #e1e1e1;
}

.numbering {
    font-size: 48px;
    font-weight: normal;
    font-family: "Open Sans", sans-serif;
}

.cover:hover .numbering {
    background: -webkit-linear-gradient(180deg, rgb(33, 35, 49) 85%, rgb(33, 35, 49) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cover:hover .card-title {
    color: #81a109;
}

.cover:hover .versa-effect {
    color: #33c9dd;
}

.cover {
    padding: 25px;
    cursor: pointer;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
}

.cover .card-title {
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 30px;
    font-family: 'Raleway', sans-serif;
    font-weight: normal;
    color: rgb(33, 35, 49);
    -webkit-transition: 0.9s ease;
    -o-transition: 0.9s ease;
    transition: 0.9s ease;
}

/* ===================================
        Portfolio Section
   =================================== */

.padding_color {
    background: white !important;
}

.small-screen {
    display: none;
}

.portfolio-heading {
    text-align: center;
    margin-top: 65px;
}

.portfolio-heading1 {
    text-align: left;
    margin-top: 25px;
}

.info_margin {
    margin-bottom: 50px;
}

.main_heading {
    font-size: 48px;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    color: rgb(33, 35, 49);
    line-height: 1.133;
}

.heading_color {
    color: #81a109;
    margin-top: 10px;
    margin-bottom: 10px;
}

.text_color {
    color: rgb(33, 35, 49) !important;
}

/*PORTFOLIO MASONRY STYLE*/

#portfolio_top {
    position: relative;
    overflow: hidden !important;
    background-color: #EFF4FF;
    padding-top: 0;
}

#portfolio_top::before,
#portfolio_top::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    background: #fff;
    height: 90px;
    width: 100%;
}

#portfolio_top::after {
    bottom: 0;
}

.text_wrap {
    padding: 50px 2rem 0.5rem 2rem;
}

.padding_box {
    border: 20px solid #fff;
}

.bottom-text>.cells {
    display: table-cell;
    vertical-align: middle;
    padding: 15px;
}

/*PORTFOLIO HOVER EFFECT*/
#portfolio_top .cbp-item:hover img {
    -webkit-animation: 1 zoomeff;
    animation: 1 zoomeff;
}

@-webkit-keyframes zoomeff {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    to {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

@keyframes zoomeff {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    to {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

.plus {
    display: block;
    margin: 0 auto;
    height: 70px;
    width: 70px;
    position: relative;
    overflow: hidden !important;
    margin-bottom: 1rem;
}

.plus_icon {
    font-size: 65px;
}

.hover_heading {
    margin-top: 15px !important;
    margin-bottom: 10px !important;
}

figure.snip0015 {
    font-family: 'Raleway', Arial, sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    width: 100%;
    background-image: -webkit-linear-gradient(190deg, #4163BB 25%, #4163BB 50%);
    text-align: center;
}

figure {
    margin: 0 0 0 !important;
}

figure.snip0015 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
}

figure.snip0015 img {
    opacity: 1;
    width: 100%;
    -webkit-transition: opacity 0.35s;
    -o-transition: opacity 0.35s;
    transition: opacity 0.35s;
    -webkit-transition: 1s ease;
    -o-transition: 1s ease;
    transition: 1s ease;
}

figure.snip0015:hover img {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}

figure.snip0015 figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 3em 3em;
    width: 100%;
    height: 100%;
}

figure.snip0015 figcaption::before {
    position: absolute;
    top: 50%;
    right: 30px;
    bottom: 50%;
    left: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    content: '';
    opacity: 0;
    background-color: white;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

figure.snip0015 h3,
figure.snip0015 p,
figure.snip0015 .plus_icon {
    margin: 0 0 5px;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s, transform 0.35s;
}

figure.snip0015 h3 figcaption .plus_icon {
    word-spacing: -0.15em;
    font-weight: 300;
    text-transform: uppercase;
    -webkit-transform: translate3d(0%, 50%, 0);
    transform: translate3d(0%, 50%, 0);
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

figure.snip0015 h3 span {
    font-weight: 800;
}

figure.snip0015 p {
    font-weight: 200;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}

figure.snip0015 a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    color: #ffffff;
}

figure.snip0015:hover img {
    opacity: 0.15;
}

figure.snip0015:hover figcaption h3 {
    opacity: 1;
    -webkit-transform: translate3d(0%, 0%, 0);
    transform: translate3d(0%, 0%, 0);
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

figure.snip0015:hover figcaption .plus_icon {
    opacity: 1;
    -webkit-transform: translate3d(0%, 0%, 0);
    transform: translate3d(0%, 0%, 0);
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

figure.snip0015:hover figcaption p {
    opacity: 0.9;
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

figure.snip0015:hover figcaption::before {
    background: rgba(255, 255, 255, 0);
    top: 30px;
    bottom: 30px;
    opacity: 1;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}

.caption_center {
    margin-top: 150px;
}

/* ===================================
    Counter Section
=================================== */

.counter-heading {
    margin-left: auto;
    text-align: center;
    margin-right: auto;
}

.info_width {
    max-width: 830px;
}

.wrapper {
    margin-top: 50px;
    cursor: pointer;
    padding-left: 0;
    padding-right: 0;
}

.end {
    margin-right: 0 !important;
}

.counter {
    background-color: #ffffff;
    padding: 20px 0 0 0;
    border-radius: 5px;
    text-align: center;
}

.counter_plus {
    font-size: 22px;
    font-weight: 900;
    color: #1C4BC4;
}

.count-title {
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0);
    font-weight: bold;
    line-height: 1.333;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
    background: -webkit-linear-gradient(170deg, #1C4BC4 20%, #1C4BC4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.center-blue .counter_plus {
    font-size: 22px;
    font-weight: 900;
    color: #33c9dd;
}

.center-blue .count-title {
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0);
    font-weight: bold;
    line-height: 1.333;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
    background: -webkit-linear-gradient(170deg, #33c9dd 20%, #33c9dd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wrapper:hover .counter_icon {
    -webkit-animation: 1s jackInTheBox;
    animation: 1s jackInTheBox;
}

.heading_mainc {
    font-size: 48px;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    color: rgb(33, 35, 49);
    line-height: 0.899;
}

.count-text {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    color: #212331;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}

.counter_icon {
    margin: 0 auto;
    float: none;
    display: table;
    color: #212331;
    font-size: 50px;
    padding-bottom: 10px;
}

.other {
    height: 1500px;
}

/* ===================================
    VIDEO MODEL WINDOW
=================================== */

#training_video {
    padding: 0;
    background: #f6f6f6;
}

.vedio-heading {
    text-align: left;
    margin-top: 17.5%;
    margin-bottom: 17.5%;
}

.vedio_img {
    margin-top: 40px;
}

.img-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.img-list li {
    border: 5px solid transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 33.33%;
    float: left;
    position: relative;
    cursor: pointer;
}

.img-list img {
    max-width: 100%;
    vertical-align: middle;
}

/* ===================================
    TESTIMONIAL
=================================== */

.testimonial-box {
    background: #f6f6f6;
    overflow: hidden;
    padding: 65px 45px 45px 45px;
    margin: 50px 10px 10px 10px;
    -webkit-transition: 1s ease;
    -o-transition: 1s ease;
    transition: 1s ease;
    cursor: pointer;
    border-radius: 10px;
}

.owl-testimonial .owl-item:not(.center) .testimonial-box:hover {
    background-color: #4163BB;
}

.testimonial-box:hover .quote_box {
    background-color: white;
}

.testimonial-box:hover .infot_margin {
    color: white !important;
}

.testimonial-box:hover .quote {
    color: #4163BB;
}

.owl-testimonial .center .quote_box {
    background-image: -webkit-linear-gradient(180deg, #81a109 20%, #81a109 100%);
}

.owl-testimonial .owl-item .testimonial-box:hover {
    background-color: #4163BB;

}

.center .testimonial-box:hover:before {
    opacity: 1 !important;
}

.owl-testimonial .center .testimonial-box:hover .quote {
    background: -webkit-linear-gradient(180deg, #4163BB 60%, #4163BB 40%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.owl-testimonial .center .testimonial-box:hover .quote_box {
    background-image: -webkit-linear-gradient(180deg, #ffffff 20%, #ffffff 100%) !important;
}

.margin-p {
    text-align: center;
}

.testimonial_img {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    /* bottom: -20px; */
    top: 60%;
}

.testimonial_img img {
    object-fit: cover;
    width: 80px !important;
    height: 80px !important;
    border-radius: 50%;
}

.quote {
    font-size: 30px;
    color: white;
}

.quote_box {
    border: 1px solid transparent;
    border-radius: 50px;
    width: 60px;
    height: 60px;
    background: #4163BB;
    padding: 15px 10px 10px 14px;
    position: absolute;
    bottom: 83.5%;
    left: 44.5%
}

.infot_margin {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 40px;
    position: relative;
    z-index: 999;
}

.testimonial_name {
    font-size: 20px;
    font-family: 'Raleway', sans-serif;
    color: rgb(33, 35, 49);
    text-align: center;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0;
}

.blue_text {
    color: #33c9dd;
}

#testimonials .text {
    position: absolute;
    text-align: center;
    top: 84%;
    left: 32%;
}

#testimonials .item {
    padding-bottom: 120px;
}

.owl-testimonial .owl-dots {
    margin-top: 40px !important;
    text-align: center;
}

.owl-testimonial .owl-dots .owl-dot.active span,
.owl-testimonial .owl-dots .owl-dot:hover span {
    background: #4163BB;
}

.owl-testimonial .owl-dots .owl-dot span {
    background: white;
    border: 2px solid #4163BB;
    font-size: 30px;
    padding: 5px;
    margin: 0 8px;
    border-radius: 50%;
}

.owl-testimonial .center .infot_margin {
    padding-top: 10px;
    padding-bottom: 60px;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

/* ===================================
        BLOG SECTION
=================================== */

#blog {
    background-color: #f6f6f6;
    overflow: hidden !important;
    padding: 0;
}

.blog_text {
    text-align: center;
}

.padding_blog {
    padding: 90px;
}

.blog_img {
    width: 100%;
    height: 100%;
}

/* ===================================
    CONTACT SECTION
=================================== */

#contact {
    padding-bottom: 0;
    margin-bottom: 125px;
    overflow: hidden !important;
}

.contact_text {
    text-align: center;
}

.contact_margin {
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
       GOOGLE-MAP
====================================== */

#map {
    overflow: hidden !important;
}

.mapouter {
    position: relative;
    text-align: right;
    height: 100%;
    width: 100%;
}

.full-map {
    height: 450px;
    width: 100%;
    overflow: hidden;
}

.map {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.bg-img-map {
    background: url(../images/map.jpg);
}

/* ===================================
   FOOTER
====================================== */

.footer {
    padding: 80px 0;
}

.footer-social ul {
    margin: 0;
    padding: 0;
}

.footer-social li {
    display: inline-block;
}

.footer-social a {
    display: block;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    border-radius: 50px;
    font-size: 17px;
    margin: 0 10px 0 0;
    border: 1px solid transparent;
    -webkit-transition: background-color .2s ease-in-out;
    -o-transition: background-color .2s ease-in-out;
    transition: background-color .2s ease-in-out;
}

.footer-social a i,
.company-about {
    color: #2a2a2a;
}

.footer-social a:hover i {
    color: #ffffff;
}

.footer-social li:nth-last-child(1) a {
    margin-right: 0;
}

.company-about {
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
}

/* ===================================
     Stand Alone
====================================== */

.standalone-row:not(:last-child) {
    margin-bottom: 3rem;
}

.standalone-row .stand-img-des {
    padding-left: 30px;
    text-align: center;
}

.standalone-row:nth-child(2) .stand-img-des {
    padding-left: 0;
    padding-right: 30px;
}

.standalone-detail .sub-heading {
    margin-bottom: 10px;
}

.standalone-area .sub-heading {
    margin-bottom: 8px;
}

.standalone-detail .heading {
    margin-bottom: 20px;
    font-size: 56px;
    font-weight: 400;
    font-family: 'Raleway', sans-serif;
}

.standalone-detail .para_text {
    font-family: 'Roboto', sans-serif;
    text-align: center;
    font-size: 18px;
    margin: 0 auto;
}

.standalone-detail {
    padding-bottom: 100px;
}

.standalone-area .heading-text {
    margin-bottom: 12px;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 45px;
}

.standalone-area .stand-img-des .para_text {
    font-family: 'Roboto', sans-serif;
}

.page-title {
    position: relative;
    text-align: center;
    padding: 200px 0 150px 0;
    background: url("../images/standalone.jpg");
    background-size: cover;
    background-position: top center;
}

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

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

.page-breadcrumb {
    position: relative;
}

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

.page-breadcrumb li:after {
    position: absolute;
    content: "\f105";
    right: -5px;
    top: 1px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
}

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

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

.page-breadcrumb li a {
    color: #fff;
    font-weight: 400;
    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 .icon {
    margin-right: 4px;
    color: #33c9dd;
}

.page-breadcrumb li a:hover {
    color: #4163BB;
}

/* ===================================
    MEDIA QUERIES
=================================== */

@media screen and (max-width:1359px) {
    .snip1577 figcaption {
        left: 65px;
        bottom: 70px;
    }

    .green_rectangle {
        position: absolute;
        width: 60%;
        height: 67%;
        bottom: 1%;
    }

    .about-heading {
        margin-top: auto;
        margin-bottom: auto;
    }

    .heading_font_sm {
        font-size: 40px;
    }

    .navbar-nav .nav-link {
        margin: 0 .5rem !important;
    }
}

@media screen and (max-width:991px) {
    .snip1577 figcaption {
        left: 75px;
        bottom: 95px;
    }

    .green_rectangle {
        position: absolute;
        width: 60%;
        height: 67%;
        bottom: 5%;
    }

    .info {
        color: #9d9d9d;
        font-size: 12px;
        font-family: 'Open Sans', sans-serif;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    .margin_button {
        margin-top: 0;
    }

    .colored_heading {
        font-family: 'Open Sans', sans-serif;
        font-size: 18px;
        color: #4163BB;
        margin-bottom: 0;
    }

    .heading {
        font-size: 40px;
        font-family: 'Raleway', sans-serif;
        color: #212331;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .about-heading {
        margin-top: 0;
    }

    .small-screen {
        display: block !important;
    }

    .portfolio-heading1 {
        text-align: center;
    }

    .large-screen {
        display: none;
    }

    #portfolio_top {
        position: inherit !important;
        margin-top: 0 !important;
    }

    .blog_text {
        text-align: center;
        margin-bottom: 11.5%;
        margin-top: 11.5%;
    }

    .md_heading {
        font-size: 30px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .standalone-detail {
        padding-bottom: 70px;
    }

    .standalone-area .gradient-text1 {
        font-size: 30px;
    }

    .standalone-detail .heading {
        font-size: 30px;
    }

    .standalone-area .sub-heading {
        margin-top: 3rem;
    }

    .standalone-row .stand-img-des {
        padding-left: 0;
        padding-right: 0;
    }

    .standalone-row:nth-child(2) .stand-img-des {
        padding-left: 0;
        padding-right: 0;
    }

    .standalone-row:nth-child(2) {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .para_text {
        font-size: 18px;
    }

    .author-avatar {
        float: none;
        margin-bottom: 25px;
        overflow: visible;
    }

    .agency-author {
        padding: 30px;
        text-align: left;
    }

    .author-content {
        padding: 0;
    }

    .standalone {
        padding-bottom: 0;
    }
}

@media screen and (max-width:767px) {
    section {
        padding: 4rem 0;
    }

    .navbar.sidebar-nav {
        width: 100%;
        height: auto;
        padding: 0 1rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .wrapper {
        padding-left: 0;
    }

    .sidemenu_btn {
        margin-top: 4px;
        right: 0;
        position: absolute;
    }

    .menu_mobile {
        margin-top: 15px;
        left: 0;
        position: absolute;
    }

    .side-menu {
        width: 300px;
    }

    .side-nav .navbar-nav .nav-item {
        margin: 5px 0;
    }

    .side-nav p {
        display: none;
    }

    .sidebar-nav .social-icons {
        display: none;
    }

    .center-brand {
        padding: 0;
        background-color: #81a109;
    }

    .slider-heading {
        font-size: 54px;
    }

    .slider-paragraph {
        font-size: 18px;
    }

    .wow {
        visibility: visible !important;
        -webkit-animation: none !important;
        animation: none !important;
    }

    .cbp-l-filters .cbp-filter-item {
        margin: 8px;
    }

    .owl-testimonial .owl-dots {
        margin-top: 20px !important;
    }

    .owl-theme .owl-dots .owl-dot span {
        margin: 5px 4px;
    }

    .snip1577 figcaption {
        left: 10px;
        bottom: 0;
        top: 20px;
    }

    .plus_icon {
        font-size: 50px;
    }

    .cover {
        text-align: center;
        margin-top: 40px;
    }

    .about-heading {
        text-align: center;
        margin-top: 50px;
    }

    .heading_mainc {
        font-size: 35px;
        text-align: center;
        line-height: 1.3;
    }

    .main_heading {
        font-size: 34px;
    }

    .heading {
        font-size: 35px;
        font-family: 'Raleway', sans-serif;
        color: #212331;
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .margin_heading {
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .info {
        color: #9d9d9d;
        font-size: 12px;
        font-family: 'Open Sans', sans-serif;
        line-height: 1.7;
    }

    .margin_button {
        margin-top: 10px;
    }

    .cover .card-title {
        margin-top: 5px;
        margin-bottom: 18px;
    }

    .text_wrap {
        padding: 50px 2rem 0 2rem;
    }

    .green_rectangle {
        position: absolute;
        width: 60%;
        height: 67%;
        bottom: 3%;
    }

    .vedio-heading {
        text-align: center;
    }

    .heading_font_sm {
        font-size: 30px;
    }

    .quote_box {
        left: 42%;
    }

    .vedio_text {
        margin-top: 36px;
        font-size: 30px;
    }

    #portfolio_top #portfolio-measonry {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    #portfolio_top::before,
    #portfolio_top::after {
        display: none;
    }

    .small-screen {
        display: block;
    }

    #portfolio_top {
        position: inherit !important;
        margin-top: 0 !important;
    }

    .portfolio-heading1 {
        text-align: center;
        margin-top: 0;
        padding-bottom: 30px;
    }

    #portfolio_top::after {
        bottom: auto !important;
        display: none;
    }

    .caption_center {
        margin-top: 28px;
    }

    p:last-child {
        margin-bottom: 20px;
    }

    .footer-social a {
        margin: 0;
    }

    .company-about {
        font-size: 12px;
    }

    .standalone-detail {
        padding-bottom: 70px;
    }

    .standalone-area .gradient-text1 {
        font-size: 30px;
    }

    .standalone-detail .heading {
        font-size: 30px;
    }

    .standalone-area .sub-heading {
        margin-top: 3rem;
    }

    .standalone-row .stand-img-des {
        padding-left: 0;
        padding-right: 0;
    }

    .standalone-row:nth-child(2) .stand-img-des {
        padding-left: 0;
        padding-right: 0;
    }

    .standalone-row:nth-child(2) {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .page-title h2 {
        font-size: 2.5rem;
    }

    .standalone-area .heading-text {
        font-size: 30px;
    }

    .standalone-detail .para_text {
        font-size: 15px;
    }

    .para_text {
        font-size: 15px;
    }

}

#spin-loader {
    background-color: #4163BB;
    height: 100%;
    width: 100%;
    position: fixed;
    margin-top: 0;
    top: 0;
    z-index: 999999;
}

#spin-loader .spinner {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1s infinite ease-in-out;
    animation: sk-scaleout 1s infinite ease-in-out;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: -25px;
    margin-left: -25px;
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

