/*Global Styling*/

@import url('https://fonts.googleapis.com/css?family=Raleway:200,300,400,500,600,700|Open+Sans:300,400,500,600,700');

html {
    scroll-margin-top: 200px;
}
body {
    font-size: 16px;
    color: #222;
    font-weight: normal;
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}
main {
    flex: 1;
}
::selection {
    background: #444 !important;
    color: #fff;
}
.tooltipster-box {
    background: rgba(253, 228, 40, 0.8) !important;
    border: none !important;
    box-shadow: none;
}
.tooltipster-content {
    color: #022346 !important;
}
table, tr, td, blockquote {
    color: #222;
}
html {
    font-size: 16px;
}
ol, ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
a, a:hover, a:focus {
    outline: none;
    text-decoration: none;
    color: inherit;
}
hr {
    margin-top: 50px;
    margin-bottom: 50px;
}
button:focus,
button:active,
input:focus,
input:active {
    outline: none;
    box-shadow: none;
}
small {
    font-size: 60%;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
}
h1, h2, h3, h4, h5,
.button, .numbered .tp-bullet .tp-count {
    font-family: 'Raleway', sans-serif;
}
h1 {
    font-size: 42px;
    margin-bottom: 50px;
}
h2 {
    font-size: 30px;
    color: #8e7b03;
    margin-bottom: 20px;
}
h3 {
    font-size: 24px;
    margin-bottom: 30px;
}
h4 {
    font-size: 20px;
    color: #8e7b03;
    margin-bottom: 20px;
    font-style: italic;
}
h5 {
    font-size: 16px;
}
h6 {
    font-size: 14px;
}
p, p:last-child {
    font-weight: normal;
    line-height: 1.7;
    margin: 0 0 30px;
}
.italic {
    font-style: italic;
}
button {
    line-height: 1;
}

/* Helper Classes & Short-codes */
.padding {
    padding: 120px 0;
}
.padding-top {
    padding-top: 120px;
}
.padding-bottom {
    padding-bottom: 120px;
}
.margin {
    margin: 120px 0;
}
.margin-top {
    margin-top: 120px;
}
.margin-bottom {
    margin-bottom: 120px;
}
.container-padding {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}
.hover-default:hover,
.hover-default:focus {
    color: #fde428;
}

/*img wrap*/
.image {
    overflow: hidden;
}
a.image, .image img {
    display: block;
}
.image img {
    width: 100%;
}
section, .image, .image img {
    position: relative;
}

/* ---- PreLoader ---- */
.loader {
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 1111;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #fff;
}
.loader-spinner {
    width: 75px;
    height: 75px;
    margin: 0;
    background: transparent;
    border-top: 4px solid #002E5B;
    border-right: 4px solid transparent;
    border-radius: 50%;
    -webkit-animation: 1s spin linear infinite;
    animation: 1s spin linear infinite;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* ----- Social Icons ----- */
.social-icons-simple {
    margin-top: -3px;
}
ul.social-icons-simple li,
ul.social-icons li {
    display: inline-block;
}
ul.social-icons li a,
ul.social-icons-simple li a {
    height: 30px;
    line-height: 30px;
    width: 30px;
    font-size: 14px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin: 0 1px;
    text-align: center;
    display: block;
    color: #fde428;
    position: relative;
    transition: 0.3s all;
    z-index: 1;
    border: 1px solid #fde428;
}
ul.social-icons.white li a,
ul.social-icons-simple.white li a {
    border-color: #ffffff50;
}
ul.no-border.social-icons li a,
ul.no-border.social-icons-simple li a {
    border-color: transparent !important;
}
ul.darkcolor.social-icons li a,
ul.darkcolor.social-icons-simple li a {
    color: #002e5b;
    border-color: #002e5b;
}
.social-icons.white li a:hover {
    color: #002e5b !important;
}
ul.social-icons-simple li a {
    border: none;
}
ul.social-icons.whitebg li a {
    background: #fff;
}
ul.social-icons li:last-child a {
    margin-right: 0;
}
ul.social-icons li:first-child a {
    margin-left: 0;
}
ul.social-icons li a::before,
ul.social-icons-simple li a::before {
    content: "";
    position: absolute;
    left: -1px;
    right: -1px;
    bottom: -1px;
    top: -1px;
    opacity: 0;
    visibility: hidden;
    background: #fde428;
    border-radius: inherit;
    z-index: -1;
    -webkit-transform: scale(.5);
    -moz-transform: scale(.5);
    -o-transform: scale(.5);
    transform: scale(.5);
}
ul.social-icons li a:hover::before,
ul.social-icons li a:focus::before,
ul.social-icons-simple li a:hover::before,
ul.social-icons-simple li a:focus::before {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
ul.social-icons.white li a,
ul.social-icons-simple.white li a,
ul.social-icons li a:hover,
ul.social-icons li a:focus,
ul.social-icons.white li a:hover,
ul.social-icons.white li a:focus {
    color: #fff;
}

/*icon bg bover */
.facebook:before {
    background-color: #4267B2 !important;
}
.twitter:before {
    background-color: #1DA1F2 !important;
}
.insta:before {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
}
.linkedin:before {
    background-color: #0077B5 !important;
}
.whatsapp:before {
    background-color: #09cc16 !important;
}
.inner-color .facebook:before,
.inner-color .twitter:before,
.inner-color .insta:before,
.inner-color .whatsapp:before,
.inner-color .linkedin:before {
    background-color: #fde428 !important;
}
.inner-color .insta:before {
    background: radial-gradient(circle at 30% 107%, #fde428 0%, #fde428 5%, #fde428 45%, #fde428 60%, #fde428 90%) !important;
}

/*-----Buttons-----*/
.button {
    position: relative;
    display: inline-block;
    font-size: 15px;
    padding: 12px 50px;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.8px;
    z-index: 1;
    border: none;
    border-radius: 0;
}
.button:focus,
.button:active {
    outline: none !important;
    box-shadow: none !important;
}
.transition-3 {
    -webkit-transition: 0.3s !important;
    -moz-transition: 0.3s !important;
    -o-transition: 0.3s !important;
    transition: 0.3s !important;
}
.btnprimary {
    color: #020202 !important;
    background: linear-gradient(180deg, #fde134, transparent) #cfb200;
}
.btnprimary:hover,
.btnprimary:focus {
    background-color: #ebd12e;
    text-decoration: none !important;
}
.btnblack {
    color: #fff !important;
    background: linear-gradient(0deg, #222, transparent) #888;
}

.btnblack:hover,
.btnblack:focus {
    background-color: #222;
    text-decoration: none !important;
}

/* transitions common*/
a,
*::before,
*::after,
.button,
.image img,
.navbar,
button,
.navbar .dropdown-menu,
.team-content h4,
.overlay,
.overlay ul,
.card-header .card-link:before,
.contact-table .icon-cell,
.feature-item .icon,
.cbp-l-filters .cbp-filter-item span,
.testi-box .testimonial-round>img,
.feature-item .icon,
#services-slider .service-box>span {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
i::before,
i::after {
    -webkit-transition: all 0s !important;
    -o-transition: all 0s !important;
    transition: all 0s !important;
}
.side-menu .btn-close::before,
.side-menu .btn-close::after,
.side-intra .btn-close::before,
.side-intra .btn-close::after,
.process-wrapp li>.pro-step::before,
.process-wrapp li::before,
.process-wrapp li::after,
.half-section-alt::before,
.team-content::before,
.progress-bars .progress .progress-bar span::after,
.bg-testimonial::after,
ul.rounded li::before,
.webcats li a::before,
ul.hours_links li::before,
.side-nav .navbar-nav .nav-link::after,
.numbered .tp-count:before,
.owl-prev::before,
.owl-next::before,
.contact-banner::before {
    content: "";
}
.bg-white {
    background-color: #fff;
}
.dropdown-toggle::after,
.card-header .card-link:before,
blockquote.blockquote::before,
ul.links li a::before,
.form-check label::before {
    font-family: "Font Awesome 5 Free", serif;
    font-weight: 900;
}
.dropdown-toggle::after {
    transition: all 0s !important;
}

/* ----- Navigation Starts ----- */
.navbar {
    padding: 0;
    z-index: 1000;
    background: #fde134;
    background: -moz-linear-gradient(top, #fde134 0%, #cfb200 100%);
    background: -webkit-linear-gradient(top, #fde134 0%, #cfb200 100%);
    background: linear-gradient(to bottom, #fde134 0%, #cfb200 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fde134', endColorstr='#cfb200', GradientType=0);
}
.down-header {
    margin-top: 50px;
    width: 100%;
}
.fixedmenu {
    top: 0;
    left: 0;
    right: 0;
    position: fixed;
    margin: 0 !important;
    padding: 0;
    z-index: 1002;
    -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
    -webkit-animation-name: animationFade;
    -o-animation-name: animationFade;
    animation-name: animationFade;
    -webkit-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    transition: margin-top 0s;
}
.fixedmenu .top-header {
    display: none;
}
.fixedmenu .down-header {
    margin-top: 0;
}

/* Header top */
.top-header {
    font-size: 13px;
    z-index: 21;
    height: 50px;
    line-height: 50px;
    width: 100%;
    position: absolute;
    top: 0;
    transition: ease-in-out 0.3s;
    -webkit-transition: ease-in-out 0.3s;
    -moz-transition: ease-in-out 0.3s;
    -o-transition: ease-in-out 0.3s;
    background: #f0f0f0;
}
.lang a {
    padding: 16px 10px;
    font-weight: 500;
    background: #ddd;
}
.login a {
    padding: 16px 18px;
    font-weight: 500;
    text-transform: uppercase;
    background: #ddd;
}
.login a i {
    margin-right: 5px;
}
.lang a:hover,
.login a:hover {
    background: #fff;
}
.up-right {
    display: flex;
}
.up-right .navbar-nav-top {
    display: flex;
}
.top-item .top-link {
    padding: 16px 20px;
}
.top-item .top-link:hover,
.top-item .top-link.active {
    background: #fff;
}
.rotate-180 {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}

@-webkit-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-o-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}

@keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}

.navbar-brand {
    margin: 5px 0;
    padding: 0;
    width: 150px;
    position: relative;
}
.navbar-brand.center-brand {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0;
    z-index: 1;
}
.center-brand+.navbar-collapse {
    margin: 3px 0;
}
.navbar-brand>img {
    width: 100%;
}
.navbar.fixedmenu .logo-default,
.navbar .logo-scrolled {
    display: none;
}
.navbar.fixedmenu .logo-scrolled,
.navbar .logo-default {
    display: inline-block;
}
.navbar-nav .nav-item {
    position: relative;
}
.navbar.sidebar-nav .navbar-nav .nav-item {
    margin: 10px 0;
}
.navbar-nav .nav-item:first-child {
    margin-left: 0;
}
.navbar-nav .nav-item:last-child {
    margin-right: 0;
}
.navbar-nav .nav-link {
    padding: 30px 20px !important;
    /*margin: 16px 20px;*/
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    color: #020202;
    position: relative;
    line-height: normal;
    display: inline-block;
}
.nav-item.dropdown:hover {
    cursor: pointer;
}
.text-warning-hvr:hover,
.text-warning-hvr:focus {
    color: #ffc107;
}
.navbar-nav .nav-link.dropdown-toggle::before {
    display: none;
}
.navbar-nav .nav-link {
    color: #020202;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .dropdown:hover,
.navbar-nav .nav-link.active {
    background: #fde134;
}
.whitecolor .navbar-nav .nav-link {
    color: #fff;
}
.fixedmenu .navbar-nav .nav-link {
    padding: 20px 20px !important;
}

/*DropDowns*/
.collapse {
    position: relative;
}
.sideNavPages {
    /*border-left: 1px solid #ffffff66;*/
    /*margin-top: 4px;*/
}
.sideNavPagesInner {
    margin-left: 30px;
}
.sideNavPagesInner .nav-link {
    font-size: 1.2rem !important;
}

/*.collapsePagesSideMenu {*/
.collapsePagesSideMenu .fas {
    font-size: 12px;
    margin: auto 10px auto auto;
    position: absolute;
    right: -30px;
    top: 12px;
}
.sideNavPages .nav-item {
    display: block;
    margin: 5px 0;
}
.sideNavPages .nav-link {
    font-size: 16px !important;
    margin-left: 10px !important;
}
.static.dropdown {
    position: static;
}
.dropdown-toggle::after {
    content: "\f107";
    border: none;
    vertical-align: baseline;
    width: auto;
    height: auto;
    line-height: 1;
    margin-left: 5px;
}
.megamenu {
    /*padding: 20px 0;*/
    width: 100%;
}
.navbar-nav .dropdown-menu {
    z-index: 5;
    background: #fde134;
    border: none;
    border-radius: 0;
    border-top: 1px solid #fde134;
    padding: 10px 0;
    -webkit-box-shadow: 0 13px 25px -12px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 13px 25px -12px rgba(0, 0, 0, 0.25);
    box-shadow: 0 13px 25px -12px rgba(0, 0, 0, 0.25);
    left: 0;
    top: auto;
    margin-top: 0px;
    cursor: default;
}
.fixedmenu .navbar-nav .dropdown-menu {
    margin-top: 0;
}
.menu-top .navbar-nav .dropdown-menu {
    -webkit-box-shadow: 0 0 25px -10px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 0 25px -10px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 25px -10px rgba(0, 0, 0, 0.25);
    bottom: 68px;
}
.dropdown-menu.right-show {
    left: auto !important;
    right: 0 !important;
}
.dropdown-menu .dropdown-item {
    background: transparent;
    font-weight: 500;
    font-size: 14px;
    padding: 0 0 0 1.4rem;
    line-height: 40px;
    position: relative;
    overflow: hidden;
}
a.dropdown-toggle::after {
    transition: all 0s;
}
.dropdown-menu .dropdown-item,
.dropdown-menu .dropdown-title {
    color: #020202;
}
.dropdown-item:hover {
    background: #ebd12e;
}
.navbar .dropdown .dropdown-toggle::after {
    transition: 0.3s ease-in all !important;
}
.navbar .dropdown:hover .dropdown-toggle::after {
    transform: scaleY(-1);
}
.dropdown-menu .dropdown-title {
    margin: 1.5rem 0 0.5rem 1rem;
    font-size: 19px;
}
.hover-light:hover {
    color: #fff !important;
}
.hover-underline:hover span {
    text-decoration: underline;
}
.text-underline {
    text-decoration: underline !important;
}

@media screen and (min-width: 992px) {
    .navbar-nav .dropdown {
        position: static;
    }
    .navbar .dropdown-menu {
        display: block;
        opacity: 0.4;
        visibility: hidden;
        min-width: 260px;
        transform: scale(1, 0);
        transform-origin: 0 0;
    }
    .navbar.menu-top .dropdown-menu {
        transform-origin: 100% 100%;
    }
    .dropright .dropdown-menu {
        display: block;
        opacity: 0.4;
        visibility: hidden;
        transform: scale(0, 1);
        transform-origin: 0 0;
    }
    .navbar-nav .dropdown:hover>.dropdown-menu,
    .dropright:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}


/*-----Side Menu----*/

/*side open btn*/
.sidemenu_btn {
    width: 46px;
    right: 15px;
    padding: 21px 10px 20px;
    margin-top: 0;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
.sidemenu_btn,
.side-menu .btn-close,
.side-menu .btn-close::before,
.side-menu .btn-close::after,
.side-intra .btn-close,
.side-intra .btn-close::before,
.side-intra .btn-close::after {
    position: absolute;
}
#close_side_menu,
#close_side_intra {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: none;
    z-index: 1031;
    opacity: 0.5;
    cursor: pointer;
}
.sidemenu_btn>span {
    height: 2px;
    width: 100%;
    display: block;
}
.sidemenu_btn span {
    background: #020202 !important;
}
.sidemenu_btn:hover span {
    background: #020202 !important;
}
.transparent-bg .sidemenu_btn>span {
    background: #fff;
}
.fixedmenu .sidemenu_btn>span:not(.gradient-bg) {
    background: #002e5b !important;
}
.sidemenu_btn>span:nth-child(2) {
    margin: 4px 0;
}

/*side close btn*/
.side-menu .btn-close,
.side-intra .btn-close {
    height: 33px;
    width: 33px;
    display: inline-block;
    text-align: center;
    top: 15px;
    right: 20px;
    cursor: pointer;
}
.side-menu .btn-close.btn-close-no-padding {
    top: 24px;
}
.side-menu .btn-close::before,
.side-menu .btn-close::after,
.side-intra .btn-close::before,
.side-intra .btn-close::after {
    left: 16px;
    height: 24px;
    width: 2px;
    background: #020202;
    top: 5px;
}
.side-menu .btn-close:before,
.side-intra .btn-close:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.side-menu .btn-close:after,
.side-intra .btn-close:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.side-menu,
.side-intra {
    width: 40%;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1610;
    height: 100vh;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out, -o-transform .5s ease-in-out;
    -o-transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out, -o-transform .5s ease-in-out;
    -moz-transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out, -o-transform .5s ease-in-out;
    transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out, -o-transform .5s ease-in-out;
    overflow: hidden;
}
.side-menu:not(.gradient-bg),
.side-intra:not(.gradient-bg) {
    background: #dcc00f;
}
.side-menu.side-menu-active,
.side-intra.side-intra-active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.side-menu .navbar-brand {
    margin-top: -45px;
}
.side-menu .inner-wrapper,
.side-intra .inner-wrapper {
    padding: 4.5rem 4rem;
    height: 100%;
    position: relative;
    overflow-y: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.side-nav>.navbar-nav {
    display: flex;
    flex-direction: column !important;
}
.side-menu .side-nav,
.side-intra .side-nav {
    margin-bottom: 30px;
    display: block;
}
.side-nav .navbar-nav .nav-item {
    display: block;
    margin: 10px 0;
    padding: 0 !important;
    opacity: 0;
    -webkit-transition: all 0.8s ease 500ms;
    -o-transition: all 0.8s ease 500ms;
    transition: all 0.8s ease 500ms;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
}
.side-nav .navbar-nav .nav-item:first-child {
    -webkit-transition-delay: .1s;
    -o-transition-delay: .1s;
    transition-delay: .1s;
}
.side-nav .navbar-nav .nav-item:nth-child(2) {
    -webkit-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s;
}
.side-nav .navbar-nav .nav-item:nth-child(3) {
    -webkit-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s;
}
.side-nav .navbar-nav .nav-item:nth-child(4) {
    -webkit-transition-delay: .4s;
    -o-transition-delay: .4s;
    transition-delay: .4s;
}
.side-nav .navbar-nav .nav-item:nth-child(5) {
    -webkit-transition-delay: .5s;
    -o-transition-delay: .5s;
    transition-delay: .5s;
}
.side-nav .navbar-nav .nav-item:nth-child(6) {
    -webkit-transition-delay: .6s;
    -o-transition-delay: .6s;
    transition-delay: .6s;
}
.side-nav .navbar-nav .nav-item:nth-child(7) {
    -webkit-transition-delay: .7s;
    -o-transition-delay: .7s;
    transition-delay: .7s;
}
.side-nav .navbar-nav .nav-item:nth-child(8) {
    -webkit-transition-delay: .8s;
    -o-transition-delay: .8s;
    transition-delay: .8s;
}
.side-nav .navbar-nav .nav-item:nth-child(9) {
    -webkit-transition-delay: .9s;
    -o-transition-delay: .9s;
    transition-delay: .9s;
}
.side-menu.side-menu-active .side-nav .navbar-nav .nav-item,
.side-intra.side-intra-active .side-nav .navbar-nav .nav-item {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}
.side-nav .navbar-nav .nav-link {
    display: inline-table;
    color: #020202 !important;
    padding: 5px 0 !important;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}
.side-nav .navbar-nav .nav-link:hover,
.side-nav .navbar-nav .nav-link:focus,
.side-nav .navbar-nav .dropdown:hover {
    background: transparent;
}
.side-nav .navbar-nav .nav-link::before,
.breadcrumb .breadcrumb-item a::before {
    content: '';
    position: absolute;
    background: #020202;
    display: inline-block;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
    -o-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
    transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
}
.breadcrumb .breadcrumb-item a::before {
    background-color: #ffffff;
}
.breadcrumb .breadcrumb-item a::before {
    bottom: -5px;
}
.side-nav .navbar-nav .nav-link:hover::before,
.breadcrumb .breadcrumb-item a:hover::before {
    width: 100%;
}
.transparent-sidemenu .side-nav .navbar-nav .nav-link::before {
    display: none;
}
.side-nav .navbar-nav .nav-link.active::before {
    width: 100%;
}
.transparent-sidemenu .side-nav .navbar-nav .nav-link:hover {
    margin-left: 5px;
}
.side-menu p,
.side-intra p {
    font-size: 13px;
    margin-top: .5rem;
    margin-bottom: 0;
}

/* Right boxes */
.stick {
    position: sticky;
    top: 80px;
}
.right-holder {
    background-color: #eee;
    padding: 25px;
    margin-bottom: 50px;
}
.right-holder h3 {
    color: #8e7b03;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.right-item {
    margin-bottom: 30px;
}
.right-item a {
    color: #020202;
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 15px;
    display: block;
}
.right-item a span {
    font-size: 13px;
    font-style: italic;
    display: block;
}
.right-item a:hover,
.right-item a:focus {
    color: #8e7b03;
}
.right-data p:last-of-type, .right-data .right-item {
    margin-bottom: 0;
}

/* Breadcrumbs */
.breadcrumb {
    background: transparent;
    padding: 0;
}
.breadcrumb .breadcrumb-item {
    font-size: 14px;
    position: relative;
}
.breadcrumb-item+.breadcrumb-item::before {
    color: inherit;
}

/* Content */
.content a {
    color: #b09700;
}
.content a:hover, .content a:focus {
    color: #666;
    text-decoration: underline;
}
.content ul {
    margin-left: 20px;
    margin-bottom: 30px;
} .content ul ul {
    margin-bottom: 0;
}
.content ul li {
    list-style: disc;
    line-height: 1.7;
}
.text-holder {
    margin-bottom: 50px;
}
.text-grey-holder {
    background-color: #eee;
    padding: 25px;
    margin-bottom: 50px;
}
.text-holder p:last-child, .text-grey-holder p:last-child, .text-grey-holder ul {
    margin-bottom: 0;
}
.video-holder {
    margin-bottom: 50px;
}
.button-holder {
    margin: 20px 0 50px;
}
.button.btnprimary.ab {
    padding: 12px 30px;
}
.button.btnprimary.ab::before {
    content: "\f053";
    font-family: "Font Awesome 5 Free", serif;
    font-size: 14px;
    font-weight: 900;
    border: none;
    padding-right: 10px;
}

/* News */
.news-nav-holder {
    height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news-nav a {
    background: #eee;
    padding: 3px 10px;
    font-size: 13px;
    text-transform: uppercase;
}
.news-nav a span, .news-nav a i {
    padding: 0 3px;
}
.news-nav a:hover, .news-nav a:focus {
    background: #ebd12e;
}
h1.news {
    margin-bottom: 5px;
}
.news-date {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 50px;
}
.news-image {
    margin-bottom: 50px;
}
.list-item {
    margin-bottom: 50px;
}
a.list-image {
    margin-bottom: 10px;
    display: block;
}
a.list-image img {
    filter: grayscale(0%);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
a.list-image:hover img {
    filter: grayscale(100%);
}
.list-title {
    font-size: 20px;
}
.list-date {
    font-size: 14px;
    font-style: italic;
}

/* Login + Intranet */
.login-text {
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}
#loginForm .form-control {
    border: none;
}
.login-icon {
    display: none;
}
.logout-icon {

}


/* Faq Accordions */
#accordion .card {
    margin-bottom: 15px;
}
#accordion .card:last-child {
    margin-bottom: 0;
}
.card-header {
    padding: 0;
    background-color: transparent;
    border-bottom: none;
}
.card-header .card-link {
    display: block;
    padding: .75rem 1.25rem;
    background: #fff;
    border: none;
    font-size: 1.125rem;
    color: #002e5b;
}
.card-header .card-link:before {
    content: "\f107";
    float: right;
}
.card-header .card-link.collapsed:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}
.card-body {
    border-top: 1px solid rgba(0, 0, 0, .1);
    padding-top: 1.85rem;
    padding-bottom: 1.35rem;
}
.card-body p:last-child {
    margin-bottom: 0;
}


/* Gallery */
.gallery {
    margin-bottom: 20px;
}
a.gallery-item {
    margin-bottom: 30px;
    display: block;
}
a.gallery-item img {
    filter: grayscale(0%);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
a.gallery-item:hover img {
    filter: grayscale(100%);
}


/* contact */
textarea {
    min-height: 160px;
    resize: none;
}

textarea#FreeConsultation1 {
    min-height: 200px;
}

button {
    border: none;
    cursor: pointer;
}

/* checkbox */
.form-control {
    border-radius: 0;
}
.form-check {
    padding-left: 0;
}
.checkbox-lable {
    color: #707070;
    display: inline-block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    line-height: 25px;
    font-weight: 400;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.checkbox-lable input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border: 1px solid #ced4da;
}
.checkbox-lable:hover input~.checkmark {
    background-color: #ced4da;
}
.checkbox-lable input:checked~.checkmark {
    background-color: #ebd12e;
    border: 1px solid #ebd12e;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.checkbox-lable input:checked~.checkmark:after {
    display: block;
}
.checkbox-lable .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


/*radio buttons*/
.form-group .radio {
    padding-left: 25px;
}
.radio+.radio {
    margin-top: 0;
}
.radio label {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-left: 15px;
    font-weight: 400;
    margin-bottom: 15px;
}
.radio:last-of-type label {
    margin-bottom: 0;
}
.radio label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 25px;
    height: 25px;
    left: 0;
    top: 0;
    margin-left: -25px;
    border: 1px solid #ced4da;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out;
    transition: border 0.15s ease-in-out;
}
.radio label::after {
    display: inline-block;
    position: absolute;
    content: " ";
    width: 25px;
    height: 25px;
    left: -25px;
    top: 0px;
    margin-left: 0px;
    border: 1px solid #ebd12e;
    border-radius: 50%;
    background-color: #ebd12e;
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}
.radio input[type="radio"] {
    opacity: 0;
    display: none;
    z-index: 1;
}
.radio input[type="radio"]:checked+label::after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}
.radio input[type="radio"]:disabled+label {
    opacity: 0.65;
}
.radio input[type="radio"]:disabled+label::before {
    cursor: not-allowed;
}
.radio.radio-inline {
    margin-top: 0;
}
input[type="radio"].styled:checked+label:after {
    font-family: 'FontAwesome';
    content: "\f00c";
}
input[type="radio"] .styled:checked+label::before {
    color: #fff;
}
input[type="radio"] .styled:checked+label::after {
    color: #fff;
}


/* Form general- */
::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder,
:-moz-placeholder,
.form-control:-moz-placeholder,
::-moz-placeholder,
.form-control::-moz-placeholder,
:-ms-input-placeholder,
.form-control:-ms-input-placeholder {
    color: #b6b8ba;
}
textarea::-webkit-input-placeholder,
textarea:-moz-placeholder,
textarea::-moz-placeholder,
textarea:-ms-input-placeholder {
    color: #b6b8ba;
    opacity: 1;
}
.contact-table .cells {
    vertical-align: middle;
}
.contact-table .icon-cell {
    color: #002e5b;
    text-align: center;
    font-size: 18px;
    margin-right: 10px;
}
#map-container,
#map-container>iframe {
    width: 100%;
}
#map-container>iframe {
    border: none;
    height: 100%;
}
span.icon-contact {
    font-size: 30px;
    margin-bottom: 20px;
    line-height: 1;
}
.noshadow .widget {
    box-shadow: none !important;
}

/* ----- Our Blog ----- */
.news_item {
    background: #fff;
}
.news_item.shadow {
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
}
.shadow-equal {
    -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
}
.news_item .news_desc {
    padding: 40px 30px;
    transition: 0.3s all;
}
#our-blog .cbp-item:hover img {
    transform: scale(1.15);
}
.news_item:hover .image img {
    transform: scale(1.05);
}
.news_item:hover .news_desc_bg_blue {
    background-color: #002E5B;
    color: #fff;
}
.news_item:hover .news_desc_bg_blue a {
    color: #fff;
}
.news_item,
.eny_profile,
blockquote.blockquote,
.widget_search .input-group-addon,
.eny_profile .profile_text {
    position: relative;
}
.meta-tags li,
.meta-tags li a,
blockquote.blockquote::before,
ul.rounded li::before,
.webtags li,
.webcats li a::before,
.webcats li a>span {
    display: inline-block;
}
.single_post span,
.webcats li,
.webcats li a,
.webtags li a,
.btn_reply {
    display: block;
}
.meta-tags>li+li {
    margin-left: 10px;
}
.meta-tags li a {
    color: #a5a5a5;
    font-size: 12px;
    font-weight: 600;
}
.meta-tags li a>i {
    font-size: 17px;
    margin-right: 5px;
}
.meta-tags li a>i,
.meta-tags>li+li::before,
.webcats li a::before,
ul.rounded li::before {
    vertical-align: text-bottom;
}
.single_post .text {
    vertical-align: middle;
}
.news_item:hover h3 a,
.meta-tags li a:hover,
.meta-tags li a:focus {
    color: #fde428 !important;
}

/* ------- 404 ------ */
#error .error {
    position: relative;
}
#error .error h1 {
    position: relative;
    color: #ebebeb;
    font-size: 12rem;
    margin-top: 2.85rem;
}
#error .error h2 {
    font-size: 2rem;
    left: 50%;
    top: 50%;
    position: absolute;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    animation: moveUpDown404 1s infinite linear;
}

@keyframes moveUpDown404 {
    0% {
        transform: translate(-50%, -50%);
    }

    25% {
        transform: translate(-50%, -60%);
    }

    50% {
        transform: translate(-50%, -50%);
    }

    75% {
        transform: translate(-50%, -40%);
    }

    100% {
        transform: translate(-50%, -50%);
    }
}

/*Pagination*/
.pagination li>a {
    height: 36px;
    width: 36px;
    padding: 0;
    line-height: 36px;
    font-size: 18px;
    color: #a5a5a5;
    text-align: center;
    margin: 0 4px;
    border: none;
}
.pagination li>a:hover,
.pagination li>a:focus,
.pagination li.active>a {
    background: #fde428 !important;
    color: #fff;
    border: 0;
}
.pagination li>a.disabled {
    pointer-events: none;
}
.pagination li>a,
.pagination li:first-child a,
.pagination li:last-child a,
ul.rounded li::before,
.webcats li a::before,
.eny_profile .profile_photo>img,
.single_post .post>img {
    -webkit-border-radius: 50% !important;
    border-radius: 50% !important;
}
blockquote.blockquote {
    font-style: italic;
}
blockquote.blockquote::before {
    content: "\f10d";
    width: 40px;
    font-size: 28px;
    margin-right: 5px;
    color: #a1a1a1;
}
ul.rounded>li+li {
    margin-top: 20px;
}
.rounded li {
    padding-left: 20px;
}
ul.rounded li::before {
    height: 10px;
    width: 10px;
    background: #fde428;
    margin-right: 10px;
    margin-left: -20px;
}


/* Footer */
footer {

    background: #eeeeee;
    background: -moz-linear-gradient(top, #eeeeee 0%, #cccccc 100%);
    background: -webkit-linear-gradient(top, #eeeeee 0%, #cccccc 100%);
    background: linear-gradient(to bottom, #eeeeee 0%, #cccccc 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#cccccc', GradientType=0);
}
.footer-up {
    padding: 50px 0 30px;
    border-bottom: 1px solid #bbb;
}
.footer-down {
    padding: 30px 0;
}
.footer-down ul {
    display: flex;
    font-size: 13px;
}
.footer-down ul li {
    margin-right: 15px;
}
.footer-down ul li:after {
    content: "|";
    margin-left: 15px;
}
.footer-down ul li:last-of-type:after {
    content: "";
    margin-left: 0;
}
.footer-down ul li a {
    color: #222;
}
.footer-down ul li a:hover,
.footer-down ul li a:focus {
    color: #8e7b03;
}
.footer-up img {
    display: inline-block;
}
.footer-col.footer-logo {
    margin-top: 40px;
}
.footer-up h3 {
    margin-bottom: 20px;
}
footer p {
    font-size: 13px;
    margin: 0;
}

ul.links li a:hover,
ul.links li a:focus {
    color: #fde428;
}

/* Back To Top */
.back-top {
    right: 20px;
    font-size: 16px;
    position: fixed;
    z-index: 1600;
    opacity: 0;
    visibility: hidden;
    bottom: 20px;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #444;
    color: #fff;
    overflow: hidden;
}
.back-top-visible {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}
.back-top:hover,
.back-top:focus {
    background-color: #8e7b03;
    color: #fff;
}
.back-top:hover i {
    animation: moveUp 0.4s;
}

@keyframes moveUp {
    0% {
        transform: translateY(0);
    }

    49% {
        transform: translateY(-100%);
    }

    50% {
        opacity: 0;
    }

    51% {
        opacity: 1;
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}


/* scroll bar */
::-webkit-scrollbar-track {
    background-color: #515251
}
::-webkit-scrollbar {
    width: 7px;
    background-color: #fde428;
}
::-webkit-scrollbar-thumb {
    background: #fde428;
}
::-webkit-scrollbar-thumb:hover {
    box-shadow: inset 0 0 100px 20px #fde428;
}