
body, html {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden !important;
    overflow-y: hidden;
    scroll-behavior: smooth;
}

button {
    transition: all 0.5s;
    border: none;
    background: transparent;
    cursor: pointer;
}

button:focus {
    outline: none;
}
a{
    text-decoration: none !important;
}

.btn-default {
    padding: 12px 15px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    background: #555555;
    border-radius: 5px;
    position: relative;
    display: inline-block;
}

.btn-default:hover {
    box-shadow: 0 0 10px rgba(110, 156, 255, .5);
    padding: 12px 25px;
}
.pulse-button:focus {
    box-shadow: 0 0 0 0 rgba(90, 153, 212, 0.5);
    -webkit-animation: pulse 1.5s infinite;
}

.pulse-button:hover {
    /*-webkit-animation: none;*/
}

@-webkit-keyframes pulse {
    0% {
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    70% {
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
        box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
    }
    100% {
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
    }
}
.btn-fixed-cont{
    /*position: fixed;*/
    -webkit-perspective: 1000;
    -webkit-backface-visibility: hidden;
    left: 0;
    z-index: 100;
    margin-top: -70px;
}
.btn-fixed{
    width: 100px;
    height: 80px;
    color: white !important;
    background: #555555;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(110, 156, 255, .5);
}
.btn-fixed button{
    color: white;
}
.btn-fixed:hover {

}
.btn-editor{
    width: 250px;
    color: white !important;
    background: #555555;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(110, 156, 255, .5);
    padding: 10px;
}

/*Navbar*/
.brand-logo h2 {
    color: white !important;
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 600;
    border-radius: 5px;
    text-align: center;
    border: 1px solid white;
    padding: 10px;
    margin-right: 5px;
}

.navbar {
    padding: 20px 100px;
    transition: all 0.5s;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
    z-index: 1030;
}

.nav-link {
    color: white !important;
    text-transform: uppercase;
    margin-right: 10px;
    transition: all 0.5s;
    border-radius: 5px;
    /*border-bottom: 0px solid white;*/
}
.nav-link:hover{
    background: rgba(0,0,0,0.5);
    font-weight: 600;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 100px;
    transition: all 0.5s;
    background: #333333 !important;
}

.btn-nav {
    border: 1px solid white;
    background: transparent;
}

/*Navbar Ends*/

/*Banner*/
.banner {
    position: relative;
    height: 100vh;
    /*background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(../img/header-bg.png);*/
    background-size: cover;
    background-position: center center;
}

.banner-text-container {
    max-width: 500px;
    margin-left: 100px;
    color: white;
    text-align: justify;
    margin-top: 20vh;
}

.banner-text-container h2 {
    font-weight: 700;
}

.banner-text {
    letter-spacing: 1px;
    /* font-size: 16px; */
    font-weight: 500;
    line-height: 1.3;
}

.banner-buttons {
    margin-top: 20px;
}

.banner-buttons a {
    margin-right: 10px;
}

.banner button {
    text-transform: uppercase;
}

.video-overlay {
    position: absolute;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
}
.custom-button-wrapper {
    display: none !important;
}

/*Banner Ends*/

.section-heading{
    padding: 30px 0;
    position: relative;
}
.back-arrow-abs{
    position: absolute;
    left: 5px;
    top: 10px;
}
.back-arrow-abs a .back-icon{
    color: #555555;
    font-size: 20px;
}
.section-header {
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #555555;
}

.section-heading .section-header-underline {
    border: 1px solid #555555;
    width: 3rem;
    margin: 0 auto;
}
.section-heading-w .section-header{
    color: white;
}
.section-heading-w .section-header-underline{
    border: 1px solid white;
    width: 3rem;
    margin: 0 auto;
}

/*About*/
/* Blocks */
.intro-section {
    position: relative;
}

.intro-section, .intro-section .container .row {
    height: 100vh;
    min-height: 900px;
}

.intro-section:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 70%;
    background: #555555;
    border-bottom-right-radius: 0px;
}

.intro-section h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
}

.intro-section p {
    color: white;
    font-size: 1.1rem;
    max-width: 400px;
    font-weight: 600;
}

.img-absolute {
    position: absolute;
    right: 10%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.img-absolute img {
    max-width: 600px;
    -webkit-box-shadow: 0 10px 50px -5px rgba(0, 0, 0, 0.4);
    box-shadow: 0 10px 50px -5px rgba(0, 0, 0, 0.4);
}

.about-section, .about-experience {
    padding: 50px;
}

.about-section p {
    text-align: justify;
}

.about-experience {
    background: #555555;
    color: white;
}

.exp-text {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
}

.quote {
    padding: 30px 10px;
    max-width: 800px;
    margin: auto;
}

.quote h2 {
    font-weight: 800;
    margin: 0;
    text-align: center;
}

.q-name {
    font-size: 12px;
    font-weight: 600;
}

.images-container {
    padding: 50px 0;
}

.gallery-img {
    box-shadow: 0.3rem 0.4rem 0.4rem rgba(0, 0, 0, 0.4);
}

.gallery-img img {
    transition: transform 400ms ease-out;
}

.gallery-img img:hover {
    transform: scale(1.15);
}

.about-list-text {
    line-height: 1.5;
    font-weight: 500;
}

.about-list {
    padding-left: 15px;
}

.about-para {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

/*About End*/

/*Today's Gem*/
.today-gem-section{
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../img/todays-gem-bg.jpg);
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
}
.gem-container{
    padding-top: 150px;
    max-width: 800px;
    margin: auto;
    text-align: center;
}
.gem-heading{
    font-size: 2.5rem;
    color: silver;
    font-weight: 700;
}
.gem-1{
    margin: 10px 0 50px;
    color: #c7c7c7;
    font-size: 1.5rem;
    font-weight: 500;
}
.gem-2{
    color: white;
    font-size: 2rem;
    font-weight: 600;
}
.gem-name{
    text-align: right;
    font-size: 1rem;
    font-weight: 400;
}

/*Today's Gem*/

/*FAQ*/

.search-cont{
    max-width: 700px;
    margin: auto;
    position: relative;
    margin-bottom: 30px;
}
.search-input{
    border-radius: 10px;
    font-size: 13px;
    color: #555555;
    height: 35px;
}
.search-btn-cont{
    position: absolute;
    right: 0;
    top: 0;
}
.search-btn{
    width: 100px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    height: 52px;
    border-radius: 10px;
    background: #555555;
    color: white;
}
.search-input:focus {
    outline: #555555;
    box-shadow: none;
    border-color: #555555;
}
input::-webkit-input-placeholder {
    color: #cccccc;
}

input:-moz-placeholder {
    color: #cccccc;
}

input::-moz-placeholder {
    color: #cccccc;
}

input:-ms-input-placeholder {
    color: #cccccc;
}

textarea::-webkit-input-placeholder {
    color: #cccccc;
}
.video-gallery {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    text-align: center;
}

.video-gallery .gallery-item {
    position: relative;
    overflow: hidden;
    margin: 10px 0;
    height: 150px;
    width: 100%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    border-radius: 10px;
}

/*.video-gallery .gallery-item img {*/
    /*position: relative;*/
    /*display: block;*/
    /*opacity: .45;*/
    /*width: 105%;*/
    /*height: 300px;*/
    /*transition: opacity 0.35s, transform 0.35s;*/
    /*transform: translate3d(-23px, 0, 0);*/
    /*backface-visibility: hidden;*/
/*}*/

.video-gallery .gallery-item .gallery-item-caption {
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25em;
    display: flex;
    align-items: center;
    padding: 10px;
    background: rgba(0,0,0,0.7);
    opacity: 0;
}

.video-gallery .gallery-item .gallery-item-caption,
.video-gallery .gallery-item .gallery-item-caption > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 300;
}

.video-gallery .col-lg-4{
    margin-bottom: 30px;
}

.video-name{
    text-align: left;
    /*margin: 10px 0;*/
}
.video-name h2{
    color: #555555;
    font-size: .8rem;
    font-weight: 500;
}


.video-gallery .gallery-item h2,
.video-gallery .gallery-item p {
    position: relative;
    margin: 0;
    z-index: 10;
}
.video-gallery .gallery-item .gallery-item-caption {
    text-align: left;
}

.video-gallery .gallery-item p {
    letter-spacing: 1px;
    font-size: .75rem;
    padding: 1em 0;
    opacity: 0;
    transition: opacity 0.35s, transform 0.35s;
    transform: translate3d(10%, 0, 0);
}

.video-gallery .gallery-item:hover .gallery-item-caption{
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.video-gallery .gallery-item:hover p {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media screen and (max-width: 50em) {
    .video-gallery .gallery-item {
        display: inline-block;
        float: none;
        margin: 10px auto;
        width: 100%;
    }
}

/*FAQ Accordian*/

.faq-section{
    background: #555555;
    padding: 30px 0;
}
.faq-wrap{
    /*max-width: 700px;*/
    margin: auto;
}

#main {
    margin: 50px 0;
}

#main #faq .card {
    margin-bottom: 10px;
    border: 0;
}

#main #faq .card .card-header {
    border: 0;
    -webkit-box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
    box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
    border-radius: 2px;
    padding: 0;
}

#main #faq .card .card-header .btn-header-link {
    display: block;
    text-align: left;
    background: white;
    font-size: 15px;
    color: #555555;
    padding: 5px 10px;
    font-weight: 500;
    white-space: unset;
}

#main #faq .card .card-header .btn-header-link:after {
    content: "\f106";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    float: right;
}

#main #faq .card .card-header .btn-header-link.collapsed {
    background: white;
    color: #555555;
}
.btn-header-link:focus{
    outline: none;
    box-shadow: none;
}

#main #faq .card .card-header .btn-header-link.collapsed:after {
    content: "\f107";
}


#main #faq .card .collapse {
    border: 0;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}
/*FAQ Accordian End*/
/*FAQ End*/

/*Resources*/
.rc-banner{
    /*height: 100vh;*/
    background-image: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.1)), url(../img/rc-bg2.jpg);
    background-size: cover;
    background-position: center;
}
.rc-text{
    margin-top: 30vh;
    text-align: center;
    color: white;
}
.rc-text h2{
    font-size: 5rem;
    font-weight: 700;
}
.rc-grid-cont{
    max-width: 1200px;
    margin: auto;
    text-align: center;
}
.rc-grid{
    display: inline-block;
    vertical-align: middle;
    width: 350px;
    height: 350px;
    margin: 15px;
    background-size: cover;
    background-position: center;
    transition: all 0.5s;
}
.rc-grid:hover{
    box-shadow: 0 10px 34px -15px rgba(0, 0, 0, 0.24);
}
.rc-grid:hover .rc-grid-text h3{
    border-bottom: 2px solid white;
    border-top: 2px solid white;
}

.rc-grid-text{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.rc-grid-text h3{
    color: white;
    font-size: 1.3rem;
    font-weight: 600 !important;
    padding: 15px 0;
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6))
}
/*Resources End*/

/*Inventory*/
.inventory-section{
    position: fixed;
    width: 100%;
    top: 100px;
}
.inventory-search-cont{
    max-width: 700px;
    margin: auto;
}
.web-iframe-cont{
    padding-top: 120px;
    height: 100vh;
}
.part-search label{
    font-weight: 600;
    color: white;
}
.part-heading{
    font-weight: 600;
    color: white;
}
.part-text{
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
    color: #dddddd;
}
/*Inventory End*/

/*Books*/
.books-banner{
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../img/explore/book.jpg);
    background-size: cover;
    background-position: center center;
    height: 50vh;
    position: relative;
}
.books-banner-text{
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
}
.books-banner-text h2{
    color: white;
    font-size: 4rem;
    font-weight: 600;
}
.book-section{
    padding: 50px 0;
}
.book-wrap{
    max-width: 1300px;
    margin: 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.book-img{
    flex: 20%;
    width: 300px;
}
.book-img img{
    width: 100%;
    border-radius: 15px 0 15px 0;
}
.book-text{
    flex: 80%;
    margin-left: 50px;
    font-weight: 500;
    line-height: 1.3;
    text-align: justify;
}

.book-side{
    padding-right: 13px !important;
}
/*Books End*/

/*Downloads*/
.downloads-banner{
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../img/explore/ddownload.jpg);
    background-size: cover;
    background-position: center center;
    height: 50vh;
    position: relative;
}
.thumnails-cont{
    max-width: 1300px;
    margin: auto;
    padding: 15px;
}
.thumbnail{
    display: inline-block;
    height: 270px;
    vertical-align: top;
    width: 220px;
    margin: 15px;
    padding: 20px;
    border-radius: 15px 0;
    cursor: pointer;
    transition: all 0.5s;
    color: #333;
    background: #eee;
}
.thumbnail:hover{
    box-shadow: 0 10px 50px -5px rgba(0, 0, 0, 0.4);
}
.thumbnail img{
    width: 180px;
    height: 180px;
}
.thumbnail-label h3{
    border-bottom: 1px solid #555555;
    padding: 10px 0;
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: capitalize;
    width : 100%;
    overflow:hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.modal-thumbnail-img{
    max-width: 400px;
    margin: auto;
}
.modal-thumbnail-img img{
    width: 100%;
}
.modal-thumbnail-text{
    padding: 10px;
    margin-top: 20px;
    line-height: 1.4;
}
/*Downloads End*/

/*Stream*/
.stream-banner {
    position: relative;
    min-height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(../img/stream-bg.png);
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
}
.stream-banner-text{
    width: 100%;
    padding: 10px;
    text-align: center;
    color: white;
}
.stream-heading{
    font-size: 3rem;
    font-weight: 600;
    text-transform: uppercase;
}
.stream-time, .stream-date{
    font-size: 30px;
    font-weight: 500;
    margin: 20px;
}
.stream-on{
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 600;
}
.stream-link a{
    font-size: 20px;
    font-weight: 500;
    color: white !important;
    text-decoration: underline !important;
}
/*Stream End*/


/*Animations*/
.animate, .animate1, .animate-bottom, .animate-left, .animate-right, .animate-fadein {
    opacity: 0;
}

/*Animations end*/

@media screen and (max-width: 1160px) {
    .rc-grid-cont{
        max-width: 700px;
    }
}
@media screen and (max-width: 991px) {
    .navbar-collapse {
        text-align: right;
        /*background: #666666;*/
    }
    .navbar {
        padding: 20px 10px;
    }

    .about-section {
        padding: 200px 0 50px;
    }

    .about-experience {
        padding: 50px 0;
    }

    .intro-section:before {
        width: 100%;
    }

    .img-absolute img {
        max-width: 100%;
    }
    .blog-cards-cont{
        background: white;
        min-height: 300px;
    }
    .blog-cards-cont img{
        width: 300px !important;
        margin: auto;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 10px;
    }

    .banner-text-container {
        margin-left: 0;
        padding: 10px;
    }

    .banner-text {
        font-size: 16px;
    }

    .about-section p {
        width: 100%;
    }

    .about-section {
        padding: 130px 0 50px;
    }
    .books-banner-text h2{
        font-size: 2rem;
    }
    .book-wrap{
        flex-direction: column !important;
    }
    .book-img{
        width: 200px;
    }
    .book-text{
        margin-top: 15px;
        margin-left: 0;
    }
}

@media screen and (max-width: 500px) {
    .banner-text-container {
        margin-top: 30%;
    }

    .banner-text-container h2 {
        font-weight: 600;
        font-size: 1.5rem;
    }

    .banner-buttons a {
        display: block;
        margin-top: 10px;
        width: 150px;
    }

    .banner-buttons a button {
        width: 100%;
    }
}

/*Contact Form*/
.contact-form .form-control{
    height: 36px;
    background: #fff;
    color: rgba(0, 0, 0, 0.8);
    font-size: 14px;
    border-radius: 2px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0;
    transition: all 0.5s;
}
.contact-form .form-control:focus{
    color: #495057;
    background-color: #fff;
    outline: 0;
    box-shadow: none;
    border-bottom: 1px solid #333333;
}

/*Contact Form End*/

.carousel-section{
    background-image: url(../img/black.jpg);
    background-size: cover;
    background-position: center center;
    padding: 100px 0;
}
/*3D Slider*/
.hi-slide {
    position: relative;
    width: 825px;
    height: 500px;
    /*padding: 100px;*/
    margin: auto;
    /*margin: 115px auto 0;*/
    /*border: 1px solid red;*/
}

.hi-slide .hi-next,
.hi-slide .hi-prev {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    border-radius: 50px;

    line-height: 40px;
    text-align: center;
    cursor: pointer;
    /*background-color: #fff;*/
    color: #333333;
    transition: all 0.6s;
    font-size: 26px;
    font-weight: bold;
}

.hi-slide .hi-next:hover,
.hi-slide .hi-prev:hover {
    opacity: 0.7;
}

.hi-slide .hi-prev {
    left: -60px;
}

/*.hi-slide .hi-prev::before {*/
/*content: '<';*/
/*}*/

.hi-slide .hi-next {
    right: -60px;
}

/*.hi-slide .hi-next::before {*/
/*content: '>';*/
/*}*/

.hi-slide > ul {
    list-style: none;
    position: relative;
    width: 800px;
    /*height: 292px;*/
    /*margin: auto;*/
    padding: 0;
}

.hi-slide > ul > li {
    overflow: hidden;
    position: absolute;
    z-index: 0;
    left: 377px;
    top: 146px;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.10), 0 5px 12px rgba(0, 0, 0, 0.22);
    background-color: white;
}

.hi-slide > ul > li > img {
    width: 100%;
    height: 100%;
    background-position: center;
}
.blog-cards-cont{
    text-align: center;
    position: relative;
}
.blog-cards-cont p{
    font-size: 14px;
    height: 100px;
}
.blog-img-cont{
    width: 100%;
    text-align: center;
}
.blog-img-cont img{
    width: 300px;
    height: 300px;
    border-radius: 15%;
}
.slide-icon{
    color: white;
}
/*3D Slider End*/

/*Blog Carousel*/
/*Owl Carousel*/
.owl-nav button {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.38) !important;
    padding: 0px;
    width: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
}
.owl-nav button.owl-prev {
    left: 5px;
}
.owl-nav button.owl-next {
    right: 5px;
}
.owl-icon{
    font-size: 50px;
    color: #555555;
}

.owl-nav button:focus {
    outline: none;
}
/*Owl Carousel End*/
/*Blog Carousel End*/

/*footer*/
.footer-wrapper{
    padding: 30px 0;
}
.footer-wrapper .footer-area .footer-pera p {
    color: #555555;
    font-size: 14px;
    margin-bottom: 19px;
    line-height: 1.8
}
.footer-wrapper ul{
    list-style-type: none;
    padding: 0;
}

.footer-wrapper .footer-area .footer-pera.footer-pera2 p {
    padding: 0
}

.footer-wrapper .footer-area .footer-tittle h4 {
    color: #555555;
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
    font-weight: 600
}

.footer-wrapper .footer-area .footer-tittle ul li {
    margin-bottom: 15px
}

.footer-wrapper .footer-area .footer-tittle ul li a {
    color: #555555;
    font-weight: 400;
    font-size: 16px;
    text-decoration: underline transparent
}

.footer-wrapper .footer-area .footer-tittle ul li a:hover {
    color: #555555;
    text-decoration: underline
}

.footer-wrapper .footer-area .footer-tittle ul li span {
    color: red
}

.footer-wrapper .footer-area .footer-tittle p {
    color: #555555;
    font-size: 16px
}

.footer-wrapper .footer-area .info.error {
    color: #555555
}

.footer-bottom-area .footer-border {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 39px;
    padding-bottom: 1px
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-bottom-area .footer-border {
        padding-top: 20px
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .footer-bottom-area .footer-border {
        padding-top: 20px
    }
}

@media (max-width: 575px) {
    .footer-bottom-area .footer-border {
        padding-top: 20px
    }
}
.single-footer-caption{
    margin-bottom: 40px;
}

.footer-bottom-area .footer-copy-right p {
    color: #a7aeb4;
    font-size: 12px;
    line-height: 2
}

.footer-bottom-area .footer-copy-right p i {
    color: #555555
}

.footer-bottom-area .footer-copy-right p a {
    color: #555555;
    font-weight: 600;
}
.footer-logo{
    max-width: 200px;
}
.footer-logo img{
    width: 100%;
}

.footer-social a {
    color: grey;
    font-size: 20px;
    display: inline-block;
    text-align: center;
    margin-right: 13px;
    transition: all 0.5s;
}

.footer-social a i {
    -webkit-transition: all .4s ease-out 0s;
    -moz-transition: all .4s ease-out 0s;
    -ms-transition: all .4s ease-out 0s;
    -o-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s;
    display: inline-block;
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg)
}

.footer-social a:hover {
    color: #555555;
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.footer-social a:hover i {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg)
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .home-blog {
        margin-bottom: 30px
    }
}

@media (max-width: 575px) {
    .home-blog {
        margin-bottom: 30px
    }
}
.modal-dialog {
    max-width: 700px; }

@media (max-width: 767.98px) {
    .modal-content .img {
        height: 300px; } }

/*footer end*/

.scroll{
    overflow: auto;
}

.scroll::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

.scroll::-webkit-scrollbar
{
    width: 6px;
    background-color: #F5F5F5;
}

.scroll::-webkit-scrollbar-thumb
{
    background-color: grey;
}
.champions-banner{
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../img/champions-banner.jpg);
    background-size: cover;
    background-position: center center;
    height: 50vh;
    position: relative;
}
.champions-banner-text{
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
}
.champions-banner-text h2{
    color: white;
    font-size: 4rem;
    font-weight: 600;
}

.sales-offer {
    /*list-style-type: none;*/
    font-size: 20px;
}
