/* Above header ****************************************/
.site-nav-above {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.nav-above-inner {
    line-height: 0;
    display: flex;
    align-items: center;
    padding: 4px 0 4px 10px;
}

.nav-above-right {
    padding: 8px 0 8px 10px;
}

.header-contact-data {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.nav-above-inner a:hover .header-contact-data {
    color: #ff5e14;
}

.nav-above-inner span {
    margin-right: 5px;
}

.nav-above-inner a i {
    font-size: 16px;
    padding: 0 10px;
}


.nav-above-inner .nav-above-inner-link {
    padding: 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-above-inner .nav-above-inner-link span {
    color: #00235a;
}

.nav-above-inner-contact a i {
    padding: 0;
    margin-right: 5px;
    font-size: 24px;
}

.nav-above-inner-contact a {
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-above-inner .header-contact-data {
    font-size: 14px;
}

/* Site logo ****************************************/
.site-nav-logo {
    width: 25%;
}

.main-logo {
    position: relative;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-logo img {
    max-width: 100%;
    max-height: 78px;
    width: 100%;
    height: 100%;
    padding: 0 10px;
}

.site-nav-logo-centered {
    text-align: center;
}

.site-nav-logo-centered .main-logo {
    max-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-nav-logo-centered .main-logo img {
    height: 100%;
}

/* Site nav ****************************************/
.site-nav-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
    background: #fff;
    -webkit-box-shadow: 0 3px 12px 1px rgb(0 0 0 / 5%);
    box-shadow: 0 3px 12px 1px rgb(0 0 0 / 5%);
}

#sticky-wrapper {
    z-index: 78;
}

.site-nav-menu {
    width: 100%;
    height: 100%;
}

.nav-menu-inner {
    height: 100%;
}

.nav-menu-list {
    list-style: none;
    margin: 0;
    display: flex;
    justify-content: center;
    height: 100%;
}

.nav-menu-list li {
    display: flex;
    text-align: center;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.nav-menu-list li a {
    font-size: 18px;
    font-weight: 500;
    height: 78px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.nav-menu-list li:hover a,
.nav-menu-list li:hover {
    background: #ff5e14;
    color: #FFF;
}

.nav-menu-list li a:hover {
    color: #FFF;
}

.nav-menu-list li .sub-menu li {
    list-style: none;
    text-align: left;
}

.nav-menu-list li .sub-menu li:last-child {
    border: none;
}

.nav-menu-list li .sub-menu li a {
    color: #00235a;
    text-transform: none;
    justify-content: flex-start;
    padding: 5px 20px 5px 15px;
    position: relative;
    left: 0;
    display: inline-flex;
    border: none;
    box-shadow: none;
    min-width: 170px;
    height: auto;
    background: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.nav-menu-list li .sub-menu li:hover {
    background: transparent;
}

.nav-menu-list li .sub-menu li a:hover {
    left: 5px;

}

.nav-menu-list li .sub-menu li a:hover:before {
    width: 100%;
}


.nav-menu-list li.menu-item-has-children > a {
    padding: 0 25px 0 20px;
}

.nav-menu-list li.menu-item-has-children:after {
    content: '\e5cf';
    font-family: "Material Icons";
    font-weight: 600;
    position: absolute;
    bottom: 25px;
    right: 3px;
    transform: translateX(-50%);
    color: #00235a;
    font-size: 12px;
    pointer-events: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.nav-menu-list li.menu-item-has-children:hover:after {
    color: #FFF;
}

.nav-menu-list li.menu-item-has-children ul li.menu-item-has-children:after,
.nav-menu-list li.menu-item-has-children ul li.menu-item-has-children ul li.menu-item-has-children:after {
    content: '\e5cc';
    font-family: "Material Icons";
    font-weight: 600;
    position: absolute;
    top: 5px;
    right: -5px;
    color: #00235a;
    font-size: 14px;
    pointer-events: none;
}

.nav-menu-list li.menu-item-has-children ul li.menu-item-has-children ul li.menu-item-has-children ul li.menu-item-has-children:after {
    content: none;
}

.nav-menu-list li ul.sub-menu {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translate3d(0, 0.75rem, 0);
    -moz-transform: translate3d(0, 0.75rem, 0);
    -ms-transform: translate3d(0, 0.75rem, 0);
    -o-transform: translate3d(0, 0.75rem, 0);
    transform: translate3d(0, 0.75rem, 0);
    position: absolute;
    overflow: hidden;
    background: #FFF;
    padding: 15px 5px;
    top: 100%;
    left: 0;
    z-index: 30;
    pointer-events: none;
    -webkit-transition: all 0.3s cubic-bezier(0, 0.5, 0.5, 1);
    -moz-transition: all 0.3s cubic-bezier(0, 0.5, 0.5, 1);
    -ms-transition: all 0.3s cubic-bezier(0, 0.5, 0.5, 1);
    -o-transition: all 0.3s cubic-bezier(0, 0.5, 0.5, 1);
    transition: all 0.3s cubic-bezier(0, 0.5, 0.5, 1);
}

.nav-menu-list li:hover ul.sub-menu {
    visibility: visible;
    opacity: 1;
    top: 100%;
    overflow: unset;
    pointer-events: auto;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.08);
}

.nav-menu-list li ul.sub-menu li ul.sub-menu,
.nav-menu-list li ul.sub-menu li ul.sub-menu li ul.sub-menu {
    left: 100%;
    top: -5px;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translate3d(0.75rem, 0, 0);
    -moz-transform: translate3d(0.75rem, 0, 0);
    -ms-transform: translate3d(0.75rem, 0, 0);
    -o-transform: translate3d(0.75rem, 0, 0);
    transform: translate3d(0.75rem, 0, 0);
}

.nav-menu-list li ul.sub-menu li:hover ul.sub-menu,
.nav-menu-list li ul.sub-menu li ul.sub-menu li:hover ul.sub-menu {
    visibility: visible;
    opacity: 1;
    left: 100%;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: all 0.3s cubic-bezier(0, 0.5, 0.5, 1);
    -moz-transition: all 0.3s cubic-bezier(0, 0.5, 0.5, 1);
    -ms-transition: all 0.3s cubic-bezier(0, 0.5, 0.5, 1);
    -o-transition: all 0.3s cubic-bezier(0, 0.5, 0.5, 1);
    transition: all 0.3s cubic-bezier(0, 0.5, 0.5, 1);
}

.nav-menu-list li ul.sub-menu li ul.sub-menu li ul.sub-menu li ul.sub-menu {
    display: none;
}

.site-nav-options {
    width: 25%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: right;
    margin: 0 0 0 10px;
}

/* Site Nav Mobile  ********************/
.header-nav-burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    background: #ff5e14;
    border-left: 1px solid #e8e8e8;
    cursor: pointer;
}

.header-nav-burger-inner {
    width: 20px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header-nav-burger:hover .burger-line-top,
.header-nav-burger:hover .burger-line-bottom {
    width: 100%;
}

.nav-burger-panel {
    background: #FFF;
    position: fixed;
    right: -450px;
    top: 0;
    max-width: 400px;
    width: 100%;
    height: 100%;
    z-index: 92;
    padding: 90px 60px 60px;
    visibility: hidden;
    overflow: auto;
    -webkit-backface-visibility: hidden;
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1);
    -o-transition: all .6s cubic-bezier(.77, 0, .175, 1);
    transition: all .6s cubic-bezier(.77, 0, .175, 1);
}

.nav-burger-panel.burger-panel-open {
    right: 0;
    visibility: visible;
    background: #fff;
}

/* Mobile Burger Menu  ********************/
.nav-burger-menu-list {
    padding: 0;
}

.nav-burger-menu-list li {
    list-style: none;
    position: relative;
}

.nav-burger-menu-list li a {
    font-size: 20px;
    color: #00235a;
    padding: 5px;
    margin: 0 10px;
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.nav-burger-menu-list ul.sub-menu,
.nav-burger-menu-list ul.sub-menu li ul.sub-menu {
    background: transparent;
    padding: 0;
    margin: 0 0 0 20px;
    display: none;
    border-left: 1px solid #ff5e14;
}

.nav-burger-menu-list li .sub-menu li a {
    font-size: 17px;
    font-weight: 400;
}

.nav-burger-menu-list li.menu-item-has-children i {
    position: absolute;
    top: 3px;
    right: 6px;
    color: #ff5e14;
    font-size: 30px;
    padding: 0 6px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.nav-burger-menu-list li.menu-item-has-children i.rotate-icon {
    transform: rotate(180deg);
}


/* Header Search  ********************/
.site-nav-search {
    height: 78px;
    position: relative;
}

.site-nav-search a {
    width: 78px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.site-nav-search a:hover {
    background: #ff5e14;
    color: #FFF;
}

.site-search-wrapper {
    position: absolute;
    right: 0;
    z-index: 60;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-box-shadow: -1px 1px 10px 0 rgb(38 59 98 / 10%);
    box-shadow: -1px 1px 10px 0 rgb(38 59 98 / 10%);
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    opacity: 0;
    pointer-events: none;
}

.site-search-wrapper.show-search {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.site-search-wrapper form {
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-inner-input input {
    border-top: 1px solid #e8e8e8;
    border-left: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    border-right: none;
    padding: 21px 80px 21px 15px;
    color: #00235a;
}


#searchsubmit {
    width: 78px;
    height: 70px;
    position: absolute;
    top: 0;
    right: 0;
    background: #ff5e14;
    border-left: 1px solid #e8e8e8;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#searchsubmit span {
    color: #FFF;
}

/* Search Page ****************************************/
.page-template-search {
    padding: 0 0 30px;
}

.search-page-form {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.search-page-form .search-inner-input {
    width: 50%;
}

.search-page-form .search-inner-input .search-field {
    width: 100%;
}

.search-page-form .search-inner-input input {
    padding: 21px 20px 21px 15px;
}

#searchsubmit.search-page-btn {
    position: relative;
}


/* Slider ****************************************/
.slider-area {
    height: 800px;
    position: relative;
}

.slider-wrapper,
.owl-stage-outer,
.owl-stage,
.owl-item,
.single-slide {
    height: 100%;
}

.single-slide .image-holder {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    position: relative;
    left: -1px;
}

.slide-one .image-holder {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.18)), url('../img/slider/slider-image-1.jpg');
}

.slide-two .image-holder {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.18)), url('../img/slider/slider-image-2.jpg');
}

.slide-three .image-holder {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.18)), url('../img/slider/slider-image-3.jpg');
}

.slide-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
}

.text-content {
    max-width: 600px;
}

.text-content span,
.text-content h1 {
    color: #FFF;
}

.text-content h1.slide-hero {
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin: 0;
}

.text-content span.after-hero {
    font-size: 1.111rem;
    letter-spacing: 0;
    font-weight: 400;
}

.slider-area .owl-nav {
    position: absolute;
    bottom: 0;
    left: 0;
}

.atom-owl-navigation {
    position: absolute;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
}

.atom-owl-prev span,
.atom-owl-next span {
    padding: 20px;
    cursor: pointer;
}

.atom-owl-prev span {
    background: #fff;
}

.atom-owl-next span {
    background: #ff5e14;
    color: #FFF;
}

.atom-owl-navigation .atom-owl-arrow:hover span {
    background: #ff5e14;
    color: #FFF;
}

.atom-owl-navigation .atom-owl-arrow.atom-owl-prev:hover + .atom-owl-next span {
    background: #fff;
    color: #222222;
}

.slide-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    width: 100%;
}

.slide-controls-inner:after {
    content: '';
    background-image: url(../img/wide-image-with-text-box/background-pattern.png);
    background-repeat: repeat;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.06;
    pointer-events: none;
}

#customDots .owl-dot {
    background: #fff;
    color: #FFF;
    border: none;
    outline: none;
    padding: 3px;
    margin: 26px 6px;
    width: 8px;
    height: 8px;
    line-height: 20px;
    display: inline-block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#customDots .owl-dot:hover {
    padding: 6px;
}

#customDots .owl-dot.active {
    padding: 6px;
}

/* Four boxes small ****************************************/

.fbs-box a {
    border: 1px solid #e8e8e8;
    border-bottom: 4px solid #ff5e14;
    padding: 30px;
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.fbs-box-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fbs-box-image-src {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    opacity: 0.4;
    z-index: -1;
}

.fbs-box-inner {
    position: relative;
    z-index: 10;
}

.fbs-box-inner-subtitle {
    height: 27px;
}

.fbs-box-inner-subtitle span {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.fbs-box-inner-title h4 {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    margin: 0;
}

.fbs-box-inner-icon {
    position: relative;
    z-index: 10;
    margin: 50px 0 0;
}

.fbs-box-inner-icon span {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding: 15px;
    font-size: 20px;
}


.fbs-box a:hover {
    border-color: #00235a;
    background: #00235a;
    -webkit-box-shadow: -32px 32px 75px 0 rgba(122, 131, 153, 0.6);
    box-shadow: -32px 32px 75px 0 rgba(122, 131, 153, 0.6);
}

.fbs-box a:hover .fbs-box-inner-subtitle span {
    color: #FFF;
}

.fbs-box a:hover .fbs-box-inner-title h4 {
    color: #FFF;
}

.fbs-box a:hover .fbs-box-inner-icon span {
    background: #ff5e14;
    color: #FFF;
}

/* About Index Section ****************************************/
.section-line-background {
    position: relative;
}

.section-line-background:after {
    content: '';
    background-image: url(../img/wide-image-with-text-box/background-pattern.png);
    background-repeat: repeat;
    position: absolute;
    top: -35px;
    right: 0;
    width: 160%;
    height: 115%;
    z-index: -1;
    opacity: 0.06;
}

.about-index-section {
    padding: 40px 0;
}

.about-index-section-inner,
.about-index-section-inner-image {
    height: 100%;
    overflow: hidden;
}

.about-index-image-src {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
    height: 100%;
}

.about-index-section-inner-content {
    padding: 40px;
}

/* Carousel Index Section ****************************************/
.carousel-index-section {
    padding: 90px 0 0;
}

.carousel-index {
    overflow: hidden;
}

.carousel-image-src {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 300px;
}

.carousel-index-content {
    display: flex;
    padding: 40px 0 0;
}

.carousel-item-content {
    padding: 20px 30px 20px 0;
}

.carousel-item-title h4 {
    margin: 0;
}

.carousel-item-text {
    padding: 20px 0;
}

.carousel-item-text p {
    margin: 0;
}

.carousel-item-btn {
    display: flex;
    align-items: center;
}

.carousel-item-btn .item-btn-text {
    margin-right: 10px;
}

.carousel-item-btn span.material-icons {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding: 15px;
    font-size: 20px;
}

.carousel-index-navigation {
    padding: 80px 0 0 320px;
}

.carousel-index-item {
    padding: 0 0 20px;
}

.carousel-index-prev,
.carousel-index-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 15px 20px;
    margin: 0 0 15px 0;
}

.carousel-index-prev span,
.carousel-index-next span {
    padding: 0 5px;
}

.carousel-index-prev span.material-icons {
    transform: rotate(180deg);
}

.carousel-index-item:hover .carousel-item-btn span.material-icons {
    background: #ff5e14;
    color: #FFF;
    -webkit-box-shadow: 0 10px 20px 0 rgb(36 36 36 / 50%);
    box-shadow: 0 10px 20px 0 rgb(36 36 36 / 50%);
}

/* Six Box Chess Index Section ****************************************/
.six-box-chess-section.section-spacing {
    margin: 0 0 30px;
}

.six-box-chess-wrapper {
    padding: 30px 0 0;
}

.six-box-chess-content,
.sbc-inner-image {
    height: 100%;
}

.sbc-inner-image {
    margin-bottom: 30px;
}

.sbc-image-src {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
}

.six-box-chess-content {
    padding-bottom: 30px;
}

.sbc-link {
    display: block;
    height: 100%;
    padding: 60px 30px 40px;
    text-align: center;
    border: 1px solid #e8e8e8;
    border-bottom: 4px solid #ff5e14;
}

.sbc-icon {
    margin-bottom: 15px;
}

.sbc-icon i {
    font-size: 128px;
    position: relative;
    top: 0;
    color: #ff5e14;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sbc-icon img {
    width: 128px;
    position: relative;
    top: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sbc-title h4 {
    margin: 0 0 15px 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sbc-link:hover .sbc-icon img,
.sbc-link:hover .sbc-icon i {
    top: -5px;
}

.sbc-link:hover .sbc-title h4 {
    color: #ff5e14;
}

/* Wide Image With Text Box Index Section ****************************************/

.wiwtb-wrapper {
    position: relative;
    padding: 100px 0;
}

.wiwtb-content {
    position: relative;
}

.wiwtb-wrapper:before {
    content: '';
    background-image: url(../img/wide-image-with-text-box/background-wide-image.jpg);
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    z-index: 1;
}

.wiwtb-wrapper:after {
    content: '';
    background-image: url(../img/wide-image-with-text-box/background-pattern.png);
    background-repeat: repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.06;
}

.wiwtb-inner {
    position: relative;
    z-index: 2;
}

.wiwtb-inner-content {
    padding: 50px 60px;
}

.wiwtb-inner-title h2 {
    margin: 0;
}

.wiwtb-inner-description {
    padding: 15px 0;
}

.wiwtb-inner-description p {
    margin: 0;
}


/* Statistic Counter Index Section ****************************************/
.statistic-counter-section {
    padding: 50px 0 100px;
}

.sc-box {
    display: flex;
    align-items: center;
}

.sc-box-number {
    position: relative;
}

.sc-box-number-inner span {
    font-size: 60px;
    color: #00235a;
    display: block;
    padding: 11px 15px 0;
}

.sc-box-number-background {
    position: absolute;
    z-index: -1;
    top: 10px;
    left: -40px;
}

.sc-box-title h3 {
    margin: 0;
}

/* Page Template ****************************************/
.page-template-wrapper {
    padding: 60px 0 30px;
}

.page-template-header {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
    background-color: #f8f8f8;
    -webkit-box-shadow: inset 0 3px 12px 1px rgb(0 0 0 / 5%);
    box-shadow: inset 0 3px 12px 1px rgb(0 0 0 / 5%);
}

.page-template-header h1 {
    font-size: 3.333rem;
    margin: 0;
    padding: 0 0 20px 0;
    text-transform: uppercase;
    font-weight: 600;
}

.page-template-header p {
    font-size: 20px;
    margin: 0;
}

.page-template-header-nobanner {
    display: none;
    padding: 10px;
    background: #f8f8f8;
    border-bottom: 1px solid #ddd;
    -webkit-box-shadow: 0px 3px 12px 1px rgb(0 0 0 / 8%);
    box-shadow: 0px 3px 12px 1px rgb(0 0 0 / 8%);
}

.page-template-header-nobanner-title h1 {
    font-size: 2.5rem;
    margin: 0;
    padding: 0;
    font-weight: 600;
}

.page-template-header-nobanner-title p {
    margin: 0;
    padding: 5px 0;
}

.category .page-template-header-nobanner-title p {
    padding: 5px 0 0;
}

.page-template-header-box {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    pointer-events: none;
}

.page-template-header:after {
    content: '';
    background-image: url(../img/wide-image-with-text-box/background-pattern.png);
    background-repeat: repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.06;
}

.page-template-404 {
    display: block !important;
}

.error404 .page-template-header-title {
    pointer-events: auto;
    position: relative;
    z-index: 1;
}

.page-template-content {
    height: 100%;
}

.page-template-image {
    height: 100%;
}

.page-template-image-src {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
    max-height: 600px;
    height: 100%;
}

.custom-page-template-products-list {
    padding: 60px 0 30px;
}

/* Page Template One ****************************************/
.pageOne-sOne {
    padding-bottom: 30px;
}

.pageOne-sOne-content-line {
    margin-bottom: 30px;
}

.pageOne-sTwo {
    padding-bottom: 30px;
}

.page-template-accordion-image {
    height: 100%;
}

.page-template-accordion-image-src {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    max-height: 600px;
}

.page-template-accordion-wrapper {
    height: 100%;
}

#accordion {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

#accordion .card {
    border: none;
    border-top: 1px solid #f2f2f2;
    background: transparent;
}

#accordion .card-body p {
    margin: 0;
}

#accordion .accordion-title {
    padding: 10px 30px;
    display: block;
}


#accordion .card-header {
    padding: 0;
    overflow: hidden;
    border: none;
}

#accordion .card-header {
    background: transparent;
}

#accordion .card-header a {
    display: block;
    width: 100%;
    text-align: left;
    background: transparent;
}

#accordion a.btn-link[aria-expanded="true"],
#accordion .show .card-body {
    background: #fff;
}

#accordion .card-body {
    padding: 0 30px 20px 30px;
}

#accordion a.btn-link {
    text-decoration: none;
    padding: 0;
}

#accordion a.btn-link:before {
    content: "\e145";
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    background: transparent;
    color: #00235a;
    padding: 10px 15px;
    font-size: 20px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

#accordion a.btn-link[aria-expanded="true"]:before {
    background: #ff5e14;
    color: #FFF;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    opacity: 1;
}

#accordion a.btn-link:after {
    content: '';
    width: 50px;
    height: 50px;
    opacity: 0;
    -webkit-box-shadow: #ff5e14 0 10px 20px 0;
    box-shadow: #ff5e14 0 10px 20px 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#accordion a.btn-link:before,
#accordion a.btn-link:after {
    position: absolute;
    top: 12px;
    right: 20px;
}

#accordion a.btn-link[aria-expanded="true"]:after {
    opacity: 0.5;
}

#accordion a.btn-link:hover:before {
    background: #ff5e14;
    color: #FFF;
}

#accordion a.btn-link:hover:after {
    opacity: 0.5;
}

#accordion a.btn-link[aria-expanded="true"]:before {
    content: "\e15b";
}

/* Page Template Two ****************************************/
.pageTwo-sTwo {
    padding: 30px 0 0;
}

.pageTwo-sTwo-boxes {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.pageTwo-sTwo .page-template-image-src {
    min-height: 400px;
    position: relative;
}

.pageTwo-sTwo .page-template-image-src:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}

.pageTwo-sTwo .page-template-content-box {
    position: absolute;
    bottom: 10px;
    left: 20px;
    right: 20px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.pageTwo-sTwo-boxes:hover .page-template-content-box {
    bottom: 30px;
}

.pageTwo-sTwo .page-template-content-box-subtitle .subtitle {
    color: #FFF;
}

.pageTwo-sTwo .page-template-content-box-title h4 {
    margin: 0;
    color: #FFF;
}


/* Page Template Three ****************************************/
.page-template-wrapper.pageThree {
    padding-bottom: 0;
}

.pageThree-sOne {
    padding: 30px 0;
}

.page-template-carousel-wrapper {
    position: relative;
}

.page-template-data-wrapper {
    height: 100%;
}

.page-template-carousel-wrapper,
.page-template-carousel,
.page-template-carousel .owl-stage-outer,
.page-template-carousel .owl-item,
.page-template-carousel .page-template-carousel-item,
.page-template-carousel .page-template-carousel-item a {
    height: 100%;
}

.page-template-carousel-item-src {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    max-height: 600px;
    height: 100%;
}

.pageThree-sTwo {
    padding: 30px 0 0;
}

.page-template-separator {
    position: relative;
    height: 700px;
}

.page-template-separator.separator-noimage {
    -webkit-box-shadow: inset 0 3px 12px 1px rgb(0 0 0 / 5%);
    box-shadow: inset 0 3px 12px 1px rgb(0 0 0 / 5%);
}

.page-template-separator.separator-noimage:after {
    content: '';
    background-image: url(../img/wide-image-with-text-box/background-pattern.png);
    background-repeat: repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.06;
}

.page-template-separator.separator-hasimage .pts-subtitle span,
.page-template-separator.separator-hasimage .pts-title h2,
.page-template-separator.separator-hasimage .pts-description p {
    color: #fff;
}

.page-template-separator-src {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
}

.page-template-separator.separator-hasimage .page-template-separator-src:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
}

.page-template-separator-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.page-template-separator-content-box {
    max-width: 60%;
}

.pageThree .custom-gallery-wrapper {
    padding: 60px 0;
}

/* Page Template Four ****************************************/
.pageFour-sTwo .pageOne-sOne-content-line {
    border-top: 1px solid #ddd;
    padding-top: 30px;
}

.atom-border-right {
    border-right: 1px solid #ddd;
}

/* Post Template ****************************************/
.post-template-default .post-template-header,
.post-template .post-template-header,
.category .category-template-header,
.tag .category-template-header,
.page-header-search {
    height: 200px;
}

.post-template-wrapper {
    padding: 40px 0 0;
}

.post-template-content {
    height: 100%;
    min-height: 500px;
    max-height: 800px;
}

.post-template-image {
    height: 100%;
}

.post-template-image-src {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
}

.post-template-carousel-item-src {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    max-height: 800px;
    height: 100%;
}

.post-template-details {
    padding: 20px 0;
}

.post-details-price {
    padding: 20px 0 0;
}

.subtitle.post-price {
    font-size: 18px;
    font-weight: 400;
    color: #00235a;
    text-transform: none;
}

.post-details-short-desc {
    padding: 30px 0 0;
}

.postOne-sTwo {
    padding: 60px 0 0;
}

.postOne-sTwo .nav-pills .nav-link.active,
.postOne-sTwo .nav-pills .show > .nav-link h4 {
    background-color: transparent;
}

.postOne-sTwo .nav-pills .nav-link.active h4 {
    color: #00235a;
}

.postOne-sTwo .nav-pills .nav-link {
    padding: 0;
}

.postOne-sTwo .nav-pills .nav-link h4 {
    color: #c3c3c3;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    padding: 0 40px 15px 0;
    margin: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.postOne-sTwo .nav-pills .nav-link:hover h4 {
    color: #ff5e14;
}

/* Post Template Two ****************************************/
.postTwo-sOne {
    padding: 0 0 30px;
}

.postTwo-sThree {
    padding: 30px 0;
}

.post-template-separator-content {
    border: 1px solid #ddd;
    padding: 40px;
    background: #f8f8f8;
    -webkit-box-shadow: 3px 3px 12px 1px rgb(0 0 0 / 10%);
    box-shadow: 3px 3px 12px 1px rgb(0 0 0 / 10%);
}

.post-template-separator-content-text p {
    margin: 0;
}

.post-template-two-wrapper .custom-gallery-wrapper {
    padding: 0;
}

.postTwo-sThree-hasImage {
    padding: 60px 0;
}

.postTwo-sThree-noImage .post-template-details,
.postTwo-sThree-noImage .post-details-short-desc {
    padding: 0;
}

/* Post Template Three ****************************************/
.postThree-sOne {
    padding: 0 0 30px;
}

.postThree-sTwo {
    padding: 30px 0;
}

.postThree-sThree {
    padding: 30px 0 0;
}

.post-template-icons-content {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px 0;
}

.post-template-icon-box i {
    font-size: 30px;
    padding: 15px;
    background: #00235a;
    color: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin: 0 25px 0 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.post-template-icons-content:hover .post-template-icon-box i {
    background: #ff5e14;
}

.post-template-icon-title {
    padding: 0 0 5px;
}

.post-template-icon-text span {
    max-height: 75px;
    overflow: hidden;
    display: block;
}

.post-template-wide-carousel-wrapper {
    position: relative;
}

.post-template-wide-carousel-item {
    position: relative;
}

.post-template-wide-carousel-item-src {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 700px;
}

.post-template-wide-carousel-item-src:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
}

.post-template-wide-carousel-item-data {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.post-template-wide-carousel-item-data-inner {
    max-width: 60%;
}

.wcid-subtitle span,
.wcid-title h2,
.wcid-description p {
    color: #FFF;
}

/* Post Template Four ****************************************/
.postFour-sOne {
    padding: 0 0 30px;
}

.postFour-sTwo {
    padding: 30px 0;
}

.postFour-sThree {
    padding: 30px 0;
}

.post-template-four-wrapper .post-template-details {
    border: 1px solid #f8f8f8;
    padding: 30px;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}


/* Custom Gallery Section ****************************************/
.custom-gallery-wrapper {
    padding: 30px 0 0;
}

.custom-gallery-content {
    position: relative;
}

.gallery-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-gap: 10px;
    grid-auto-rows: minmax(250px, auto);
    grid-auto-flow: dense;
    padding: 0;
}

.gallery-grid-item-inner {
    height: 100%;
    position: relative;
}

.gallery-grid-image-src {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gallery-span-big {
    grid-column-end: span 2;
    grid-row-end: span 2;
}

.gallery-span-wide-vertical {
    grid-column-end: span 1;
    grid-row-end: span 2;
}

.gallery-span-wide-horizontal {
    grid-column-end: span 2;
    grid-row-end: span 1;
}

.custom-gallery-carousel-item {
    margin: 0 15px;
}

.custom-gallery-carousel-image-src {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    max-height: 600px;
    height: 100%;
}

.custom-gallery-wrapper .atom-owl-navigation {
    bottom: auto;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.custom-gallery-wrapper .atom-owl-navigation .atom-owl-prev,
.custom-gallery-wrapper .atom-owl-navigation .atom-owl-next {
    pointer-events: auto;
}

.custom-gallery-wrapper .atom-owl-navigation .atom-owl-arrow.atom-owl-next span {
    background: #fff;
    color: #222222;
}

.custom-gallery-wrapper .atom-owl-navigation .atom-owl-arrow.atom-owl-next:hover span {
    background: #ff5e14;
    color: #FFF;
}


/* Default Wordpress Gallery ****************************************/
.entry-content img,
.comment-content img,
.widget img {
    max-width: 100%;
}

img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
    height: auto;
}

img.size-full,
img.size-large,
img.header-image,
img.wp-post-image {
    max-width: 100%;
    height: auto;
}

.gallery-item {
    margin-top: 5px !important;
}

.gallery-item a,
.gallery-caption {
    width: 95%;
}

.gallery-item a {
    display: block;
}

.gallery-caption a {
    display: inline;
}

.gallery-columns-1 .gallery-item a {
    max-width: 100%;
    width: auto;
}

.gallery .gallery-icon img {
    border: 1px solid #ddd !important;
    padding: 2px;
    height: auto;
    max-width: 100%;
    width: auto;
}

.gallery-columns-1 .gallery-icon img {
    padding: 1px;
}


/* Related Posts Section ****************************************/
.related-posts-wrapper {
    padding: 30px 0;
}

.related-posts-wrapper .section-title {
    padding: 0 0 20px 0;
}

/* Product Category Template ****************************************/
.product-content-box {
    position: relative;
}

.product-item-image {
    position: relative;
    overflow: hidden;
    border: 1px solid #f8f8f8;
    background: #f8f8f8;
}

.product-item-image-src {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 250px;
}

.product-btn {
    position: absolute;
    bottom: -48px;
    left: 0;
    width: 100%;
    text-align: center;
    line-height: 20px;
    padding: 14px 0;
    color: #FFF;
    font-size: 16px;
    z-index: 2;
    letter-spacing: 0.3px;
    pointer-events: none;
    background: #ff5e14;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.product-content-box:hover .product-btn {
    bottom: 0;
}

.product-item-data {
    margin: 20px 0 30px;
}

.product-item-title h4 {
    margin: 0;
    font-size: 22px;
}

.product-item-category .subtitle a {
    color: #00235a;
}

.product-item-price .price-span {
    color: #fff;
    background: #ff5e14;
    text-transform: capitalize;
    padding: 10px;
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 14px;
    z-index: 2;
}

.justify-elements {
    justify-content: center;
}

/* Carousel Partners ****************************************/
.cp-content {
    padding: 60px 0;
    -webkit-box-shadow: inset 0 3px 12px 1px rgb(0 0 0 / 5%);
    box-shadow: inset 0 3px 12px 1px rgb(0 0 0 / 5%);
}

.cp-carousel-icon {
    height: 80px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}


/* Product Category Sidebar ****************************************/
.category-sidebar-section {
    padding: 15px;
    background: #f8f8f8;
    -webkit-box-shadow: 3px 3px 12px 1px rgb(0 0 0 / 10%);
    box-shadow: 3px 3px 12px 1px rgb(0 0 0 / 10%);
}

.cat-sidebar-title h3 {
    font-size: 1.9rem;
    border-bottom: 2px solid #f55f15;
    padding: 0 0 10px;
}

.cat-sidebar-list {
    padding: 0;
}

.cat-sidebar-list li {
    list-style: none;
}

.cat-sidebar-list li.cat-item:before {
    content: none;
}

.cat-sidebar-list li a {
    display: block;
    padding: 5px 30px 5px 0;
    position: relative;
    left: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cat-sidebar-list li ul.children {
    display: none;
}

.cat-sidebar-list li.category-has-children {
    position: relative;
}

.cat-sidebar-list li.category-has-children i {
    position: absolute;
    top: 5px;
    right: 6px;
    color: #ff5e14;
    font-size: 25px;
    padding: 0 6px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cat-sidebar-list li.category-has-children i.rotate-icon {
    transform: rotate(180deg);
}

.cat-sidebar-list li.current-cat-ancestor > ul.children {
    display: block;
}

.cat-sidebar-list li a:hover {
    color: #ff5e14;
    left: 10px;
}

.cat-sidebar-list li.current-cat > a {
    color: #ff5e14;
}

.cat-sidebar-tag-list a {
    background: #f8f8f8;
    padding: 10px;
    margin-bottom: 5px;
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cat-sidebar-tag-list a:hover {
    background: #ff5e14;
    color: #FFF;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cat-sidebar-list li .children {
    position: relative;
    padding: 0 0 0 15px;
    margin: 0 0 0 5px;
}

.cat-sidebar-list li .children:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-left: 1px solid #ff5e14;
    opacity: 0.3;
}

/* Breadcrumbs ****************************************/
.breadcrumbs-wrapper {
    padding: 10px;
    background: #f8f8f8;
    border-bottom: 1px solid #ddd;
    -webkit-box-shadow: 0px 3px 12px 1px rgb(0 0 0 / 8%);
    box-shadow: 0px 3px 12px 1px rgb(0 0 0 / 8%);
}

.breadcrumbs-content {
    text-align: left;
}

.breadcrumbs-content a,
.breadcrumbs-content span {
    color: #00235a;
    padding: 3px 5px;
    font-size: 14px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.breadcrumbs-content span {
    opacity: 0.6;
}

.breadcrumbs-content a:hover {
    color: #ff5e14;
}

.breadcrumbs-content i {
    color: #b1b1b1;
    padding: 2px 2px;
    margin: 0;
    font-size: 9px;
}

/* Request Offer Panel ****************************************/
.request-offer-panel-wrapper {
    background: #FFF;
    position: fixed;
    left: -450px;
    top: 0;
    max-width: 450px;
    width: 100%;
    height: 100%;
    z-index: 92;
    overflow: auto;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1);
    -o-transition: all .6s cubic-bezier(.77, 0, .175, 1);
    transition: all .6s cubic-bezier(.77, 0, .175, 1);
}

.request-offer-panel-wrapper.offer-panel-open {
    left: 0;
    visibility: visible;
    background: #0a1229;
}

.request-offer-panel-wrapper p {
    color: #9fa6af;
}

.request-offer-content {
    position: relative;
}


/* Burger Contact Panel ****************************************/
.header-contact-burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    background: #ff5e14;
    cursor: pointer;
}

.header-contact-burger img {
    width: 37px;
}

.header-contact-burger-inner {
    width: 20px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.burger-line {
    height: 2px;
    display: block;
    background: #fff;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.burger-line-top {
    width: 50%;
    align-self: flex-start;
}

.burger-line-middle {
    width: 100%;
    align-self: center;
}

.burger-line-bottom {
    width: 50%;
    align-self: flex-end;
}

.header-contact-burger:hover .burger-line-top,
.header-contact-burger:hover .burger-line-bottom {
    width: 100%;
}

.burger-contact-panel {
    background: #FFF;
    position: fixed;
    right: -450px;
    top: 0;
    max-width: 450px;
    width: 100%;
    height: 100%;
    z-index: 92;
    visibility: hidden;
    overflow: auto;
    -webkit-backface-visibility: hidden;
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1);
    -o-transition: all .6s cubic-bezier(.77, 0, .175, 1);
    transition: all .6s cubic-bezier(.77, 0, .175, 1);
}

.burger-contact-panel.burger-panel-open {
    right: 0;
    visibility: visible;
    background: #0a1229;
}

.burger-panel-content {
    position: relative;
}

.close-panel {
    background: #ff5e14;
    color: #fff;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

.burger-panel-content p,
.burger-panel-content a,
.burger-panel-content a:visited,
.burger-panel-content a:active,
.burger-panel-content span,
.burger-panel-content i {
    color: #9fa6af;
}

.burger-panel-text {
    padding: 30px 0 0;
}

.burger-panel-text p {
    margin: 0;
}

.burger-panel-contact {
    padding: 40px 0 0;
}

.burger-panel-contact-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.burger-panel-contact-box-icon {
    padding-right: 10px;
}

.burger-panel-contact-box-icon span,
.burger-panel-contact-box-icon i {
    font-size: 30px;
}

.burger-panel-contact-box-data a {
    display: block;
    line-height: 25px;
    font-size: 16px;
}

.burger-panel-contact-box-data a:hover {
    color: #ff5e14;
}

.burger-panel-social-media {
    padding-top: 20px;
}

.burger-panel-social-icons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.burger-panel-social-icons a {
    border: 1px solid #9fa6af;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px 5px 0;
    color: #FFF;
    width: 50px;
    height: 50px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


.burger-panel-social-icons a:hover {
    background: #ff5e14;
}

.burger-panel-social-icons a:hover i {
    color: #FFF;
}

.site-nav-burger {
    display: none;
}

/* Product Homepage Section ****************************************/
.homepage-products-section.section-spacing {
    margin: 0 0 30px;
}

.homepage-products-wrapper {
    padding: 30px 0 0 0;
}

/* Posts Pagination ****************************************/
.posts-pagination .page-numbers.current {
    background: #00235a;
    color: #fff;
    padding: 10px 15px 10px;
}

.posts-pagination .page-numbers {
    padding: 10px 15px 10px;
    background: #f1f1f1;
}

.posts-pagination .page-numbers.prev, .posts-pagination .page-numbers.next {
    display: none;
}

.pagination {
    justify-content: center;
}

/* Contact Page ****************************************/
.contact-page-content {
    padding: 60px 0 30px;
}

.contact-page-box {
    display: block;
    padding: 60px 30px 40px;
    text-align: center;
    border: 1px solid #e8e8e8;
    border-bottom: 4px solid #008de3;
    height: 100%;
}

.contact-box-icon {
    margin-bottom: 15px;
}

.contact-box-icon img {
    width: 100px;
    position: relative;
    top: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.contact-page-box:hover .contact-box-icon img {
    top: -5px;
}

.contact-box-data p a {
    font-size: 18px;
    font-weight: 400;
    color: #555969;
    display: block;
}

.contact-box-data p a:hover {
    color: #008de3;
}

.contact-form-title {
    text-align: center;
}

.contact-page-content-after {
    padding: 30px 0 60px;
}

.map-wrapper,
.map-wrapper iframe {
    width: 100%;
    height: 100%;
}


/* Search Results Page ****************************************/
.page-template-header-search {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 200px;
    background-color: #f8f8f8;
    -webkit-box-shadow: inset 0 3px 12px 1px rgb(0 0 0 / 5%);
    box-shadow: inset 0 3px 12px 1px rgb(0 0 0 / 5%);
}

.page-template-header-search h1 {
    font-size: 3.333rem;
    margin: 0;
    padding: 0 0 20px 0;
    text-transform: uppercase;
    font-weight: 600;
    color: #1a1a1d;
}

.page-template-header-search:after {
    content: '';
    background-image: url(../img/wide-image-with-text-box/background-pattern.png);
    background-repeat: repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.06;
}

.search-results-page .subtitle {
    display: block;
}

.search-results-page .search-term {
    font-size: 60px;
}

/* Footer Section ****************************************/
.footer-section {
    position: relative;
    background: #00235a;
}

.footer-wrapper {
    padding: 50px 0 45px;
}

.footer-content-title {
    padding: 0 0 15px 0;
}

.footer-wrapper,
.footer-wrapper a,
.footer-wrapper p,
.footer-wrapper span,
.footer-wrapper li,
.footer-wrapper a:active,
.footer-wrapper a:focus,
.footer-wrapper a:visited {
    color: #9fa6af;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.footer-wrapper a:hover {
    color: #ff5e14;
}

.footer-content-open-hours {
    display: flex;
    align-items: flex-start;
}

.footer-content-open-hours span {
    margin-right: 10px;
}

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

.footer-content-list li {
    padding: 5px 0;
}

.footer-content-list.list-arrow li {
    padding: 5px 0 5px 25px;
}


.footer-contact-box {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-contact-box-icon {
    padding-right: 10px;
    line-height: 0;
}

.footer-contact-box-icon span {
    font-size: 30px;
}

.footer-contact-box-data a {
    display: block;
    line-height: 20px;
    font-size: 16px;
}

/* Footer Section - Style Two ****************************************/
.footer-section.footer-style-two {
    background: none;
}

.footer-section.footer-style-two.section-dark:before {
    content: none;
}

.footer-style-two .footer-wrapper {
    padding: 0;
}

.footer-content-image-src {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    max-height: 600px;
    height: 100%;
}

.footer-style-two .footer-content {
    height: 100%;
}

.footer-content-variant {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    padding: 60px;
}

.footer-content-style-two {
    position: relative;
    background: #00235a;
}

.footer-style-two .section-line-background {
    padding: 40px 0;
}

.footer-style-two .section-line-background:after {
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.footer-content-data-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.footer-content-data-wrapper-inner {
    padding: 0 0 0 150px;
}

.footer-style-two .footer-contact-box-icon span {
    color: #555969;
}

.footer-style-two .footer-contact-box-data a,
.footer-style-two .footer-contact-box-data span {
    color: #555969;
}

.footer-style-two h3 {
    margin: 0;
    padding: 0 0 20px;
}

.footer-style-two .footer-content-map {
    height: 100%;
}

.footer-style-two .footer-content-map iframe {
    width: 100%;
    height: 100%;
}

/* Copyright Footer Section ****************************************/
.copyright-footer-wrapper {
    position: relative;
    background: #00235a;
}

.copyright-footer-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 11, 11, 0.8);
    pointer-events: none;
}

.copyright-footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright-footer-social {
    display: flex;
    align-items: center;
}

.footer-gdpr-links {
    padding: 0 20px;
}

.gdpr-link {
    color: #9fa6af;
    border-right: 1px solid rgb(255 255 255 / 15%);
    padding: 0 15px 0 0;
}

.gdpr-link:hover {
    color: #9fa6af;
}

.gdpr-link:last-child {
    border-right: none;
    margin: 0 10px;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icons a {
    color: #fff;
    padding: 12px 15px;
    display: flex;
    width: 45px;
    height: 50px;
    align-items: center;
    justify-content: center;
}

.footer-social-icons a:hover {
    background: #ff5e14;
    color: #fff;
}

span.copyright {
    color: #9fa6af;
}

span.copyright a {
    color: #ff5e14;
}

span.copyright a:hover {
    color: #e60101;
}

/* Body Wrapper Last Section ****************************************/
.body-wrapper .carousel-index-section.section-spacing:last-child {
    margin-bottom: 0;
}