/*!
Theme Name: bearing power
Theme URI: http://underscores.me/
Author: Md Hiron Mia
Author URI: https://hirondev.com
Description: Description
Version: 1.0.7
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: bearing-power
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

bearing power is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Droid Sans';
    font-weight: 400;
    src: url(fonts/Droid-sans/DroidSans.ttf);
}

@font-face {
    font-family: 'Droid Sans';
    font-weight: 700;
    src: url(fonts/Droid-sans/DroidSans-Bold.ttf);
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 2;
    color: #292929;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6{
    font-family: 'Montserrat';
    font-weight: 400;
}

.bearing-title{
    color: #292929;
    font-size: 28px;
    margin-bottom: 15px;
	line-height: 1.3
}

p{
    color: #7f7f7f;
    font-family: 'Droid Sans';
}

img{
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.img-100{
    width: 100%;
	display: block
}

.button{
    display: inline-block;
    font-size: 18px;
    font-family: 'Montserrat';
    font-weight: 600;
    line-height: 2;
    padding: 5px 26px;
    text-decoration: none;
    border: 2px solid #FC5A1B;
    color: #292929;
    font-weight: 500;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.btn-primary{
    background: #FC5A1B;
    color: #fff;
}

.icon-btn{
    background: #11C3F0;
    border-color: transparent;
    color: #fff;
    padding: 5px 35px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}

.icon-btn:hover{
    border-color: #002B5E;
}

.icon-btn i {
    margin-right: 10px;
    color: #fff;
}

.icon-btn::before{
    content: '';
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #002B5E;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform 0.25s ease-out;
    -webkit-transition: transform 0.25s ease-out;
    -moz-transition: transform 0.25s ease-out;
    -ms-transition: transform 0.25s ease-out;
    -o-transition: transform 0.25s ease-out;
    z-index: -1;
}

.icon-btn:hover::before{
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
}

.btn-primary:hover{
    background: #fff;
    color: #292929;
}

/* Header */

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

.main-menu > li > a{
    display: block;
    font-size: 18px;
    padding: 48px 15px;
    color: #a6a6a6;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: 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;
    font-weight: 500;
    font-family: 'Montserrat';
}

.main-menu li{
    position: relative;
}

.main-menu li a:hover{
    background: #fc5a1b;
    color: #fff;
}

.main-menu li ul{
    position: absolute;
    right: 0;
    bottom: -48px;
    width: 200px;
    list-style: none;
    visibility: hidden;
    opacity: 0;
    z-index: 999;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.main-menu li ul li a{
    display: block;
    padding: 10px 15px;
    background: #fc5a1b;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: 1px solid #fff;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.main-menu li ul li a:hover{
    background: #FD8C60;
    padding: 10px 20px;
}


.main-menu li:hover ul{
    visibility: visible;
    opacity: 1;
}



/* hero section */
.hero-sec-content{
    position: relative;
}

.hero-text-content{
    max-width: 770px;
}

.hero-text-content-wrap{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    padding-left: 30px;
}

.hero-title{
    color: #fff;
    font-size: 48px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-text-content p{
    font-size: 18px;
    line-height: 1.2;
    font-family: 'Montserrat';
    color: #fff;
    font-weight: 500;
}

.hero-btns{
    margin-top: 20px;
}

.hero-btns a + a{
    margin-left: 15px;
}

.coundown-area{
    width: 55%
}

.event-text-content,
.event-btn-area{
    width: 22.5%;
}

.event-date-content{
    padding: 20px 30px;
    text-align: center;
}

.event-date-content span{
    display: block;
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 24px;
    text-transform: uppercase;
}

.event-date-content .event-date-data{
    font-size: 48px;
    position: relative;
}

.event-date-label{
    color: #fc5a1b;
}

.event-date-data::after{
    content: ':';
    display: block;
    position: absolute;
    right: -40px;
    font-size: 48px;
    top: -5px;
} 

.event-date-data.last:after{
    display: none;
}

.event-text-content p{
    font-family: 'Montserrat';
    font-size: 18px;
    margin-bottom: 10px;
    color: #292929;
    font-weight: 500;
}

.event-countdown-content-wrap{
    border: 1px solid #d0d0d0;
    padding: 30px 10px;
}

.event-countdown-section{
    padding: 70px 0;
}

.world-meeting-desc p{
    margin-bottom: 20px;
}

.world-meeting-desc ul{
    margin: 20px 0 20px 20px;
}

.world-meeting-desc ul li{
    color: #7f7f7f;
    font-family: 'Droid Sans';
}

.world-meeting-desc ul li + li{
    margin-top: 20px;
}

.world-meeting-content{
    padding-right: 50px;
}

.world-meeting-participate{
    padding: 30px;
    border: 1px solid #d0d0d0;
}

.world-meeting-participate h3{
    font-size: 22px;
    color: #292929;
    margin-bottom: 30px;
    font-family: 'Montserrat';
    text-align: center;
    font-weight: 500;
}

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

ul.bearing-checkbox-list li{
    position: relative;
    line-height: 30px;
    padding: 0px 0px 10px 50px;
    margin-bottom: 20px;
    font-size: 18px;
    font-family: 'Droid Sans';
}

ul.bearing-checkbox-list li:before {
    font-family: 'FontAwesome';
    content: '\f00c';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 30px;
    height: 30px;
    border: 1px solid #999999;
    text-align: center;
    line-height: 28px;
    font-size: 24px;
    color: #fc5a1b;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

ul.bearing-checkbox-list li:hover:before{
    background: #fc5a1b;
    border-color: #fc5a1b;
    color: #fff;
}

.meeting-section{
    padding: 70px 0;
}

section.business-network-section{
    overflow: hidden;
}

.network-content-list{
    padding-top: 10px;
}

.bn-content-icon{
    margin-right: 30px;
	width: 30px
}

.bn-content-icon img{
    margin-top: 5px;
}

.bn-list-text-content {
    width: calc(100% - 60px);
}

.bn-list-text-content h3{
    font-size: 18px;
    color: #292929;
    line-height: 1.4;
    font-weight: 500;
}

.network-content-item + .network-content-item{
    margin-top: 20px;
}

.business-network-content{
    padding: 0 20px;
    max-width: 600px;
}

.business-network-section{
    padding: 50px 0 0;
}

/* brand section */
.brand-section{
    padding: 70px 0;
}
.brand-section .bearing-title{
    text-align: center;
}

.brand-content + .brand-content{
    margin-top: 40px;
}

/* why join  */
.meeting-hall-sec{
    margin: 70px 0;
}
.why-join-section{
    padding: 70px 0;
}

.why-join-img{
    padding-right: 40px;
}

.why-join-content ul.bearing-checkbox-list{
    margin: 30px 0 40px;
}

.meeting-hall-desc,
.meeting-hall-img{
    width: 50%;
}

.meeting-hall-desc{
    padding: 40px;
    background: #FC5B1D;
}

.meeting-hall-desc .bearing-title,
.meeting-hall-desc p{
    color: #fff;
}

.meeting-hall-img img {
    height: 100%;
    object-fit: cover;
}

.pricing-tables-wrap{
    margin: 0 -25px;
}

.pricing-table{
    padding: 0 25px;
    width: 33%;
}

.pricing-table-outer{
   border: 1px solid #d0d0d0;
   height: 100%;
   position: relative;
   z-index: 1;
}

.pricing-table-outer:before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: #002B5E;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    transition: transform 0.3s ease-out;
    -webkit-transition: transform 0.3s ease-out;
    -moz-transition: transform 0.3s ease-out;
    -ms-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform-origin: 0 50%;
}

.pricing-table-outer:hover:before{
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
}

.pricing-table-head{
    padding: 25px;
    border-bottom: 1px solid rgba(0,0,0,0.10);
    text-align: center;
}

.pricing-table-head h3.price{
    font-size: 84px;
    line-height: 1.2em;
    margin-bottom: 5px;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}

.pricing-table-outer:hover .pricing-table-head h3.price{
    color: #fff;
}

.pricing-table-head h3.price sup{
    font-size: 50px;
}

.pricing-table-name{
    color: #8f8f8f;
    margin-bottom: 0px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}

.pricing-table-outer:hover .pricing-table-name{
    color: #fff;
}

.pricing-table-features{
    padding: 25px;
    text-align: center;
    height: 100%;
}

.pricing-table-features h3{
    font-size: 18px;
    margin-bottom: 10px;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}

.pricing-table-outer:hover .pricing-table-features h3{
    color: #fff;
}

.pricing-table-features ul{
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.pricing-table-features ul li{
    margin-bottom: 7px;
    line-height: 30px;
    position: relative;
    color: #7f7f7f;
    padding-left: 25px;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}

.pricing-table-outer:hover .pricing-table-features ul li{
    color: #fff;
}


.pricing-table-features ul li:before {
    font-family: 'FontAwesome';
    content: '\f00c';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 30px;
    font-size: 18px;
    color: #fc5a1b;
}

.pricing-table-sec{
    position: relative;
    padding: 70px 0;
}

.section-head{
    margin-bottom: 60px;
    text-align: center;
}

.section-head p{
    font-size: 18px;
    font-weight: 400;
}

.section-head p a{
    color: #FC5B1D;
}

.pricing-table-features .icon-btn{
    background: #EF581A;
}

.contact-info h2.bearing-title{
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 30px;
}

.contact-info p{
    font-family: 'Montserrat';
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.contact-sec{
    padding: 70px 0;
}

/* footer */

.footer{
    background: #161616;
    padding: 15px 0;
}

.footer-link{
    margin-top: 30px;
}

.footer-link a{
    display: block;
    color: #7f7f7f;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}

.footer-link a:hover{
    color: #EF581A;
}

.contact-map iframe{
    width: 100%;
}

.page-sec{
    padding: 70px 0;
}

.page-sec .wp-block-table td, .page-sec .wp-block-table th{
    border: 0 none;
}

@media (max-width: 991px){
    nav.site-nav {
        position: fixed;
        top: 0;
        left: 0;
        background: #292929;
        width: 50%;
        z-index: 999;
        height: 100%;
        padding: 20px 30px;
        transition: transform 0.3s ease-out;
        -webkit-transition: transform 0.3s ease-out;
        -moz-transition: transform 0.3s ease-out;
        -ms-transition: transform 0.3s ease-out;
        -o-transition: transform 0.3s ease-out;
        transform: scaleX(0);
        -webkit-transform: scaleX(0);
        -moz-transform: scaleX(0);
        -ms-transform: scaleX(0);
        -o-transform: scaleX(0);
        transform-origin: 0 50%;
    }

    nav.site-nav.active-menu{
        transform: scaleX(1);
        -webkit-transform: scaleX(1);
        -moz-transform: scaleX(1);
        -ms-transform: scaleX(1);
        -o-transform: scaleX(1);
    }
    
    .main-menu > li > a {
        padding: 9px 0;
    }

    header.site-header {
        padding: 20px 0;
    }
    
    .menu-toggle {
        color: #FC5B1D;
        cursor: pointer;
        font-size: 45px;
    }

    .coundown-area,
    .event-text-content, 
    .event-btn-area{
        width: 100%;
    }

    .event-btn-area{
        margin-top: 30px;
    }

    .meeting-hall-desc, .meeting-hall-img{
        width: 100%;
    }

    .pricing-table{
        width: 50%;
        margin-bottom: 30px;
    }

    .pricing-table:last-child{
        margin-bottom: 0;
    }
}

@media (max-width: 767px){

    .hero-text-content {
        max-width: 450px;
        transform: scale(.5);
        transform-origin: 0 54%;
    }
   
    .event-date-content span{
        font-size: 16px;
    }

    .event-date-data{
        font-size: 24px !important;
    }

    .event-date-data::after{
        font-size: 24px;
    }

    .event-date-content {
        padding: 8px 10px;
        text-align: center;
        right: -15px;
        top: 0;
    }

    .event-countdown-content-wrap{
        padding: 15px;
    }

    .event-countdown-section,
    .meeting-section,
    .brand-section{
        padding: 50px 0;
    }

    .hero-title{
        font-size: 28px;
    }

    .hero-text-content p{
        font-size: 14px;
    }

    .hero-text-content-wrap{
        padding-left: 20px;
    }

    .pricing-table{
        width: 100%;
        padding: 0;
    }

    .pricing-tables-wrap{
        margin: 0;
    }

}

@media (max-width: 575px){
    /* .hero-sec-content img {
        height: 600px;
        object-fit: cover;
    } */

    .event-date-data::after {
        right: -15px;
        top: 0;
    }

    .meeting-hall-desc{
        padding: 15px;
    }

    .bearing-title{
        font-size: 24px;
        line-height: 1.5;
    }

    .business-network-content{
        padding: 0 15px;
    }

    
}

.page-sec.thank-you-sec {
  height: 500px;
  position: relative;
  background: #E9EAEC;
}
.thank-you-content {
  position: absolute;
  max-width: 500px;
	width: 90%;
  padding: 40px;
  background: #fff;
  border: 1px solid #C1C1C1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.not-found-page {
    text-align: center;
    height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1.bp-error {
    font-size: 68px;
    font-weight: 800;
    line-height: 1;
}

a.error-page-link {
    display: inline-block;
    margin: 30px auto 0;
    text-decoration: none;
}

.event-btn-area a + a {
    margin-top: 15px;
}
.world-meeting-desc a {
    color: #fc5a1b;
}

section.speaker-section {
    padding: 70px 0 20px;
}


.speaker-content-box {
    position: relative;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    padding-bottom: 50px;
}

.speaker-inner-content {
    border: 1px solid #d0d0d0;
    padding-top: 52px;
    margin-top: -81px;
}

.speaker-content-thubmail {
    width: 100%;
}

.speaker-content-thubmail img {
    width: 100%;
    height: auto;
}

.speaker-heading {
    background: #fff;
    width: 90%;
    margin: -39px auto 0;
    text-align: center;
    border: 1px solid #d0d0d0;
    padding: 15px 5px;
    position: relative;
}

.speaker-heading h3 {
    line-height: 1;
    font-size: 20px;
    color: #000;
}

.speaker-heading span {
    font-size: 15px;
    line-height: 1;
    color: #fc5a1b;
}

.speaker-bio {
    padding: 20px;
}
.participant-list-request {
    padding-bottom: 50px;
    text-align: center;
}

.participant-list-request h2.bearing-title {
    margin: 0;
}

.new-participant-logos img{
	display: block;
	width: 100%
}

.banner-sec {
    position: relative;
    padding: 50px 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.bp-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #11c3f0;
    opacity: 0.9;
    z-index: 9;
}

.banner-content {
    position: relative;
    z-index: 9;
}

.banner-content .bearing-title {
    color: #fff;
}

.banner-content .banner-desc {
    color: #fff;
}

.banner-btn-area {
    position: relative;
    text-align: right;
    z-index: 9;
}

.banner-btn-area .button.icon-btn{
	border: 1px solid #fff
}
.site-logo img {
    max-width: 200px;
    height: auto;
}

@media (max-width: 991px){
	.banner-btn-area{
		text-align: left;
		margin-top: 30px
	}
}
.text-center {
    text-align: center;
}

