/*

Designed by: Godwin Akpan
Brought to life by: Peter Olom

All code here are proprietary of Peter Olom

*/

.template{
    margin: 0 5%;
}

@media screen and (max-width: 480px) {
    .template { margin: 0 20px; }
}

#header{
    position: relative;
    min-height: 100vh;
}

#mascotsmile{
    position: fixed;
    min-width: 100%;
    min-height: 100%;
    z-index: -10;
    display: block;
}

#overlay, .overlay{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    /* z-index: -100; */
}

.main-content{
    background: #ffffff;
    z-index: 5;
    min-height: 400px;
    position: relative;
}

.inside-header{
    position: absolute;
    top:25vh;
    left: 0;
    right: 0;
    z-index: 5;
    height: 70vh;
}

.welcome-text{
    width: 100%;
    overflow-x: hidden;
    text-align: center;
    padding: 10px;
}

.welcome-text h4{
    font-size: 24px;
    font-family: "maax_roundedregular";
}

.welcome-text h2{
    margin-top: 50px;
    font-size: 42px;
    font-family: "maax_roundedregular";
}

.welcome-text h2 span{
    display: inline-block;
    font-weight: 900;
    font-family: "maax_roundedbold";
}
.slowFadeIn {
    visibility: visible;
    opacity: 1;
    transition: opacity 2s linear;
}
.slowFadeOut {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 2s, opacity 2s linear;
}

.welcome-text .btn-mascot{
    margin-top: 50px;
    z-index: 999;
}

.btn-mascot{
    background: rgba(0,0,0,0);
    border: 1px solid #fff;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    font-family: "maax_roundedregular";
}

.btn-mascot-blue{
    background: #003399;
    border: 1px solid #003399;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    font-family: "maax_roundedregular";
}

.btn-mascot:hover{
    background: #003399;
    color: #fff;
}


/* scroll and logo*/
.scroll-and-logo{
    text-align: right;
    position: absolute;
    left: 0;
    right: 0;
    top: 60vh;
}

.scroll{
    position: absolute;
    width: 80px;
    height: 80px;
    text-align: center;
    transition: 0.5s all ease-in-out;
}
.scroll:before {
    position: absolute;
    content: '';
    top: 0;
    right: 40px;
    width: 2px;
    height: 40px;
    background-color: #fff;
    transition: 0.5s all ease-in-out;
}
.scroll:after {
    position: absolute;
    content: '';
    top: 30px;
    left: 38px;
    width: 2px;
    height: 40px;
    background-color: #fff;
    transition: 0.5s all ease-in-out;
}
.scroll:hover:before {
    top: 20px;
    right: 49px;
    transform-origin: 0 56px;
    -webkit-transform: rotate(60deg) translate(-36px, 0px);
}
.scroll:hover:after {
    top: 20px;
    left: 29px;
    transform-origin: 0 -12px;
    -webkit-transform: rotate(-60deg) translate(-29px, 0px);
}

.scroll-down {
    transition: 0.5s all;
    transform: rotate(-90deg);
}

/* media queries for main hero */
@media screen and (max-width: 767px) {
    .inside-header{
        height: 90vh !important;
        top: 18%;
    }

    .scroll-and-logo{
        margin-top: 50px !important;
    }

}


/* end of main hero */

.clients{
    margin-bottom: 50px;
}

.clients .template{
    padding-bottom: 50px;
}

.clients h2{
    color: #7F8EA1;
    font-size: 24px;
    font-family: "maax_roundedbold";
}

.clients .trust{
    margin-top: 60px;
    margin-bottom: 60px;
    font-size: 42px;
    line-height: 60px;
    color: #0129A5;
    font-family: "Chapenettoer 8" !important;
}

#smilingClients .item, #scOneROw .item{
    padding-right: 25px;
    text-align: center !important;
}

#smilingClients .client-item, #scOneROw .client-item{
    display: block;
    width: 100%;
    margin-bottom: 100px;
}

#smilingClients .client-item img, #scOneROw .client-item img{
    opacity: 0.4;
    transition: 0.3s all;
    display: inline;
    filter: grayscale(100%);
}

#smilingClients .client-item img:hover, #scOneROw .client-item img:hover{
    opacity: 1;
    filter: grayscale(0%);
}

.scroll.mascot-blue:before {
    background-color: #003399;
}
.scroll.mascot-blue:after {
    background-color: #003399;
}

.scroll.mascot-blue.scroll-right {
    transform: rotate(180deg);
}

/* smiling clients */

.menu-tile{
    height: 1000px;
    padding: 0;
}

.menu-inner.i1{
    height: 65%;
    background: url('../img/menu1.png');
    background-size: cover;
    background-position: center center;
}

.menu-inner.i2{
    height: 35%;
    background: url('../img/menu2.png');
    background-size: cover;
    background-position: center center;
}

.menu-inner.i3{
    height: 35%;
    background: url('../img/menu3.png');
    background-size: cover;
    background-position: center center;
}

.menu-inner.i4{
    height: 65%;
    background: url('../img/menu4.png');
    background-size: cover;
    background-position: center center;
}

.menu-tile .menu-inner{
    position: relative;
}

.link-overlay{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    height: 100%;
    width: 100%;
    color: rgba(0,0,0,0);
    text-decoration: none;
    font-size: 32px;
    text-align: center;
}

.link-overlay span{
    display: block;
    position: relative;
    height: 100%;
    top: 30%;
}

.link-overlay p{
    background: #fff;
    width: 0px;
    height: 2px;
    margin: 25px auto;
    transition: width 1s ease;
}

.link-overlay p.rule{
    width: 260px !important;
}

.link-overlay:hover{
    color: #fff;
    background: rgba(0,0,0,0.85);
    text-decoration: none;
}

/* media queries for the menu-tile */
@media screen and (max-width: 767px) {
    .menu-tile{
        height: 200vh !important;
    }

    .menu-tile .menu-inner{
        height: 50vh !important;
    }
}

/* end of menu tiles*/
#testimonies.owl-theme{
    width: 100% !important;
}

.testimonial-item .col-lg-3{
    text-align: right !important;
}

.testimonial-item img{
    display: inline !important;
    border: 2px solid #384A61;
    border-radius: 50%;
    vertical-align: middle;
}

.testimonial-item .quote{
    display: block;
    margin-left: 6%;
    margin-top: 15px;
}

.testimonial-item .quote p{
    font-size: 26px !important;
    text-align: left !important;
    color: #384A61;
    font-family: "maax_roundedregular";
}

.testimonial-item .quote p span{
    text-align: left !important;
    font-family: "maax_roundedbold";
}

.smiles{
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.smiles li{
    display: inline-block;
    width: 30px;
    font-size: 28px;
    color: #7F8EA1;
    cursor: pointer;
    font-family: "maax_roundedregular";
}

.smiles li.active, .smiles li:hover{
    font-size: 40px;
    color: #0129A5;
    font-family: "maax_roundedbold" !important;
}



/* media queries for the testimonial */
@media screen and (max-width: 767px) {
    .testimonial-item img{
        display: block !important;
        margin: 50px auto !important;
    }
    .testimonial-item .quote{
        margin-left: 0;
        margin-top: 0px !important;
    }
    .testimonial-item .quote p{
        text-align: center !important;
    }
    .testimonial-item .quote p span{
        display: block;
        text-align: center !important;
    }
}

/*end of testimonials */

#player{
    width: 100%;
    position: relative;
}

#mascotAd{
    display: block;
}

.video-overlay{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
}

.video-overlay button{
    background: #00000000;
    display: block;
    border: none;
    margin: 0 auto;
}

.vbtn-wrapper{
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* end of mascot arthouse player*/

.list-social{
    list-style-type: none;
    padding: 0;
    width: 90%;
    margin: 0 auto;
}

.list-social .list-social-item{
    display: inline-block;
    margin-right: 80px;
    padding: 4% 0;
    font-size: 24px;
    text-align: center;
}

.list-social .list-social-item:last-of-type{
    margin-right: 0px !important;
}

.list-social .list-social-item a{
    display: inline;
    color: #384A61;
    text-decoration: none;
    font-family: "maax_roundedregular";
}

.list-social .list-social-item a:after{
    display: block;
    margin-top: 8px;
    height: 2px;
    content: " ";
    width: 40px;
}

.list-social .list-social-item a:hover::after{
    background: linear-gradient(270deg,#7108FF, #444FFC, #297FFB, #0EB4FC);
    background-size: 600% 600%;
	-webkit-animation: Gradient 3s ease infinite;
	-moz-animation: Gradient 3s ease infinite;
	animation: Gradient 3s ease infinite;
    -webkit-text-fill-color: transparent;
}

/* media queries for list-social */
@media screen and (max-width: 767px) {
    .list-social .list-social-item{
        display: block;
        padding: 4% 0;
        width: 100%;
        font-size: 32px;
    }
    .list-social .list-social-item a:hover::after{
        background: rgba(0,0,0,0);
    }
}

/* end of socials */