/***************************************
Launchpad Platform Design 1 Styling
*****************************************/
/*
 Description:  Launchpad Platorm v5 - Design 1
 Author:       Hicaliber
 Version:      1.0.0
*/
/***************************************
Table of Contents:

Typography
General
Grid
Carousel
Tabs
Accordion
Box Layouts
Hero
Menu
Mobile Menu
Header
Footer
Table
Team Element

************************************/

/*************************************
#TYPOGRAPHY - START
**************************************/
html {
	box-sizing: border-box;
	font-size: 100%;
}
body {
	margin: 0;
	padding: 0;
	background: #fff;
	color: var(--lp--base-preset--body--color);
	font-family: var(--lp--base-preset--body--font-family)
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
	line-height: 1.2;
	margin-bottom: 0.5rem;
	font-family: var(--lp--base-preset--heading--font-family)
}
h1, .h1 {
	font-size: 2rem;
}
h2, .h2 {
	font-size: 1.6rem;
}
h3, .h3 {
	font-size: 1.4rem;
}
h4, .h4 {
	font-size: 1.2em;
}
h5, .h5 {
	font-size: 1.1em;
}
h6, .h6 {
	font-size: 1em;
}
a {
	text-decoration: none;
	color: var(--lp--base-preset--link--color);
	transition: all .25s ease;
}
a:hover, a:focus, a:active {
	color: var(--lp--base-preset--link--color--hover);
}
/*************************************
!TYPOGRAPHY - END
**************************************/

/*************************************
#GENERAL - START
**************************************/
.lp-element {
    padding: 30px 0;
}
@media (min-width: 768px) {
    .lp-element {
        padding: 50px 0;
    }
}
@media (min-width: 1200px) {
    .lp-element {
        padding: 80px 0;
    }
}

/* Contact Information - Start */
.lp-contact-details i {
    width: 18px;
    margin-right: 6px;
    text-align: center;
}
.lp-social-media li:not(:last-child) {
    margin-right: 8px;
}
/* Contact Information - End */

/* Icons - Start */
.lp-icon {
    font-size: 50px;
}
@media(min-width: 992px) {
    .lp-icon {
        font-size: 80px;
    }
}
/* Icons - End */

/* Buttons - Start */
.lp-button, .wp-block-button__link {
	font-size: 16px;
	padding: 10px 20px;
	margin: 0;
	display: inline-block;
	-webkit-appearance: none;
	line-height: 1;
	text-align: center;
	cursor: pointer;
	color: var(--lp--base-preset--button--color);
	background-color: var(--lp--base-preset--button--background-color);
}
.lp-button:hover, .lp-button:focus, .wp-block-button__link:hover, .wp-block-button__link:focus {
    background-color: var(--lp--base-preset--button--background-color--hover);
    color: var(--lp--base-preset--button--color--hover);
}
.lp-button-wrap .lp-button + .lp-button {
	margin-left: 10px;
}
.lp-button:hover, .lp-button:focus {
	background-color: #000;
}
/* Buttons - End */
/*************************************
!GENERAL - END
**************************************/

/*************************************
#GRID - START
**************************************/
/* Icon Layouts - Start */
.lp-icon-left-content .lp-content {
    padding: 10px 10px 10px 95px;
}
.lp-icon-left-content .lp-icon {
    width: 80px;
    top: 5px;
}
@media (min-width: 1200px) {
    .lp-icon-left-content .lp-content {
        padding: 20px 20px 20px 130px;
    }
    .lp-icon-left-content .lp-icon {
        width: 100px;
        left: 15px;
    }
}
/* Icon Layouts - End */
/*************************************
!GRID - END
**************************************/

/*************************************
#CAROUSEL - START
**************************************/
.lp-carousel .slick-arrow,
.lp-gallery-carousel .slick-arrow {
    width: 30px;
    height: 30px;
    z-index: 1;
    opacity: .65;
}
.lp-carousel .slick-arrow:hover,
.lp-gallery-carousel .slick-arrow:hover {
    opacity: 1;
}
.lp-carousel .slick-arrow:before,
.lp-gallery-carousel .slick-arrow:before {
    content: '';
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    display: block;
}
.lp-element .lp-element-body.slick-dotted.slick-slider .slick-dots {
    padding-top: 30px;
}
.lp-element .lp-element-body.slick-dotted.slick-slider {
    margin-bottom: 0;
}
.lp-element .slick-dots li button {
    padding: 3px;
}
.lp-element .slick-dots li button:before {
    font-size: 14px;
}
.lp-element .slick-dots li button,
.lp-element .slick-dots li button:before,
.lp-element .slick-dots li.slick-active button:before {
    color: inherit;
}
.lp-carousel .slick-prev:before,
.lp-gallery-carousel .slick-prev:before {
    content: "\f137";
    color: #333;
    border: none;
    right: 14px;
    font-size: 32px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
.lp-carousel .slick-next:before,
.lp-gallery-carousel .slick-next:before {
    content: "\f138";
    color: #333;
    border: none;
    right: 14px;
    font-size: 32px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
.lp-carousel.lp-theme-dark .slick-prev:before,
.lp-gallery-carousel.lp-theme-dark .slick-prev:before {
    content: "\2190";
    color: #333;
    border: none;
    right: 14px;
    font-size: 32px;
}
.lp-carousel.lp-theme-dark .slick-next:before,
.lp-gallery-carousel.lp-theme-dark .slick-next:before {
    content: "\2192";
    color: #333;
    border: none;
    right: 14px;
    font-size: 32px;
}
.lp-gallery-carousel:not(.slick-initialized)>* {
    display: none;
}
.lp-gallery-carousel:not(.slick-initialized):before {
    content: '';
    display: block;
    padding-top: 66.66667%;
}
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0
}
.slick-list:focus {
    outline: 0
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}
.slick-slider .slick-list,
.slick-slider .slick-track {
    -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)
}
.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto
}
.slick-track:after,
.slick-track:before {
    display: table;
    content: ''
}
.slick-track:after {
    clear: both
}
.slick-loading .slick-track {
    visibility: hidden
}
.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px
}
[dir=rtl] .slick-slide {
    float: right
}
.slick-slide img {
    display: block
}
.slick-slide.slick-loading img {
    display: none
}
.slick-slide.dragging img {
    pointer-events: none
}
.slick-initialized .slick-slide {
    display: block
}
.slick-loading .slick-slide {
    visibility: hidden
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}
.slick-arrow.slick-hidden {
    display: none
}
.slick-next,
.slick-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: 0;
    background: 0 0
}
.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
    color: transparent;
    outline: 0;
    background: 0 0
}
.slick-next:focus:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-prev:hover:before {
    opacity: 1
}
.slick-next.slick-disabled:before,
.slick-prev.slick-disabled:before {
    opacity: .25
}
.slick-next:before,
.slick-prev:before {
    font-family: slick;
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}
.slick-prev {
    left: -25px
}
[dir=rtl] .slick-prev {
    right: -25px;
    left: auto
}
.slick-prev:before {
    content: 'â†'
}
[dir=rtl] .slick-prev:before {
    content: 'â†’'
}
.slick-next {
    right: -25px
}
[dir=rtl] .slick-next {
    right: auto;
    left: -25px
}
.slick-next:before {
    content: 'â†’'
}
[dir=rtl] .slick-next:before {
    content: 'â†'
}
.slick-dotted.slick-slider {
    margin-bottom: 30px
}
.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: 0;
    background: 0 0
}
.slick-dots li button:focus,
.slick-dots li button:hover {
    outline: 0
}
.slick-dots li button:focus:before,
.slick-dots li button:hover:before {
    opacity: 1
}
.slick-dots li button:before {
    font-family: slick;
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '';
    text-align: center;
    opacity: .25;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #333;
    border-radius: 50%;
}
.slick-dots li.slick-active button:before {
    opacity: .75;
    color: #000
}
/*************************************
!CAROUSEL - END
**************************************/

/*************************************
#TABS - START
**************************************/
.lp-tabs.lp-horizontal-tabs-layout .lp-tabs {
    display: flex;
	margin-bottom: 20px;
}
.lp-tabs.lp-horizontal-tabs-layout .lp-tabs-title {
    margin-right: 30px;
    padding-bottom: 10px;
}
.lp-tabs.lp-horizontal-tabs-layout .lp-tabs-title.lp-active, .lp-tabs.lp-horizontal-tabs-layout .lp-tabs-title:hover {
    border-bottom: 2px solid var(--lp--base-preset--brand-color--primary);
}
.lp-tabs.lp-horizontal-tabs-layout .lp-tabs-title a {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
}
.lp-default-section.lp-tabs .lp-tabs-title a {
    color: var(--lp--base-preset--body--color);
}
.lp-tabs .lp-tabs-content .lp-col {
    padding: 0;
}
/*************************************
!TABS - END
**************************************/

/*************************************
#ACCORDION - START
**************************************/
.lp-accordion-title{
	text-decoration:none;
    line-height: 1.3;
	transition: all .4s ease;
    font-weight: bold;
    font-size: 18px;
    border-top: none;
    border-bottom: 1px solid #e6e6e6;
    border-left: none;
    border-right: none;
	padding-right: 50px;
    padding: 15px 0;
}
.lp-default-section .lp-accordion-title {
    color: #000;
}
.lp-accordion-title::after{
    position:absolute;
    right:10px;
    top: 15px;
}
.lp-accordion-title.lp-active, .lp-accordion-title:hover{
    padding-left: 20px;
}
.lp-default-section .lp-accordion-title.lp-active, .lp-default-section .lp-accordion-title:hover {
    background-color:var(--lp--base-preset--brand-color--primary);
    color: #fff;
}
.lp-accordion-content{
	padding: 1rem;
}
/*************************************
!ACCORDION - END
**************************************/

/*************************************
#BOX LAYOUTS - START
**************************************/
/* Layout 1 - Start */
.lp-box-layout-1 .lp-content, .lp-box-layout-3 .lp-content, .lp-box-layout-2 .lp-content {
    padding: 20px;
}
.lp-default-section.lp-box-layout-1 .lp-content, .lp-default-section.lp-box-layout-3 .lp-content, .lp-default-section.lp-box-layout-2 .lp-content {
    background: #f2f2f2;
}
.lp-box-layout-1 .lp-content a:not(.lp-button) {
    font-weight: 600;
}
.lp-default-section.lp-box-layout-1 .lp-content, .lp-default-section.lp-box-layout-1 .lp-content a:not(.lp-button) {
    color: #333;
}
/* Layout 1 - End */

/* Layout 4 - Start */
.lp-box-layout-4 .lp-content {
    background-color: rgba(0, 0, 0, .6);
    color: #fff;
}
/* Layout 4 - End */
/*************************************
!BOX LAYOUTS - END
**************************************/

/*************************************
#HERO - START
**************************************/
.lp-hero, .lp-hero label, .lp-hero a {
    color: #fff;
}
.lp-hero:not(.lp-hero-full-screen).lp-default-height {
    min-height: 350px;
}
.lp-hero .lp-hero-background-overlay {
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 20%, rgba(0,0,0,0.3) 100%);
}
.lp-hero .lp-hero-banner {
    text-transform: uppercase;
}
.lp-hero .lp-hero-banner-heading h1 {
    font-size: 24px;
}
@media(min-width: 768px) {
    .lp-hero:not(.lp-hero-full-screen).lp-default-height {
        min-height: 400px;
    }
}
@media(min-width: 992px) {
    .lp-hero:not(.lp-hero-full-screen).lp-default-height {
        min-height: 550px;
    }
    .lp-hero .lp-hero-banner-heading h1 {
        font-size: 71px;
    }
}
/*************************************
!HERO - END
**************************************/

/*************************************
#MENU - START
**************************************/
.lp-menu {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.lp-menu:not(.lp-vertical) {
    align-items: center;
}
.lp-main-menu li a {
    padding: 0.7rem 1rem;
    display: block;
}
.lp-main-menu > .current-menu-item > a, .lp-main-menu > .current-menu-parent > a {
    border-bottom: 1px solid #fff;
}
.lp-main-menu .sub-menu .current-menu-item, .lp-main-menu ul.sub-menu li:hover {
    border-left: 3px solid #fff;
    transition: .3s all;
}
.lp-header-default-color .lp-main-menu .sub-menu, .lp-header-transparent .lp-main-menu .sub-menu {
    background-color: #333;
    width: 170px;
}
.lp-header-default-color .lp-menu-container .menu-item-has-children::after {
    color: #fff;
}
.lp-default-header-layout .lp-menu-container .sub-menu {
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.5);
}
.sub-menu li {
    list-style: none;
}
.lp-footer-menu, .sub-menu  {
    padding: 0;
}
.lp-footer-menu li {
    padding: 0.2rem 0;
    list-style: none;
}
.lp-menu.lp-top {
    column-gap: 12px;
}
.lp-menu-icon {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 16px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 1em;
}
.lp-menu-icon::after {
    content: "";
    height: 3px;
    top: 5px;
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    background: #fff;
	box-shadow: 0 7px 0 #fff, 0 14px 0 #fff;
}
/*************************************
!MENU - END
**************************************/

/*************************************
#MOBILE MENU - START
**************************************/
.lp-off-canvas {
    padding: 30px;
	background-color: #333;
}
.lp-mobile-menu li {
    position: relative;
    width: 100%;
}
.lp-mobile-menu li a {
    padding: 0.7rem 1rem;
    display: block;
    color: #fff;
}
.lp-mobile-menu .current-menu-item > a {
    background: rgba(255,255,255,0.1);
}
.lp-mobile-menu .sub-menu {
    display: none;
    padding-left: 10px;
}
.lp-mobile-menu .menu-item-has-children i {
    color: #fff;
    position: absolute;
    right: 10px;
    top: 12px;
    width: 20px;
    display: flex;
    justify-content: center;
}
/*************************************
!MOBILE MENU - END
**************************************/

/*************************************
#HEADER - START
**************************************/
.lp-header .lp-top-bar {
    padding: 15px 0;
}
.lp-header .lp-number {
    display: none;
}
.lp-site-logo {
    width: 160px;
}
.lp-header-default-color .lp-header {
    background-color: var(--lp--base-preset--brand-color--dark);
}
.lp-header-default-color .lp-header ul li a, .lp-header-transparent:not(.lp-page-banner-hidden) .lp-header ul li a {
    color: #fff;
}
@media(min-width: 576px) {
    .lp-site-logo {
        width: 230px;
    }
}
/* Sticky Header - Start*/
.lp-sticky-header:not(.lp-header-transparent) .lp-off-canvas-content {
    padding-top: 73px;
}
@media (min-width: 576px) {
    .lp-sticky-header:not(.lp-header-transparent) .lp-off-canvas-content {
        padding-top: 90px;
    }
}
/* Sticky Header - End*/

/* Transparent Header - Start*/
.lp-header-transparent.lp-sticky-header.lp-scrolled .lp-header {
    background-color: var(--lp--base-preset--brand-color--dark);
}
/* Transparent Header - End*/
/*************************************
!HEADER - END
**************************************/

/*************************************
#TABLE - START
**************************************/
.lp-table thead {
    background: var(--lp--base-preset--brand-color--dark);
    border: 1px solid #f1f1f1;
    border-left: none;
    border-right: none;
}
.lp-table th {
    padding: 10px;
    font-weight: 700;
    color: #fff;
}
.lp-table tbody {
    border: 1px solid #f1f1f1;
    background-color: #fefefe;
    border-left: none;
    border-right: none;
}
.lp-table tbody th {
    color: var(--lp--base-preset--body--color)
}
.lp-table tbody tr {
    border-bottom: 1px solid #f2f2f2;
    background-color: #f2f2f2;
}
.lp-table tbody tr:nth-child(2n) {
    background-color: #fff;
}
.lp-table tbody tr td {
    padding: 10px;
}
.lp-table .lp-button {
    margin-top: 0;
    width: 100%;
}
@media(min-width: 576px) {
    .lp-table tr td img {
        width: 100px;
    }
    .lp-table th, .lp-table tbody tr td {
        padding: 16px;
    }
    .lp-table .lp-button {
        width: auto;
    }
}
/*************************************
!TABLE - END
**************************************/

/*************************************
#TEAM ELEMENT - START
**************************************/
.lp-default-alignment .lp-team-content, .lp-default-alignment .lp-team-content .lp-button-wrap {
    text-align: center;
    justify-content: center;
}
.lp-team-content {
    line-height: 1.3;
    padding: 20px;
}
.lp-default-section .lp-team-content {
    background: #f2f2f2;
}
.lp-default-section .lp-team-content a:not(.lp-button) {
    font-weight: 600;
}
.lp-default-section .lp-team-content, .lp-default-section .lp-team-content a:not(.lp-button) {
    color: var(--lp--base-preset--body--color);
}
.lp-box-layout-1 .lp-team-media {
    margin-bottom: 0;
}
/*************************************
!TEAM ELEMENT - END
**************************************/

/*************************************
#FOOTER - START
**************************************/
.lp-footer.lp-default-footer-layout {
    padding: 30px 0;
}
.lp-footer-default-color .lp-footer {
    background-color: var(--lp--base-preset--brand-color--dark);
}
.lp-footer-default-color .lp-footer, .lp-footer-default-color .lp-bottom-footer, .lp-footer-default-color .lp-footer a {
    color: #fff;
}
.lp-footer-default-color .lp-bottom-footer {
    background-color: #1a1a1a;
}
.lp-footer.lp-default-footer-layout .lp-footer-col {
    margin-bottom: 20px;
}
.lp-bottom-footer:not(.lp-with-colophon-link) {
    text-align: center;
}
.lp-footer.lp-default-footer-layout .lp-contact-details .lp-contact-address, .lp-footer.lp-default-footer-layout .lp-contact-details .lp-contact-phone, .lp-footer.lp-default-footer-layout .lp-contact-details .lp-contact-email, .lp-map-form-element .lp-contact-details .lp-contact-address, .lp-map-form-element .lp-contact-details .lp-contact-phone, .lp-map-form-element .lp-contact-details .lp-contact-email {
    padding: 0.2rem 28px;
}
.lp-footer.lp-default-footer-layout .lp-subheading {
    margin-top: 0;
}
@media(min-width: 992px) {
    .lp-footer.lp-default-footer-layout {
        padding: 80px 0;
    }
    .lp-footer .lp-footer-col {
        margin-bottom: 0;
    }
}
/*************************************
!FOOTER - END
**************************************/