/********** Template CSS **********/
:root {
    --primary: #fcde11;
    --secondary: #555555;
    --light: #dddddd;
    --dark: #333333;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 40px 0;
    color: var(--light);
    font-family: 'sporty-pro', sans-serif;
    font-size: 18px;
    font-weight: normal;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link,
    .navbar.shadow-sm .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid var(--light);
    }
}

@media (min-width: 992px) {
    .navbar.shadow-sm .navbar-nav .nav-link {
        padding: 20px 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .85);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

.carousel-caption .carousel-text h1 {font-size: 150%; text-align: center;}
@media (min-width: 640px) {
	.carousel-caption .carousel-text h1 {font-size: 200%;}
}
@media (min-width: 960px) {
	.carousel-caption .carousel-text h1 {font-size: 300%;}
}
@media (min-width: 1200px) {
	.carousel-caption .carousel-text h1 {font-size: 400%;}
}


@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 300px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .85), rgba(0, 0, 0, .85)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Service ***/
.service-item .btn {
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 50px;
    height: 50px;
    color: var(--primary);
    background: var(--dark);
    opacity: 0;
}

.service-item:hover .btn {
    right: 0;
    bottom: 0;
    opacity: 1;
}


/*** Team ***/
.team-item .team-img::before,
.team-item .team-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .85);
    transition: .5s;
}

.team-item .team-img::after {
    left: auto;
    right: 0;
}


.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 3px;
    color: var(--primary);
    background: var(--dark);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    padding: 10px;
    background: var(--secondary);
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .1;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 1.5rem;
    font-size: 15px;
    background: var(--dark);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}


/* cu */

h1, h2, h3, h4, h5, h6 {
    font-family: 'sporty-pro', sans-serif;
	font-weight: normal;
}

div.carousel-text h1 a {
	color: var(--primary);
}

.text-primary {
	color: var(--primary) !important;
}
.btn {
    font-family: 'sporty-pro', sans-serif;
	font-weight: normal;
	font-size: 100%;
	line-height: 100%;
}
.btn-primary {
	background: var(--primary) !important;
	border: none;
	color: var(--dark);
}

.team-news {background: var(--primary);}
.team-news h5 {margin:0; line-height: 99%; font-size: 110% !important;}
.team-news img {transition-duration: .5s;}
.team-news:hover img {opacity: .75;}

.news-article {background-color: var(--dark); max-width: 100%; padding: 0; margin-top: 50px;}
.news-article img {width: 100% !important;}
.news-article h1 {color: var(--primary) !important; padding: 0 2%;}
.news-article .news-article-body {color: #ffffff; max-width: 95%;}
.news-article .news-article-body a {color: var(--primary); font-weight: bold; text-decoration: underline;}
.news-article p small {color: #ffffff;}

.bg-secondary {background: var(--dark);}
.navbar-transd {background: rgba(0,0,0,.9) !important;}

.service-item p, .team-item p {color: #cccccc;}

.navbar-toggler {background:#444444 !important; border-radius: 8px; color: #000000 !important;}
.navbar-toggler.collapsed {background: #444444 !important;}
.navbar-toggler-icon {color: #000000 !important;}

.carousel-item h1 {text-shadow: 0px 0px 3px #000000, 0px 0px 5px #000000, 0px 0px 10px #000000;}
.cob {width:100%;}
.cob h3, .cob p {width:90% !important; margin: 15px 0%; padding-left:10% !important;} 

.team-item h5 {font-size:100%;}
@media (min-width: 1200px) {
.team-item h5 {font-size:120%;}
}

.btn-primary:hover {border:none !important;}

body {background:#000000 url("../img/background.jpg") top center no-repeat fixed; background-size: 100% auto !important; color:#aaaaaa !important; font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";}

nav {border-bottom:solid 3px var(--primary);}
.footer {border-top:solid 3px var(--primary);}
.footer {background-color: rgba(0,0,0,.9);}

span.navbar-toggler-icon {
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.bg-gold-hero h1 {color: var(--primary);}
.bg-gold-hero {background: url("../img/hero-background.jpg") center center  !important;}

a.navbar-brand img {height: 40px;}
@media (min-width: 1200px) {
	a.navbar-brand img {height: 60px;}
}

.form-control:focus {box-shadow: none; border: solid 1px var(--primary); box-shadow: 0px 0px 3px var(--primary);}
div.registration-page {background-color: rgba(0,0,0,.9); padding: 3%; border:solid 1px #333333; margin-top: 50px;}
div.registration-page h1 {color: var(--primary); margin-top: 0;}

div.registration-form-section h2 {background: #333300; padding: 8px; font-size: 24px;}
div.registration-form-section { margin-top: 50px;}

div.registration-page .note-required {color: var(--primary); font-weight: bold; font-style: italic;}

input.required-field, select.required-field, textarea.required-field {border:solid 1px var(--primary); border-left: solid 5px var(--primary);}

div.registration-page textarea {resize: none;}

