#preloader {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
    transition: 0.3s ease opacity;
    text-align: center;
    width: 100%;
    height: 100%
}

    #preloader:before {
        content: "";
        width: 80px;
        height: 80px;
        border: 3px solid #c5ac2f;
        display: block;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        opacity: 0;
        transform: translate(-50%, -50%);
        animation-name: LoaderCicle;
        animation-duration: 2s;
        animation-iteration-count: infinite;
        animation-timing-function: linear
    }

    #preloader:after {
        content: "";
        width: 80px;
        height: 80px;
        border: 3px solid #c5ac2f;
        display: block;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        opacity: 0;
        transform: translate(-50%, -50%);
        animation-name: LoaderCicle;
        animation-duration: 2s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
        animation-delay: 1s
    }

@keyframes LoaderCicle {
    0% {
        width: 0;
        height: 0;
        opacity: 0
    }

    10% {
        width: 10px;
        height: 10px;
        opacity: 1
    }

    80% {
        width: 60px;
        height: 60px;
        opacity: 0.1
    }

    100% {
        width: 70px;
        height: 70px;
        opacity: 0
    }
}

a:hover, a:active {
    color: #c5ac2f;
    text-decoration: none
}

.bg-primary {
    background: #c5ac2f !important;
}

.bg-secondary {
    background: #00204c !important
}

.text-primary {
    color: #c5ac2f !important;
}

.text-secondary {
    color: #00204c !important;
    text-transform: capitalize;
}

.border-primary {
    border-color: #c5ac2f !important
}

.primary-overlay[data-overlay-dark]:before {
    background: #c5ac2f
}

.secondary-overlay[data-overlay-dark]:before {
   /* background: rgba(0,32,76,0.5);*/
}

.white-hover:hover {
    color: #fff !important
}

.min-height-300 {
    min-height: 300px
}

.min-height-400 {
    min-height: 400px
}

.height-400 {
    height: 400px
}

.min-lg-vh-100 {
    min-height: 100vh
}

.z-index-999 {
    z-index: 999
}

.no-repeat {
    background-repeat: no-repeat
}

.box-shadows {
    box-shadow: 0 8px 16px 0px rgba(17,12,79,0.1);
    background: #ffffff
}

.dotted-seprator {
    border-top: 2px dotted #ededed;
    margin-top: 20px;
    padding-top: 20px
}

.cursor-pointer {
    cursor: pointer
}

.scroll-to-top {
    font-size: 20px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    border-radius: 50%;
    background: #000;
    border: 1px solid #2a2a2a;
    width: 35px;
    height: 35px;
    line-height: 30px;
    z-index: 9999;
    outline: 0;
    transition: all .3s ease
}

    .scroll-to-top i {
        color: #fff
    }

    .scroll-to-top:hover {
        color: #232323;
        background: #fff
    }

        .scroll-to-top:hover i {
            color: #232323
        }

    .scroll-to-top:visited {
        color: #232323;
        text-decoration: none
    }

.butn {
    position: relative;
    overflow: hidden;
    display: inline-block;
    font-size: 13px;
    line-height: 28px;
    padding: 13px 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    outline: unset;
    border: unset;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out !important;
    z-index: 1 !important;
    color: #ffffff;
    background-color: #c5ac2f;
    border-color: #c5ac2f;
    vertical-align: top
}

    .butn:hover, .butn:active, .butn:focus {
        background-color: #00204c;
        border-color: #00204c
    }

    .butn:after {
        position: absolute;
        content: '';
        top: 50%;
        left: 50%;
        width: 100%;
        padding-bottom: 100%;
        border-radius: 50%;
        background: #c5ac2f;
        transform: translate3d(-50%, -50%, 0) scale(2);
        transition: inherit;
        pointer-events: none;
        overflow: hidden;
        z-index: -1
    }

    .butn:hover:after {
        transform: translate3d(-50%, -50%, 0) scale(0)
    }

    .butn.white {
        background-color: #fff !important;
        border-color: #fff !important
    }

    .butn.yellow {
        color: #fff !important
    }

        .butn.yellow:after {
            background-color: #00204c
        }

        .butn.yellow:hover:after {
            background: rgba(0,32,76,0.8)
        }

    .butn.radius {
        border-radius: 5px
    }

    .butn.sm {
        padding: 7px 20px !important
    }

    .butn.md {
        padding: 5px 32px !important;
		border-radius: 5px;
    }

.scrollHeader .butn.sm:hover, .scrollHeader a.butn.sm {
    color: #fff !important
}

.butn.space {
    text-transform: uppercase;
    font-weight: 600
}

@media screen and (max-width: 767px) {
    .butn {
        padding: 12px 24px
    }
}

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

    .list-style1 li {
        margin-bottom: 8px;
        position: relative;
        padding-left: 25px;
        font-size: 16px;
        letter-spacing: 1px;
        transition: all 0.3s ease 0s
    }

        .list-style1 li:after {
            content: '\f0a9';
            font-family: Font Awesome\ 5 Free;
            position: absolute;
            left: 0px;
            top: 1px;
            z-index: 1;
            font-weight: 600;
            color: #c5ac2f
        }

        .list-style1 li:last-child {
            margin-bottom: 0
        }

@media screen and (max-width: 1199px) {
    .list-style1 li {
        font-size: 14px
    }
}

@media screen and (max-width: 767px) {
    .list-style1.one li:last-child {
        margin-bottom: 8px
    }
}

.list-style2 {
    list-style: none;
    margin-bottom: 35px;
    padding: 0
}

    .list-style2 li {
        color: #232323;
        font-weight: 500;
        letter-spacing: 1px;
        padding: 0 30px;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #ededed
    }

        .list-style2 li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none
        }

@media screen and (max-width: 1199px) {
    .list-style2 {
        margin-bottom: 30px
    }
}

.list-style3 {
    padding: 0;
    margin-bottom: 15px
}

    .list-style3 li {
        position: relative;
        font-size: 15px;
        display: inline-block
    }

        .list-style3 li a:hover {
            color: #c5ac2f
        }

    .list-style3 > li + li {
        padding-left: 25px;
        margin-left: 15px
    }

        .list-style3 > li + li:before {
            content: "";
            background: #c5ac2f;
            width: 15px;
            height: 2px;
            position: absolute;
            left: -6px;
            top: 12px
        }

@media screen and (max-width: 1199px) {
    .list-style3 > li + li {
        padding-left: 20px
    }
}

.top-bar-info {
    display: inline-block;
    vertical-align: middle
}

    .top-bar-info ul {
        margin-bottom: 0
    }

    .top-bar-info li {
        font-weight: 500;
        color: #fff;
        list-style-type: none;
        font-size: 14px;
        padding: 0 5px 0;
        display: inline-block;
        margin-bottom: 0
    }

.top-bar {
    display: block;
    position: relative;
    z-index: 999;
    padding: 7px 0
}

.top-bar-info li i {
    font-size: 16px;
    color: #fff;
    margin-right: 8px;
    margin-top: 0;
    display: inline-block;
    vertical-align: text-bottom
}

.top-social-icon {
    padding: 0;
    float: right;
    margin: 0
}

    .top-social-icon li {
        font-size: 14px;
        list-style-type: none;
        float: left;
        text-align: center;
        margin: 0;
        padding: 0 7px
    }

        .top-social-icon li:last-child {
            padding-right: 0
        }

            .top-social-icon li:last-child a {
                padding-right: 0
            }

        .top-social-icon li a {
            color: #fff;
            line-height: 28px;
            -webkit-transition-duration: .3s;
            transition-duration: .3s;
            padding: 0 3px
        }

            .top-social-icon li a:hover {
                color: rgba(255,255,255,0.65)
            }

.navbar-nav li.current > a, .navbar-nav li.active > a {
    color: #c5ac2f;
}

.attr-nav > ul > li > a.butn {
    color: #fff
}

.navbar > ul > li.current > a:after {
    border-color: transparent #c5ac2f #c5ac2f transparent
}

.menu_area-light .navbar-nav li.current > a, .menu_area-light .navbar-nav li.active > a {
    color: #c5ac2f;
}

.menu_area-light .navbar > ul > li.current > a:after {
    border-color: transparent #c5ac2f #c5ac2f transparent
}

.menu_area-light.scrollHeader .navbar-nav li.current > a {
    color: #c5ac2f
}

    .menu_area-light.scrollHeader .navbar-nav li.current > a:hover {
        color: #c5ac2f
    }

.menu_area-light.scrollHeader .navbar-nav li.active > a {
    color: #c5ac2f;
}

.menu_area-light.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent #c5ac2f #c5ac2f transparent
}

@media screen and (min-width: 992px) {
    .menu_area-light .navbar ul ul li.active > a, .menu_area-light .navbar-nav li.has-sub a:hover {
        color: #c5ac2f
    }

    .menu_area-light .navbar > ul > li.has-sub > a:hover:after {
        border-color: #c5ac2f
    }

    .menu_area-light.scrollHeader .navbar-nav > li.has-sub > a:hover {
        color: #c5ac2f
    }

    .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover {
        color: #c5ac2f
    }

        .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover:after {
            border-color: transparent #c5ac2f #c5ac2f transparent
        }

    .header-style2 .navbar > ul > li.has-sub.current > a:hover:after {
        border-color: transparent #c5ac2f #c5ac2f transparent
    }

    .header-style2.scrollHeader .navbar-nav li.current > a {
        color: #c5ac2f
    }

        .header-style2.scrollHeader .navbar-nav li.current > a:hover {
            color: #c5ac2f
        }

    .header-style2.scrollHeader .navbar > ul > li.current > a:after {
        border-color: transparent #c5ac2f #c5ac2f transparent
    }

    .header-style2 .navbar ul ul li.active > a {
        color: #c5ac2f
    }

    .header-style2 .navbar-nav li.has-sub a:hover, .header-style2 .navbar-nav li.has-sub a:active, .header-style2 .navbar-nav li.has-sub a:focus, .header-style2 .navbar-nav li.current > a, .header-style2 .navbar-nav li.active > a {
        color: #c5ac2f
    }

    .header-style2 .navbar > ul > li.has-sub > a:hover:after, .header-style2 .navbar > ul > li.has-sub > a:active:after, .header-style2 .navbar > ul > li.has-sub > a:focus:after {
        border-color: transparent #c5ac2f #c5ac2f transparent
    }
}

@media screen and (max-width: 991px) {
    .header-style1 .navbar-toggler {
        background: #c5ac2f
    }

        .header-style1 .navbar-toggler:after {
            border-top: 2px solid #fff;
            border-bottom: 2px solid #fff
        }

        .header-style1 .navbar-toggler:before {
            background: #fff
        }

        .header-style1 .navbar-toggler.menu-opened:after, .header-style1 .navbar-toggler.menu-opened:before {
            background: #fff
        }
}

.header-style2 .navbar-nav li.current > a {
    color: #c5ac2f
}

.header-style2 .navbar > ul > li.current > a:after {
    border-color: transparent #c5ac2f #c5ac2f transparent
}

.header-style2.scrollHeader .navbar-nav li.current > a {
    color: #c5ac2f
}

    .header-style2.scrollHeader .navbar-nav li.current > a:hover {
        color: #c5ac2f
    }

.header-style2.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent #c5ac2f #c5ac2f transparent
}

@media screen and (min-width: 992px) {
    .header-style2 .navbar ul ul li.active > a {
        color: #c5ac2f
    }

    .header-style2 .butn.secondary:before {
        background: #ffffff
    }

    .header-style2 .butn.secondary:hover, .header-style2 .butn.secondary:focus, .header-style2 .butn.secondary:active {
        color: #00204c !important
    }

    .header-style2.scrollHeader .butn.secondary:before {
        background: #fff
    }

    .header-style2.scrollHeader .butn.secondary:hover, .header-style2.scrollHeader .butn.secondary:focus, .header-style2.scrollHeader .butn.secondary:active {
        color: #00204c !important;
        background: #00204c
    }
}

.section-heading {
    margin-bottom: 50px;
    text-align: center;
    position: relative
}

    .section-heading h2:before {
        content: '';
        height: 2px;
        background: #ededed;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 250px
    }

    .section-heading h2:after {
        content: '';
        display: block;
        width: 100px;
        height: 2px;
        background: #c5ac2f;
        margin: 0 auto;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0
    }

    .section-heading h1, .section-heading h2, .section-heading h3, .section-heading h4, .section-heading h5, .section-heading h6 {
        position: relative;
        margin-bottom: 0;
        position: relative;
        line-height: 45px;
        font-size: 25px;
        padding-bottom: 15px;
        color: #00204c;
        width: 55%;
        margin: 0 auto
    }

    .section-heading span {
        position: relative;
        font-size: 16px;
        font-weight: 600;
        color: #c5ac2f;
        letter-spacing: 2px;
        display: inline-block;
        margin-bottom: 15px;
        text-transform: uppercase
    }

@media screen and (max-width: 1199px) {
    .section-heading h2 {
        font-size: 36px;
        width: 70%
    }
}

@media screen and (max-width: 991px) {
    .section-heading {
        margin-bottom: 40px
    }

        .section-heading h2 {
            font-size: 34px;
            width: 80%
        }
}

@media screen and (max-width: 767px) {
    .section-heading h2 {
        font-size: 32px;
        width: 90%
    }
}

@media screen and (max-width: 575px) {
    .section-heading h2 {
        font-size: 28px;
        width: 100%;
        line-height: 35px
    }
}

.section-heading2 {
    margin-bottom: 50px;
    text-align: center;
    position: relative
}

    .section-heading2 h1, .section-heading2 h2, .section-heading2 h3, .section-heading2 h4, .section-heading2 h5, .section-heading2 h6 {
        position: relative;
        margin-bottom: 0;
        position: relative;
        line-height: 140%;
        font-size: 36px;
        text-transform: capitalize;
        color: #00204c
    }

    .section-heading2.white h1, .section-heading2.white h2, .section-heading2.white h3, .section-heading2.white h4, .section-heading2.white h5, .section-heading2.white h6 {
        color: #fff
    }

    .section-heading2 span {
        position: relative;
        display: inline-block;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        color: #c5ac2f;
        margin-bottom: 15px;
        background: linear-gradient(to right, rgba(0,32,76,0) 0%, rgba(255,255,255,0) 100%);
        padding: 3px 15px;
        border-radius: 15px;
        letter-spacing: 2px
    }

    .section-heading2.white span {
        position: relative;
        display: inline-block;
        font-size: 16px;
        font-weight: 700;
        text-transform: capitalize;
        color: #ffffff;
        margin-bottom: 15px;
        background: rgba(255,255,255,0.2);
        padding: 5px 10px;
        border: 1px solid rgba(255,255,255,0.5);
        border-radius: 12px
    }

@media screen and (max-width: 1199px) {
    .section-heading2 {
        margin-bottom: 40px
    }
}

@media screen and (max-width: 991px) {
    .section-heading2 h2 {
        font-size: 25px;
    }
}

@media screen and (max-width: 768px) {
	.footer-style {
		margin-top: -57px !important;
	}	
    .section-heading2 {
        margin-bottom: 35px
    }

        .section-heading2 h2 {
            font-size: 32px
        }
}

@media screen and (max-width: 575px) {
    .section-heading2 h2 {
        font-size: 20px;
        line-height: 20px
    }
}

@media screen and (max-width: 320px) {
    .section-heading2 h2 {
        font-size: 28px;
        line-height: 35px
    }
}

@media screen and (max-width: 768px) {
	.slider-fade .owl-item {
		height: 22vh !important;
		position: relative
	}
	.slider-fade .item{
		height: 170px !important;
	}
}
.slider-fade .owl-item {
    height: 85vh;
    position: relative
}

.slider-fade .item {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: top;
}

    .slider-fade .item .caption {
        width: 100%;
        z-index: 9
    }

.slider-fade .caption .overflow-hidden {
    display: inline-block
}

.slider-fade .owl-carousel.owl-theme .owl-dots {
    position: absolute;
    bottom: 10vh;
    width: 100%;
    left: 0
}

.banner1 .caption .sub-title {
    font-size: 20px;
    color: #c5ac2f;
    word-spacing: 0;
    line-height: 35px;
    margin-bottom: 15px;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 2px;
    display: inline-block;
    width: 100%;
    animation-delay: 0.5s
}

    .banner1 .caption .sub-title:before {
        content: "";
        width: 20px;
        height: 2px;
        background: #c5ac2f;
        display: inline-block;
        vertical-align: middle;
        margin-right: 10px
    }

.banner1 .caption h1 {
    font-size: 40px;
	line-height:60px;
    font-weight: 600;
    color: #ffffff;
    animation-delay: 0.8s;
    text-align: center;
}

.banner1 .caption p {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 35px;
    animation-delay: 1.2s;
    opacity: .9
}

.banner1 .caption .butn {
    animation-delay: 1.4s
}

.banner1 .owl-theme .owl-nav {
    margin-top: 0
}

.banner1 .owl-nav i, .banner1 .owl-nav span {
    font-weight: 600;
    color: #fff;
    font-size: 50px
}

.banner1 .owl-theme .owl-nav .owl-prev {
    position: absolute;
    right: inherit;
    top: 0;
    bottom: 0;
    width: 60px;
    height: 60px;
    border: none;
    background: none;
    border-radius: 60px;
    left: 5vh;
    text-align: center;
    margin: auto
}

.banner1 .owl-theme .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border: none;
    background: none;
    border-radius: 60px;
    top: 0;
    bottom: 0;
    left: inherit;
    right: 5vh;
    text-align: center;
    margin: auto
}

.banner1 .owl-theme .owl-dots .owl-dot span {
    border: none;
    background: #ffffff;
    width: 10px;
    height: 10px
}

.banner1 .owl-theme .owl-dots .owl-dot.active span {
    background: #c5ac2f
}

.banner1 .owl-theme .owl-dots .owl-dot span:hover {
    background: #ffffff
}

@media screen and (max-width: 1199px) {
    .banner1 .caption h1 {
        font-size: 56px
    }
}

@media screen and (max-width: 991px) {
    .banner1 .caption h1 {
        font-size: 20px
    }
}

@media screen and (max-width: 767px) {
    .banner1 .caption .sub-title {
        font-size: 18px
    }

    .banner1 .caption h1 {
        font-size: 42px;
        line-height: 55px
    }

    .banner1 .caption p {
        font-size: 18px
    }
}

@media screen and (max-width: 575px) {
    .banner1 .caption .sub-title {
        font-size: 16px
    }

    .banner1 .caption h1 {
        font-size: 14px;
        line-height: 22px;
		text-align:center;
    }

    .banner1 .caption p {
        font-size: 13px;
		line-height:17px;
    }
}

.banner2 .caption .sub-title {
    left: -17%;
    top: 45%;
    position: absolute;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 15px;
    background: linear-gradient(to right, rgba(225,161,34,0) 0%, rgba(255,255,255,0) 100%);
    padding: 3px 43px;
    border-radius: 15px;
    letter-spacing: 6px;
    transform: rotate(-90deg)
}

.banner2 .caption h1 {
    font-size: 50px;
    font-weight: 600;
    line-height: 55px;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 30px;
    animation-delay: 0.8s
}

.banner2 .caption p {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 30px;
    animation-delay: 1.2s
}

.banner2 .caption .butn {
    animation-delay: 1.4s
}

.banner2 .caption .banner-single-img {
    position: absolute;
    bottom: -25px;
    right: 0;
    animation-delay: 1.8s
}

.banner2 .banner-bg:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: #00204c;
    -webkit-clip-path: none;
    clip-path: none;
    background-position: center center;
    background-size: cover;
    z-index: 1;
    opacity: 1;
    width: 60%;
    -webkit-clip-path: polygon(0 0, 75% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 84% 0%, 65% 100%, 0% 100%)
}

.banner2 .shape-1 {
    position: absolute;
    right: 6%;
    top: -35%;
    background-color: #c5ac2f;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    z-index: 9
}

.banner2 .shape-2 {
    position: absolute;
    right: 0%;
    top: -30%;
    background-color: transparent;
    border: 1px solid #c5ac2f;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    z-index: 9
}

.banner2 .shape-3 {
    position: absolute;
    left: -15%;
    bottom: -35%;
    background-color: #c5ac2f;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    z-index: 9
}

.banner2 .shape-4 {
    position: absolute;
    left: -7%;
    bottom: -40%;
    background-color: transparent;
    border: 1px solid #c5ac2f;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    z-index: 9
}

@media screen and (max-width: 1399px) {
    .banner2 .shape-1 {
        top: -45%
    }

    .banner2 .shape-2 {
        top: -40%
    }

    .banner2 .shape-3 {
        bottom: -40%
    }

    .banner2 .shape-4 {
        bottom: -45%
    }

    .banner2 .caption h1 {
        font-size: 45px
    }

    .banner2 .caption .sub-title {
        left: -14%;
        padding: 3px 20px;
        letter-spacing: 4px
    }
}

@media screen and (max-width: 1199px) {
    .banner2 .caption h1 {
        font-size: 40px;
    }
}

@media screen and (max-width: 767px) {
    .banner2 .caption .sub-title {
        left: -20%;
        padding: 3px 10px
    }

    .banner2 .caption h1 {
        font-size: 45px;
        line-height: 70px
    }

    .banner2 .shape-1, .banner2 .shape-2 {
        top: -50%
    }

    .banner2 .shape-3, .banner2 .shape-4 {
        bottom: -50%
    }
}

@media screen and (max-width: 575px) {
    .banner2 .shape-1, .banner2 .shape-2, .banner2 .shape-3, .banner2 .shape-4 {
        display: none
    }

    .banner2 .caption .sub-title {
        display: none
    }

    .banner2 .caption h1 {
        font-size: 30px;
        line-height: 50px
    }
}

.page-title-section {
    padding: 100px 0 100px;
    text-align: center
}

.page-title h1 {
    font-size: 60px;
    font-weight: 600;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 5px;
    position: relative;
    display: inline-block
}

.page-title .heading-seprator {
    width: 2px;
    height: 30px;
    background: #c5ac2f;
    margin: 15px auto
}

.breadcrumb {
    display: block;
    background: #c5ac2f;
    position: relative;
    padding: 10px;
    text-align: center;
    width: 425px;
    margin: -30px auto 0;
    z-index: 1;
    border-radius: 5px
}

    .breadcrumb ul {
        list-style: none;
        padding-left: 0;
        margin-bottom: 0
    }

        .breadcrumb ul li {
            display: inline-block;
            line-height: 1
        }

            .breadcrumb ul li a {
                font-size: 15px;
                font-weight: 600;
                color: #ffffff;
                letter-spacing: 0px
            }

            .breadcrumb ul li:last-child a {
                color: #ffffff
            }

            .breadcrumb ul li:after {
                content: '\f30b';
                font-weight: 600;
                color: #fffFFF;
                font-family: Font Awesome\ 5 Free;
                padding: 0 15px 0 15px
            }

            .breadcrumb ul li:last-child:after {
                content: none
            }

@media screen and (max-width: 1199px) {
    .page-title-section h1 {
        font-size: 44px
    }
}

@media screen and (max-width: 991px) {
    .page-title-section {
        padding: 170px 0 120px
    }

        .page-title-section h1 {
            font-size: 42px
        }
}

@media screen and (max-width: 767px) {
    .page-title-section {
        padding: 150px 0 100px
    }

        .page-title-section h1 {
            font-size: 38px
        }
}

@media screen and (max-width: 575px) {
    .page-title-section {
        padding: 130px 0 90px
    }

        .page-title-section h1 {
            font-size: 34px
        }

    .breadcrumb {
        width: 300px;
        padding: 12px
    }

        .breadcrumb ul li a {
            font-size: 16px
        }
}

.about-style1 .about-counter {
    right: 0;
    bottom: 0;
    padding: 15px 20px 25px 20px;
    position: absolute;
    text-align: center;
    background-color: #fff;
    background: #00204c;
    color: #ffffff;
    z-index: 1
}

    .about-style1 .about-counter h4 {
        font-size: 60px;
        color: #ffffff
    }

        .about-style1 .about-counter h4:after {
            content: '+';
            font-size: 50px;
            vertical-align: super
        }

@media screen and (max-width: 1199px) {
    .about-style1 .about-counter h4 {
        font-size: 48px
    }

        .about-style1 .about-counter h4:after {
            font-size: 36px
        }
}

@media screen and (max-width: 767px) {
    .about-style1 .about-counter h4 {
        font-size: 36px
    }

        .about-style1 .about-counter h4:after {
            font-size: 28px
        }
}

.about-style2 .about-pic {
    position: absolute;
    left: -20%;
    bottom: 0;
    border: 10px solid #ffffff;
    box-shadow: 0 8px 16px 0px rgba(17,12,79,0.1)
}

.about-style2 .about-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    margin-left: -26px;
    margin-top: 8px;
    border-radius: 50px
}

.about-style2 .left-img:before {
    position: absolute;
    content: "";
    width: 5px;
    height: 250px;
    background: #c5ac2f;
    top: 0;
    left: 0%
}

.about-style2 .left-img .about-exp {
    position: absolute;
    background-color: #00204c;
    text-align: center;
    z-index: 2;
    padding: 10px 50px;
    top: 202px;
    left: -40%;
    transform: rotate(270deg);
    border-radius: 0px
}

    .about-style2 .left-img .about-exp span {
        font-size: 16px;
        color: #fff;
        margin: 0;
        line-height: 26px;
        text-transform: uppercase;
        letter-spacing: 0.4em
    }

@media screen and (max-width: 1399px) {
    .about-style2 .left-img:before {
        left: 5%
    }
}

@media screen and (max-width: 1199px) {
    .about-style2 .left-img:before {
        left: -4%
    }

    .about-style2 .left-img .about-exp {
        left: -60%
    }
}

@media screen and (max-width: 991px) {
    .about-style2 .left-img:before {
        left: 17%
    }

    .about-style2 .left-img .about-exp {
        left: -20%
    }

    .about-style2 .about-pic {
        left: 0
    }
}

@media screen and (max-width: 767px) {
    .about-style2 .left-img .about-exp {
        left: -32%
    }
}

@media screen and (max-width: 575px) {
    .about-style2 .left-img:before {
        display: none
    }
}

.service-wrapper {
    position: relative
}

.service-content {
    text-align: center;
    background-color: #fff;
    border: 2px solid #ededed;
    backface-visibility: hidden;
    box-sizing: border-box;
    transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px
}

    .service-content .service-icon {
        position: absolute;
        bottom: -30px;
        left: 0;
        right: 0;
        margin: auto;
        width: 75px;
        height: 75px;
        padding: 15px;
        background-color: #c5ac2f;
        border-radius: 5px
    }

    .service-content .service-title {
        padding: 50px 10px 25px;
        font-size: 24px;
        margin-bottom: 0
    }

.background-img-wrap {
    position: absolute !important;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0 40px;
    z-index: 1;
    transform: rotateY(90deg);
    transform-origin: 50% 0%;
    opacity: 0;
    box-sizing: border-box;
    text-align: center;
    transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
    border-radius: 5px
}

    .background-img-wrap:before {
        content: '';
        background-color: rgba(0,30,73,0.7);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        border-radius: 5px
    }

.service-wrapper:hover .background-img-wrap {
    opacity: 1;
    transition-delay: .14s;
    transform: rotateY(0)
}

.service-wrapper:hover .service-content {
    transform: rotateY(-180deg);
    opacity: 0
}

@media screen and (max-width: 1199px) {
    .service-content .service-icon {
        width: 70px;
        height: 70px
    }
}

@media screen and (max-width: 991px) {
    .service-content .service-icon {
        width: 65px;
        height: 65px
    }
}

.card-style1 {
    position: relative;
    z-index: 0;
    border-radius: 0;
    transition: all 0.5s ease;
    background-color: #ffffff;
    border: 1px solid #ededed;
    padding: 50px 30px 35px;
    text-align: center
}

    .card-style1:before {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        content: "";
        opacity: 0;
        transition: opacity 0.55s, transform 0.55s;
        z-index: -1;
        transform: scale(0, 1);
        border-top: 1px solid #c5ac2f;
        border-bottom: 1px solid #c5ac2f
    }

    .card-style1:hover:before {
        opacity: 1;
        transform: scale(1)
    }

    .card-style1:after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        content: "";
        opacity: 0;
        transition: opacity 0.55s, transform 0.55s;
        z-index: -1;
        transform: scale(1, 0);
        border-right: 1px solid #c5ac2f;
        border-left: 1px solid #c5ac2f
    }

    .card-style1:hover:after {
        opacity: 1;
        transform: scale(1)
    }

    .card-style1 .card-body {
        padding: 0
    }

        .card-style1 .card-body .icon {
            display: inline-block;
            position: relative;
            z-index: 0;
            transition: all 0.5s ease;
            margin-bottom: 20px
        }

            .card-style1 .card-body .icon:after {
                position: absolute;
                content: "";
                left: -25px;
                top: -30%;
                width: 55px;
                height: 55px;
                border-radius: 50%;
                background-color: rgba(225,161,34,0.2);
                z-index: -1;
                transform: scale(1);
                transition: transform 0.5s cubic-bezier(0.57, 0.04, 0.06, 0.84),opacity 0s
            }

@media screen and (max-width: 1199px) {
    .card-style1 {
        padding: 40px 30px 35px
    }
}

@media screen and (max-width: 991px) {
    .card-style1 .card-body .icon:after {
        width: 50px;
        height: 50px
    }
}

@media screen and (max-width: 767px) {
    .card-style1 {
        padding: 40px 25px 30px
    }
}

.card-style2 img {
    width: 100%;
    height: auto;
    transform: scale3d(1, 1, 1);
    transition: all 0.6s ease 0s
}

.card-style2 .card-body {
    width: 100%;
    height: 100%;
    padding: 0;
    background-color: rgba(0,30,73,0.85);
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
    transition: all 0.3s ease 0s;
    display: flex;
    flex-direction: column;
    justify-content: center
}

    .card-style2 .card-body:before {
        content: "";
        position: absolute;
        top: 20px;
        left: 20px;
        bottom: 20px;
        right: 20px;
        border: 1px solid rgba(255,255,255,0.3);
        opacity: 0;
        z-index: -1;
        transform: scale(1.5);
        transition: all 0.6s ease
    }

    .card-style2 .card-body .team-infos {
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center
    }

        .card-style2 .card-body .team-infos .social-icons {
            margin: 0;
            padding: 0;
            text-align: center;
            list-style: none
        }

            .card-style2 .card-body .team-infos .social-icons li {
                display: inline-block;
                font-size: 15px;
                margin-right: 20px;
                color: #ffffff
            }

                .card-style2 .card-body .team-infos .social-icons li a:hover {
                    color: #c5ac2f !important
                }

                .card-style2 .card-body .team-infos .social-icons li:last-child {
                    margin-right: 0
                }

    .card-style2 .card-body:after {
        content: "";
        position: absolute;
        top: 20px;
        bottom: 20px;
        left: 20px;
        right: 20px;
        border: 1px solid rgba(255,255,255,0.3);
        opacity: 0;
        z-index: -1;
        transform: scale(1.5);
        transition: all 0.6s ease
    }

.card-style2:hover img {
    transform: scale3d(1.15, 1.15, 1)
}

.card-style2:hover .card-body {
    opacity: 1
}

    .card-style2:hover .card-body:before, .card-style2:hover .card-body:after {
        opacity: 1;
        transform: scale(1)
    }

@media screen and (max-width: 1199px) {
    .card-style2 .card-body:before, .card-style2 .card-body:after {
        top: 15px;
        bottom: 15px;
        left: 15px;
        right: 15px
    }
}

.card-style3 .card-img .tags {
    position: absolute;
    top: 25px;
    left: 25px;
    padding: 6px;
    background-color: #c5ac2f;
    font-size: 14px
}

    .card-style3 .card-img .tags a {
        padding: 0 10px;
        color: #fff;
        border-right: 1px solid rgba(255,255,255,0.3)
    }

        .card-style3 .card-img .tags a:last-child {
            border-right: none
        }

.card-style3 .card-body {
    background-color: #ffffff;
    border: 1px solid #ededed;
    padding: 30px;
    position: relative;
    margin: 0 auto;
    margin-top: -50px;
    width: calc(100% - 20px);
    z-index: 1
}

@media screen and (max-width: 575px) {
    .card-style3 .card-body {
        padding: 25px
    }
}

.card-style4 {
    box-shadow: 0 8px 16px 0px rgba(17,12,79,0.1);
    background: #ffffff;
    border-radius: 0;
    border: none;
    position: relative;
    overflow: hidden
}

    .card-style4 .card-body {
        padding: 30px 30px 30px
    }

        .card-style4 .card-body h4 {
            position: relative;
            display: block;
            padding-left: 60px;
            margin-bottom: 8px;
            vertical-align: middle;
            transition: all 500ms ease
        }

            .card-style4 .card-body h4:before {
                position: absolute;
                content: '';
                width: 10px;
                height: 2px;
                left: 38px;
                top: 15px;
                transition: all 500ms ease;
                background-color: #c5ac2f
            }

            .card-style4 .card-body h4 span {
                position: absolute;
                left: 0px;
                top: 0px;
                transition: all 500ms ease;
                color: #c5ac2f
            }

            .card-style4 .card-body h4 a {
                display: inline-block;
                color: #c5ac2f
            }

        .card-style4 .card-body .arrow {
            position: absolute;
            right: -55px;
            bottom: -55px;
            width: 110px;
            height: 110px;
            border-radius: 50%;
            background: #c5ac2f;
            color: #fff;
            display: block;
            font-size: 18px;
            font-weight: 700;
            padding: 20px 25px
        }

            .card-style4 .card-body .arrow:before {
                content: '\f061';
                font-family: Font Awesome\ 5 Free;
                font-weight: 600;
                color: #fff
            }

    .card-style4:hover .card-body .arrow {
        background: #00204c
    }

@media screen and (max-width: 575px) {
    .card-style4 .card-body {
        padding: 30px 25px 50px
    }
}

.card-style5 .card-img .post-cat {
    position: absolute;
    z-index: 1;
    bottom: -15px;
    left: 30px;
    z-index: 2
}

    .card-style5 .card-img .post-cat a {
        text-transform: capitalize;
        font-size: 12px;
        letter-spacing: 1px;
        line-height: 1;
        display: inline-block;
        color: #fff;
        background: #c5ac2f;
        padding: 10px 12px;
        border-radius: 12px
    }

.card-style5 .card-body {
    padding: 35px 30px 30px;
    box-shadow: 0 8px 16px 0px rgba(17,12,79,0.1);
    background: #ffffff
}

.card-style5 .card-footer {
    padding: 15px 30px;
    border-top: 1px solid #ededed;
    box-shadow: 0 8px 16px 0px rgba(17,12,79,0.1);
    background: #ffffff
}

    .card-style5 .card-footer .info-link i {
        background: rgba(220,219,219,0.3);
        width: 36px;
        height: 36px;
        line-height: 36px;
        border-radius: 50%;
        color: #c5ac2f
    }

        .card-style5 .card-footer .info-link i:hover {
            background: #c5ac2f;
            color: #ffffff
        }

@media screen and (max-width: 1199px) {
    .card-style5 .card-body {
        padding: 35px 25px 25px
    }

    .card-style5 .card-footer {
        padding: 15px 25px
    }

    .card-style5 .card-img .post-cat {
        left: 25px
    }

    .card-style5 .card-footer .info-link i {
        width: 32px;
        height: 32px;
        line-height: 32px
    }
}

.card-style6:hover .team-img img {
    transform: scale(1.2)
}

.card-style6 .team-img img {
    width: 100%;
    height: 100%;
    transition: all 0.8s
}

.card-style6 .team-img .social-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    z-index: 20;
    text-decoration: none;
    opacity: 0;
    padding: 8px 15px;
    margin-top: 100px;
    background: #ffffff;
    border-radius: 5px;
    min-width: 200px;
    text-align: center;
    transition: all 0.6s ease-in-out;
    margin-bottom: 0
}

.card-style6:hover .social-icons {
    margin-top: 0;
    opacity: 1
}

.card-style6 .team-img .social-icons li {
    display: inline-block;
    font-size: 16px;
    padding-right: 20px
}

    .card-style6 .team-img .social-icons li:last-child {
        padding-right: 0
    }

.card-style6 .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    transition: all 0.6s ease-in-out;
    z-index: 15
}

.card-style6:hover .overlay {
    background: rgba(0,30,73,0.7)
}

.card-style6 .card-body {
    padding: 40px 20px 20px;
    background: #fff;
    margin: 0 15px;
    margin-top: -35px;
    position: relative;
    border-radius: 5px;
    z-index: 99;
    border: 2px solid #ededed;
    transition: all .3s;
    text-align: center
}

    .card-style6 .card-body:before {
        content: '\f067';
        font-family: Font Awesome\ 5 Free;
        font-weight: 600;
        font-size: 15px;
        width: 45px;
        height: 45px;
        line-height: 45px;
        text-align: center;
        background: #c5ac2f;
        display: inline-block;
        color: #fff;
        position: absolute;
        top: -25px;
        left: 0;
        right: 0;
        margin: auto;
        border-radius: 5px;
        transition: all .3s
    }

.card-style6:hover .card-body:before {
    content: '\f068';
    font-family: Font Awesome\ 5 Free;
    font-weight: 600;
    transition: all .3s;
    background: #00204c
}

@media screen and (max-width: 1199px) {
    .card-style6 .card-body:before {
        width: 40px;
        height: 40px;
        line-height: 40px;
        top: -20px
    }
}

@media screen and (max-width: 767px) {
    .card-style6 .team-img .social-icons {
        padding: 6px 15px
    }

        .card-style6 .team-img .social-icons li {
            font-size: 14px
        }
}

.card-style7 {
    box-shadow: 0 8px 16px 0px rgba(17,12,79,0.1);
    background: #ffffff;
    border-radius: 0;
    border: 0
}

    .card-style7 .card-body .blog-meta {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin: 0 0 20px;
        position: relative;
        padding: 0 0 15px 0
    }

        .card-style7 .card-body .blog-meta li {
            position: relative;
            display: inline-block;
            color: #999;
            line-height: 30px;
            font-size: 14px;
            padding: 0 24px 0 0;
            text-transform: capitalize
        }

        .card-style7 .card-body .blog-meta:before {
            background: #ededed;
            bottom: -1px;
            content: "";
            height: 2px;
            left: 0;
            position: absolute;
            width: 100%
        }

        .card-style7 .card-body .blog-meta:after {
            bottom: -1px;
            content: "";
            height: 2px;
            left: 0;
            position: absolute;
            width: 50px;
            background: #c5ac2f
        }

    .card-style7 .card-body blockquote {
        background-color: #f9f9f9;
        font-size: 18px;
        position: relative;
        padding: 30px 30px 30px 115px;
        clear: both;
        margin: 35px 0;
        letter-spacing: 2px;
        overflow: hidden
    }

        .card-style7 .card-body blockquote:before {
            content: '\f10d';
            font-family: Font Awesome\ 5 Free;
            font-weight: 600;
            color: #c5ac2f;
            font-size: 34px;
            position: absolute;
            left: 22px;
            top: 10px;
            z-index: 2
        }

        .card-style7 .card-body blockquote:after {
            content: '';
            z-index: 1;
            height: 110px;
            width: 110px;
            background-color: #ffffff;
            text-align: center;
            position: absolute;
            top: -24px;
            left: -24px;
            border-radius: 110px
        }

    .card-style7 .card-body .separator {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px dashed #ddd;
        text-align: left
    }

    .card-style7 .card-body .blog-tags {
        margin: 0;
        padding: 0
    }

        .card-style7 .card-body .blog-tags li {
            display: inline-block
        }

            .card-style7 .card-body .blog-tags li a {
                font-size: 14px;
                font-weight: 500;
                padding: 8px 12px;
                margin: 5px 5px 5px 0;
                display: inline-block;
                border: 1px solid #ededed
            }

                .card-style7 .card-body .blog-tags li a:hover {
                    background: #c5ac2f;
                    color: #ffffff !important;
                    border: 1px solid #c5ac2f
                }

    .card-style7 .card-body .social-icon {
        text-align: right;
        margin: 0;
        padding: 0
    }

@media screen and (max-width: 991px) {
    .card-style7 .card-body blockquote {
        padding: 20px 20px 20px 110px;
        margin: 30px 0
    }
}

@media screen and (max-width: 767px) {
    .card-style7 .card-body blockquote {
        font-size: 16px
    }

    .card-style7 .card-body .social-icon {
        text-align: left
    }
}

@media screen and (max-width: 575px) {
    .card-style7 .card-body blockquote {
        padding: 20px 20px 20px 100px
    }

        .card-style7 .card-body blockquote:before {
            font-size: 30px
        }

        .card-style7 .card-body blockquote:after {
            content: '';
            z-index: 1;
            height: 100px;
            width: 100px;
            background-color: #ffffff;
            text-align: center;
            position: absolute;
            top: -24px;
            left: -24px;
            border-radius: 110px
        }
}

.info-carousel .owl-item.center.active h4 a {
    color: #fff
}

.card-style8 .info-link i {
    background: #c5ac2f;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    text-align: center;
    transition: all 0.5s;
    position: relative
}

    .card-style8 .info-link i:hover, .card-style8 .info-link i:active, .card-style8 .info-link i:focus {
        background: #c5ac2f;
        color: #ffffff
    }

        .card-style8 .info-link i:hover h4 a, .card-style8 .info-link i:active h4 a, .card-style8 .info-link i:focus h4 a {
            color: #c5ac2f
        }

.card-style8 .area-number {
    -webkit-text-stroke: 1px rgba(237,239,239,0.6);
    font-size: 270px;
    line-height: 150px;
    font-weight: 700;
    -webkit-text-fill-color: transparent;
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    text-align: center;
    -webkit-transition: all .16s;
    transition: all .16s;
    z-index: 1
}

.card-style8:hover .area-number {
    -webkit-text-stroke: 1px rgba(237,239,239,0.2)
}

.info-carousel .owl-item.center .card-style8 .area-number {
    -webkit-text-stroke: 1px rgba(237,239,239,0.2)
}

.card-style8:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #f8f8fa;
    top: 0;
    left: 0;
    opacity: 1;
    transition: 0.4s
}

.info-carousel .owl-item.center .card-style8:before {
    opacity: 0
}

.card-style8:hover:before, .info-carousel .owl-item.center .card-style8:before {
    opacity: 0.8;
    background-color: #00204c
}

.card-style8:hover h4, .card-style8:hover p, .card-style8:hover a, .card-style8:active h4, .card-style8:active p, .card-style8:active a, .card-style8:focus h4, .card-style8:focus p, .card-style8:focus a {
    color: #fff
}

.info-carousel .owl-item.center .card-style8 h4, .info-carousel .owl-item.center .card-style8 p {
    color: #fff
}

.info-carousel.owl-theme .owl-dots .owl-dot span {
    background-color: #0c2a54;
    width: 12px;
    height: 8px;
    transition: all 0.3s ease-in-out
}

.info-carousel.owl-theme .owl-dots .owl-dot.active span, .info-carousel.owl-theme .owl-dots .owl-dot:hover span {
    width: 35px;
    background-color: #c5ac2f
}

@media screen and (max-width: 1399px) {
    .card-style8 .area-number {
        font-size: 200px
    }
}

#external-events {
    float: left;
    width: 150px;
    padding: 0 10px;
    text-align: left
}

    #external-events h4 {
        font-size: 16px;
        margin-top: 0;
        padding-top: 1em
    }

.external-event {
    margin: 10px 0;
    padding: 2px 4px;
    background: #3366CC;
    color: #fff;
    font-size: .85em;
    cursor: pointer
}

#external-events p {
    margin: 1.5em 0;
    font-size: 11px;
    color: #666
}

    #external-events p input {
        margin: 0;
        vertical-align: middle
    }

#calendar {
    width: 100%;
    background-color: #FFFFFF;
    border-radius: 6px;
    box-shadow: 0 1px 2px #C3C3C3
}

@media screen and (max-width: 767px) {
    .fc-header .fc-header-left {
        float: left;
        width: 100%;
        display: block;
        text-align: center
    }

    .fc-header .fc-header-center {
        float: left;
        width: 100%;
        display: block;
        padding-top: 0
    }

    .fc-header .fc-header-right {
        float: left;
        width: 100%;
        display: block;
        text-align: center;
        padding-top: 0
    }

    .fc-week .fc-day > div .fc-day-number {
        padding: 2px 6px;
        min-width: 30px
    }
}

.testimonial-style1 {
    text-align: center;
    position: relative;
    z-index: 1
}

    .testimonial-style1:before {
        position: absolute;
        content: '';
        border: 1px solid rgba(255,255,255,0.1);
        width: 100%;
        left: 0;
        top: 35px;
        overflow: hidden;
        bottom: -70px
    }

    .testimonial-style1 .testimonial-quote {
        font-size: 30px;
        color: #fff;
        background-color: #c5ac2f;
        display: inline-block;
        width: 70px;
        height: 70px;
        line-height: 70px;
        margin-bottom: 40px;
        overflow: hidden;
        border-radius: 50%
    }

.testimonial-img {
    width: 80px;
    height: 80px;
    margin-right: 8px;
    border-radius: 50%
}

@media screen and (max-width: 991px) {
    .testimonial-style1 .testimonial-quote {
        font-size: 24px;
        width: 60px;
        height: 60px;
        line-height: 60px
    }

    .testimonial-img {
        width: 70px;
        height: 70px
    }
}

.testimonial-boxs {
    position: relative;
    margin-right: 0px;
    margin-top: 0px;
    padding: 60px 60px;
    box-shadow: 0 8px 16px 0px rgba(17,12,79,0.1);
    background: #f8f9fa;
    z-index: 9
}

    .testimonial-boxs:after {
        position: absolute;
        left: 50px;
        top: 30px;
        /*content: '\f10d';*/
        font-family: Font Awesome\ 5 Free;
        font-weight: 600;
        font-size: 80px;
        line-height: 80px;
        color: #c5ac2f;
        opacity: .2;
        z-index: 2
    }

.testimonial-style2 .testimonial-block .testimonial-image img {
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 50%
}

@media screen and (max-width: 1199px) {
    .testimonial-boxs {
        padding: 40px;
        margin-top: 50px
    }

        .testimonial-boxs:after {
            left: 25px;
            top: 25px;
            font-size: 60px;
            line-height: 60px
        }

    .testimonial-style2 .testimonial-block .testimonial-image img {
        width: 70px;
        height: 70px
    }
}

@media screen and (max-width: 991px) {
    .testimonial-boxs {
        padding: 40px 30px;
        margin-right: 0;
        margin-top: 0
    }
}

@media screen and (max-width: 767px) {
    .testimonial-style2 .testimonial-block .testimonial-image img {
        width: 60px;
        height: 60px
    }
}

@media screen and (max-width: 575px) {
    .testimonial-boxs:after {
        left: 20px;
        top: 20px;
        font-size: 50px;
        line-height: 50px
    }
}

.testimonial-style3 .seprator {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 25px
}

    .testimonial-style3 .seprator:before {
        position: absolute;
        content: '';
        left: -70px;
        top: 12px;
        background: rgba(255,255,255,0.4);
        width: 50px;
        height: 2px
    }

    .testimonial-style3 .seprator:after {
        position: absolute;
        content: '';
        right: -70px;
        top: 12px;
        background: rgba(255,255,255,0.4);
        width: 50px;
        height: 2px
    }

.portfolio-style1 {
    position: relative;
    overflow: hidden;
    text-align: center
}

    .portfolio-style1 img {
        width: 100%;
        height: auto;
        transform: scale3d(1, 1, 1);
        transition: all 0.6s ease 0s
    }

    .portfolio-style1 .portfolio-overlay {
        width: 100%;
        height: 100%;
        padding: 0;
        background-color: rgba(0,30,73,0.85);
        color: #fff;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        z-index: 2;
        transition: all 0.3s ease 0s;
        display: flex;
        flex-direction: column;
        justify-content: center
    }

        .portfolio-style1 .portfolio-overlay:before {
            content: "";
            position: absolute;
            top: 20px;
            left: 20px;
            bottom: 20px;
            right: 20px;
            border: 1px solid rgba(255,255,255,0.3);
            opacity: 0;
            z-index: -1;
            transform: scale(1.5);
            transition: all 0.6s ease
        }

        .portfolio-style1 .portfolio-overlay .portfolio-info {
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center
        }

            .portfolio-style1 .portfolio-overlay .portfolio-info .portfolio-inner .porfolio-btn {
                width: 45px;
                height: 45px;
                line-height: 50px;
                background: #ffffff;
                color: #c5ac2f;
                display: inline-block;
                text-align: center;
                font-weight: 800;
                border-radius: 50%
            }

        .portfolio-style1 .portfolio-overlay:after {
            content: "";
            position: absolute;
            top: 20px;
            bottom: 20px;
            left: 20px;
            right: 20px;
            border: 1px solid rgba(255,255,255,0.3);
            opacity: 0;
            z-index: -1;
            transform: scale(1.5);
            transition: all 0.6s ease
        }

    .portfolio-style1:hover img {
        transform: scale3d(1.15, 1.15, 1)
    }

    .portfolio-style1:hover .portfolio-overlay {
        opacity: 1
    }

        .portfolio-style1:hover .portfolio-overlay:before, .portfolio-style1:hover .portfolio-overlay:after {
            opacity: 1;
            transform: scale(1)
        }

    .portfolio-style1 .portfolio-overlay .portfolio-info .portfolio-inner .porfolio-btn:hover {
        background: #c5ac2f
    }

    .portfolio-style1 .portfolio-overlay .portfolio-info .portfolio-inner .porfolio-btn.inner-btn a {
        color: #c5ac2f
    }

    .portfolio-style1 .portfolio-overlay .portfolio-info .portfolio-inner .porfolio-btn:hover a {
        color: #fff
    }

@media screen and (max-width: 1199px) {
    .portfolio-style1 .portfolio-overlay:before, .portfolio-style1 .portfolio-overlay:after {
        top: 15px;
        bottom: 15px;
        left: 15px;
        right: 15px
    }
}

.portfolio-box {
    position: relative;
    margin-left: -70px;
    margin-top: 80px
}

.project-block .image:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,30,73,0.2);
    transition: .5s
}

.project-block:hover .image:before, .project-block:hover .lower-content {
    opacity: 0
}

.project-block:hover .overlay-wrapper {
    opacity: 1
}

    .project-block:hover .overlay-wrapper:before {
        opacity: .8
    }

.project-block:hover .link-btn {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.project-block .lower-content {
    position: absolute;
    left: 25px;
    bottom: 25px;
    right: 25px;
    transition: .5s;
    background: #ffffff;
    padding: 25px;
    border-radius: 5px
}

.project-block .count {
    position: relative;
    font-size: 34px;
    line-height: 1;
    margin-bottom: 15px;
    font-weight: 600
}

.project-block .category {
    position: relative;
    padding-left: 45px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px
}

    .project-block .category:before {
        position: absolute;
        content: '';
        left: 0;
        top: 14px;
        width: 30px;
        height: 2px;
        background-color: #c5ac2f
    }

.project-block .text {
    font-size: 22px;
    font-weight: 600;
    position: relative
}

.project-block .overlay-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    transition: .5s;
    opacity: 0;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: column
}

    .project-block .overlay-wrapper:before {
        position: absolute;
        content: '';
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border-radius: 5px;
        background-image: linear-gradient(330deg, rgba(225,161,34,0.9) 0%, #00204c 86%);
        transition: .5s;
        opacity: 0
    }

    .project-block .overlay-wrapper .overlay-content {
        color: #fff
    }

.project-block .link-btn {
    position: relative;
    width: max-content;
    transform: scale(0.5);
    transition: .5s
}

    .project-block .link-btn a {
        position: relative;
        display: inline-block;
        height: 45px;
        width: 45px;
        text-align: center;
        line-height: 45px;
        border-radius: 5px;
        background-color: #fff;
        font-size: 16px;
        color: #c5ac2f
    }

@media screen and (max-width: 1199px) {
    .portfolio-box {
        margin-left: 60px;
        margin-top: -90px
    }
}

@media screen and (max-width: 575px) {
    .portfolio-box {
        margin: 0 15px;
        margin-top: -60px
    }

    .project-block .text {
        font-size: 20px
    }
}

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

    .rating li {
        display: inline;
        border-bottom: 0;
        font-size: 13px;
        padding-right: 5px
    }

        .rating li i {
            color: #ffffff
        }

        .rating li:last-child {
            padding-right: 0
        }

.story-video {
    height: 100%
}

.video_btn {
    position: relative;
    height: 80px;
    width: 80px;
    background: #c5ac2f;
    text-align: center;
    display: inline-block;
    line-height: 78px;
    color: #fff;
    border-radius: 50%;
    transition-duration: 0s
}

    .video_btn:hover i, .video_btn:focus i {
        color: #fff
    }

    .video_btn:after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        height: 80px;
        width: 80px;
        border: 1px solid #fff;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transform: translateX(-50%) translateY(-50%);
        opacity: .3;
        animation: pulse-border 1500ms ease-out infinite
    }

    .video_btn:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        height: 95px;
        width: 95px;
        border: 1px solid #fff;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transform: translateX(-50%) translateY(-50%);
        opacity: .3;
        animation: pulse-border 1500ms ease-out infinite
    }

    .video_btn.small {
        width: 50px;
        height: 50px;
        line-height: 50px
    }

        .video_btn.small:after {
            height: 50px;
            width: 50px
        }

        .video_btn.small:before {
            height: 65px;
            width: 65px
        }

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

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

@media screen and (max-width: 1199px) {
    .video_btn {
        height: 75px;
        width: 75px;
        line-height: 70px
    }

        .video_btn:after {
            height: 75px;
            width: 75px
        }

        .video_btn:before {
            height: 90px;
            width: 90px
        }
}

@media screen and (max-width: 991px) {
    .video_btn {
        height: 70px;
        width: 70px;
        line-height: 70px
    }

        .video_btn:after {
            height: 70px;
            width: 70px
        }

        .video_btn:before {
            height: 85px;
            width: 85px
        }

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

        100% {
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.2)
        }
    }
}

@media screen and (max-width: 767px) {
    .video_btn {
        height: 60px;
        width: 60px;
        line-height: 60px
    }

        .video_btn:after {
            height: 60px;
            width: 60px
        }

        .video_btn:before {
            height: 75px;
            width: 75px
        }
}

.pagination {
    border-radius: 0;
    padding: 0;
    margin: 0
}

    .pagination ul {
        display: inline-block;
        margin: 0 auto;
        padding: 0
    }

    .pagination li {
        display: inline
    }

    .pagination a {
        float: left;
        font-size: 16px;
        padding: 0 18px;
        line-height: 40px;
        text-decoration: none;
        font-weight: 800;
        border: 1px solid #dbdbdb;
        background: #fff
    }

        .pagination a:hover {
            background-color: #c5ac2f;
            border: 1px solid #c5ac2f;
            color: #ffffff
        }

    .pagination .active a {
        background-color: #f7f7f7;
        color: #002147;
        border: 1px solid #dbdbdb;
        cursor: default
    }

@media screen and (max-width: 575px) {
    .pagination a {
        padding: 0 13px
    }
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 40px
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background-color: #c5ac2f
}

.owl-nav i, .owl-nav span {
    color: #232323;
    font-size: 28px
}

.owl-carousel .owl-item img {
    width: auto;
    display: inline-block
}

.testimonial-style2 {
    position: relative
}

    .testimonial-style2 .owl-nav button.owl-next {
        text-align: center;
        width: 50px;
        height: 50px;
        background: #c5ac2f;
        position: absolute;
        line-height: 8px;
        right: -60px;
        bottom: -85px;
        border-radius: 0;
        margin: 0;
        top: inherit;
        border: none !important;
        transform: translateY(-50%);
        transition: all 0.2s linear;
        cursor: pointer;
        font-size: 20px
    }

    .testimonial-style2 .owl-nav button.owl-prev {
        text-align: center;
        width: 50px;
        height: 50px;
        background: #c5ac2f;
        position: absolute;
        line-height: 8px;
        right: -12px;
        bottom: -85px;
        border-radius: 0;
        left: inherit;
        margin: 0;
        margin-right: 2px;
        top: inherit;
        border: none !important;
        transform: translateY(-50%);
        transition: all 0.2s linear;
        cursor: pointer;
        font-size: 20px
    }

    .testimonial-style2.owl-theme .owl-nav {
        margin-top: 0
    }

    .testimonial-style2 .owl-nav i {
        color: #ffffff
    }

    .testimonial-style2.owl-theme .owl-nav .owl-next:hover, .testimonial-style2.owl-theme .owl-nav .owl-prev:hover {
        background: #00204c !important
    }

@media screen and (max-width: 1199px) {
    .testimonial-style2 .owl-nav button.owl-prev {
        right: 10px;
        bottom: -65px
    }

    .testimonial-style2 .owl-nav button.owl-next {
        right: -40px;
        bottom: -65px
    }
}

@media screen and (max-width: 991px) {
    .testimonial-style2 .owl-nav button.owl-prev {
        right: 15px;
        bottom: -62px;
        width: 45px;
        height: 45px
    }

    .testimonial-style2 .owl-nav button.owl-next {
        right: -30px;
        bottom: -62px;
        width: 45px;
        height: 45px
    }
}

@media screen and (max-width: 767px) {
    .testimonial-style2 .owl-nav button.owl-prev {
        right: 15px;
        bottom: -62px
    }

    .testimonial-style2 .owl-nav button.owl-next {
        bottom: -62px;
        right: -30px
    }
}

@media screen and (max-width: 575px) {
    .testimonial-style2 .owl-nav button.owl-prev {
        right: 10px;
        bottom: -60px;
        width: 40px;
        height: 40px
    }

    .testimonial-style2 .owl-nav button.owl-next {
        right: -30px;
        bottom: -60px;
        width: 40px;
        height: 40px
    }
}

.case-study-carousel {
    position: relative
}

    .case-study-carousel.owl-theme .owl-nav.disabled + .owl-dots {
        margin-top: 0;
        position: absolute;
        text-align: center;
        transition: .3s opacity;
        top: 50%;
        transform: translate3d(0px, -50%, 0);
        z-index: 10;
        left: -50px;
        display: flex;
        align-items: center;
        flex-direction: column
    }

    .case-study-carousel.owl-theme .owl-dots .owl-dot {
        display: inline-block;
        zoom: 1;
        cursor: pointer
    }

        .case-study-carousel.owl-theme .owl-dots .owl-dot span {
            display: inline-block;
            width: 16px;
            height: 16px;
            box-sizing: border-box;
            background-color: #ffffff;
            border: 3px solid transparent;
            border-radius: 50%;
            transform: scale(0.6);
            transition: .3s;
            margin: 3px
        }

        .case-study-carousel.owl-theme .owl-dots .owl-dot.active span {
            background-color: transparent;
            border-color: #ffffff;
            transform: scale(0.9)
        }

.owl-theme .owl-dots .owl-dot:hover span {
    background-color: transparent;
    border-color: #ffffff;
    transform: scale(0.9)
}

.service-carousel.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 40px
}

.service-carousel.owl-theme .owl-dots .owl-dot span {
    display: inline-block;
    width: 16px;
    height: 16px;
    box-sizing: border-box;
    background-color: #c5ac2f;
    border: 3px solid #c5ac2f;
    border-radius: 50%;
    transform: scale(0.6);
    transition: .3s;
    margin: 5px
}

.service-carousel.owl-theme .owl-dots .owl-dot.active span {
    background-color: transparent;
    border-color: #c5ac2f !important;
    transform: scale(0.9)
}

.owl-theme .owl-dots .owl-dot:hover span {
    background-color: transparent;
    border-color: #c5ac2f !important;
    transform: scale(0.9)
}

.owl-thumbs {
    z-index: 9;
    position: relative
}

    .owl-thumbs button {
        border: none
    }

        .owl-thumbs button .title {
            transition: 0.5s;
            opacity: 0;
            text-align: center;
            visibility: hidden;
            margin: 20px -100px 0
        }

        .owl-thumbs button.active .title {
            opacity: 1;
            visibility: visible
        }

        .owl-thumbs button img {
            opacity: .5
        }

        .owl-thumbs button.active img {
            opacity: 1
        }

.accordion .card {
    background: transparent;
    box-shadow: none;
    margin-bottom: 20px;
    border: 0;
    border-radius: 0
}

    .accordion .card:last-child {
        margin-bottom: 0
    }

.accordion .card-header {
    border: 0;
    padding: 0;
    background: none
}

.accordion .accordion-collapse {
    border: none
}

.accordion .accordion-button {
    border-bottom: none;
    color: #00204c;
    font-size: 18px;
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    box-shadow: none;
    line-height: 28px;
    font-weight: 500;
    padding: 15px 20px;
    text-decoration: none;
    background: none;
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
    border-radius: 0
}

    .accordion .accordion-button:hover {
        text-decoration: none
    }

    .accordion .accordion-button.collapsed {
        background: #ffffff;
        color: #282b2d;
        border-top: 1px solid #ededed
    }

        .accordion .accordion-button.collapsed:after {
            background: none;
            border: none;
            border-radius: 0;
            content: '\f063';
            font-family: Font Awesome\ 5 Free;
            font-weight: 600;
            right: 35px;
            left: inherit;
            font-size: 14px;
            line-height: 0;
            height: 0;
            transform: none;
            width: 0;
            top: 28px;
            text-align: center;
            color: #00204c;
            padding-left: 0;
            letter-spacing: -1px
        }

    .accordion .accordion-button:after {
        background: none;
        border: none;
        border-radius: 0;
        content: '\f062';
        font-family: Font Awesome\ 5 Free;
        font-weight: 600;
        right: 35px;
        left: inherit;
        font-size: 14px;
        height: 0;
        line-height: 0;
        transform: none;
        width: 0;
        top: 28px;
        position: absolute;
        color: #00204c;
        text-align: center;
        padding-left: 2px;
        letter-spacing: -2px
    }

.accordion .card-body {
    font-size: 16px;
    padding: 15px 20px 0 20px;
    line-height: 28px
}

@media screen and (max-width: 991px) {
    .accordion .accordion-button {
        padding: 10px 15px;
        font-size: 16px
    }

    .accordion .card-body {
        padding: 10px 15px 0 15px
    }

    .accordion .accordion-button.collapsed:after, .accordion .accordion-button:after {
        right: 15px;
        font-size: 14px;
        height: 22px;
        line-height: 22px;
        width: 22px;
        top: 13px
    }
}

@media screen and (max-width: 767px) {
    .accordion .card-body {
        font-size: 15px
    }
}

@media screen and (max-width: 575px) {
    .accordion .accordion-button {
        padding: 10px 40px 10px 15px
    }
}

ul.resp-tabs-list {
    margin: 0px;
    padding: 0px
}

.resp-tabs-list li {
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    padding: 13px 15px;
    margin: 0 4px 0 0;
    list-style: none;
    cursor: pointer
}

    .resp-tabs-list li:last-child {
        margin-right: 0
    }

    .resp-tabs-list li i {
        font-size: 20px;
        padding-right: 5px;
        vertical-align: text-bottom
    }

.resp-tabs-container {
    padding: 0px;
    background-color: #fff;
    clear: left
}

.resp-tab-content {
    display: none;
    padding: 20px
}

.resp-tabs-list li.resp-tab-active {
    border: 1px solid #00bcd1;
    border-bottom: none;
    border-color: #00bcd1 !important;
    margin-bottom: -1px;
    padding: 12px 14px 14px 14px;
    border-top: 4px solid #00bcd1 !important;
    border-bottom: 0px #fff solid;
    border-bottom: none;
    background-color: #fff;
    color: #00bcd1
}

.resp-content-active, .resp-accordion-active {
    display: block
}

.resp-tab-content {
    border: 1px solid #c1c1c1;
    border-top-color: #c1c1c1;
    float: left;
    width: 100%
}

h2.resp-accordion {
    cursor: pointer;
    display: none;
    font-size: 14px;
    border: 1px solid #ededed;
    border-top: 0px solid #ededed;
    margin: 0px;
    padding: 14px 15px;
    float: left;
    width: 100%
}

h2.resp-tab-active {
    border-bottom: 0px solid #c1c1c1 !important;
    background-color: #c5ac2f !important;
    color: #fff
}

h2.resp-tab-title:last-child {
    border-bottom: 12px solid #c1c1c1 !important;
    background: blue
}

.resp-vtabs ul.resp-tabs-list {
    float: left;
    width: 30%
}

.resp-vtabs .resp-tabs-list li {
    display: block;
    padding: 15px 15px !important;
    margin: 0 0 4px;
    cursor: pointer;
    float: none
}

.resp-vtabs .resp-tabs-container {
    padding: 0px;
    background-color: #fff;
    border: 1px solid #00bcd1 !important;
    float: left;
    width: 70%;
    min-height: 250px;
    clear: none
}

.resp-vtabs .resp-tab-content {
    border: none;
    word-wrap: break-word
}

.resp-vtabs li.resp-tab-active {
    position: relative;
    z-index: 1;
    margin-right: -1px !important;
    padding: 14px 15px 15px 11px !important;
    border-top: 1px solid;
    border: 1px solid #00bcd1 !important;
    border-left: 4px solid #00bcd1 !important;
    margin-bottom: 4px !important;
    border-right: 1px #FFF solid !important
}

.resp-arrow {
    border-color: transparent #1e2022 #1e2022 transparent;
    border-style: solid;
    border-width: 0 1px 1px 0;
    float: right;
    display: block;
    height: 8px;
    transform: rotate(45deg);
    width: 8px;
    margin-top: 4px
}

h2.resp-tab-active span.resp-arrow {
    border-color: #fff transparent transparent #fff;
    border-style: solid;
    border-width: 1px 0 0 1px;
    float: right;
    display: block;
    height: 8px;
    transform: rotate(45deg);
    width: 8px;
    margin-top: 7px
}

.resp-easy-accordion h2.resp-accordion {
    display: block
}

.resp-easy-accordion .resp-tab-content {
    border: 1px solid #c1c1c1
}

    .resp-easy-accordion .resp-tab-content:last-child {
        border-bottom: 1px solid #c1c1c1
    }

.resp-jfit {
    width: 100%;
    margin: 0px
}

.resp-tab-content-active {
    display: block;
    border-color: #ededed !important
}

h2.resp-accordion:first-child {
    border-top: 1px solid #ededed
}

h2.resp-accordion.resp-tab-active {
    border-color: #c5ac2f !important
}

@media only screen and (min-width: 992px) {
    .tab-style1 ul.resp-tabs-list {
        text-align: center;
        border: 1px solid #e6e6e6;
        border-width: 0 0 1px 0
    }

        .tab-style1 ul.resp-tabs-list li:last-child {
            margin-right: 0
        }

        .tab-style1 ul.resp-tabs-list li.resp-tab-active {
            border-bottom-color: #c5ac2f;
            color: #c5ac2f
        }

    .tab-style1 .resp-tab-content {
        border: none;
        border-top: none;
        padding: 30px 20px
    }

    .tab-style1 .resp-tabs-list .tab-box {
        display: inline-block;
        vertical-align: middle;
        text-align: left;
        margin-top: 8px
    }

    .tab-style1 .resp-tabs-list li.resp-tab-active h6 {
        color: #c5ac2f
    }

    .tab-style1 .resp-tabs-list .tab-box h6 {
        margin: 0;
        font-weight: 600;
        font-size: 16px;
        color: #6f6f6f;
        line-height: 12px
    }

    .tab-style1 .resp-tabs-list .tab-box span {
        text-transform: lowercase;
        font-size: 12px
    }

    .tab-style1 .resp-tabs-list li {
        font-size: 18px;
        border-bottom: 2px solid transparent !important;
        margin: 0;
        background: none !important;
        padding: 0 35px 15px 35px;
        text-transform: uppercase
    }

        .tab-style1 .resp-tabs-list li.resp-tab-active {
            border-width: 0 0 2px 0 !important;
            border-color: #c5ac2f !important
        }

    .tab-style1 ul.resp-tabs-list i {
        margin-right: 15px;
        border: 1px solid #d5d5d5;
        border-radius: 70px;
        width: 70px;
        height: 70px;
        line-height: 68px;
        font-size: 30px;
        padding: 0;
        vertical-align: middle
    }

    .tab-style1 ul.resp-tabs-list li.resp-tab-active i {
        background: #c5ac2f;
        border-color: #c5ac2f;
        color: #fff
    }
}

@media only screen and (max-width: 991px) {
    .tab-style1 .resp-tab-content {
        padding: 25px
    }

    .tab-style1 .resp-tabs-list li {
        padding: 0 15px 15px 15px
    }

    ul.resp-tabs-list {
        display: none
    }

    h2.resp-accordion {
        display: block
    }

        h2.resp-accordion i {
            margin-right: 8px;
            font-size: 18px;
            vertical-align: middle
        }

    .resp-vtabs .resp-tab-content {
        border: 1px solid #C1C1C1
    }

    .resp-vtabs .resp-tabs-container {
        border: none !important;
        float: none;
        width: 100%;
        min-height: 100px;
        clear: none
    }

    .resp-accordion-closed {
        display: none !important
    }

    .resp-vtabs .resp-tab-content:last-child {
        border-bottom: 1px solid #c1c1c1 !important
    }

    .resp-tab-content {
        background-color: #fff
    }

    .tab-style1 .tab-box {
        display: inline-block;
        vertical-align: top
    }

    .tab-style1 h2.resp-accordion i {
        margin-right: 15px;
        margin-top: 0
    }

    .tab-style1 .tab-box h6 {
        margin-bottom: 0;
        font-size: 16px
    }

    .tab-style1 .tab-box span {
        font-size: 12px
    }

    .tab-style1 .resp-tab-active h6 {
        color: #fff
    }
}

@media screen and (max-width: 575px) {
    .tab-style1 .resp-tab-content {
        padding: 20px
    }
}

.tab-style2 .resp-tabs-list {
    margin: 0px;
    padding: 0px;
    width: 100%;
    border-top: none;
    text-align: center
}

    .tab-style2 .resp-tabs-list li {
        font-weight: 600;
        font-size: 14px;
        list-style: none;
        cursor: pointer;
        margin-right: 15px;
        padding: 0;
        border: 1px solid #f3f3f3;
        border-radius: 5px
    }

        .tab-style2 .resp-tabs-list li:last-child {
            margin-right: 0
        }

        .tab-style2 .resp-tabs-list li i {
            font-size: 24px;
            margin-bottom: 0;
            color: #c5ac2f;
            display: inline-block;
            vertical-align: middle;
            padding-right: 10px
        }

.tab-style2 .resp-tabs-container {
    padding: 0px;
    background-color: #fff;
    clear: left
}

.tab-style2 .resp-tab-content {
    display: none;
    padding: 60px 0 0 0
}

.tab-style2 .resp-tabs-list li.resp-tab-active {
    border: 1px solid #c5ac2f !important;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
    background-color: #c5ac2f;
    color: #fff
}

    .tab-style2 .resp-tabs-list li.resp-tab-active i {
        color: #fff
    }

.tab-style2 .resp-content-active, .tab-style2 .resp-accordion-active {
    display: block
}

.tab-style2 .resp-tab-content {
    border: 1px solid #c1c1c1;
    border-top-color: #c1c1c1;
    float: none;
    width: 100%
}

.tab-style2 h2.resp-accordion {
    cursor: pointer;
    font-size: 14px;
    border: 1px solid #ededed;
    border-top: 0px solid #ededed;
    margin: 0px;
    padding: 14px 15px;
    float: left;
    width: 100%
}

.tab-style2 h2.resp-tab-active {
    border-bottom: 0px solid #c1c1c1 !important;
    background-color: #c5ac2f !important;
    color: #fff
}

.tab-style2 h2.resp-tab-title:last-child {
    border-bottom: 12px solid #c1c1c1 !important;
    background: blue
}

.tab-style2 .tab-box {
    font-size: 13px;
    margin-right: 0;
    padding: 15px 0;
    width: 200px;
    border-radius: 5px;
    text-align: center
}

.tab-style2 h2.resp-accordion i {
    margin-right: 15px;
    vertical-align: middle
}

.tab-style2 .tab-box h6 {
    margin-bottom: 0;
    display: inline-block;
    vertical-align: middle
}

.tab-style2 .tab-box span {
    font-size: 12px
}

.tab-style2 .resp-tab-active h6 {
    color: #fff
}

.tab-style2 .resp-arrow {
    border-color: transparent #232323 #232323 transparent;
    border-style: solid;
    border-width: 0 1px 1px 0;
    float: right;
    display: block;
    height: 8px;
    transform: rotate(45deg);
    width: 8px;
    margin-top: 4px
}

.tab-style2 h2.resp-tab-active span.resp-arrow {
    border-color: #fff transparent transparent #fff;
    border-style: solid;
    border-width: 1px 0 0 1px;
    float: right;
    display: block;
    height: 8px;
    transform: rotate(45deg);
    width: 8px;
    margin-top: 7px
}

.tab-style2 .resp-tab-content-active {
    display: block;
    border: none
}

@media only screen and (max-width: 991px) {
    .tab-style2 .resp-tab-content {
        padding: 25px
    }

    .tab-style2 .resp-tab-content-active {
        border: 1px solid #00bcd1
    }

    .tab-style2 h2.resp-accordion:first-child {
        border-top: 1px solid #ededed
    }

    .tab-style2 .tab-box {
        padding: 0px 0;
        width: auto;
        text-align: left
    }

    .tab-style2 h2.resp-tab-active span.resp-arrow {
        margin-top: 8px
    }

    .tab-style2 h2.resp-accordion {
        float: none
    }
}

@media screen and (max-width: 575px) {
    .tab-style2 .resp-tab-content {
        padding: 20px
    }
}

.aboutus-img img {
    width: 100%;
    outline: 1px solid rgba(255,255,255,0.4);
    outline-offset: -20px
}

.timeline {
    width: 100%
}

.timeline-item .timeline-content {
    background: #ffffff;
    box-shadow: 0 8px 16px 0px rgba(17,12,79,0.1);
    padding: 30px 25px;
    position: relative;
    z-index: 1;
    margin-left: -75px
}

.timeline-item .timeline-content-left {
    background: #ffffff;
    box-shadow: 0 8px 16px 0px rgba(17,12,79,0.1);
    padding: 30px 25px;
    position: relative;
    z-index: 1;
    margin-right: -75px
}

.timeline.timeline-wrapper .timeline-item {
    position: relative;
    width: 50%;
    margin-left: 50%;
    padding-bottom: 44px;
    padding-left: 60px;
    text-align: left
}

    .timeline.timeline-wrapper .timeline-item .year {
        position: absolute;
        right: -25px;
        top: 12px;
        color: #ffffff;
        font-size: 20px;
        text-align: center;
        border-radius: 50%;
        z-index: 1
    }

    .timeline.timeline-wrapper .timeline-item .year-left {
        position: absolute;
        left: -25px;
        top: 12px;
        color: #ffffff;
        font-size: 20px;
        text-align: center;
        border-radius: 50%;
        z-index: 1
    }

    .timeline.timeline-wrapper .timeline-item:nth-child(2n+1) {
        margin-left: 0;
        padding-right: 60px;
        padding-left: 0;
        text-align: right
    }

    .timeline.timeline-wrapper .timeline-item:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 60px;
        height: 60px;
        margin-left: -30px;
        background: #c5ac2f;
        border-radius: 50%
    }

    .timeline.timeline-wrapper .timeline-item:nth-child(2n+1):before {
        right: 0;
        left: auto;
        margin-right: -30px
    }

    .timeline.timeline-wrapper .timeline-item:nth-child(2n+1):after {
        right: 0;
        left: auto
    }

    .timeline.timeline-wrapper .timeline-item:after {
        content: "";
        position: absolute;
        top: 35px;
        left: 0;
        bottom: 0;
        width: 1px;
        margin-top: 25px;
        margin-left: -2px;
        background-color: #e6e7e8
    }

@media screen and (max-width: 991px) {
    .timeline-item .timeline-content {
        padding: 25px;
        margin-left: 0;
        text-align: left
    }

    .timeline-item .timeline-content-left {
        padding: 25px;
        margin-right: 0
    }

    .timeline.timeline-wrapper .timeline-item:nth-child(2n+1) {
        padding-right: 50px
    }

    .timeline.timeline-wrapper .timeline-item:before {
        width: 50px;
        height: 50px;
        margin-left: -25px
    }

    .timeline.timeline-wrapper .timeline-item:nth-child(2n+1):before {
        margin-right: -25px
    }

    .timeline.timeline-wrapper .timeline-item .year-left {
        left: -20px
    }

    .timeline.timeline-wrapper .timeline-item .year {
        font-size: 16px;
        right: -20px
    }

    .timeline.timeline-wrapper .timeline-item:after {
        top: 25px
    }

    .timeline.timeline-wrapper .timeline-item .year-left {
        font-size: 16px
    }
}

@media screen and (max-width: 767px) {
    .timeline.timeline-wrapper .timeline-item {
        width: 100%;
        margin-left: 0;
        padding-bottom: 35px;
        padding-left: 50px
    }

        .timeline.timeline-wrapper .timeline-item:nth-child(2n+1) {
            padding-left: 50px;
            padding-right: 0;
            padding-bottom: 35px
        }

        .timeline.timeline-wrapper .timeline-item .year {
            right: inherit;
            left: -20px
        }

        .timeline.timeline-wrapper .timeline-item:nth-child(2n+1):before, .timeline.timeline-wrapper .timeline-item:nth-child(2n+1):after {
            right: auto;
            left: 0
        }
}

@media screen and (max-width: 575px) {
    .timeline.timeline-wrapper .timeline-item {
        padding-right: 0;
        padding-left: 0
    }

        .timeline.timeline-wrapper .timeline-item:nth-child(2n+1) {
            padding-left: 0
        }

        .timeline.timeline-wrapper .timeline-item:before, .timeline.timeline-wrapper .timeline-item:after {
            content: none
        }

        .timeline.timeline-wrapper .timeline-item .year, .timeline.timeline-wrapper .timeline-item .year-left {
            display: none
        }
}

.image-icon {
    position: absolute;
    top: -15px;
    left: -110px;
    width: 85px;
    height: 85px;
    padding: 15px;
    text-align: center;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 8px 16px 0px rgba(17,12,79,0.1)
}

@media screen and (max-width: 767px) {
    .image-icon {
        top: -85px;
        left: inherit;
        right: 0;
        width: 80px;
        height: 80px;
        padding: 10px
    }
}

@media screen and (max-width: 575px) {
    .image-icon {
        left: inherit;
        right: 0;
        width: 75px;
        height: 75px;
        padding: 10px
    }
}

.team-info {
    list-style: none;
    margin-bottom: 12px;
    padding-bottom: 12px;
    padding-left: 0;
    border-bottom: 1px solid #ededed
}

    .team-info li {
        font-size: 14px;
        display: flex;
        align-items: baseline;
        margin-bottom: 10px
    }

        .team-info li:last-child {
            margin-bottom: 0
        }

        .team-info li h6 {
            flex-basis: 40%;
        }

            .team-info li h6.last {
                flex-basis: 52%
            }

.team-social-icon {
    margin: 0;
    padding: 0;
    list-style: none
}

    .team-social-icon li {
        text-align: center;
        margin-right: 5px;
        display: inline-block
    }

        .team-social-icon li a {
            color: #ffffff;
            border-radius: 50%;
            height: 30px;
            width: 30px;
            line-height: 31px;
            display: inline-block;
            font-size: 12px;
            background: #00204c
        }

        .team-social-icon li:last-child {
            margin-right: 0
        }

        .team-social-icon li a:hover {
            background: #c5ac2f;
            color: #fff
        }

.team-info-title {
    display: block;
    margin-bottom: 40px;
    padding-bottom: 15px;
    position: relative;
    font-size: 24px
}

    .team-info-title:before {
        background: #ededed;
        bottom: -1px;
        content: "";
        height: 2px;
        left: 0;
        position: absolute;
        width: 100%
    }

    .team-info-title:after {
        bottom: -1px;
        content: "";
        height: 2px;
        left: 0;
        position: absolute;
        width: 70px;
        background: #c5ac2f
    }

.vertical-timeline {
    position: relative
}

    .vertical-timeline:before {
        content: '';
        position: absolute;
        width: 2px;
        height: 100%;
        background: #ebeff1;
        left: 33%;
        top: 0
    }

.left-side {
    display: inline-block;
    flex-basis: 33%;
    position: relative
}

    .left-side:before {
        content: '\f192';
        font-family: Font Awesome\ 5 Free;
        font-weight: 600;
        color: #c5ac2f;
        top: 0;
        right: -14px;
        position: absolute;
        font-size: 25px;
        line-height: 1;
        background-color: #ffffff
    }

.right-side {
    flex-basis: 67%;
    display: inline-block;
    padding-left: 60px
}

@media screen and (max-width: 1399px) {
    .team-info li h6.last {
        flex-basis: 60%
    }
}

@media screen and (max-width: 1199px) {
    .team-info li {
        display: inherit
    }
}

@media screen and (max-width: 991px) {
    .team-info-title {
        font-size: 22px;
        margin-bottom: 35px
    }

    .team-info li {
        display: flex
    }

        .team-info li h6.last {
            flex-basis: 42%
        }
}

@media screen and (max-width: 767px) {
    .vertical-timeline:before {
        left: 44%
    }

    .left-side {
        flex-basis: 44%
    }

    .right-side {
        flex-basis: 56%
    }

    .team-social-icon li a {
        height: 35px;
        width: 35px;
        line-height: 35px;
        font-size: 13px
    }
}

@media screen and (max-width: 575px) {
    .team-info li {
        display: inherit
    }

    .vertical-timeline {
        padding-left: 35px
    }

        .vertical-timeline::before {
            left: 10px
        }

    .left-side {
        width: 100%
    }

    .right-side {
        width: 100%;
        padding-left: 0;
        margin-top: 20px
    }

    .left-side::before {
        right: auto;
        left: -35px
    }
}

.contact-info {
    padding: 15px;
    margin: -55px 25px 0;
    position: relative;
    z-index: 99;
    text-align: center;
    box-shadow: 0 8px 16px 0px rgba(17,12,79,0.1);
    background: #ffffff;
	text-transform: capitalize;
	font-weight:600;
}

@media screen and (max-width: 1199px) {
    .contact-info {
        padding: 20px
    }
}

.countdown {
    list-style: none;
    padding-left: 0
}

    .countdown li {
        border-right: 1px solid rgba(255,255,255,0.2);
        display: inline-block;
        padding: 0 50px;
        text-align: center
    }

        .countdown li:first-child {
            padding-left: 0
        }

        .countdown li:last-child {
            padding-right: 0;
            border-right: none
        }

        .countdown li span {
            font-size: 60px;
            font-weight: 600;
            color: #c5ac2f;
            margin-bottom: 5px;
            position: relative
        }

            .countdown li span:before {
                content: "";
                height: 1px;
                position: absolute;
                width: 100%
            }

        .countdown li p.timeRefDays, .countdown li p.timeRefHours, .countdown li p.timeRefMinutes, .countdown li p.timeRefSeconds {
            font-size: 16px;
            font-weight: 500;
            margin: 0;
            padding: 0;
            text-transform: uppercase
        }

.coming-soon .social-icon {
    margin: 0;
    padding: 0;
    list-style: none
}

    .coming-soon .social-icon li {
        text-align: center;
        margin-right: 15px;
        display: inline-block
    }

        .coming-soon .social-icon li:last-child {
            margin-right: 0
        }

        .coming-soon .social-icon li a {
            color: #00204c;
            height: 40px;
            width: 40px;
            line-height: 40px;
            border-radius: 50%;
            display: inline-block;
            font-size: 16px;
            background: #ffffff
        }

            .coming-soon .social-icon li a:hover {
                color: #ffffff;
                background-color: #c5ac2f
            }

@media screen and (max-width: 991px) {
    .countdown li {
        padding: 0 40px
    }

        .countdown li span {
            font-size: 50px
        }
}

@media screen and (max-width: 767px) {
    .countdown li {
        padding: 0 35px
    }

        .countdown li span {
            font-size: 46px
        }

    .coming-soon .social-icon li {
        margin-right: 10px
    }
}

@media screen and (max-width: 575px) {
    .countdown li {
        margin-top: 10px;
        padding: 0 10px;
        min-width: 47%
    }

        .countdown li span {
            font-size: 40px
        }

        .countdown li.second {
            border-right: 0;
            padding-right: 0
        }

        .countdown li.third {
            padding-left: 0
        }

        .countdown li p.timeRefDays, .countdown li p.timeRefHours, .countdown li p.timeRefMinutes, .countdown li p.timeRefSeconds {
            font-size: 14px
        }

    .coming-soon .social-icon li a {
        height: 35px;
        width: 35px;
        line-height: 35px;
        font-size: 14px
    }
}

.page-navigation {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    box-shadow: 0 8px 16px 0px rgba(17,12,79,0.1)
}

.prev-page, .next-page {
    position: relative;
    width: 50%;
    max-width: 350px;
    margin: 10px
}

    .prev-page:before, .next-page:before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: rgba(255,255,255,0);
        box-shadow: 0 0 0 0 rgba(34,35,40,0);
        transform: scale(1.04, 1.12);
        transition: .3s ease-in-out;
        pointer-events: none
    }

    .prev-page .page-info > a, .next-page .page-info > a {
        display: flex;
        align-items: center;
        position: relative;
        padding: 16px 20px;
        min-height: 110px;
        transition: 0.8s
    }

    .prev-page .page-info .image-prev, .prev-page .page-info .image-next {
        position: relative;
        flex-shrink: 0;
        width: 70px;
        height: 70px;
        vertical-align: middle;
        transition: inherit;
        overflow: hidden
    }

    .next-page .page-info .image-prev, .next-page .page-info .image-next {
        position: relative;
        flex-shrink: 0;
        width: 70px;
        height: 70px;
        vertical-align: middle;
        transition: inherit;
        overflow: hidden
    }

    .prev-page .page-info .prev-title, .prev-page .page-info .next-title {
        display: inline-block;
        position: relative;
        max-width: 220px;
        font-size: 16px;
        line-height: 1.5;
        font-weight: 600;
        word-wrap: break-word;
        vertical-align: middle;
        transition: 0.45s
    }

    .next-page .page-info .prev-title, .next-page .page-info .next-title {
        display: inline-block;
        position: relative;
        max-width: 220px;
        font-size: 16px;
        line-height: 1.5;
        font-weight: 600;
        word-wrap: break-word;
        vertical-align: middle;
        transition: 0.45s
    }

    .prev-page .page-info .prev-title:empty, .prev-page .page-info .next-title:empty {
        display: none
    }

    .next-page .page-info .prev-title:empty, .next-page .page-info .next-title:empty {
        display: none
    }

    .prev-page:hover:before, .next-page:hover:before {
        background-color: white;
        transform: scale(1);
        box-shadow: 0 10px 30px 0 rgba(34,35,40,0.1)
    }

    .prev-page a {
        justify-content: flex-start;
        text-align: left
    }

        .prev-page a:hover .image-prev:after {
            visibility: visible;
            opacity: 1
        }

        .prev-page a:hover .image-prev:before {
            visibility: visible;
            opacity: 1;
            margin-left: 0
        }

    .prev-page .image-prev {
        margin-right: 20px
    }

        .prev-page .image-prev:after {
            background-color: #c5ac2f
        }

    .next-page .image-next:after {
        background-color: #c5ac2f
    }

    .prev-page .image-prev:before {
        display: block;
        position: absolute;
        z-index: 2;
        left: 0;
        right: 0;
        margin-left: 20px;
        content: "\e64a";
        font-family: 'themify';
        font-size: 21px;
        line-height: 70px;
        color: #fff;
        text-align: center;
        opacity: 0;
        visibility: hidden;
        transition: .3s ease-in-out
    }

    .prev-page .image-prev:after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        visibility: hidden;
        transition: .3s ease-in-out
    }

.next-page {
    margin-left: auto
}

    .next-page a {
        justify-content: flex-end;
        text-align: right
    }

        .next-page a:hover .image-next:after {
            visibility: visible;
            opacity: 1
        }

        .next-page a:hover .image-next:before {
            visibility: visible;
            opacity: 1;
            margin-right: 0
        }

    .next-page .image-next {
        margin-left: 20px
    }

        .next-page .image-next:before {
            display: block;
            position: absolute;
            z-index: 2;
            left: 0;
            right: 0;
            margin-right: 20px;
            content: "\e64a";
            font-family: 'themify';
            font-size: 21px;
            line-height: 70px;
            color: #fff;
            text-align: center;
            opacity: 0;
            visibility: hidden;
            transition: .3s ease-in-out;
            transform: scaleX(-1)
        }

        .next-page .image-next:after {
            content: '';
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            opacity: 0;
            visibility: hidden;
            transition: .3s ease-in-out
        }

    .next-page .next-title {
        text-align: right
    }

.prev-link-page-info > span, .next-link-page-info > span {
    display: block
}

.prev-link-page-info .date-details, .next-link-page-info .date-details {
    font-size: 14px;
    letter-spacing: .025em;
    line-height: 20px;
    margin-bottom: -2px
}

    .prev-link-page-info .date-details > div, .prev-link-page-info .date-details > span {
        line-height: inherit;
        transition: 0.45s;
        font-weight: 500
    }

    .next-link-page-info .date-details > div, .next-link-page-info .date-details > span {
        line-height: inherit;
        transition: 0.45s;
        font-weight: 500
    }

    .prev-link-page-info .date-details:only-child, .next-link-page-info .date-details:only-child {
        margin-top: 0
    }

@media (max-width: 767px) {
    .prev-page, .next-page {
        width: calc(100% - 20px);
        max-width: unset
    }

        .prev-page + .next-page {
            margin-top: 0
        }

    .page-navigation {
        flex-direction: column
    }
}

@media (max-width: 575px) {
    .prev-page .page-info > a, .next-page .page-info > a {
        padding: 10px
    }

    .prev-page .page-info .prev-title, .prev-page .page-info .next-title {
        max-width: 168px
    }

    .next-page .page-info .prev-title, .next-page .page-info .next-title {
        max-width: 168px
    }
}

.sidebar .widget {
    position: relative;
    margin-bottom: 30px
}

    .sidebar .widget .widget-title {
        background: #c5ac2f;
        padding: 10px 17px;
    }

    .sidebar .widget .title {
        display: block;
        position: relative;
        padding-left: 40px;
        font-size: 18px;
        margin-bottom: 0;
        color: #ffffff
    }

        .sidebar .widget .title:before {
            content: '';
            position: absolute;
            top: 50%;
            margin-top: -2px;
            left: 0;
            display: block;
            width: 17px;
            height: 4px;
            background: #ffffff
        }

        .sidebar .widget .title:after {
            content: '';
            position: absolute;
            top: 50%;
            margin-top: -2px;
            display: block;
            width: 4px;
            left: 21px;
            height: 4px;
            background: #ffffff
        }

    .sidebar .widget .widget-body {
        padding: 15px;
        box-shadow: 0 8px 16px 0px rgba(17,12,79,0.1);
        background: #ffffff;
        word-break: break-word
    }

    .sidebar .widget .service-list {
        margin: 0;
        padding: 0;
        list-style: none
    }

        .sidebar .widget .service-list li {
            position: relative;
            margin-bottom: 15px;
            border: 1px solid #ededed
        }

            .sidebar .widget .service-list li:last-child {
                margin-bottom: 0
            }

            .sidebar .widget .service-list li a {
                display: block;
                padding: 10px 40px 10px 15px;
                background: #ffffff;
                position: relative;
                font-size: 14px;
                font-weight: 700;
                transition: all 0.6s ease 0s
            }

            .sidebar .widget .service-list li.active a {
                background: #00204c;
                color: #ffffff
            }

                .sidebar .widget .service-list li.active a:before {
                    background: #c5ac2f
                }

            .sidebar .widget .service-list li a:hover {
                background: #00204c;
                color: #ffffff
            }

                .sidebar .widget .service-list li a:hover:before {
                    background: #c5ac2f
                }

            .sidebar .widget .service-list li a:before {
                content: '\f30b';
                font-weight: 600;
                font-family: Font Awesome\ 5 Free;
                position: absolute;
                height: 100%;
                width: 50px;
                right: 0;
                background: rgba(237,237,237,0.6);
                top: 0;
                font-size: 15px;
                text-align: center;
                line-height: 45px;
                transition: all 0.1s ease 0s
            }

.sidebar .widget-address .address-info {
    margin: 0;
    padding: 0;
    list-style: none
}

    .sidebar .widget-address .address-info li {
        border-bottom: 1px solid #ededed;
        padding-bottom: 15px;
        margin-bottom: 15px;
        font-weight: 600;
        font-size: 16px
    }

        .sidebar .widget-address .address-info li:last-child {
            border-bottom: 0;
            padding-bottom: 0;
            margin-bottom: 0
        }

.sidebar .widget-brochure {
    position: relative;
    background-color: #ffffff;
    box-shadow: 0 0 15px rgba(0,0,0,0.1)
}

    .sidebar .widget-brochure .brochures {
        margin: 0;
        padding: 0;
        list-style: none
    }

        .sidebar .widget-brochure .brochures li {
            position: relative;
            margin-bottom: 15px
        }

            .sidebar .widget-brochure .brochures li:last-child {
                margin-bottom: 0
            }

            .sidebar .widget-brochure .brochures li a {
                display: block;
                font-size: 15px;
                border: 1px solid #ededed;
                font-weight: 600
            }

                .sidebar .widget-brochure .brochures li a i {
                    text-align: center;
                    padding: 15px;
                    font-size: 20px;
                    margin-right: 15px;
                    background: #00204c;
                    color: #ffffff
                }

@media screen and (max-width: 1199px) {
    .sidebar .widget .widget-body {
        padding: 25px
    }

    .sidebar .widget .title {
        font-size: 18px
    }
}

@media screen and (max-width: 767px) {
    .sidebar .widget .service-list li a {
        font-size: 15px
    }
}

@media screen and (max-width: 575px) {
    .sidebar .widget .widget-body {
        padding: 15px
    }
}

.sidebar .widget .cat-list {
    margin: 0;
    padding: 0;
    list-style: none
}

    .sidebar .widget .cat-list li {
        position: relative;
        margin-bottom: 15px;
        border: 1px solid #ededed
    }

        .sidebar .widget .cat-list li:last-child {
            margin-bottom: 0
        }

        .sidebar .widget .cat-list li a {
            display: block;
            padding: 15px 50px 15px 20px;
            background: #ffffff;
            position: relative;
            font-size: 16px;
            font-weight: 700;
            transition: all 0.6s ease 0s
        }

            .sidebar .widget .cat-list li a:hover {
                background: #00204c;
                color: #ffffff
            }

        .sidebar .widget .cat-list li span {
            position: absolute;
            right: 0;
            top: 0;
            text-align: center;
            display: block;
            font-weight: 600;
            background: rgba(237,237,237,0.6);
            height: 100%;
            width: 50px;
            line-height: 50px
        }

        .sidebar .widget .cat-list li:hover span {
            background: #c5ac2f;
            color: #ffffff
        }

.sidebar .search-bar {
    position: relative
}

    .sidebar .search-bar input[type="search"] {
        display: block;
        width: 100%;
        padding: 10px 40px 10px 25px;
        font-size: 15px;
        color: #4b4342;
        border: 1px solid #ededed;
        background: none;
        background: #ffffff;
        margin-bottom: 0
    }

    .sidebar .search-bar .btn-newsletter {
        position: absolute;
        color: #c5ac2f;
        right: 18px;
        top: 10px;
        padding: 0px;
        font-size: 18px;
        z-index: 3;
        outline: none
    }

.sidebar .widget-reviews .service-client-carousel .seprator {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 25px
}

    .sidebar .widget-reviews .service-client-carousel .seprator:before {
        position: absolute;
        content: '';
        left: -70px;
        top: 12px;
        background: #ededed;
        width: 50px;
        height: 2px
    }

    .sidebar .widget-reviews .service-client-carousel .seprator:after {
        position: absolute;
        content: '';
        right: -70px;
        top: 12px;
        background: #ededed;
        width: 50px;
        height: 2px
    }

.blog-tags {
    margin: 0;
    padding: 0
}

    .blog-tags li {
        display: inline-block
    }

        .blog-tags li a {
            font-size: 14px;
            font-weight: 600;
            padding: 8px 12px;
            margin: 5px 5px 5px 0;
            display: inline-block;
            border: 1px solid #ededed
        }

            .blog-tags li a:hover {
                background: #c5ac2f;
                color: #ffffff !important;
                border: 1px solid #c5ac2f
            }

.sidebar .social-icon {
    margin: 0;
    padding: 0;
    list-style: none
}

    .sidebar .social-icon li {
        text-align: center;
        margin-right: 5px;
        display: inline-block
    }

        .sidebar .social-icon li a {
            color: #ffffff;
            border-radius: 50%;
            height: 40px;
            width: 40px;
            line-height: 40px;
            display: inline-block;
            font-size: 14px;
            background: #00204c
        }

        .sidebar .social-icon li:last-child {
            margin-right: 0
        }

        .sidebar .social-icon li a:hover {
            background: #c5ac2f;
            color: #fff
        }

.counter-style1 {
    padding: 0 0 20px;
    position: relative
}

    .counter-style1 span:after {
        content: '+'
    }

    .counter-style1:before {
        position: absolute;
        content: "";
        left: 0;
        height: 100%;
        width: 4px;
        background-color: #c5ac2f
    }

    .counter-style1:after {
        position: absolute;
        content: "";
        left: 0;
        bottom: 0;
        height: 4px;
        width: 80px;
        background-color: #c5ac2f
    }

@media screen and (max-width: 575px) {
    .counter-style1 {
        padding: 0;
        text-align: center
    }

        .counter-style1:before, .counter-style1:after {
            display: none
        }
}

.counter-style2 .icon-box {
    height: 70px;
    width: 70px;
    line-height: 70px;
    text-align: center;
    color: #ffffff;
    font-size: 30px;
    background: rgba(225,161,34,0.5);
    border-radius: 50%
}

@media screen and (max-width: 767px) {
    .counter-style2 .icon-box {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 25px
    }
}

.counter-style3 {
    background: #c5ac2f;
    color: #ffffff;
    max-width: 210px;
    text-align: center;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    padding: 30px;
    margin-left: -110px
}

@media screen and (max-width: 1199px) {
    .counter-style3 {
        max-width: 170px;
        padding: 25px;
        margin-left: -65px
    }
}

@media screen and (max-width: 991px) {
    .counter-style3 {
        margin-left: 0
    }
}

@media screen and (max-width: 767px) {
    .testimonial-style3.owl-theme .owl-nav.disabled + .owl-dots {
        margin-top: 0
    }
}

@media screen and (max-width: 575px) {
    .counter-style3 {
        max-width: 135px;
        padding: 15px
    }
}

.info-link i {
    background: #ffffff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    border-radius: 50%;
    color: #c5ac2f;
    display: inline-block;
    text-align: center;
    transition: all 0.5s;
    position: relative
}

    .info-link i:hover {
        background: #c5ac2f;
        color: #ffffff
    }

.process-number-counter {
    counter-reset: count
}

.process-style1 {
    position: relative;
    text-align: center
}

    .process-style1:before {
        content: '';
        top: 15%;
        right: -15%;
        z-index: 99;
        width: 55px;
        height: 45px;
        background: url(../img/icons/process-arrow-01.png) no-repeat 0 0;
        display: block;
        position: absolute
    }

    .process-style1.last-arrow:before {
        content: none
    }

    .process-style1 .process-img {
        display: inline-block;
        position: relative;
        height: 160px;
        width: 160px;
        border-radius: 50%;
        margin-bottom: 30px
    }

    .process-style1 .process-number {
        font-size: 16px;
        font-weight: 600;
        background-color: #00204c;
        color: #ffffff;
        width: 40px;
        height: 40px;
        line-height: 40px;
        border-radius: 50%;
        border: none;
        display: block;
        text-align: center;
        position: absolute;
        top: 0;
        left: 60%;
        z-index: 1;
        transition: all .2s ease-in-out
    }

        .process-style1 .process-number:before {
            counter-increment: count;
            content: "0" counter(count)
        }

.process-btn {
    width: 55px;
    height: 55px;
    line-height: 50px;
    border: 4px solid #f3f3f3;
    display: inline-block;
    text-align: center;
    transition: .3s all ease-in-out
}

    .process-btn:hover {
        color: #fff;
        background-color: #c5ac2f;
        border: 4px solid #c5ac2f
    }

        .process-btn:hover a {
            color: #fff
        }

@media screen and (max-width: 1199px) {
    .process-style1 .process-img {
        height: 140px;
        width: 140px
    }

    .process-style1:before {
        right: -20%
    }

    .process-btn {
        width: 50px;
        height: 50px;
        line-height: 42px
    }

    .process-style1.inner-arrow:before {
        display: none
    }
}

@media screen and (max-width: 991px) {
    .process-style1:before {
        content: none
    }
}

@media screen and (max-width: 767px) {
    .process-style1 .process-img {
        height: 130px;
        width: 130px;
        margin-bottom: 25px
    }

    .process-style1 .process-number {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 14px
    }
}

@media screen and (max-width: 575px) {
    .process-style1 .process-img {
        height: 125px;
        width: 125px
    }

    .process-style1 .process-number {
        left: 55%;
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 12px
    }

    .process-btn {
        width: 45px;
        height: 45px;
        line-height: 36px
    }
}

.process-style2 {
    position: relative;
    padding: 0 25px 30px;
    text-align: center;
    padding-right: 20px;
    border: 2px solid #ededed;
    margin-top: 45px;
    border-radius: 5px;
    background: #fafafa
}

    .process-style2 h5 {
        position: relative;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        display: inline-block;
        margin-bottom: 25px
    }

        .process-style2 h5:before {
            position: absolute;
            content: '';
            left: -70px;
            top: 9px;
            background: #ededed;
            width: 50px;
            height: 2px
        }

        .process-style2 h5:after {
            position: absolute;
            content: '';
            right: -70px;
            top: 9px;
            background: #ededed;
            width: 50px;
            height: 2px
        }

    .process-style2 .icon {
        position: relative;
        height: 85px;
        width: 85px;
        padding: 15px;
        text-align: center;
        margin: 0 auto;
        border-radius: 5px;
        font-size: 40px;
        color: #fff;
        margin-bottom: -20px;
        background-color: #fff;
        border: 2px solid #ededed;
        transform: translateY(-45px);
        transition: .5s
    }

@media screen and (max-width: 1199px) {
    .process-style2 {
        padding: 0 15px 30px
    }

        .process-style2 .icon {
            height: 75px;
            width: 75px
        }

        .process-style2 h5:before {
            left: -50px;
            width: 40px
        }

        .process-style2 h5:after {
            right: -50px;
            width: 40px
        }
}

@media screen and (max-width: 767px) {
    .process-style2 .icon {
        height: 70px;
        width: 70px
    }
}

.client-style-01 {
    position: relative;
    padding: 30px 0;
    text-align: center;
    width: 100%;
    height: 100%;
    display: inline-block;
    z-index: 0;
    transition-duration: .6s
}

    .client-style-01:after {
        display: block;
        position: absolute;
        content: '';
        left: -1px;
        top: -1px;
        right: 0;
        bottom: 0;
        border: 1px solid #ededed
    }

    .client-style-01 .client-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        opacity: 0;
        transform: scale(0.8);
        transition-duration: .6s;
        box-shadow: 0 8px 16px 0px rgba(17,12,79,0.1);
        background: #ffffff
    }

    .client-style-01:hover .client-overlay {
        opacity: 1;
        transform: scale(1)
    }

@media screen and (max-width: 991px) {
    .client-style-01 {
        padding: 25px 0
    }
}

@media screen and (max-width: 575px) {
    .client-style-01 {
        padding: 20px 0
    }
}

.lg-backdrop {
    z-index: 99999
}

.lg-outer {
    z-index: 999999
}

    .lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
        border-color: #c5ac2f
    }

.lg-progress-bar .lg-progress {
    background-color: #c5ac2f
}

.lg-backdrop.in {
    opacity: 0.85
}

.form-group {
    margin-bottom: 1rem
}

    .form-group label {
        margin-bottom: .5rem
    }

.form-control:focus {
    border-color: #c5ac2f
}

.form-check-input:checked {
    border-color: #c5ac2f;
    background-color: #c5ac2f
}

.form-check-input:focus {
    box-shadow: none
}

.quform-input {
    position: relative
}

    .quform-input .quform-errors-wrap {
        position: absolute;
        right: 8px;
        top: 0;
        line-height: normal;
        z-index: 1
    }

.quform-element > label {
    font-weight: normal;
    padding-bottom: 5px;
    margin-bottom: 0
}

    .quform-element > label .quform-required {
        color: #cc0101;
        font-size: 10px
    }

.quform-inner input {
    width: 100%
}

.quform-elements .quform-element textarea {
    margin-bottom: 0;
    padding: 8px 15px;
    vertical-align: top
}

.quform-elements .quform-element select {
    margin-bottom: 0;
    padding: 8px 35px 8px 15px
}

.quform-errors {
    padding: 0;
    margin: 0;
    line-height: normal
}

    .quform-errors > .quform-error {
        padding: 0;
        background: none;
        border: none;
        float: none;
        color: #f5543f;
        font-size: 11px;
        line-height: normal;
        letter-spacing: normal
    }

.quform-outer-no-js .quform-error {
    padding: 0;
    background: none;
    border: none;
    float: none;
    color: #f5543f;
    font-size: 11px;
    line-height: normal;
    letter-spacing: normal
}

.quform-outer-no-js .quform-success-message {
    padding: 0.75rem 1.25rem 0.75rem 3rem
}

.quform-has-error input, .quform-has-error textarea, .quform-has-error select, .quform-has-error input[type=file], .quform-has-error .custom-file-label {
    border-color: #f5543f
}

.quform-success-message {
    padding: 0.75rem 1.25rem 0.75rem 3rem
}

.quform-submit-inner {
    float: none
}

.quform-loading-wrap {
    float: none
}

    .quform-loading-wrap .quform-loading {
        display: inline-block
    }

.quform-element {
    margin-bottom: 1rem
}

.light-validation .quform-errors > .quform-error {
    color: #fff
}

.newsletter-form .quform-elements {
    position: relative
}

.newsletter-form .quform-submit-inner {
    position: absolute;
    right: 1px;
    top: 1px;
    width: auto;
    background: #c5ac2f;
    height: 48px;
    border-left: 1px solid rgba(0,0,0,0.05);
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.newsletter-form .quform-loading-wrap {
    margin-top: 15px;
    margin-bottom: 0;
    margin-left: 0
}

.newsletter-form input {
    border: 1px solid rgba(0,0,0,0.1);
    height: 50px;
    padding: 0.5rem 4rem 0.5rem 1rem
}

.newsletter-form .quform-has-error input, .newsletter-form .quform-has-error textarea, .newsletter-form .quform-has-error select {
    border-color: #f5543f
}

.newsletter-form .quform-input .quform-errors-wrap {
    right: 15px
}

.newsletter-form i {
    font-size: 1.2rem;
    line-height: 2rem
}

.newsletter-form-one .quform-submit-inner .butn:hover {
    color: #c5ac2f
}

.modal-backdrop {
    z-index: 99999
}

.modal {
    z-index: 999999
}

.icon-gallery .d-table {
    margin-top: 30px
}

.icon-gallery .d-table-cell {
    width: 125px;
    height: 125px;
    text-align: center;
    margin-bottom: 25px;
    border: 1px solid rgba(0,0,0,0.075);
    vertical-align: middle;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
    padding: 10px;
    background: #fff
}

.icon-gallery i {
    display: block;
    margin-bottom: 15px;
    font-size: 28px;
    color: #c5ac2f
}

pre[class*="language-"] {
    max-height: 45vh;
    height: 100%;
    margin: 35px 0 15px 0;
    padding-top: 0
}

.html-code {
    background-color: #fbfbfb;
    position: relative;
    box-shadow: inset 0 0 0 1px #dde1e6,0 3px 5px rgba(0,0,0,0.15);
    padding: 30px;
    border-radius: 5px;
    border: 1px solid #ededed
}

    .html-code:before {
        color: #c8dfab;
        content: "â€¢â€¢â€¢";
        font-size: 30px;
        left: 24px;
        letter-spacing: 4px;
        line-height: 12px;
        position: absolute;
        top: 24px
    }

.copy-element {
    position: absolute;
    top: 0;
    right: 85px;
    transition: opacity 0.3s ease-in-out
}

.source-element {
    position: absolute;
    top: 0;
    right: 0;
    transition: opacity 0.3s ease-in-out
}

.html-code .copy-element {
    top: 15px;
    right: 30px
}

.html-code:hover .copy-element, .html-code:hover .source-element {
    opacity: 1
}

.box-hover:hover .copy-element, .box-hover:hover .source-element {
    opacity: 1
}

.copy-element > a, .source-element > a {
    background: #dde1e6;
    color: #777 !important;
    display: inline-block;
    padding: 5px 15px;
    font-size: 14px;
    text-transform: capitalize;
    cursor: pointer !important;
    font-weight: 600
}

    .copy-element > a:hover, .source-element > a:hover {
        background: #c5ac2f;
        color: #fff !important
    }

.copy-clipboard {
    cursor: pointer;
    padding: 5px 15px
}

.white-popup-block {
    background-color: #fbfbfb;
    position: relative;
    max-width: 650px;
    box-shadow: inset 0 0 0 1px #dde1e6,0 3px 5px rgba(0,0,0,0.15);
    padding: 60px 30px 30px 30px;
    border-radius: 5px;
    margin: 40px auto;
    border: 1px solid #ededed
}

    .white-popup-block.popup-copy.mfp-hide {
        display: block !important;
        height: 0;
        position: absolute;
        z-index: -1;
        padding: 0;
        opacity: 0;
        margin: 0
    }

    .white-popup-block:before {
        color: rgba(225,161,34,0.3);
        content: "â€¢â€¢â€¢";
        font-size: 30px;
        left: 24px;
        letter-spacing: 4px;
        line-height: 12px;
        position: absolute;
        top: 24px
    }

    .white-popup-block:hover .copy-element {
        opacity: 1
    }

    .white-popup-block .copy-element {
        top: 45px;
        right: 30px
    }

.box-hover {
    position: relative
}

    .box-hover .container {
        position: relative
    }

.inner-title {
    border-bottom: 2px solid rgba(0,0,0,0.09);
    margin-bottom: 35px;
    padding-bottom: 20px
}

.elements-block .butn {
    font-size: 15px
}

@media screen and (max-width: 767px) {
    .elements-block .inner-title {
        margin-bottom: 65px
    }

    .copy-element, .source-element {
        top: 65px
    }
}

footer {
    padding: 90px 0 0;
    background: #1f1f1f;
    color: #939393
}

    footer .newsletter-form input {
        border: none
    }

    footer a {
        color: #939393
    }

.footer-logo {
    max-width: 100px;
    width: 100%;
    display: inline-block
}

    .footer-logo > a {
        display: inline-block
    }

@media screen and (max-width: 767px) {
    footer {
        padding-top: 50px
    }
}

.footer-style {
    margin-top: -175px
}

.footer-bar {
    padding: 20px 0;
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ffffff;
    line-height: 26px
}

@media screen and (max-width: 767px) {
    .footer-bar {
        margin-top: 50px
    }
}

.footer-title {
    display: block;
    margin-bottom: 30px;
    padding-bottom: 20px;
    position: relative;
    color: #ffffff;
    font-size: 20px
}

    .footer-title:before {
        background: rgba(237,237,237,0.2);
        bottom: -1px;
        content: "";
        height: 2px;
        left: 0;
        position: absolute;
        width: 100%
    }

    .footer-title:after {
        bottom: -1px;
        content: "";
        height: 2px;
        left: 0;
        position: absolute;
        width: 50px;
        background: #c5ac2f
    }

@media screen and (max-width: 991px) {
    .footer-title {
        font-size: 18px
    }
}

.footer-title2 {
    display: block;
    position: relative;
    padding-left: 0px;
    font-size: 20px;
    color: #c5ac2f;
    margin-bottom: 30px
}

    .footer-title2:before {
       /* content: '';*/
        position: absolute;
        top: 50%;
        margin-top: -2px;
        left: 0;
        display: block;
        width: 17px;
        height: 4px;
        background: #ffffff
    }

    .footer-title2:after {
        /*content: '';*/
        position: absolute;
        top: 50%;
        margin-top: -2px;
        display: block;
        width: 4px;
        left: 21px;
        height: 4px;
        background: #ffffff
    }

@media screen and (max-width: 991px) {
    .footer-title2 {
        font-size: 18px
    }
}

.footer-social-style1 {
    margin: 0;
    display: inline-block;
    padding: 0;
    list-style: none
}

    .footer-social-style1 li {
        padding-right: 10px;
        display: inline-block
    }

        .footer-social-style1 li a {
            color: #ffffff
        }

    .footer-social-style1 a i {
        display: inline-block;
        color: #ffffff;
        background: none;
        border-radius: 50%;
        width: 35px;
        height: 35px;
        text-align: center;
        line-height: 35px;
        transition: all 0.3s ease-out 0s
    }

    .footer-social-style1 li a:hover {
        color: #c5ac2f
    }

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

    .footer-social-style1 li:last-child {
        padding-right: 0
    }

.footer-social-style2 {
    margin: 0;
    padding: 0;
    list-style: none
}

    .footer-social-style2 li {
        text-align: center;
        margin-right: 5px;
        display: inline-block
    }

        .footer-social-style2 li:last-child {
            margin-right: 0
        }

        .footer-social-style2 li a {
            color: #00204c;
            height: 36px;
            width: 36px;
            line-height: 36px;
            border-radius: 50%;
            display: inline-block;
            font-size: 15px;
            background: #ffffff
        }

            .footer-social-style2 li a:hover {
                color: #ffffff;
                background-color: #c5ac2f
            }

@media screen and (max-width: 767px) {
    .footer-social-style2 li a {
        height: 35px;
        width: 35px;
        line-height: 35px;
        font-size: 13px
    }
}

.footer-menus {
    padding: 0;
    margin-bottom: 0;
    list-style: none
}

    .footer-menus li {
        display: inline-block;
        font-size: 16px
    }

        .footer-menus li:after {
            content: '|';
            margin: 0 15px;
            top: 0;
            color: rgba(255,255,255,0.3);
            height: auto;
            width: auto
        }

        .footer-menus li a {
            color: #ffffff
        }

        .footer-menus li.last:after {
            content: none
        }

@media screen and (max-width: 991px) {
    .footer-menus li {
        font-size: 15px
    }
}

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

    .contact-list li {
        margin-bottom: 20px;
        font-size: 16px;
        display: flex;
        align-items: baseline;
        color: #ffffff
    }

        .contact-list li:last-child {
            margin-bottom: 0
        }

        .contact-list li a {
            color: #ffffff
        }

    .contact-list a:hover {
        color: #c5ac2f
    }

@media screen and (max-width: 991px) {
    .contact-list li {
        font-size: 15px
    }
}

.footer-list-style1 {
    margin: 0;
    padding: 0
}

    .footer-list-style1 li {
        list-style-type: none;
        color: #fff;
        font-size: 14px;
        margin-bottom: 15px
    }

        .footer-list-style1 li:last-child {
            margin-bottom: 0
        }

        .footer-list-style1 li a {
            color: #ffffff
        }

            .footer-list-style1 li a:before {
                content: '\f105';
                font-weight: 700;
                font-family: Font Awesome\ 5 Free;
                color: #ffffff;
                padding-right: 15px;
                font-size: 14px;
                vertical-align: middle
            }

            .footer-list-style1 li a:hover {
                color: #c5ac2f
            }

                .footer-list-style1 li a:hover:before {
                    color: #c5ac2f
                }

@media screen and (max-width: 991px) {
    .footer-list-style1 li {
        font-size: 15px
    }
}

.footer-list-style2 {
    margin: 0;
    padding: 0
}

    .footer-list-style2 li {
        list-style-type: none;
        color: #fff;
        font-size: 14px;
        padding-bottom: 5px;
        margin-bottom: 5px;
        border-bottom: 1px solid rgba(102,102,102,0.5)
    }

        .footer-list-style2 li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: 0
        }

        .footer-list-style2 li a {
            color: #ffffff
        }

            .footer-list-style2 li a:before {
                /*content: '\f105';*/
                font-weight: 700;
                font-family: Font Awesome\ 5 Free;
                color: #ffffff;
                padding-right: 8px;
                transition-duration: .3s
            }

            .footer-list-style2 li a:hover {
                color: #c5ac2f
            }

                .footer-list-style2 li a:hover:before {
                    color: #c5ac2f
                }

@media screen and (max-width: 991px) {
    .footer-list-style2 li {
        font-size: 15px
    }
}

.hour-list {
    margin: 0;
    padding: 0
}

    .hour-list li {
        list-style-type: none;
        color: #fff;
        display: flex;
        justify-content: space-between;
        vertical-align: middle;
        font-size: 14px;
        padding-bottom: 5px;
        margin-bottom: 5px;
        border-bottom: 1px solid rgba(102,102,102,0.3)
    }

        .hour-list li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: 0
        }

@media screen and (max-width: 991px) {
    .hour-list li {
        font-size: 15px
    }
}

.buy-theme {
    transition-timing-function: ease-in-out;
    transition-duration: .2s;
    position: fixed;
    top: 150px;
    right: -89px;
    background: #c5ac2f;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    z-index: 9999
}

    .buy-theme i {
        font-size: 16px;
        vertical-align: middle;
        position: relative;
        top: -1px;
        color: #fff
    }

.all-demo i {
    font-size: 15px;
    vertical-align: middle;
    position: relative;
    top: -1px;
    color: #fff
}

.buy-theme:hover, .all-demo:hover {
    transition-timing-function: ease-in-out;
    transition-duration: .2s;
    right: 0px;
    background: #c5ac2f
}

.all-demo:hover {
    background: #c5ac2f
}

.buy-theme span, .all-demo span {
    padding: 0 9px;
    position: relative;
    top: 0;
    opacity: 0
}

.buy-theme:hover span, .all-demo:hover span {
    opacity: 1;
    color: #fff
}

.buy-theme:hover i, .all-demo:hover i {
    color: #fff
}

.buy-theme a, .all-demo a {
    color: #232323;
    font-size: 10px;
    text-transform: uppercase;
    padding: 5px 10px;
    display: block;
    text-decoration: none;
    font-weight: 500
}

.all-demo {
    transition-timing-function: ease-in-out;
    transition-duration: .2s;
    position: fixed;
    top: 185px;
    right: -105px;
    background: #c5ac2f;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    z-index: 9999
}
.l-img-box {
    padding: 30px;
    position: relative;
    z-index: 1;
}
.l-img-box .l-img-holder {
    overflow: hidden;
    position: relative;
    z-index: 10;
}
.l-img-box::after {
    content: " ";
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: #ddd;
}