
/* 
* BASIC STYLE
  - General Style    
  - Button Style      
      
* HEADER 
  - Header Style
  
* CONTANT
  - Banner Style
  - Typography css
  - Service Style
  - Gallery Css
  - Team Css
  - Testimonial Css
  - Blog Css
  - Process Css
  - Contact Form Css
  
* FOOTER/*



================================================
	    Fonts - Raleway and Opensans
	================================================
*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,600i,700,800|Raleway:400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap');

/*
	================================================
        Common CSS
	================================================
*/
* {
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

/* colors */
.primary-color {
    color: #a4bf1c;
}
.white-color{
    color: #fff;
}

.pt-100{
    padding-top: 100px !important;
}
.pb-0{
    padding-bottom: 0px !important;
}
.mb-100{
    margin-bottom: 100px !important;
}
.pb-100{
    padding-bottom: 100px !important;
}
.pt-50{
    padding-top: 50px !important;
}
p{
    font-weight: 600;
    color: #888;
}
.btn-primary {
    border: 2px solid #a4bf1c;
    background-color: #a4bf1c;
    position: relative;
    z-index: 0;
}

.btn-info {
    color: #fff;
    background-color: #303030;
    border-color: #303030;
}
.btn-info:hover {
    color: #a4bf1c;
    background-color: #ffffff;
    border-color: #a4bf1c;
}
.btn {
    position: relative;
    padding: 0 30px;
    height: 50px;
    line-height: 50px;
    border-radius: 4px;
    border-width: 0;
    font-size: 14px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    letter-spacing: -0.04em;
    overflow: hidden;
}
.btn-secondary {
    color: #fff;
    background-color: #a4bf1c;
    border-color: #6c757d;
}
.btn-primary i {
    margin-left: 10px;
}
label{
    font-weight: 600;
}
.btn-primary::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    background-color: #fff;
    height: 100%;
    z-index: -1;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    color: #a4bf1c;
    border-color: #fff;
}

.btn-primary:focus {
    color: #a4bf1c;
    background-color: #fff;
    border-color: #fff;
}

.custom-navbar .navbar-nav li a:hover,
.custom-navbar .navbar-nav li a.active,
.common-color {
    color: #a4bf1c;
}

.common-back-color {
    background-color: #a4bf1c;
}

/* Basic-stylesheet */
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 23px;
    color: #303030;
    font-weight: 400;
}

ul {
    list-style: none;
}

a {
    color: #888;
    text-decoration: none;
    background-color: transparent;

}

a:hover {
    color: #303030;
    text-decoration: none;
    transition: 0.5s ease-in-out;
}

p {
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 0.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Open Sans', sans-serif;
}


/* Header-css */

/* Main Menu - Starts */
.logo {
    max-height: 80px;
}

.logo-text {
    text-transform: uppercase;
    display: inline-block;
    line-height: 30px;
    font-size: 30px;
    vertical-align: middle;
    padding-left: 10px;
}

.logo img {
    width: 165px;
}

.logo-text span {
    display: block;
}

.dropdown:hover>.dropdown-menu {
    display: block;
}

.dropdown>.dropdown-toggle:active {
    pointer-events: none;
}

.navbar-nav li a {
    font-size: 15px;
    font-weight: 600;
    padding-left: 20px !important;
}

.navbar-nav li>a {
    padding: 34px 15px;
}
.navbar-nav li>a.active, .navbar-nav li>a:hover{
   color: #a4bf1c;
}

.navbar {
    padding: 0 0;
    float: right;
}

.dropdown-menu {
    box-shadow: 0px 0px 25px rgba(0, 0, 0, .2);
    border-width: 0;
    border-radius: 0;
    padding: 0;
    margin-top: 25px;
}

.dropdown-menu .dropdown-item {
    padding: 10px 16px 8px;
    border-radius: 0;
    border-bottom-width: 1px;
    font-weight: 400;
    font-size: 14px;
    min-width: 200px;
    text-transform: unset;
    font-weight: 600;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #fff;
    text-decoration: none;
    background-color: #a4bf1c;
}

.dropdown-menu .dropdown-item:last-child {
    border-bottom-width: 0;
}

.dropdown:hover>.dropdown-menu {
    -webkit-animation: move-up .3s ease 1 forwards;
    -moz-animation: move-up .3s ease 1 forwards;
    -ms-animation: move-up .3s ease 1 forwards;
    -o-animation: move-up .3s ease 1 forwards;
    animation: move-up .3s ease 1 forwards;
}

/* select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
 }
select::-ms-expand {
    display: none;
} */
@-webkit-keyframes move-up {
    0% {
        margin-top: 25px;
    }

    100% {
        margin-top: -5px;
    }
}

@-moz-keyframes move-up {
    0% {
        margin-top: 25px;
    }

    100% {
        margin-top: -5px;
    }
}

@-ms-keyframes move-up {
    0% {
        margin-top: 25px;
    }

    100% {
        margin-top: -5px;
    }
}

@-o-keyframes move-up {
    0% {
        margin-top: 25px;
    }

    100% {
        margin-top: -5px;
    }
}

@keyframes move-up {
    0% {
        margin-top: 25px;
    }

    100% {
        margin-top: -5px;
    }
}

.fixed-header-menu {
    z-index: 7;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}

.fixed-header-menu .navbar-brand .logo {
    max-height: 60px;
}

.fixed-header-menu .navbar-brand .logo-text {
    font-size: 22px;
}

.main-header-menu {
    background-color: #fff;
    z-index: 999;
    padding: 8px 0;

}
.fixed-top{
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);

}
#resMenuCloseIcon {
    display: none;
}

.navbar-brand {
    padding-top: 10px;
    padding-bottom: 8px;
}

/* .fixed-header-menu .navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
} */
.fixed-header-menu .navbar-nav li>a {
    padding: 10px 15px;
}

/* Main Menu - Ends */

.back-effect {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -35px;
    content: "";
    z-index: -1;
    -webkit-transform: skew(-30deg);
    -ms-transform: skew(-30deg);
    transform: skew(-30deg);
    background-color: #a4bf1c;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    width: 333px
}

/* .custom-navbar.sticky .back-effect{
	opacity: 1;
} */


/* Slider-start */
/*==========================  START HOME ============================*/

.home {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.home .home-image::before {
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: 1;
}

.home .home-detail {
    position: absolute;
    top: 0;
    right: 0;
    margin: auto;
    left: 0;
    bottom: 0;
    height: 244px;
    text-align: center;
    padding: 0 70px;
    z-index: 1;
}

.home .home-title {
    font-size: 80px;
    font-weight: 900;
    color: #fff;
    line-height: 0px;
}

.home h2 {
    font-weight: 800;
    color: #a4bf1c;
}

.home .owl-item.active h1.home-title {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

.home .owl-item.active h2 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.3s;
}

.home .owl-item.active .home-button {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.3s;
}

.wow {
    visibility: hidden;
}

.owl-carousel .owl-dots {
    text-align: center;
    padding: 10px 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.owl-carousel .owl-dot.active {
    background-color: #a4bf1c !important;
}

.owl-carousel .owl-dot {
    height: 15px;
    margin-right: 10px;
    width: 15px;
    background-color: #fff !important;
    border: 1px solid #a4bf1c !important;
    border-radius: 100px;
}

/* Slider-end */

/* WHY US PART - IMAGES/PULSE/SERVICES */

.whyus {
    padding: 0;
    margin: 0;
    height: 100%;
    overflow: hidden;
}

.fitness,
.crossfit {
    padding: 0 0 2em 0;
    margin: 0;
    height: 100%;
    background: #a4bf1c;
}

.bodybuilding,
.cardio {
    padding: 0 0 2em 0;
    margin: 0;
    height: 100%;
    background: #93ad10;
}

.why-images {
    width: 100%;
    height: 50%;
    overflow: hidden;
    display: flex;
    -webkit-justify-content: center;
}


.why-img {
    width: 50px;
    margin-top: 50px;
}

.whys {
    width: 100%;
    padding-top: 4%;
    text-align: center;
}

.whys p {
    color: #fff;
}

.whys h2 {
    font-size: 30px;
    color: #ffffff;
    font-weight: 900;
}


/* Why-us-end */




/* Process-start */

.choose {
    padding: 100px 0;
    display: flex;
    align-items: stretch;
}

@media only screen and (max-width: 992px) {
    .choose {
        padding: 60px 0;
        flex-wrap: wrap;
    }
}

.choose-left {
    width: 100%;
    margin-right: 60px;
    position: relative;
}

@media only screen and (max-width: 992px) {
    .choose-left {
        width: 100%;
        margin-bottom: 60px;
    }
}

.choose-left::after {
    content: "";
    display: block;
    width: 70%;
    height: 75%;
    background: rgb(164, 191, 28);
    position: absolute;
    right: -5%;
    top: -3%;
    z-index: 199;
    -webkit-clip-path: polygon(0 0, 100% 0, 61% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 61% 100%, 0% 100%);
}

.choose-left__img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 200;
    -webkit-clip-path: polygon(0 0, 100% 0, 64% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 64% 100%, 0% 100%);
}

.choose-left__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.choose-right__title {
    margin-bottom: 60px;
}
.choose-right__title p{
    font-weight: 600;
    color: #888;
}
.choose-right__title .line {
    width: 30px;
    height: 5px;
    background-color: #a4bf1c;
    display: block;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    position: relative;
    margin-bottom: 20px;
}

.choose-right__title .line:after {
    content: "";
    width: 5px;
    height: 5px;
    background-color: #a4bf1c;
    display: block;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    right: -30%;
    bottom: 0;
}

.choose-right__title h3 {
    margin-bottom: 20px;
    font-size: 50px;
    font-weight: 900;
    line-height: 80px;
}
.choose-right__item {
    display: flex;
    margin-bottom: 40px;
    align-items: flex-start;
}

.choose-right__item-icon {
    width: 25%;
    margin-right: 30px;
}
.choose-right__item-icon h2 {
    font-size: 50px;
    font-weight: 900;
    color: #eee;
    border: 5px dotted #eee;
    text-align: center;
    border-radius: 100px;
    height: 110px;
    width: 110px;
    line-height: 100px;
}

.choose-right__item-icon i {
    font-size: 18px;
    color: #232227;
    width: 80px;
    height: 80px;
    border: 2px solid #232227;
    text-align: center;
    line-height: 76px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: 300ms all;
    -webkit-transition: 300ms all;
    -moz-transition: 300ms all;
    -ms-transition: 300ms all;
    -o-transition: 300ms all;
}

.choose-right__item-icon i:hover {
    background-color: #a4bf1c;
    color: #fff;
}

.choose-right__item-text p{
    font-weight: 600;
    color: #888;
}

.choose-right__item h4 {
    margin-bottom: 15px;
    font-size: 35px;
    font-weight: 800;
    color: #303030;
}


/* Process-end */



/* Feature-section-start */
.feature-section{
    padding: 0px 0px 100px 0px;
}
.section-heading{
    width: 60%;
    margin: 0 auto;
    margin-bottom: 40px;
}
.section-heading h2{
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 800;
}
.section-heading p{
    font-weight: 600;
}
.feature-block {
	text-align:center;
	padding:30px;
	text-align:center;
	margin:30px auto 0;
	background-color:#fff;
	box-shadow:0 0px 3px #eee;
	-o-box-shadow:0 0px 3px #eee;
	-webkit-box-shadow:0 0px 3px #eee;
	cursor:pointer;
	transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}
.feature-block:hover {
	margin-top: 25px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
	-o-box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
	-webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
}
.feature-block h4 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #303030;
}
.feature-block i {
    font-size: 36px;
    width: 100px;
    background-color: #ffffff;
    height: 100px;
    border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-border-radius: 50%;
    display: inline-block;
    line-height: 100px;
    border: 2px solid #a4bf1c;
    margin: 20px 0;
    color: #a4bf1c;
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    box-shadow: 0px 2px 0 #a4bf1c;
    -o-box-shadow: 0px 2px 0 #a4bf1c;
    -webkit-box-shadow: 0px 2px 0 #a4bf1c;
}
.feature-block:hover i {
	background-color:#a4bf1c;
	color:#fff;
}
.feature-block:hover h4 {
	color:#a4bf1c;
}
.list-style li {
	list-style:none;
}


/* Feature-section-end */





/* Core-value-start */
.values-area {
    position: relative;
    background-color: #a4bf1c;
    background-image: url(../images/dot.png);
    background-position: bottom 50px right 0px;
    background-repeat: no-repeat;
    padding: 50px 0px 0px 0px;
    }

    .values-area h2 {
        font-size: 70px;
        text-transform: uppercase;
        font-weight: 900;
        line-height: 100px;
    }
    .seperator span {
        display: inline-block;
        width: 100px;
        height: 5px;
        background: #fff;
    }
    .values-area h3{
        font-size: 25px;
    font-weight: 700;
    margin-top: 20px;
    }
    .values-area p{
        color: #fff;
    margin-top: 20px;
    }

  .value-items {
    border-radius: 20px;
    overflow: hidden; }
  
  .shadow-white {
    box-shadow: 0 0 7px 2px rgba(255, 255, 255, 0.3); }
  
  .value-item {
    padding: 40px 30px;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: #ececec;
    background-color: #f9f9ff; }
    .value-item .value-icon-box {
      font-size: 40px;
      color: #45303f; }
    .value-item .value-title {
      font-size: 16px;
      line-height: 1.3;
      font-weight: 400;
      color: #45303f; }
  

/* Core-value-end */




/* Schdule-start */
/* Schedule - Starts */

.schdule{
    padding: 100px 0px;
}
.schedule-banner {
    background: url('../img/banners/calendar.jpg') no-repeat center center;
}
.st-day-container {
    display: inline-block;
    width: 150px;
    margin-right: 2px;
}
.st-header {
    padding: 12px 10px 10px;
    font-weight: 600;
    border-left: 4px solid #a4bf1c;
    font-size: 14px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
    margin-bottom: 30px !important;
}
.st-cell .st-timing {
    margin-bottom: 4px;
}
.st-timing, .st-category {
    display: block;
}
.st-cell {
    margin-bottom: 20px;
    border: 2px dotted #a4bf1c;
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}
.st-timing {
    font-size: 14px;
}
.schedule-table-1, .schedule-table-2 {
    text-align: center;
}
.schedule-table-1 .st-timing, .schedule-table-1 .st-category {
    text-transform: uppercase;
}
.schedule-table-2 .st-cell, .schedule-table-2 .st-header {
    border-radius: 3px;
}
.schedule-table-1 .st-category {
    font-size: 13px;
}
.schedule-table-2 .st-category {
    font-size: 13px;
    font-weight: 600;
    background-color: #a4bf1c;
    color: #fff;
    padding: 2px 0px;
    border-radius: 40px;
}
.schedule-table-2 .st-img {
    max-height: 60px;
    margin-bottom: 6px;
    max-width: 60px;
}
.schedule-table-1 .st-cell {
    padding: 5px 5px 6px;
}
.schedule-table-2 .st-cell {
    padding: 10px 20px 8px;
}
.schedule-tabs .nav-tabs {
    border-bottom: none;
}
.schedule-tabs .nav-link {
    font-size: 14px;
    height: 36px;
    line-height: 32px;
    padding: 0 18px;
    border-width: 2px;
    border-style: solid;
    border-radius: 30px;
    margin-right: 10px;
}
.schedule-table {
    margin-top: 30px;
}
.schedule-table tbody td,
.schedule-table thead th {
    padding: 10px;
    font-size: 15px;
    text-align: center;
    vertical-align: middle;
}
/* Schedule - Ends */



/* Gallery-start */
.gallery{
    padding-bottom: 50px;
}
.gallery .gallery-item {
	position: relative;
	width: 25%;
	overflow: hidden;
}
.gallery-menu li {
	list-style: none;
	display: inline-block;
	font-size: 20px;
	text-transform: uppercase;
	margin: 2px 0;
}
.gallery-menu {
	margin: 50px 0 30px;
}
.gallery-menu li {
	padding: 6px 10px;
}
.gallery-menu li a {
    display: block;
    font-size: 14px;
    padding: 5px 10px;
    color: #303030;
    border-radius: 5px;
    border: 2px solid transparent;
    border-bottom: 3px solid transparent;
    font-weight: 600;
}
.gallery-menu li a:hover {
    color: #a4bf1c;
    border: 2px solid #a4bf1c;
    padding: 5px 10px;
    border-radius: 5px;
}
.gallery-menu li.active a {
    border-color: #a4bf1c;
    color: #a4bf1c;
    font-weight: 600;
    border: 2px solid #a4bf1c;
    padding: 5px 10px;
    border-radius: 5px;
}
.gallery .gallery-item .overlay {
	width: 100%;
	height: 100%;
	display: block;
	background: 0 0;
	position: absolute;
	top: 0;
	color: #fff;
	text-align: center;
	line-height: 100%;
 -webkit-transition: all .5s;
 transition: all .5s;
}
.gallery .gallery-item:hover .overlay {
	background:rgb(164, 191, 28, 0.8);
}
.gallery .gallery-item .overlay i {
	top: 60%;
	margin-top: -15px;
	position: absolute;
	left: 50%;
	margin-left: -15px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size:24px;
	color: transparent;
 -webkit-transition: all .5s;
 transition: all .5s;
	transform: rotate(0deg);
}
.gallery .gallery-item:hover .overlay i {
	color:#fff;
	margin-top: -40px;
	transform: rotate(90deg);
}

/* Gallery-end */


/* Pricing-Start */
.pricing {
    padding: 100px 0px;
    background-color: #a4bf1c;
    border-radius: 0px 0px 80% 0px;
}

.pricing .section-heading p{
color: #fff;
}

.our-pricing h1 {
	font-size: 3em;
	color: #fff;
	margin: 2% 0 5% 0;
	text-align: center;
	font-family: 'Poppins', sans-serif;
}
.card1 {
    margin-right: 2em;
}

.card{
	padding: 0;
	background: #fff;
    margin-bottom: 1em;
    border: none;
	box-shadow: 0 0 5px #3333;
	border-radius: 1em;
	overflow: hidden;
}

.comm-content {
	padding: 10% 0 10% 10%;
	overflow: hidden;
}
.comm-content p {
	font-size: 14px;
	margin-bottom: 4px;
}
.button{
    text-align: center;
    padding-bottom: 10%;
    width: 80%;
    margin: 0 auto;
}
.comm-img {
	width: 55px;
}
.comm-content h1{
    font-size: 35px;
    font-weight: 800;
    margin: 20px 0px;
}
.tick {
    font-size: 26px;
    font-style: normal;
    margin-right: 1em;
    color: #a4bf1c;
}}

.community p {
	padding: 2% 0;
}

.getpack {
	width: 64%;
    height: 50px;
    background: #3535f0;
    color: #fff;
    border: 0;
    font-size: 1.5rem;
    position: absolute;
    bottom: 4%;
    outline: none;
    left: 50%;
    border-radius: 2em;
    margin-left: -32%;
}
.getpack:hover {
	background: #293274;
}

/* Pricing-End */




/* Team-start */

/* CLIENTS PART STARTS */

.trainer{
    padding: 100px 0px;
}
.our-clients {
	overflow: hidden;
}

.our-clients h1 {
	font-size: 3em;
    margin: 3% 0 8% 3%;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}


.clients {
	padding: 0 3%;
	overflow: hidden;
	margin: 1em 0;
}

.feedback {
	padding: 0 0 0 4%;
	overflow: hidden;
}

.feedback p {
	font-size: 1em;
    line-height: 1.7;
    margin-bottom: 9px;
}

.identity {
    background: #a4bf1c;
    height: 6em;
    padding: 6% 0 0 8%;
    border-radius: 1em;
}

.identity h5 {
    font-size: 18px;
    color: #fff;
}

.identity h6 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.client-img {
    position: absolute;
    width: 106px;
    right: 11%;
    bottom: 0;
}


/* Team-end */


/* Testimonial-start */


ul.testimonials-card {
    padding: 0;
    overflow: hidden;
}

ul.testimonials-card li {
    float: left;
    position: relative;
    width: 50%;
    list-style: none;
    text-align: center;
    padding: 30px;
    min-height: 200px;
}

ul.testimonials-card li:before, ul.testimonials-card li:after {
    content: '';
    position: absolute;
}

ul.testimonials-card li:before {
    height: 100%;
    top: 0;
    left: -1px;
    border-left: 1px dashed #ddd;
}

ul.testimonials-card li:after {
    width: 100%;
    height: 0;
    top: auto;
    left: 0;
    bottom: -1px;
    border-bottom: 1px dashed #ddd;
}

ul.testimonials-card img {
    width: 70px;
    float: left;
    border-radius: 5px;
}

.testimonials-style {
    text-align: left;
    float: right;
    width: 80%;
}

ul.testimonials-card h4 {
    margin-top: 0;
    font-size: 22px;
    font-weight: 800;
}

.testimonial-rating{
    margin-bottom: 10px;
}
.testimonial-rating i.fa{
    color: #a4bf1c;
}

ul.testimonials-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: #888;
}

/* Testimonials-end */



/* Blog-start */

.blog{
    padding: 100px 0px;
}
.event-news-individual-container {
    box-shadow: 0 0 5px #3333;
    display: inline-block;
    margin-bottom: 30px;
    border-right: 5px solid #a4bf1c;
}
.event-news-img-container {
    position: relative;
}
.event-news-social.bottom-overlay {
    position: absolute;
    font-size: 13px;
    content: "";
    bottom: -15px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99;
    background-color: #a4bf1c;
    width: 80%;
    margin: 0 auto;
    border-radius: 5px;
    color: #fff;
}
.event-news-img-container {
    width: 40%;
    float: left;
}    
.event-news-img-container img {
    min-height: 188px;
}
.event-news-desc {
    display: inline-block;
    width: 60%;
    padding: 20px;
    min-height: 188px;
}
.event-news-desc > h3 {
    font-size: 22px;
    font-weight: 800;
    text-transform: capitalize;
    text-align: left;
    color: #a4bf1c;
}
.event-news-desc > p {
    font-size: 14px;
    margin-bottom: 15px;
    margin-top: 15px;
}
.events-news-card {
    -webkit-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.05);
}
.events-news-card .event-news-img-container,
.events-news-card .event-news-desc {
    width: 100%;
}
.events-news-card .event-news-social > div {
    display: block;
    margin: 0;
}
.events-news-card .event-news-desc > h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 2px;
}
.events-news-card .event-news-desc > p {
    -webkit-line-clamp: 2;
}
.event-news-detail-info-icons li span {
    font-size: 13px;
    font-weight: 600;
    padding-left: 8px;
}
.event-news-detail-info-icons li {
    width: 100%;
}
.event-news-detail-info-icons li i{
    color: #a4bf1c;
}
.event-news-detail-info-icons li {
    margin-bottom: 8px;
    font-weight: 600;
    color: #888;
}
.event-news-detail-info-icons {
    margin: 8px 0 0 0;
}
.event-news-footer a {
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
}
.event-news-footer a i {
    padding-left: 6px;
}
.event-news-social div {
    padding: 9px 9px;
}

.events-news-outer-container .event-news-individual-container {
    border: none;
}
.event-news-individual-container:hover {
    box-shadow: 0 0 5px #3333;
}
.events-news-card .event-news-social.bottom-overlay {
    position: absolute;
    font-size: 13px;
    content: "";
    padding: 0;
    top: 0;
    right: 0;
    left: unset;
    width: unset;
    z-index: 1;
}
/* .event-news-individual-container:not(.events-news-card) { */
.event-news-individual-container {
    position: relative;
}
/* .event-news-individual-container:not(.events-news-card) .event-news-footer { */
.event-news-individual-container .event-news-footer {
    position: absolute;
    bottom: 10px;
    right: 20px;
}

/* Blog-end */



/* Partners-start */
.partners{
    padding: 0px 0px 100px 0px;
}
.partners img{
    transition: 0.3s;
    opacity: .6;
    margin: 0 auto;
}
.partners img:hover{
    opacity: 1;
}
/* Partner-end */




/* Footer-start */
/*===============
21.  Footer
=================*/
.footer{
    background-color: #303030;
}
.footer--top{
  padding: 60px 0 30px;
  position: relative;
  z-index: 1;
}
.footer .form-control {
    border-radius: 7px;
    border: 0;
    color: #fff;
    font-size: 13px;
    transition: 0.3s;
}
.footer--top::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: .1;
}
.footer--bottom{
  padding: 20px 0;
  position: relative;
  background-color: #a4bf1c;
}
.footer--bottom p{
  margin: 0;
  color:#fff;
}
.footer .cab-widget--title {
    color: #fff;
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 800;
}
.has-icon i {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}
.has-icon{
    position: relative;
}
.footer .cab-aside--logo{
  justify-content: flex-start;
  background-color: transparent;
  text-align: left;
  padding: 0;
}
.footer .cab-aside--logo a{
    color:#fff;
}

.cab-widget{
  margin-bottom: 30px;
}
.footer .widget-social-media a{
    color:#fff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #a4bf1c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-right: 10px;
}
.footer .widget-social-media a:hover{
  color: #303030;
}
.footer ul{
  column-count: 2;
}
.footer ul li a{
  display: block;
  font-weight: 600;
  color:#fff;
  font-size: 13px;
  text-transform: uppercase;
  padding: 0 0 15px;
}
.footer ul li a:hover{
  color: #a4bf1c;
}

/* Footer-end */



/* News Details - Starts */
.news-qoute {
    display: block;
    padding: 28px 28px;
    position: relative;
    font-size: 18px;
    line-height: 28px;
    font-style: italic;
    border-left-width: 3px;
    border-left-style: solid;
    background-color: #a4bf1c;
    color: #fff;
    border-left: 4px solid #000;
}

.blog-detail h1{
    font-weight: 800;
    margin-top: 0px;
    color: #a4bf1c;
}
.blog-detail h2{
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
}
.news-details h1 {
    font-size: 40px;
    line-height: 1.1;
    font-weight: bold;
    margin: 0;
    word-wrap: break-word;
}
.news-details h2 {
    font-size: 18px;
    line-height: 1.25;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 0;
    color: #999;
    margin: 12px 0;
}
.news-stats-list li {
    margin-left: 20px;
    font-size: 14px;
}
.news-stats-list li i {
    margin-right: 3px;
}
.news-stats .float-left {
    font-size: 14px;
}
.news-details p {
    font-size: 16px;
    line-height: 1.5;
}
.news-banner-img {
    margin: 20px 0;
}
.news-video {
    text-align: center;
}
.news-banner-img-2 {
    margin-bottom: 20px;
}
.news-author-details {
    padding-left: 20px;
}
.news-author-details h3 {
    font-weight: 600;
    font-size: 18px;
}
.news-author-details a {
    font-style: italic;
    font-size: 14px;
}
.news-author > div {
    display: table-cell;
    margin-top: 0;
    vertical-align: top;
}
.news-author img {
    width: 200px;
}
.news-author {    
    margin-top: 30px;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
}
.news-author-details p {
    margin-bottom: 0;
    font-size: 15px;
}
.news-details-side .footer-column {
    padding-top: 0;
}
.news-details-side .footer-column h3 {
    margin-top: 0;
    background-color: #f2f2f2;
    border-left: 4px solid #a4bf1c;
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
}
/* Footer Section - Starts */
.footer-column h3 {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 20px;
    margin: 20px 0 30px 0;
}
.footer-column p {
    font-size: 14px;
}
.footer-bottom-container {
    height: 50px;
}
.footer-bottom-container .desc {
    line-height: 50px;
    text-align: center;
    font-size: 14px;
}
.footer-column a:hover {
    text-decoration: none;
}
.footer-social-menu li a {
    font-size: 18px;
}
.footer-social-menu li {
    margin-right: 15px;
}
.footer-about-links li i {
    padding-right: 6px;
}
.list-vertical-reset li i {
    padding-right: 10px;
}
.footer-column {
    padding: 30px 0;
}
.footer-about-links li,
.list-vertical-reset li {
    font-size: 14px;
    margin: 12px 0;
}
.footer-logo {
    margin: 10px 0 20px 0;
    display: inline-block;
}
.footer-news-img {
    max-width: 72px;
    width: 100%;
}
.footer-news-desc-container {
    padding-left: 10px;
}
.footer-news-img-container,
.footer-news-desc-container {
    display: table-cell;
    vertical-align: top;
}
.footer-news-desc-container h4 {
    font-size: 15px;
    font-weight: 600;
}
.footer-news-desc-container .footer-news-dates {
    font-size: 12px;
    font-weight: 600;
}
.footer-news-img-container {
    width: 72px;
}
.footer-news article {
    margin-bottom: 20px; 
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
    padding: 15px;
}

/* Login-start */
.login-section{
    padding: 100px 0px;
}
.main-login{
    padding: 20px;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 7px;
    background-color: #fff;
    max-width: 600px;
    margin: 0 auto;
  }
  .main-login h3{
    text-align: center;
    font-size: 24px;
    font-weight: 800;
  }
  /*===============
4.  Tabs
=================*/

.nav-tabs{
    border-bottom: 0;
    margin-bottom: 30px;
    justify-content: center;
  }
  .nav-tabs .nav-link{
    position: relative;
    border-radius: 7px;
    color: var(--black);
    font-weight: 600;
    border: 0;
    margin: 0 5px;
  }
  .nav-tabs .nav-link:not(.active)::before{
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    margin: 0 auto;
    height: 2px;
    border-bottom: 2px dashed #7abd72;
  }
  .nav-tabs .nav-link:hover{
    color: #7abd72;
  }
  .nav-tabs .nav-item.show .nav-link,
  .nav-tabs .nav-link.active{
    color: #ffffff;
    background-color: #fff;
    background-color: #a4bf1c;
}

  /*===============
5.  Forms
=================*/
.has-icon{
    position: relative;
  }
  .has-icon i{
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
  }
  .form-control{
    border-radius: 7px;
    background-color:#f2f2f2;
    border: 0;
    color: #fff;
    font-size: 13px;
    transition: 0.3s;
  }
  .form-light .form-control{
    background-color: rgb(164, 191, 28, 0.5);
    border: 1px solid transparent;
    color: #6F8197;
  }
  .form-light .form-control:focus{
    background-color: rgb(164, 191, 28, 0.5);
    border-color: #7abd72;
    opacity: 1;
    color: #6F8197;
  }
  .form-control:focus{
    background-color: #444850;
    box-shadow: none;
    color: #fff;
  }
  .form-control:focus + i{
    color: #fff;
  }
  ::placeholder,
  :-ms-input-placeholder,
  ::-ms-input-placeholder{
    color: #6F8197;
    opacity: 1;
  }
  
  .custom-radio .custom-control-input:checked~.custom-control-label::before,
  .custom-checkbox .custom-control-input:checked~.custom-control-label::before{
    background-color: #7abd72;
  }
  .custom-control-input:active~.custom-control-label::before{
    background-color:rgba(122,190,114,.2);
  }
  .custom-control-input:focus~.custom-control-label::before{
    box-shadow: none;
  }
  
/* Contact-start */
.get-in-touch{
    padding: 100px 0px;
}
.contact{
    padding: 0px 0px 100px 0px;
}
.get-icon img{
    width: 50px;
}
.contact-details-container {
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
    padding: 20px;
    text-align: center;
    border-left: 4px solid #a4bf1c;
}
.contact-details-container h3{
    font-size: 24px;
    font-weight: 600;
    margin-top: 20px;
    color: #a4bf1c;
}
.gmap_canvas{
    height: 350px;
}
.contact-form{
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
   padding: 20px;
}
.contact-social-menu li {
    margin-right: 15px;
}
.list-inline li {
    float: left;
    list-style-type: none;
}
.contact-social-menu {
    display: inline-block;
}

  /* Subheader-start */
.sub-subheader{
	position: relative;
	background-image: url('../images/address/address-back.jpg');
	background-size: cover;
	background-position: center;
	text-align: left;
	z-index: 0;
	padding: 200px 0px 100px 0px;
  }
  .sub-subheader::before{
	background-image: linear-gradient(270deg,#000000,#303030);
	pointer-events: none;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	zoom: 1;
	filter: alpha(opacity=50);
	-webkit-opacity: .5;
	-moz-opacity: .5;
	opacity: .5;
	-webkit-transition: opacity 3s;
	-moz-transition: opacity 3s;
	-o-transition: opacity 3s;
	transition: opacity 3s;
	z-index: -2;
  }
  .sub-subheader:hover::before{
	zoom: 1;
	filter: alpha(opacity=0);
	-webkit-opacity: 0;
	-moz-opacity: 0;
	opacity: 0;
  }
  .sub-subheader::after{
	background-image: -webkit-linear-gradient(-180deg,#7abd72,var(--black));
	background-image: -moz-linear-gradient(-180deg,#7abd72,var(--black));
	background-image: -ms-linear-gradient(-180deg,#7abd72,var(--black));
	background-image: -o-linear-gradient(-180deg,#7abd72,var(--black));
	background-image: linear-gradient(270deg,#7abd72,var(--black));
	pointer-events: none;
	content: "";
	position: absolute !important;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	filter: alpha(opacity=50);
	-webkit-opacity: .5;
	-moz-opacity: .5;
	opacity: .5;
	-webkit-transition: opacity 3s;
	-moz-transition: opacity 3s;
	-o-transition: opacity 3s;
	transition: opacity 3s;
	background-image: -webkit-linear-gradient(0deg,#7abd72,var(--black));
	background-image: -moz-linear-gradient(0deg,#7abd72,var(--black));
	background-image: -ms-linear-gradient(0deg,#7abd72,var(--black));
	background-image: -o-linear-gradient(0deg,#7abd72,var(--black));
	background-image: linear-gradient(90deg,#7abd72,var(--black));
	zoom: 1;
	filter: alpha(opacity=0);
	-webkit-opacity: 0;
	-moz-opacity: 0;
	opacity: 0;
	z-index: -1;
  }
  .sub-subheader:hover::after{
	zoom: 1;
	filter: alpha(opacity=50);
	-webkit-opacity: .5;
	-moz-opacity: .5;
	opacity: .5;
  }
  
  .sub-subheader--inner h1{
	color: #fff;
	font-size: 48px;
	margin: 0;
	font-weight:800;
  }
  .sub-subheader--inner .breadcrumbs{
	display: flex;
	justify-content: left;
	align-items: left;
  }
  .sub-subheader--inner .breadcrumbs li{
	color: #dcdcdc;
	font-weight: 600;
  }
  .sub-subheader--inner .breadcrumbs li a{
	color: #fff;
	position: relative;
	opacity: 1;
  }
  .sub-subheader--inner .breadcrumbs li a::before{
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 0;
	height: 1px;
	background-color: #fff;
	transition: 0.3s;
  }
  .sub-subheader--inner .breadcrumbs li a + span{
	padding: 0 10px;
	opacity: .4;
  }
  .sub-subheader--inner .breadcrumbs li a:hover::before{
	width: 100%;
  }
  



