#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: #fff;
    display: table;
    text-align: center
}

.loader {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    width: 200px;
    height: 200px
}

.loader-icon {
    width: 80px;
    height: 80px;
    border: 5px solid #ffcc53;
    border-right-color: #eee;
    border-radius: 50%;
    position: relative;
    animation: loader-rotate 1s linear infinite;
    margin: 0 auto
}

@keyframes loader-rotate {
    0% {
        transform: rotate(0)
    }
    100% {
        transform: rotate(360deg)
    }
}

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

a[href^="tel"] {
    color: inherit;
    text-decoration: none
}

a[href^="mailto"] {
    color: inherit;
    text-decoration: none
}

h1 {
    color: #051b2e
}

h1 a {
    color: #051b2e
}

h1 a:hover, h1 a:active, h1 a:focus {
    color: #ffcc53
}

h2 {
    color: #051b2e
}

h2 a {
    color: #051b2e
}

h2 a:hover, h2 a:active, h2 a:focus {
    color: #ffcc53
}

h3 {
    color: #051b2e
}

h3 a {
    color: #051b2e
}

h3 a:hover, h3 a:active, h3 a:focus {
    color: #ffcc53
}

h4 {
    color: #051b2e
}

h4 a {
    color: #051b2e
}

h4 a:hover, h4 a:active, h4 a:focus {
    color: #ffcc53
}

h5 {
    color: #051b2e
}

h5 a {
    color: #051b2e
}

h5 a:hover, h5 a:active, h5 a:focus {
    color: #ffcc53
}

h6 {
    color: #051b2e
}

h6 a {
    color: #051b2e
}

h6 a:hover, h6 a:active, h6 a:focus {
    color: #ffcc53
}

.h1 {
    color: #051b2e
}

.h1 a {
    color: #051b2e
}

.h1 a:hover, .h1 a:active, .h1 a:focus {
    color: #ffcc53
}

.h2 {
    color: #051b2e
}

.h2 a {
    color: #051b2e
}

.h2 a:hover, .h2 a:active, .h2 a:focus {
    color: #ffcc53
}

.h3 {
    color: #051b2e
}

.h3 a {
    color: #051b2e
}

.h3 a:hover, .h3 a:active, .h3 a:focus {
    color: #ffcc53
}

.h4 {
    color: #051b2e
}

.h4 a {
    color: #051b2e
}

.h4 a:hover, .h4 a:active, .h4 a:focus {
    color: #ffcc53
}

.h5 {
    color: #051b2e
}

.h5 a {
    color: #051b2e
}

.h5 a:hover, .h5 a:active, .h5 a:focus {
    color: #ffcc53
}

.h6 {
    color: #051b2e
}

.h6 a {
    color: #051b2e
}

.h6 a:hover, .h6 a:active, .h6 a:focus {
    color: #ffcc53
}

.bg-primary {
    background: #ffcc53 !important
}

.bg-secondary {
    background: #051b2e !important
}
.primary-overlay[data-overlay-dark]:before {
    background: #ffcc53
}

.secondary-overlay[data-overlay-dark]:before {
    background: #051b2e
}

.left-overlay-secondary[data-overlay-dark]:before {
    background: rgba(5, 27, 46, 0.76);
    background: linear-gradient(180deg, transparent, rgba(5, 27, 46, 0.94) 90%)
}

.left-overlay-dark-three[data-overlay-dark]:before {
    background: rgba(12, 50, 70, 0.76);
    background: linear-gradient(180deg, transparent, rgba(5, 27, 46, 0.94) 90%)
}

.bg-light {
    background-color: rgba(190, 221, 234, 0.2) !important
}

.text-primary {
    color: #ffcc53 !important
}

.text-primary-hover:hover, .text-primary-hover:active, .text-primary-hover:focus {
    color: #ffcc53 !important
}

.text-secondary, .text-secondary-hover:hover {
    color: #051b2e !important
}

.primary-shadow {
    box-shadow: 0px 3px 10px 0px rgba(41, 45, 194, 0.08)
}

.cursor-pointer {
    cursor: pointer
}

.ls-minus-2px {
    letter-spacing: -2px
}
.news-card .news-event-text a{
    font-size: 18px !important;
    line-height: 30px;
}
.details_para p{
    text-align: justify !important;
    line-height: 30px;
    font-weight: normal;
    color: #252424
}
.details_para li{
    line-height: 30px;
    font-weight: normal;
    color: #252424
}
.border-primary {
    border-color: #ffcc53 !important
}

@media screen and (min-width: 992px) {
    .vw-90 {
        width: 90vw
    }
}

.background-overlay {
    background-color: transparent;
    background-image: linear-gradient(180deg, transparent -100%, #051b2e 100%);
    opacity: 1;
    transition: background .3s, border-radius .3s, opacity .3s;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute
}

.scroll-top-percentage {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    position: fixed;
    bottom: 40px;
    color: #fff;
    right: 50px;
    -webkit-transform: scale(0);
    transform: scale(0);
    display: -ms-grid;
    display: grid;
    place-items: center;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 100
}

.scroll-top-percentage.active {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
    animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
    -webkit-transition: 0.3s;
    transition: 0.3s
}

@media screen and (max-width: 1199px) {
    .scroll-top-percentage {
        right: 30px;
        bottom: 20px
    }
}

#scroll-value {
    height: calc(100% - 6px);
    width: calc(100% - 6px);
    border-radius: 50%;
    display: -ms-grid;
    display: grid;
    place-items: center;
    font-size: 16px;
    font-weight: 600
}

#scroll-value i {
    font-size: 20px
}

@-webkit-keyframes scrollToTop {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes scrollToTop {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.list-style1 li {
    position: relative;
    padding: 0 0 0 35px;
    margin-bottom: 14px
}

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

.list-style1 li:before {
    content: "\e64c";
    font-family: 'themify';
    color: #ffcc53;
    font-size: 16px;
    margin-right: 12px;
    border-radius: 30px;
    position: absolute;
    left: 0;
    top: 2px
}

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

.list-style2 li {
    position: relative;
    transition: .4s
}

.list-style2 li:hover {
    padding-left: 28px
}

.list-style2 li:hover:before {
    content: " ";
    position: absolute;
    top: 13px;
    left: 0;
    background: #fff;
    height: 2px;
    width: 18px;
    transition: .5s
}

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

.list-style3 li {
    margin-bottom: 15px
}

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

.list-style3 li:before {
    content: '\f14a';
    font-family: Font Awesome\ 5 Free;
    font-weight: 500;
    color: #ffcc53;
    font-size: 16px;
    vertical-align: middle;
    padding-right: 15px
}

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

.list-style4 li {
    margin-bottom: 10px
}

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

.list-style4 li a {
    position: relative;
    display: block;
    text-transform: capitalize;
    padding: 15px 20px 15px 20px;
    border: 1px solid #ededed;
    font-weight: 600;
    background: #ffffff;
    transition: all 0.3s ease 0s
}

.list-style4 li a:before {
    position: absolute;
    content: '\e628';
    font-weight: 500;
    font-family: 'themify';
    transition: width 0.3s linear;
    font-size: 18px;
    top: 12px;
    right: 20px
}

.list-style4 li a:hover {
    background-color: #ffcc53;
    color: #ffffff
}

.list-style4 li.active a {
    background-color: #ffcc53;
    color: #ffffff
}

.list-style5 li {
    border-bottom: 1px solid #f2f2f2;
    padding: 0 20px 12px 30px;
    position: relative;
    margin: 0 0px 12px
}

.list-style5 li:before {
    content: "\e64c";
    font-family: 'themify';
    font-size: 15px;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 35px;
    color: #ffcc53
}

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

.list-style6 li {
    margin-bottom: 17px;
    color: rgba(255, 255, 255, 0.6)
}

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

.list-style6 li span {
    text-transform: uppercase;
    font-weight: 700;
    padding-right: 3px;
    color: #fff;
    font-size: 16px
}

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

.list-style7 li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px
}

.list-style7 li:after {
    content: "\e64c";
    font-family: 'themify';
    position: absolute;
    left: 0px;
    top: 1px;
    z-index: 1;
    font-weight: 600;
    color: #ffcc53
}

.list-style7 li:last-child {
    padding-bottom: 0;
    margin-bottom: 0
}

.list-style8 {
    margin-bottom: 0;
    list-style: none
}

.list-style8 li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
    font-size: 16px;
    color: #2b303b
}

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

.list-style9 li {
    position: relative;
    padding: 0 0 0 35px;
    margin-bottom: 14px
}

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

.list-style9 li:before {
    content: "\e64c";
    font-family: 'themify';
    color: #ffcc53;
    font-size: 12px;
    margin-right: 12px;
    border-radius: 30px;
    position: absolute;
    left: 0;
    top: 2px
}

.list-style10 li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f1f1f1;
    padding: 15px 0
}

.list-style10 li:last-child {
    border-bottom: unset;
    padding-bottom: 0
}

.butn-style1 {
    color: #fff;
    padding: 17px 30px !important;
    text-transform: uppercase;
    text-align: center;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all 0.3s linear;
    z-index: 1;
    background: #ffcc53;
    border: none;
    letter-spacing: 1.4px;
    font-size: 14px !important;
    line-height: normal;
    font-weight: bold;
    vertical-align: top
}

.butn-style1:before {
    content: "";
    position: absolute;
    top: -71px;
    right: 0px;
    bottom: 0;
    width: 115%;
    height: 322%;
    left: -1px;
    transform: translateX(-100%) rotate(180deg);
    z-index: -1;
    transition: all 0.4s linear;
    background: #051b2e
}

.butn-style1.secondary {
    background: #ffcc53
}

.butn-style1.white {
    background: #fff;
    color: #051b2e
}

.butn-style1:hover {
    color: #fff
}

.butn-style1.secondary:before {
    background: #ffcc53
}

.butn-style1:hover:before {
    transform: translateX(0) rotate(195deg)
}

.butn-style1.md {
    padding: 14px 26px !important;
    font-size: 12px !important
}

@media screen and (max-width: 991px) {
    .butn-style1 {
        padding: 14px 26px !important;
        font-size: 12px !important
    }
}

.butn-style2 {
    font-size: 15px;
    font-weight: 700;
    padding: 12px 34px !important;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    position: relative;
    overflow: hidden !important;
    display: inline-block;
    text-align: center;
    border: 2px solid #ffcc53;
    color: #fff;
    z-index: 1;
    background-color: #ffcc53;
    vertical-align: middle;
    text-transform: uppercase
}

.butn-style2:after {
    content: '';
    position: absolute;
    top: 0;
    left: -200%;
    width: 200%;
    height: 100%;
    -webkit-transform: skewX(-20deg);
    -khtml-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    transform: skewX(-20deg);
    background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    z-index: -1
}

.butn-style2:hover, .butn-style2:focus, .butn-style2:active {
    background-color: #ffcc53;
    color: #fff
}

.butn-style2:hover:after, .butn-style2:focus:after, .butn-style2:active:after {
    -webkit-animation: btn_shine 1.2s ease;
    animation: btn_shine 1.2s ease;
    -webkit-animation-delay: .1s;
    animation-delay: .1s
}

.butn-style2.md {
    padding: 8px 26px !important;
    font-size: 15px
}

.butn-style2.sm {
    padding: 6px 20px !important
}

@-webkit-keyframes btn_shine {
    100% {
        left: 200%
    }
}

@keyframes btn_shine {
    100% {
        left: 200%
    }
}

@media screen and (max-width: 1399px) {
    .butn-style2 {
        padding: 10px 30px !important;
        font-size: 16px
    }
}

@media screen and (max-width: 767px) {
    .butn-style2 {
        padding: 8px 25px !important;
        font-size: 14px
    }
}

.butn-style3 {
    background-color: #ffcc53;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    padding: 15px 34px !important;
    display: inline-block;
    border: 0;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 700;
    width: auto;
    line-height: 1.5;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1)
}

.butn-style3:hover {
    color: #fff;
    -webkit-box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.15);
    -webkit-transform: translate3d(0, -2px, 0);
    transform: translate3d(0, -2px, 0)
}

.butn-style3.white {
    background-color: #fff;
    color: #232323
}

.butn-style3.md {
    padding: 13px 30px !important;
    font-size: 13px
}

.butn-style3.sm {
    padding: 11px 27px !important;
    font-size: 12px
}

.butn-style4 {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 700;
    line-height: 26px;
    text-align: center;
    color: #ffffff;
    background: #ffcc53;
    border-radius: 0.25rem;
    padding: 12px 30px !important;
    z-index: 1;
    text-transform: uppercase;
    transition: all 0.4s ease-in-out 0s;
    border: none
}

.butn-style4:hover, .butn-style4:active, .butn-style4:focus {
    background: #051b2e
}

.butn-style4 span {
    position: relative;
    z-index: 9
}

.butn-style4.secondary {
    background: #051b2e
}

.butn-style4.secondary:before {
    border-color: #ffcc53
}

.butn-style4.secondary:hover, .butn-style4.secondary:active, .butn-style4.secondary:focus {
    background: #fff
}

.butn-style4.white-hover:hover, .butn-style4.white-hover:active, .butn-style4.white-hover:focus {
    background: #fff;
    transition: all 0.4s ease-in-out 0s
}

.butn-style4.white-hover:hover span, .butn-style4.white-hover:active span, .butn-style4.white-hover:focus span {
    color: #272c49;
    transition: all 0.4s ease-in-out 0s
}

.butn-style4.white-border:before {
    border-color: #fff
}

.butn-style4.md {
    padding: 9px 30px !important;
    font-size: 13px
}

.butn-style4.sm {
    padding: 11px 27px !important;
    font-size: 12px
}

.butn-style4.hover-bg:hover, .butn-style4.hover-bg:active, .butn-style4.hover-bg:focus {
    background: #051b2e !important;
    color: #fff;
    transition: all 0.4s ease-in-out 0s
}

@media screen and (min-width: 992px) {
    .header-style1.scrollHeader .attr-nav > ul > li > a.butn-style4 {
        color: #fff;
        border: 1px solid transparent
    }

    .header-style1.scrollHeader .attr-nav > ul > li > a.butn-style4:hover, .header-style1.scrollHeader .attr-nav > ul > li > a.butn-style4:active, .header-style1.scrollHeader .attr-nav > ul > li > a.butn-style4:focus {
        color: #ffcc53;
        border: 1px solid #ffcc53
    }

    .header-style3.scrollHeader .attr-nav > ul > li > a.butn-style4 {
        color: #fff;
        border: 1px solid transparent
    }

    .header-style3.scrollHeader .attr-nav > ul > li > a.butn-style4:hover, .header-style3.scrollHeader .attr-nav > ul > li > a.butn-style4:active, .header-style3.scrollHeader .attr-nav > ul > li > a.butn-style4:focus {
        color: #ffcc53;
        border: 1px solid #ffcc53
    }
}

.button-text {
    padding: 0;
    position: relative;
    text-decoration: none;
    border: 0;
    background-color: transparent;
    display: inline-block;
    font-size: 15px;
    text-transform: uppercase;
    width: auto;
    font-weight: 500
}

.button-text a {
    border-bottom: 2px solid
}

.button-text:hover {
    border-color: #e74860
}

.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: #ffcc53
}

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

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

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

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

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

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

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

.menu_area-light.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent #ffcc53 #ffcc53 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: #ffcc53
    }

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

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

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

    .menu_area-light.scrollHeader .navbar ul ul li.active > a, .menu_area-light.scrollHeader .navbar-nav li.has-sub a:hover {
        color: #ffcc53
    }

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

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

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

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

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

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

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

    .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 {
        color: #ffcc53
    }

    .header-style2 .navbar-nav li.current > a, .header-style2 .navbar-nav li.active > a {
        color: #ffcc53
    }

    .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 #ffcc53 #ffcc53 transparent
    }
}

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

    .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: #ffcc53
}

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

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

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

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

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

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

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

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

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

.header-style3 .navbar-nav li.current > a, .header-style3 .navbar-nav li.active > a {
    color: #ffcc53
}

@media screen and (min-width: 992px) {
    .header-style3 .navbar-nav li.active > a {
        color: #ffcc53
    }

    .header-style3 .navbar-nav > li > a:hover, .header-style3 .navbar-nav > li > a:active, .header-style3 .navbar-nav > li > a:focus {
        color: #ffcc53
    }

    .header-style3 .navbar ul ul li.active > a {
        color: #ffcc53
    }

    .header-style3 .navbar-nav li.has-sub a:hover, .header-style3 .navbar-nav li.current > a {
        color: #ffcc53
    }

    .header-style3 .navbar-nav > li.has-sub > a:hover {
        color: #ffcc53
    }

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

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

    .header-style3.scrollHeader .navbar > ul > li.has-sub > a:PrimaryColor:after {
        border-color: transparent #ffcc53 #ffcc53 transparent
    }

    .header-style3.scrollHeader .navbar-nav > li.active > a {
        color: #ffcc53
    }

    .header-style3.scrollHeader .navbar-nav li.current > a {
        color: #ffcc53
    }

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

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

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

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

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

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

.slider-fade1 span {
    animation-delay: 0.8s
}

.slider-fade1 h1 {
    animation-delay: 1.2s
}

.slider-fade1 p {
    animation-delay: 1.6s
}

.slider-fade1 .banner-button {
    animation-delay: 2.0s
}

.slider-fade1.owl-carousel .owl-nav button.owl-prev, .slider-fade1.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    color: #000;
    transition: all 0.65s cubic-bezier(0.23, 1, 0.32, 1)
}

.slider-fade1.owl-carousel .owl-nav button.owl-prev {
    left: 2%
}

.slider-fade1.owl-carousel .owl-nav button.owl-next {
    right: 2%
}

.slider-fade1.owl-carousel .owl-nav button.owl-prev:hover, .slider-fade1.owl-carousel .owl-nav button.owl-next:hover {
    background-color: #ffcc53;
    color: #fff
}

.slider-fade1 .banner-button .button-text a {
    transform: scale(0)
}

.slider-fade1 .banner-button .button-text a:hover {
    transform: scale(1.1)
}

.slider-fade1.owl-theme .owl-nav.disabled + .owl-dots {
    position: absolute;
    bottom: 110px;
    right: 50px;
    margin: 0 !important
}

.slider-fade1.owl-theme .owl-dots .owl-dot span {
    background-color: #fff;
    opacity: 1
}

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

.slider-fade1 .owl-nav i, .slider-fade1 .owl-nav span {
    color: #000;
    font-size: 16px
}

.slider-fade1.owl-carousel .owl-nav button.owl-prev:hover i, .slider-fade1.owl-carousel .owl-nav button.owl-next:hover i, .slider-fade1.owl-carousel .owl-nav button.owl-prev:hover span, .slider-fade1.owl-carousel .owl-nav button.owl-next:hover span {
    color: #fff
}

.slider-fade1.owl-theme .owl-nav {
    margin-top: 0
}

@media screen and (max-width: 1599px) {
    .slider-fade1.owl-carousel .owl-nav button.owl-prev {
        left: 0
    }

    .slider-fade1.owl-carousel .owl-nav button.owl-next {
        right: 0
    }
}

.banner-style01 h1 {
    margin-bottom: 20px
}

.banner-style01 .banner-button {
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -ms-flex-pack: center;
    justify-content: flex-start;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 1
}

.banner-style01 .banner-button .button-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    -webkit-transition: .3s;
    transition: .3s;
    margin-right: 15px;
    width: 65px;
    height: 65px;
    background-color: #ffcc53;
    border-radius: 50%
}

.banner-style01 .banner-button .button-arrow i {
    font-size: 18px;
    color: #fff;
    position: relative;
    z-index: 1;
    -webkit-transition: 0.4s cubic-bezier(0.12, 0, 0.39, 0);
    transition: 0.4s cubic-bezier(0.12, 0, 0.39, 0);
    font-weight: 700
}

.banner-style01 .banner-button .button-text a {
    font-size: 19px
}

.banner-style01 .left-text {
    position: absolute;
    transform: rotate(-90deg) translate(-50%, 50%);
    transform-origin: 0 50%;
    transition: 1s cubic-bezier(0.7, 0, 0.3, 1) !important;
    top: 50%;
    left: 50px;
    z-index: 9
}

.banner-style01 .left-text span {
    font-size: 16px;
    color: #fff
}

.banner-style01 .left-text span i {
    font-size: 18px;
    margin-right: 10px;
    display: inline-block
}

@media screen and (max-width: 1599px) {
    .banner-style01 .left-text {
        left: 10px
    }
}

@media screen and (max-width: 1199px) {
    .banner-style01 .left-text {
        left: 0
    }
}

@media screen and (max-width: 767px) {
    .banner-style01 .banner-button .button-arrow {
        width: 50px;
        height: 50px
    }

    .banner-style01 .banner-button .button-arrow i {
        font-size: 14px
    }

    .banner-style01 .banner-button .button-text a {
        font-size: 16px
    }
}

.section-title01 h2 {
    line-height: 1.05em;
    letter-spacing: -.02em
}

.section-title02 .sm-title {
    position: relative;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    color: #ffcc53;
    display: inline-block;
    padding-left: 15px;
    letter-spacing: 2px;
    margin-bottom: 0.5rem
}

.section-title02 .sm-title:after {
    position: absolute;
    content: '';
    height: 8px;
    width: 8px;
    border-radius: 50px;
    background-color: #ffcc53;
    right: 0px;
    left: 0;
    top: 9px
}

.page-title-section {
    /*padding: 180px 0 100px 0*/
}
.message-section-para p{
    text-align: justify;
    line-height:30px;
    font-weight: normal;
    color: #302e2e;
}
.content-area-function p{
	 text-align: justify !important;;
    line-height:30px;
    font-weight: normal !important;
    color: #302e2e;
}
.message-section-para li{
    line-height:30px;
    font-weight: normal !important;;
    color: #302e2e;
}
.wp-block-list li {

    line-height:30px;
    font-weight: normal;
    color: #302e2e;
}
.page-title-section.style1 {
    padding: 150px 0
}
.dropdown-item.active, .dropdown-item:active {
    background-color: #ffcc53;
    color: #fff !important;
}
navbar-expand-lg .navbar-nav .nav-link .active {
    color: #ffcc53;
}
.navbar ul ul li:not(:last-child){
    border-bottom: 1px solid #cccaca;
}
.navbar ul ul li a::before{
    content: "\f105"; /* fa-angle-right */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 8px;
}
.dropdown-menu {
    border-color:transparent !important;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #ffcc53 !important;
}
.page-title-section h1 {
    font-size: 25px;
    line-height: 1;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
    z-index: 9;
    text-transform: uppercase
}

.page-title-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
    line-height: 1.2
}

.page-title-section ul li {
    display: inline-block
}

.page-title-section ul li:last-child {
    color: #ffffff;
    opacity: 0.80;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px
}

.page-title-section ul li:last-child a {
    color: #ffffff;
    opacity: 0.80;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px
}

.page-title-section ul li:after {
    content: "";
    font-weight: 700;
    vertical-align: middle;
    background-color: #ffcc53;
    width: 10px;
    padding: 0 5px 0 10px;
    height: 2px;
    display: inline-block;
    margin: 0 15px
}

.page-title-section ul li:last-child:after {
    content: none
}

.page-title-section ul li a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px
}

.page-title-section .shape-1 {
    padding: 20px;
    background: #fff;
    z-index: 3;
    bottom: 73px;
    left: 52px
}

@media screen and (max-width: 1199px) {
    .page-title-section {
        /*padding: 170px 0 90px 0*/
    }

    .page-title-section h1 {
        font-size: 52px;
        margin-bottom: 10px
    }
}

@media screen and (max-width: 991px) {
    .page-title-section {
        /*padding: 80px 0 90px 0*/
    }

    .page-title-section.style1 {
        padding:80px 0
    }

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

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

    .page-title-section.style1 {
        padding: 100px 0
    }

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

.ani-left-right {
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-name: LeftRight;
    animation-timing-function: ease-in-out
}

@keyframes LeftRight {
    0% {
        transform: translate(0px, 0px)
    }
    65% {
        transform: translate(30px, 0)
    }
    100% {
        transform: translate(0px, 0px)
    }
}

.ani-top-bottom {
    -webkit-animation-name: top-bottom;
    animation-name: top-bottom;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear
}

@keyframes top-bottom {
    0% {
        transform: translateY(-20px)
    }
    50% {
        transform: translateY(-10px)
    }
    100% {
        transform: translateY(-20px)
    }
}

.card .card-body {
    color: #575a7b
}

.card-style01 {
    -webkit-transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
    transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
    -webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
    transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
    border: 0;
    border-radius: 5px
}

.card-style01 .blog-img {
    border-radius: 5px 5px 0 0
}

.card-style01 .blog-img img {
    border-radius: 5px 5px 0 0
}

.card-style01 .blog-img span a {
    position: absolute;
    top: 20px;
    right: 20px;
    -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    padding: 4px 12px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-transition: .3s;
    transition: .3s;
    margin-left: 5px;
    display: inline-block;
    font-size: 12px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #fff
}

.card-style01 .blog-author {
    font-size: 14px;
    will-change: transform;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden
}

.card-style01 .blog-author .blog-date {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.5s cubic-bezier(0.37, 0, 0.63, 1);
    transition: all 0.5s cubic-bezier(0.37, 0, 0.63, 1);
    font-weight: 500;
    display: inline-block
}

.card-style01 .blog-author .author-name {
    position: absolute;
    width: auto;
    left: 0;
    bottom: 0;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(32px);
    transform: translateY(32px);
    -webkit-transition: all 0.5s cubic-bezier(0.37, 0, 0.63, 1);
    transition: all 0.5s cubic-bezier(0.37, 0, 0.63, 1);
    display: inline-block
}

.card-style01 .blog-author .author-name a {
    font-weight: 600;
    border-bottom: 1px solid #232323;
    -webkit-transition: .3s;
    transition: .3s
}

.card-style01 .blog-author .blog-like a i {
    margin-right: 4px;
    vertical-align: middle;
    -webkit-transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
    transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1)
}

.card-style01:hover .blog-author .blog-date {
    position: relative;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(-32px);
    transform: translateY(-32px)
}

.card-style01:hover .blog-author .author-name {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

.card-style02 {
    position: relative
}

.card-style02 .card-icon {
    width: 65px;
    height: 65px;
    display: flex;
    box-shadow: 0 0 26px rgba(0, 0, 0, 0.17);
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #fff;
    position: relative
}

.card-style03 {
    position: relative
}

.card-style03 .card-price {
    background-color: #051b2e;
    position: absolute;
    bottom: -50px;
    right: 30px;
    width: 100px;
    color: #fff;
    height: 100px;
    box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.card-style03 .price-before {
    position: absolute;
    top: 0;
    left: 0;
    writing-mode: tb-rl;
    background: #ffcc53;
    padding: 15px 5px;
    color: #fff
}

.card-style04 {
    position: relative;
    overflow: hidden;
    border: 0;
    height: 100%;
    background: unset;
    border-radius: 0
}

.card-style04 .card-header {
    padding: 40px 35px 70px 35px;
    border-color: #ededed;
    border-top-left-radius: 5px !important;
    border-top-right-radius: 5px !important
}

.card-style04 .card-price {
    background-color: #fff;
    position: absolute;
    bottom: -32px;
    left: 30px;
    border-radius: 5px;
    width: 110px;
    height: 70px;
    box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.card-style04 .card-month {
    position: absolute;
    right: 30px;
    bottom: -15px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    background-color: #ffcc53;
    padding: 5px 20px;
    border-radius: 35px
}

.card-style04 .card-body {
    border: 1px solid #ededed;
    border-top: none;
    background: #fff;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 60px 35px 30px
}

@media screen and (max-width: 991px) {
    .card-style04 .card-header .price {
        font-size: 50px
    }
}

@media screen and (max-width: 767px) {
    .card-style04 .card-header .price sup {
        font-size: 24px
    }
}

@media screen and (max-width: 575px) {
    .card-style04 .card-header .price {
        font-size: 45px
    }

    .card-style04 .discount-tag {
        width: 116px;
        font-size: 12px
    }
}

.card-style05 {
    border: none;
    border-radius: 5px;
    height: 100%;
    box-shadow: 0px 3px 10px 0px rgba(41, 45, 194, 0.08)
}

.card-style05 .radius-top {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px
}

.card-style05 .blog-img {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px
}

.card-style05 .blog-img img {
    will-change: transform;
    -webkit-transition: -webkit-transform .3s ease;
    -ms-transition: -ms-transform .3s ease;
    transition: transform .3s ease;
    -webkit-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
    -webkit-transform: scale(1.01, 1.01);
    -ms-transform: scale(1.01, 1.01);
    transform: scale(1.01, 1.01)
}

.card-style05 .post-date {
    position: absolute;
    right: 30px;
    top: -42px;
    font-size: 20px;
    background: #051b2e;
    color: #fff;
    border-radius: 3px;
    line-height: normal;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    padding: 10px;
    height: 78px;
    width: 78px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.card-style05 .post-date .month {
    font-size: 12px;
    text-transform: uppercase
}

.card-style05 .read-more {
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 14px;
    color: #4e86ff
}

.card-style05 .blog-tag:after {
    content: "";
    margin: 0 0.75em;
    width: 3px;
    height: 3px;
    background-color: #8E919D;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    position: absolute;
    border-radius: 50%
}

.card-style05 .read-more:hover {
    color: #33d687
}

.card-style05:hover .blog-img img {
    -webkit-transform: scale(1.07, 1.07);
    -ms-transform: scale(1.07, 1.07);
    transform: scale(1.07, 1.07)
}

.card-style06 .card-body {
    padding: 40px 50px 40px 50px
}

.card-style06 .card-body .service-img {
    margin: 0 auto 25px;
    position: relative
}

.card-style06 .card-body .icon-circle {
    width: 85px;
    height: 85px;
    position: absolute;
    background-color: rgba(255, 204, 83, 0.2);
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%) !important
}

.card-style06 .card-btn {
    background: transparent;
    display: flex;
    flex-direction: column;
    text-align: center;
    overflow: hidden;
    width: 100%;
    justify-content: center;
    position: relative;
    border-radius: 0
}

.card-style06 .card-btn .main-butn {
    font-weight: 700;
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
    border-top: 1px solid #dee2e6;
    font-size: 14px;
    text-transform: uppercase
}

.card-style06 .card-btn .main-butn .main-text {
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    display: block
}

.card-style06 .card-btn .hover-butn {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 100%;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    background-color: #0c3246;
    display: flex;
    justify-content: center;
    align-items: center
}

.card-style06 .card-btn .hover-butn a {
    padding: 0 0 2px;
    position: relative;
    border: 0;
    letter-spacing: 0;
    background-color: transparent;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    width: auto;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    color: #fff
}

.card-style06 .card-btn .hover-butn .inner-butn {
    display: inline-flex;
    align-items: center
}

.card-style06 .card-btn .hover-butn .inner-butn .hover-text {
    margin-left: -13px;
    position: relative;
    z-index: 3;
    transition: transform 0.6s 125ms cubic-bezier(0.1, 0.75, 0.25, 1)
}

.card-style06 .card-btn .hover-butn .inner-butn .btn-icon {
    margin-left: 6px;
    position: relative;
    transition: opacity .4s .25s, transform .6s .25s;
    transition-timing-function: cubic-bezier(0.1, 0.75, 0.25, 1);
    line-height: 0;
    z-index: 3
}

.card-style06 .card-btn .hover-butn .inner-butn .btn-icon i {
    margin: 0;
    line-height: 0;
    position: relative
}

.card-style06 .card-btn .hover-butn .inner-butn .btn-icon + .btn-icon {
    order: -2;
    opacity: 0;
    transition-delay: 0s;
    margin-left: 0;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px)
}

.card-style06:hover .card-btn .main-butn .main-text {
    -webkit-transform: translateY(20px);
    transform: translateY(20px)
}

.card-style06:hover .card-btn .hover-butn {
    top: 0
}

@media screen and (max-width: 1399px) {
    .card-style06 .card-body {
        padding: 40px 30px 40px 30px
    }
}

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

    .card-style06 .card-body .icon-circle {
        top: 40px
    }
}

.project-info-list {
    list-style: none;
    margin-bottom: 0;
    padding: 40px 30px;
    display: block;
    border-radius: 5px;
    color: #fff;
    margin-top: -70px;
    margin-right: 30px;
    background-color: #ffcc53
}

.project-info-list li {
    margin-bottom: 15px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px
}

.project-info-list li:last-child {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0
}

.project-info-list li .project-label {
    font-weight: 500;
    display: inline-block;
    margin-right: 25px;
    position: relative;
    width: 115px;
    vertical-align: top
}

.project-info-list li .project-label:after {
    content: ":";
    font-size: 18px;
    font-weight: 500;
    position: absolute;
    top: -1px;
    right: 0
}

@media screen and (max-width: 991px) {
    .project-info-list {
        margin: 0;
        padding: 30px 20px
    }
}

@media screen and (max-width: 575px) {
    .project-info-list li .project-label {
        margin-right: 15px;
        width: 100px
    }
}

.portfolio-style-01 .portfolio-box:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 39, 50, 0.3);
    top: 0;
    left: 0
}

.portfolio-style-01 .portfolio-box .portfolio-inner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    -webkit-transition: all .4s;
    transition: all .4s;
    background-color: #ff497c
}

.portfolio-style-01 .portfolio-box:hover .portfolio-inner:before {
    height: 100%
}

.portfolio-style-01 .portfolio-content {
    position: absolute;
    bottom: 46px;
    left: 46px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s cubic-bezier(0, 0, 0.3642, 1)
}

.portfolio-style-01:hover .portfolio-content {
    opacity: 1;
    transform: translateY(0)
}

.portfolio-style-01 .portfolio-content .port-text {
    background-color: #fff;
    padding: 5px 10px;
    display: inline-block
}

.portfolio-style-01:hover .portfolio-icon {
    opacity: 1;
    transform: translateY(0) scale(1)
}

.portfolio-style-01 .portfolio-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 30px;
    border-radius: 50%;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #fff;
    transform: translateY(-20px) scale(1);
    opacity: 0;
    transition: 0.4s cubic-bezier(0, 0, 0.3642, 1)
}

.portfolio-style-01:hover .portfolio-img img {
    transform: scale(1.1)
}

.portfolio-style-01 .portfolio-img img {
    transition: all 0.3s ease-in-out
}

.portfolio-style-01:after {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    background: rgba(31, 36, 44, 0.7);
    content: "";
    transition: all 0.3s ease-in-out
}

.portfolio-style-01 .port-four-col {
    bottom: 30px !important;
    left: 25px !important
}

.portfolio-style-01 .port-four-col .port-text {
    padding: 5px 5px !important
}

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

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

.pagination li {
    display: inline-block;
    margin-right: 10px
}

.pagination li:last-child {
    margin-right: 0
}

.pagination a {
    display: inline-block;
    border-radius: 2px;
    background: transparent;
    font-weight: 700;
    text-align: center;
    margin: 3px 0;
    padding: 12px 16px;
    color: #002a5c;
    border: 1px solid #dddddd;
    line-height: 25px
}

.pagination a:hover, .pagination a:active, .pagination a:focus {
    background-color: #ffcc53;
    color: #ffffff;
    box-shadow: none
}

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

@media screen and (max-width: 575px) {
    .pagination li {
        margin-right: 8px
    }
}

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

.resp-tabs-list li {
    display: inline-block;
    padding: 8px 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: 28px;
    color: #6f6f6f
}

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

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

.resp-tabs-list li.resp-tab-active {
    background: #ffcc53;
    background: linear-gradient(-45deg, #ffcc53, #8089ff);
    padding: 15px 20px 13px 20px;
    color: #ffcc53
}

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

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

.resp-tab-content {
    float: left;
    width: 100%
}

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

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

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

.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
}

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-vtabs ul.resp-tabs-list {
    float: left;
    width: 30%;
    margin-top: 0 !important
}

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

.resp-vtabs .resp-tabs-container {
    padding: 0px;
    background-color: #fff;
    border: 1px solid #86bc42 !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: 4px solid #f499aa !important;
    border: 4px solid #f499aa !important;
    border-left: 4px solid #f499aa !important;
    margin-bottom: 0 0 20px;
    border-right: 4px solid #f499aa !important
}

.resp-arrow {
    border-color: transparent #f499aa #f499aa transparent;
    border-style: solid;
    border-width: 0 2px 2px 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: 2px 0 0 2px;
    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: #ededed !important
}

.owl-theme .owl-nav.disabled {
    margin-top: 40px !important
}

.owl-theme .owl-dots {
    margin-top: 40px !important
}

.owl-theme .owl-dots .owl-dot span {
    background: rgba(0, 0, 0, 0.15)
}

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

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

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

.dots-white.owl-theme .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.5)
}

.dots-white.owl-theme .owl-dots .owl-dot:hover span, .dots-white.owl-theme .owl-dots .owl-dot.active span {
    background: #fff
}

.owl-thumbs button {
    border: none
}

.owl-thumbs button img {
    opacity: 0.5
}

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

.testimonial-thumbs4.owl-thumbs button {
    border: 1px solid transparent;
    background: transparent
}

.testimonial-thumbs4.owl-thumbs button img {
    opacity: 1;
    border: 1px solid transparent;
    padding: 8px
}

.testimonial-thumbs4.owl-thumbs button.active img {
    opacity: 1 !important;
    border: 1px solid #ffcc53;
    padding: 8px;
    background: none
}

.testimonial-carousel-one.owl-carousel .owl-nav button.owl-prev, .testimonial-carousel-one.owl-carousel .owl-nav button.owl-next {
    top: 40%;
    border-radius: 50%;
    position: absolute
}

.testimonial-carousel-one.owl-carousel .owl-nav button.owl-prev {
    left: -90px
}

.testimonial-carousel-one.owl-carousel .owl-nav button.owl-next {
    right: -90px
}

.testimonial-carousel-one.owl-carousel .owl-dots {
    margin-top: 30px
}

.testimonial-carousel-one .owl-nav span {
    height: 50px;
    width: 50px;
    line-height: 50px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 18px !important;
    color: #fff;
    transition: all .3s;
    border-radius: 50%
}

.testimonial-carousel-one.owl-carousel .owl-nav button.owl-next:hover span, .testimonial-carousel-one.owl-carousel .owl-nav button.owl-prev:hover span {
    background: #fff;
    border-radius: 50%;
    color: #e74860
}

.testimonial-quote {
    -webkit-text-stroke-width: 1px;
    color: #FFFFFF00;
    -webkit-text-stroke-color: #FFFFFF1A;
    font-size: 810px;
    line-height: 0px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%)
}

.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: #fff;
    font-size: 18px;
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    box-shadow: none;
    font-weight: 500;
    padding: 20px 60px 20px 20px;
    text-decoration: none;
    background: #2a334e;
    border: 0;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px
}

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

.accordion .accordion-button.collapsed {
    background: #fff;
    color: #575a7b;
    border: 1px solid #ededed;
    border-radius: 5px
}

.accordion .accordion-button.collapsed:after {
    background: #2a334e;
    border: none;
    content: "+";
    right: 20px;
    left: inherit;
    font-size: 18px;
    transform: none;
    width: 25px;
    height: 25px;
    line-height: 20px;
    top: 18px;
    border-radius: 5px;
    text-align: center;
    color: #fff
}

.accordion .accordion-button:after {
    background: #fff;
    border: none;
    content: "-";
    right: 20px;
    border-radius: 5px;
    left: inherit;
    font-size: 18px;
    border: 1px solid #fff;
    transform: none;
    width: 25px;
    height: 25px;
    line-height: 21px;
    top: 18px;
    position: absolute;
    color: #2a334e;
    text-align: center
}

.accordion .card-body {
    color: #575a7b;
    font-size: 16px;
    padding: 20px 25px;
    line-height: 28px;
    text-align: left;
    border-top: 0;
    border-bottom: 1px solid #ededed;
    border-left: 1px solid #ededed;
    border-right: 1px solid #ededed;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px
}

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

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

    .accordion .card-body {
        padding: 20px 15px
    }
}

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

.accordion-style .card {
    background: transparent;
    box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
    border: none;
    border-radius: 0
}

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

.accordion-style .btn-link {
    color: #ffcc53;
    line-height: 26px;
    position: relative;
    border: none;
    border-bottom: none;
    border-left: none;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    border-radius: 0;
    padding: 20px 45px 20px 18px;
    font-weight: 700;
    text-decoration: none;
    background-color: #ffffff
}

.accordion-style .btn-link.collapsed {
    color: #42545e;
    line-height: 26px;
    position: relative;
    border: none;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    padding: 20px 45px 20px 18px;
    font-weight: 700;
    text-decoration: none;
    background-color: #fff
}

.accordion-style .btn-link:hover, .accordion-style .btn-link:active, .accordion-style .btn-link:focus {
    text-decoration: none;
    color: #ffcc53
}

.accordion-style .btn-link.collapsed:after {
    content: "+";
    right: 17px;
    left: inherit;
    font-size: 20px;
    transform: none;
    top: 22px;
    position: absolute;
    color: #212121;
    background-color: transparent;
    border-radius: .3rem;
    line-height: 20px;
    width: 25px;
    height: 25px;
    text-align: center
}

.accordion-style .btn-link:after {
    content: "-";
    right: 17px;
    left: inherit;
    font-size: 20px;
    transform: none;
    top: 20px;
    position: absolute;
    color: #ffcc53;
    background-color: transparent;
    border-radius: .3rem;
    line-height: 22px;
    width: 25px;
    height: 25px;
    text-align: center
}

.accordion-style .card-body {
    padding: 0px 30px 25px 26px;
    line-height: 24px;
    text-align: left;
    border: none;
    border-left: none;
    background: #fff;
    border-top: none
}

@media screen and (max-width: 991px) {
    .accordion-style .card-body {
        padding: 10px 25px 30px 25px
    }
}

.card-header:first-child {
    border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0
}

.accordion.style1 .card {
    background: #FFF;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
    border-radius: .375rem
}

.accordion.style1 .accordion-button {
    background-color: unset;
    color: #2a334e;
    padding: 25px 60px 25px 28px;
    font-weight: 700;
    border-radius: .375rem .375rem 0 0
}

.accordion.style1 .accordion-button.collapsed {
    border: 0
}

.accordion.style1 .card-body {
    padding: 0 25px 25px 28px;
    border-bottom-left-radius: .375rem;
    border-bottom-right-radius: .375rem;
    border: 0
}

.accordion.style1 .accordion-button.collapsed:after {
    background-color: unset;
    content: "\e64b";
    font-family: themify;
    font-size: 14px;
    top: 24px;
    color: #575a7b
}

.accordion.style1 .accordion-button:after {
    content: "\e648";
    font-family: themify;
    font-size: 14px;
    top: 24px
}

.blog-grid {
    position: relative;
    box-shadow: 0 1rem 1.75rem 0 rgba(45, 55, 75, 0.1);
    height: 100%;
    border: 0.0625rem solid rgba(220, 224, 229, 0.6);
    border-radius: 0.25rem;
    transition: all .2s ease-in-out;
    height: 100%
}

.blog-grid span {
    color: #292dc2
}

.blog-grid img {
    width: 100%;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem
}

.blog-grid-text {
    position: relative
}

.blog-grid-text > span {
    color: #292dc2;
    font-size: 13px;
    padding-right: 5px
}

.blog-grid-text h4 {
    line-height: normal;
    margin-bottom: 15px
}

.blog-grid-text .meta-style2 {
    border-top: 1px dashed #cee1f8;
    padding-top: 15px
}

.blog-grid-text .meta-style2 ul li {
    margin-bottom: 0;
    font-weight: 500
}

.blog-grid-text .meta-style2 ul li:last-child {
    margin-right: 0
}

.blog-grid-text ul {
    margin: 0;
    padding: 0
}

.blog-grid-text ul li {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    margin: 5px 10px 5px 0
}

.blog-grid-text ul li:last-child {
    margin-right: 0
}

.blog-grid-text ul li i {
    font-size: 14px;
    font-weight: 600;
    margin-right: 5px
}

.blog-grid-text p {
    font-weight: 400;
    padding: 0
}

.tags a {
    border: 1px solid #051b2e;
    padding: 7px 21px;
    font-size: 14px;
    line-height: 20px;
    margin: 5px 10px 5px 0;
    display: inline-block
}

.tags a:hover, .tags a:active, .tags a:focus {
    border-color: #ffcc53;
    background: #ffcc53;
    color: #fff
}

.sidebar .butn-style3 {
    box-shadow: none
}

.sidebar .input-group .form-control {
    min-height: 50px
}

.sidebar .blog-tags a {
    border: 1px solid #1cbfaa;
    background-color: #fff;
    padding: 7px 25px;
    font-size: 14px;
    line-height: 20px;
    margin: 0.6rem 10px 0 0;
    display: inline-block;
    border-radius: .3rem
}

.sidebar .blog-tags a:hover {
    border: 1px solid #1388d7;
    background-color: #1388d7;
    color: #fff
}

.sidebar .blog-insta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(28, 191, 170, 0.8);
    opacity: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    z-index: 1;
    border-radius: .3rem
}

.sidebar .blog-insta:hover:before {
    opacity: 0.85
}

.sidebar .blog-insta .insta-icon {
    position: absolute;
    font-size: 25px;
    color: #fff;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    top: 55%;
    transform: translateY(-55%);
    opacity: 0;
    visibility: hidden;
    z-index: 3;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s
}

.sidebar .blog-insta:hover .insta-icon {
    opacity: 1;
    visibility: visible
}

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

.cat-item {
    list-style: none;
    word-wrap: break-word
}

.cat-item:first-child {
    margin-top: 0;
    border-top: 0;
    padding-top: 0
}

.cat-item ul.children {
    margin-top: 0.5rem;
    margin-left: 10px
}

.wp-tag-cloud li {
    display: inline-block
}

.wp-tag-cloud a {
    border: 1px solid #efefef;
    padding: 7px 21px;
    font-size: 14px !important;
    line-height: 20px;
    margin: 5px 10px 5px 0;
    display: inline-block
}

.wp-tag-cloud a:hover {
    background-color: #ffcc53;
    border-color: #ffcc53;
    color: #fff
}

.sidebar .widget {
    margin-bottom: 3rem
}

.sidebar .widget:last-child {
    margin-bottom: 0;
    margin-bottom: 0 !important
}

.sidebar .widget p:last-child {
    margin-bottom: 0
}

.sidebar .widget-body {
    padding: 1.9rem
}

.sidebar .widget-title {
    background: #051b2e;
    padding: 20px;
    font-size: 1rem;
    margin-bottom: 0;
    text-transform: uppercase;
    position: relative;
    z-index: 1
}

.sidebar .contact-icon {
    display: block;
    color: #fff;
    background: #ffcc53;
    font-size: 20px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    transition: all .45s ease-out
}

.recent-post > div:first-child a {
    display: inline-block;
    width: 80px;
    height: auto
}

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

.widget_categories ul .cat-item {
    margin-bottom: 10px
}

.widget_categories ul .cat-item a {
    position: relative;
    display: block;
    text-transform: capitalize;
    padding: 15px 20px 15px 20px;
    border: 1px solid #ededed;
    font-weight: 600;
    background: #ffffff;
    transition: all 0.3s ease 0s
}

.widget_categories ul .cat-item a:hover {
    background-color: #ffcc53;
    color: #ffffff
}

.widget_categories ul .cat-item:first-child {
    padding-top: 0
}

.widget_categories ul .cat-item:last-child {
    margin-bottom: 0
}

.widget_categories ul .cat-item span.cat-name {
    padding-right: 5px
}

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

.widget .widget-brochure li {
    position: relative;
    margin-bottom: 12px;
    display: inline-block;
    border: 1px solid #ededed;
    width: 100%;
    background: #fff
}

.widget .widget-brochure li a {
    position: relative;
    display: block;
    padding: 16px 15px 16px 75px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 800
}

.widget .widget-brochure li a i {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 100%;
    line-height: 3;
    text-align: center;
    font-size: 20px;
    background: #ffcc53;
    color: #ffffff
}

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

.banner-wrapper img {
    margin-top: 0;
    clip-path: polygon(0 0, 100% 0, 102% 87%, 0% 100%)
}

.banner-wrapper .icon-boxs {
    position: absolute;
    top: -60px;
    text-align: center;
    left: 0;
    right: 0;
    margin: auto;
    width: 80px;
    height: 80px;
    border-radius: 50%
}

.banner-wrapper .icon-boxs i {
    line-height: 80px
}

.blog-comment:before {
    content: "";
    position: absolute;
    width: 4px;
    height: 100%;
    top: 0;
    left: 10px;
    background-color: #ffcc53
}

.sidebar .widget {
    margin-bottom: 30px;
    box-shadow: 0 0 14px rgba(82, 85, 90, 0.1)
}

.sidebar .widget .blog-tags a {
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    display: -webkit-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    -webkit-transition: 500ms all ease;
    transition: 500ms all ease;
    z-index: 9;
    padding: 5px 12px;
    margin: 5px 10px 5px 0
}

.sidebar .widget .blog-tags a:hover {
    color: #f9275a
}

.sidebar .widget .blog-tags a:hover:before {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out
}

.sidebar .widget .blog-tags a:before {
    width: 0%;
    content: "";
    height: 0%;
    position: absolute;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: #fff;
    z-index: -1
}

.sidebar .widget .blog-tags.sm-tags a {
    font-size: 14px;
    background-color: white;
    color: #051b2e;
    display: -webkit-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    -webkit-transition: 500ms all ease;
    transition: 500ms all ease;
    z-index: 9;
    padding: 5px 12px;
    margin: 5px 10px 5px 0
}

.sidebar .widget .blog-tags.sm-tags a:hover {
    color: #f9275a
}

.sidebar .widget.categories ul li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 20px;
    margin-bottom: 20px
}

.sidebar .widget.categories ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: unset
}

.sidebar .widget.categories ul li a {
    color: #fff
}

.sidebar .widget.categories ul li:hover a {
    color: #f9275a
}

.sidebar .widget.categories ul li:hover span {
    color: #f9275a
}

.sidebar .widget.categories ul li:hover span:before {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out
}

.sidebar .widget.categories ul li span {
    width: 27px;
    height: 27px;
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    -webkit-transition: 500ms all ease;
    transition: 500ms all ease;
    z-index: 9
}

.sidebar .widget.categories ul li span:before {
    width: 0%;
    content: "";
    height: 0%;
    position: absolute;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: #fff;
    z-index: -1
}

.sidebar .widget-info {
    background-repeat: no-repeat;
    background-position: right bottom;
    background-color: #f0f2f7;
    padding: 30px;
    margin-bottom: 40px;
    position: relative
}

.sidebar .widget-info .info-img {
    background: #fff;
    display: inline-block;
    padding: 15px 20px 15px 0;
    width: 150px;
    position: relative;
    z-index: 1;
    margin-bottom: 30px
}

.sidebar .widget-info .info-img:before {
    content: "";
    position: absolute;
    top: 0;
    left: -50px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: -1
}

.sidebar .widget-info h3 {
    margin-bottom: 30px;
    font-size: 22px;
    line-height: 36px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 2px
}

.story-video {
    height: 100%
}

.video_btn {
    position: relative;
    height: 80px;
    width: 80px;
    background: #ffcc53;
    text-align: center;
    display: inline-block;
    line-height: 80px;
    color: #fff;
    border-radius: 50%;
    transition-duration: 0s;
    -ms-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -o-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: 2px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-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: 2px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    opacity: .3;
    animation: pulse-border 1500ms ease-out infinite
}

.startup-video {
    margin-bottom: -100px
}

.video_btn-style2:after, .video_btn-style2:before {
    border-color: rgba(0, 0, 0, 0.1)
}

@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
    }
}

.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
}

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

    .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
    }
}

.page-container .title {
    font-size: 250px;
    line-height: 1;
    margin-bottom: 0
}

@media screen and (max-width: 1199px) {
    .page-container .title {
        font-size: 200px
    }
}

@media screen and (max-width: 991px) {
    .page-container .title {
        font-size: 125px
    }
}

@media screen and (max-width: 767px) {
    .page-container .title {
        font-size: 75px
    }
}

.coming-soon .social-links li {
    display: inline-block;
    font-size: 22px;
    margin-right: 30px
}

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

.coming-soon .social-links li a {
    color: #fff
}

.coming-soon .social-links li a:hover {
    color: rgba(255, 255, 255, 0.65)
}

.countdown {
    padding: 0
}

.countdown li {
    background: #ffcc53;
    display: inline-block;
    text-align: center;
    min-width: 140px;
    overflow: hidden;
    margin-right: 10px;
    padding: 15px 10px;
    position: relative
}

.countdown li:last-child {
    margin-right: 0
}

.countdown li span {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    color: #ffffff;
    line-height: normal;
    position: relative
}

.countdown li p.timeRefDays, .countdown li p.timeRefHours, .countdown li p.timeRefMinutes, .countdown li p.timeRefSeconds {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    z-index: 2;
    position: relative;
    padding: 0;
    text-transform: capitalize
}

@media screen and (max-width: 1199px) {
    .countdown li {
        min-width: 120px
    }

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

@media screen and (max-width: 991px) {
    .countdown li span {
        font-size: 30px
    }
}

@media screen and (max-width: 767px) {
    .countdown li {
        min-width: 180px;
        margin-top: 5px
    }

    .countdown li:nth-child(2) {
        margin-right: 0
    }
}

@media screen and (max-width: 575px) {
    .countdown li {
        min-width: 43%
    }

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

.about-style01 .about-us-section .about-image {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 5px
}

.about-style01 .about-us-section .about-image.one {
    margin-bottom: 30px;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.09)
}

.about-style01 .about-us-section .about-image img {
    width: 100%;
    height: 285px;
    object-fit: cover
}

.about-style01 .about-us-section .a-image {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.05)
}

.about-style01 .about-us-section .about-us-inner {
    text-align: center;
    padding: 20px 30px;
    background: #ffcc53;
    bottom: 20px;
    left: 20px;
    z-index: 10;
    position: absolute;
    border-radius: 5px
}

.about-style01 .about-us-section .about-us-inner.viceo {
    padding-right: 80px
}

.about-style01 .about-us-section .about-us-inner h2 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    color: #fff
}

.about-style01 .about-us-section .about-us-inner .video-box {
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
    height: 40px;
    width: 40px;
    margin: auto
}

.about-style01 .about-us-section .about-us-inner .video-box a {
    color: #fff;
    width: 40px;
    display: block;
    text-align: center;
    line-height: 43px;
    height: 40px;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.1)
}

.about-style01 .about-content .about-list {
    display: flex;
    align-items: center;
    padding-top: 15px;
    margin-top: 25px
}

.about-style01 .about-content .about-list .about-author {
    background: #ffffff;
    box-shadow: 0px 0px 62px 0px rgba(0, 0, 0, 0.08);
    padding: 35px 30px 35px 45px;
    border-radius: 5px;
    margin-right: 40px;
    margin-top: 25px;
    position: relative
}

.about-style01 .about-content .about-list .about-author::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background: #ffcc53;
    height: 3px;
    width: calc(100% - 30px)
}

.about-style01 .about-content .about-list .about-author span {
    color: #4c4d56
}

.about-style01 .about-content .about-list .about-author .author-img {
    position: absolute;
    left: -25px;
    top: 35px
}

.about-style01 .about-content .about-list .about-author .author-img img {
    border-radius: 50%
}

.about-style01 .about-content .about-list ul li {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: #090d2f
}

.about-style01 .about-content .about-list ul li i {
    color: #ffcc53;
    margin-right: 5px
}

.about-style01 .about-content .about-list ul li + li {
    margin-top: 15px
}

@media screen and (max-width: 1199px) {
    .about-style01 .about-content .about-list {
        margin-top: 0px;
        padding-top: 0px
    }

    .about-style01 .about-content .about-list .about-author {
        border-radius: 5px;
        margin-right: 20px;
        margin-top: 0px;
        padding: 24px 22px 19px 39px
    }
}

@media screen and (max-width: 575px) {
    .about-style01 .about-us-section .about-us-inner {
        padding: 15px 21px
    }

    .about-style01 .about-us-section .about-us-inner.viceo {
        padding-right: 65px
    }

    .about-style01 .about-content .about-list {
        display: inline-block
    }

    .about-style01 .about-content .about-list .about-author {
        margin-bottom: 2rem
    }
}

.about-style-02 .left-box {
    position: absolute;
    left: 40px;
    bottom: -25px;
    background-color: #ffcc53;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    text-align: center;
    width: 198px;
    padding: 44px 8px;
    z-index: 9
}

.about-style-02 .left-top-box {
    position: absolute;
    left: -20px;
    top: -10%;
    display: inline-block;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    width: 250px;
    z-index: 9
}

.about-style-02 .about-left:before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -20px;
    left: 60px;
    clip-path: polygon(100% 50%, 75% 93.3%, 25% 93.3%, 0% 50%, 25% 6.7%, 75% 6.7%);
    transform: rotate(30deg);
    background-color: rgba(255, 204, 83, 0.06)
}

.about-style-02 .about-left:after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    top: -20px;
    left: 60px;
    clip-path: polygon(100% 50%, 75% 93.3%, 25% 93.3%, 0% 50%, 25% 6.7%, 75% 6.7%);
    transform: rotate(30deg);
    background-color: transparent;
    border: 4px solid rgba(231, 72, 96, 0.1)
}

@media screen and (max-width: 1399px) {
    .about-style-02 .left-top-box {
        left: -6%
    }

    .about-style-02 .left-box {
        left: -30px
    }
}

@media screen and (max-width: 1199px) {
    .about-style-02 .about-left:before {
        left: -30px
    }

    .about-style-02 .left-top-box {
        left: -6%
    }

    .about-style-02 .left-box {
        left: -4%;
        bottom: -31%
    }
}

@media screen and (max-width: 991px) {
    .about-style-02 .about-left:before {
        left: 120px
    }

    .about-style-02 .left-top-box {
        left: 40px
    }

    .about-style-02 .left-box {
        left: 100px
    }
}

@media screen and (max-width: 767px) {
    .about-style-02 .about-left:before, .about-style-02 .left-top-box, .about-style-02 .left-box {
        display: none
    }
}

@media screen and (max-width: 991px) {
    .about-style03 .arrow-circle {
        width: 40px;
        height: 40px
    }
}

.service-style-01 .inner-box {
    position: relative;
    background-color: #ffffff;
    padding: 45px 25px 50px 50px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    border-radius: 10px;
    overflow: hidden;
    height: 100%
}

.service-style-01 .inner-box:hover {
    -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px)
}

.service-style-01 .inner-box:hover .read-more i {
    color: #ffffff;
    background-color: #ff497c
}

.service-style-01 .icon-box {
    position: absolute;
    right: -52px;
    bottom: -52px;
    height: 210px;
    width: 210px;
    background: #f3f3f3;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    padding: 40px 50px;
    border-radius: 50%
}

.service-style-01 .icon-box .icon {
    color: #ff497c;
    font-size: 72px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease
}

.service-style-01 .text {
    position: relative;
    margin-bottom: 60px
}

.service-style-01 .read-more {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 10px;
    color: #6a6a6a;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear
}

.service-style-01 .read-more i {
    margin-right: 20px;
    height: 52px;
    width: 52px;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1)
}

@media screen and (max-width: 1199px) {
    .service-style-01 .inner-box {
        padding: 35px 20px 33px 20px
    }

    .service-style-01 .icon-box {
        right: -80px;
        bottom: -71px;
        height: 190px;
        width: 190px;
        padding: 36px 36px
    }

    .service-style-01 .icon-box .icon {
        font-size: 55px
    }
}

.team-style01 img {
    border: 3px solid #ffcc53;
    transition: all .3s ease .1s
}

.team-style01:hover img {
    border: 3px solid #051b2e
}

.progress-style2 .progress {
    height: 8px
}

.progress-style2 .progress .progress-bar {
    background-color: #ffcc53
}

.progress-text {
    font-size: 15px;
    margin-bottom: 8px
}

.custom-progress {
    height: 9px;
    border-radius: 2px;
    box-shadow: none;
    margin-bottom: 2rem;
    background-color: #fff
}

.custom-bar {
    height: 100%;
    background-color: #fcaf17;
    box-shadow: none
}

.counter-style01 {
    background-color: #fff;
    box-shadow: 10px 10px 60px 0px rgba(0, 0, 0, 0.1);
    padding: 50px;
    margin-top: -90px;
    position: relative;
    z-index: 3
}

.counter-number {
    position: relative;
    display: inline-block;
    z-index: 2
}

.counter-number:before {
    content: '';
    background-color: #ffcc53;
    height: 8px;
    width: 100%;
    position: absolute;
    bottom: 9px;
    z-index: -1
}

.contact-wrapper {
    text-align: center;
    box-shadow: -3px 0px 30px 0px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 70px 30px 30px;
    position: relative;
    z-index: 2;
    height: 100%;
    word-break: break-all
}

.contact-content {
    position: relative;
    z-index: 2;
    text-align: center
}

.contact-content .title-hover {
    display: block;
    position: absolute;
    top: -30px;
    margin: 0 auto;
    width: 100%;
    color: #f6f6f6;
    margin-bottom: 0;
    font-weight: bold;
    z-index: -1;
    font-size: 75px;
    transition: all 300ms ease-in-out;
    opacity: 0
}

.contact-wrapper:hover .title-hover {
    opacity: 1
}

.contact-wrapper:hover .contact-icon {
    background: #051b2e
}

@media screen and (max-width: 991px) {
    .contact-wrapper {
        padding: 60px 30px 30px
    }

    .contact-icon {
        margin: -100px auto 30px;
        width: 80px;
        height: 80px;
        line-height: 5.8
    }

    .contact-content .title-hover {
        top: -20px;
        font-size: 60px
    }
}

@media screen and (max-width: 575px) {
    .contact-wrapper {
        padding: 50px 25px 25px
    }

    .contact-content .title-hover {
        font-size: 55px
    }
}

.contact-from {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    background: #ffffff;
    padding: 40px
}

.contact-map {
    width: 100%;
    height: 520px;
    vertical-align: top;
    border: 0
}

.contact-us {
    padding: 60px;
    background-color: #f6f6f6
}

.contact-us .contacts-icon img {
    padding: 16px
}

.contact-us .contact-details {
    padding: 30px 50px 40px;
    border-radius: 5px;
    margin-left: 20px;
    background-color: #051b2e
}

.contact-us .contact-info {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1215686275);
    padding: 0 0 25px;
    margin-bottom: 22px
}

.contact-us .contacts-icon {
    float: left;
    margin-right: 20px;
    width: 55px;
    height: 55px;
    line-height: 55px;
    background-color: rgba(255, 255, 255, 0.5196078431);
    text-align: center;
    display: inline-block;
    transition: .5s
}

.contact-us .contacts-icon i {
    color: #fff;
    font-size: 22px;
    transition: .5s
}

.contact-us .contacts-title h6 {
    font-size: 14px;
    line-height: 23px;
    opacity: .702;
    margin-top: 5px
}

.contact-us .contact-info:hover .contacts-icon {
    transform: rotateY(180deg);
    background: #ffcc53
}

.contact-us .contact-info.upper2 {
    border-bottom: none;
    margin-bottom: 0px
}

.contact-us .contact-details .follow-company-icon2 a {
    font-size: 14px;
    display: inline-block;
    color: #fff;
    margin-right: 7px;
    transition: .5s;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.2);
    text-align: center
}

.contact-us .follow-company-icon2 a:hover {
    background: #ffcc53
}

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

    .contact-us .contact-details {
        padding: 30px 31px 30px;
        margin-left: 7px
    }
}

@media screen and (max-width: 575px) {
    .contact-us {
        padding: 30px 19px 31px 19px
    }

    .contact-us .contact-info {
        padding: 0 0 18px;
        margin-bottom: 21px
    }

    .contact-us .contacts-icon {
        margin-right: 13px;
        width: 48px;
        height: 48px;
        line-height: 48px
    }

    .contact-us .contact-details {
        padding: 19px 19px 19px;
        margin-left: 7px
    }

    .contact-us .contacts-title h6 {
        font-size: 13px;
        line-height: 21px
    }
}

.client-style01 .clients-box {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top
}

.client-style01 .clients-box .clients-inner {
    width: 100%;
    height: 328px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #f8f9fa
}

.client-style01 .clients-box .clients-img {
    position: relative;
    z-index: 2
}

.client-style01 .clients-box .clients-hover-logo {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity .3s ease-in-out
}
.text-align {
    text-align: justify;
    color: #252424;
	font-weight:normal !important;
	line-height:30px;
}
.function-text li{
    text-align: left !important;
    line-height: 30px;
}
.client-style01 .clients-box .clients-bg-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: opacity .3s ease-in-out;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
    transition: -webkit-clip-path 0.57s cubic-bezier(0.62, 0.83, 0.34, 0.93);
    transition: clip-path 0.57s cubic-bezier(0.62, 0.83, 0.34, 0.93);
    transition: clip-path 0.57s cubic-bezier(0.62, 0.83, 0.34, 0.93), -webkit-clip-path 0.57s cubic-bezier(0.62, 0.83, 0.34, 0.93)
}

.client-style01 .clients-box:hover .clients-hover-logo {
    opacity: 1
}

.client-style01 .clients-box:hover .clients-bg-img {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0)
}

.feature-style01 {
    margin-top: -114px
}

.feature-style01 .feature-box {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    padding: 15%;
    background-color: #fff;
    transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1)
}

.feature-style01 .feature-box:hover {
    transform: translate3d(0, -3px, 0)
}

.feature-style01 .feature-number {
    border: 2px solid #e4e4e4;
    width: 90px;
    height: 90px;
    line-height: 90px;
    margin: 0px auto 27px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}

@media screen and (max-width: 1399px) {
    .feature-style01 .feature-box {
        padding: 12% 9%
    }
}

@media screen and (max-width: 575px) {
    .feature-style01 {
        margin-top: -75px
    }
}

.process-style2 .process-icons {
    border-radius: 50%;
    background-color: #ffcc53;
    width: 120px;
    height: 120px;
    line-height: 120px;
    display: flex;
    justify-content: center;
    align-items: center
}

.extra-icon-circle {
    width: 80px;
    background: #ffcc53;
    color: #fff;
    border-radius: 50%;
    padding: 15px
}

@-webkit-keyframes wcBubble {
    0% {
        scale: 1
    }
    50% {
        scale: 1.5
    }
    100% {
        scale: 1
    }
}

@keyframes wcBubble {
    0% {
        scale: 1
    }
    50% {
        scale: 1.5
    }
    100% {
        scale: 1
    }
}

.faq-img-bg {
    display: inline-block;
    position: relative;
    z-index: 1;
    margin-bottom: 25px
}

.history-style01 {
    position: relative
}

.history-style01:before {
    position: absolute;
    content: "";
    left: 0;
    top: 4px;
    width: 100%;
    height: 1px;
    background: #232323;
    opacity: 0.2
}

.timeline-flag {
    background: #ffcc53;
    width: 10px;
    height: 25px;
    margin-bottom: 25px;
    position: relative;
    transform: rotate(180deg)
}

.timeline-flag:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    width: 0px;
    height: 0;
    border-top: 5px solid #fff;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent
}

.history-year {
    position: absolute;
    background-color: #ffcc53;
    color: #fff;
    padding: 4px 20px;
    left: 50%;
    transform: translateX(-67%)
}

@media screen and (max-width: 767px) {
    .history-year {
        transform: translateX(-50%)
    }
}

blockquote:before {
    content: "";
    position: absolute;
    width: 4px;
    height: 100%;
    top: 0;
    left: 0px;
    background-color: #ffcc53
}

.page-navigation {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f1f7ff;
    padding: 0
}

.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;
    border-radius: 4px;
    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;
    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;
    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: #ffcc53
}

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

.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
    }
}

.lg-backdrop {
    z-index: 99999
}

.lg-outer {
    z-index: 999999
}

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

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

.lg-backdrop.in {
    opacity: 0.85
}



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

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

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

.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;
    color: #6a747b;
    font-size: 15px
}

.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
}
.news-card .news-event-text {
    font-size: 20px !important;
}
.quform-element {
    margin-bottom: .1rem
}

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

.newsletter-form-icon .quform-submit-inner {
    position: absolute;
    right: 1px;
    top: 3px;
    width: auto;
    background: transparent;
    height: 48px
}

.newsletter-form-icon .quform-submit-inner .btn {
    border: none;
    padding: 0.500rem 1.15rem
}

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

.newsletter-form-icon input {
    border: 1px solid transparent;
    background-color: rgba(255, 255, 255, 0.2);
    height: 50px;
    padding: 0.5rem 4rem 0.5rem 1rem;
    color: #fff
}

.newsletter-form-icon .form-control:focus, .newsletter-form-icon .form-control:active {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff
}

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

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

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

.newsletter-form-cooming-soon .quform-elements1 {
    position: relative
}

.newsletter-form-cooming-soon .quform-submit-inner {
    position: absolute;
    right: 1px;
    top: 1px;
    width: auto;
    background: transparent;
    height: 48px
}

.newsletter-form-cooming-soon .quform-submit-inner .btn {
    padding: 0.500rem 1.15rem
}

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

.newsletter-form-cooming-soon input {
    border: 1px solid transparent;
    background-color: rgba(255, 255, 255, 0.2);
    height: 50px;
    padding: 0.5rem 4rem 0.5rem 1rem;
    color: #fff
}

.newsletter-form-cooming-soon .form-control:focus, .newsletter-form-cooming-soon .form-control:active {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff
}

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

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

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

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

.newsletter-rounded .quform-submit-inner {
    position: absolute;
    right: 0px;
    top: 6px;
    width: auto
}

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

.newsletter-rounded input {
    height: 60px;
    padding: 0.5rem 4rem 0.5rem 1.5rem
}

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

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

.newsletter-rounded i {
    font-size: 1.5rem;
    line-height: 2rem
}

.newsletter-style01 .form-control {
    height: 54px
}

.social-icon-style1 {
    margin-bottom: 0;
    display: inline-block;
    padding-left: 10px;
    list-style: none
}

.social-icon-style1 li {
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px
}

.social-icon-style1 li a {
    display: inline-block;
    font-size: 14px;
    text-align: center;
    color: #ffffff;
    background: #ffcc53;
    height: 41px;
    line-height: 41px;
    width: 41px
}

.social-icon-style1 li a:hover, .social-icon-style1 li a:focus, .social-icon-style1 li a:active {
    background: #fff;
    color: #051b2e
}

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

.social-icon-style2 li {
    display: inline-block
}

.social-icon-style2 li a {
    display: inline-block;
    font-size: 14px;
    text-align: center;
    color: #ffffff;
    background: #ffcc53;
    height: 38px;
    line-height: 38px;
    width: 38px;
    border-radius: 0
}

.social-icon-style2 li a:hover {
    color: #fff;
    background-color: #051b2e
}

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

.social-icon-style3 li {
    margin-right: 5px;
    display: inline-block
}

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

.social-icon-style3 li a {
    width: 50px;
    height: 50px;
    background: #fff;
    text-align: center;
    font-size: 16px;
    color: #272c49;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%
}

.social-icon-style3 li a:hover {
    color: #ffcc53
}

@media screen and (max-width: 1199px) {
    .social-icon-style3 li a {
        width: 40px;
        height: 40px
    }
}

.social-icon-style4 li {
    display: inline-block;
    margin: 0 20px 0 0;
    padding: 0;
    margin-bottom: 8px
}

.social-icon-style4 li a {
    font-size: 15px;
    display: inline-block;
    border-radius: 0;
    text-align: center;
    color: #fff;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out
}

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

.social-icon-style5 li {
    display: inline-block;
    font-size: 14px;
    margin-right: 10px
}

.social-icon-style5 li a {
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    font-size: 12px;
    border: 1px solid rgba(11, 11, 11, 0.2);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%
}

.social-icon-style5 li a:hover {
    color: #fff;
    background-color: #ffcc53;
    border-color: #ffcc53
}

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

.social-icon-style6 li a {
    display: inline-block;
    font-size: 14px;
    text-align: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    height: 38px;
    line-height: 38px;
    width: 38px;
    border-radius: 50px
}

.social-icon-style6 li a:hover {
    color: #ffcc53;
    background-color: #fff
}

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

.social-icon-style7 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 30px 0;
    padding: 35px 0;
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed
}

.social-icon-style7 ul {
    margin-left: 30px;
    padding-left: 0;
    margin-bottom: 0
}

.social-icon-style7 ul li {
    display: inline-block;
    list-style: none;
    margin-right: 10px
}

.social-icon-style7 ul li:last-child {
    margin: 0
}

.social-icon-style7 ul li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #fff;
    border: 1px solid #ededed;
    color: #343a40;
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s
}

.social-icon-style7 ul li a:hover {
    color: #fff;
    border-color: #ff497c;
    background: #ff497c
}

.social-icon-style8 {
    margin-bottom: 0;
    display: inline-block;
    padding-left: 10px;
    list-style: none
}

.social-icon-style8 li {
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px
}

.social-icon-style8 li a {
    display: inline-block;
    font-size: 14px;
    text-align: center;
    color: #ffcc53;
    background: #fff;
    height: 41px;
    line-height: 42px;
    width: 41px
}

.social-icon-style8 li a:hover {
    background: #ffcc53;
    color: #fff
}

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

.social-icon-style8 li a.small {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 11px
}

.social-icon-style8.small li a {
    width: 35px;
    height: 35px;
    line-height: 35px
}

@media screen and (max-width: 991px) {
    .social-icon-style8.small li a {
        width: 30px;
        height: 30px;
        line-height: 30px
    }
}

footer {
    word-break: break-word
}

.footer-logo {
    max-width: 210px;
    width: 100%;
    display: inline-block
}

footer .footer-bar {
    position: relative;
    z-index: 9;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.075);
    color: rgba(255, 255, 255, 0.85)
}

footer .footer-bar p {
    margin-bottom: 0
}

footer .email {
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    display: inline-block;
    padding-bottom: 5px
}

footer .email a {
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    transition: all 0.8s ease
}

footer .email a:hover:after, footer .email a:active:after, footer .email a:focus:after {
    width: 100%
}

footer .email a:hover, footer .email a:active, footer .email a:focus {
    color: #ffcc53
}

footer .email a:after {
    border-bottom: 1px solid #fff;
    transition: all 0.8s ease;
    content: "";
    display: inline-block;
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 0
}

footer .phone {
    padding-bottom: 0;
    margin-bottom: 0
}

footer .phone a {
    padding-bottom: 0;
    letter-spacing: -0.05rem;
    color: white
}

footer .phone a:hover, footer .phone a:active, footer .phone a:focus {
    color: #ffcc53
}

@media screen and (max-width: 767px) {
    footer .email a:after {
        bottom: -10px
    }
}

.footer-list {
    margin: 0;
    padding: 0
}

.footer-list li {
    list-style-type: none;
    color: #fff;
    margin-bottom: 20px
}

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

.footer-list li a {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff
}

.footer-list li a:hover {
    color: #ffcc53
}

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

.footer-address {
    margin-bottom: -50px
}

.footer-style01 > .container {
    padding-top: 50px;
    padding-bottom: 70px
}

.footer-style01 h3 {
    position: relative;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    padding-right: 50px;
    letter-spacing: 1px;
    margin-bottom: 30px;
    display: inline-block;
    text-transform: uppercase
}

@media screen and (max-width: 991px) {
    .footer-style01 > .container {
        padding-top: 110px
    }
}
