/*  Graywhale Entertainment CSS File */
/*  import google fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600&family=Roboto:wght@400;500;700;900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
html{
    scroll-behavior: smooth;
}

/* Similar Section Styling */
section{
    padding: 95px 0;
}
.max-width{
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}
.about, .overview, .problem, .takeaway, footer{
    font-family: 'Nunito', sans-serif;
}
.about .about-content,
.overview .overview-content,
.problem, .problem-content,
.takeaway, .takeaway-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
section .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}
section .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: #111;
    transform: translateX(-50%);
}
section .title::after{
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: #0054a8;
    padding: 0 5px;
    background: #fff;
    transform: translateX(-50%);
}

/* navbar styling */
.navbar{
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 15px 0;
    font-family: 'Roboto', sans-serif;
    background: #000;
    transition: all 0.3s ease;
}
.navbar.sticky{
    padding: 15px 0;
    background: #000;
}
.navbar .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .logo img{
    width:20%;
}

/*
.navbar .logo a span{
    color: #00dfcc;
    transition: all 0.3s ease;
}
.navbar.sticky .logo a span{
    color: #fff;
}
*/
.navbar .menu li{
    list-style: none;
    display: inline-block;
}
.navbar .menu li a{
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    cursor: pointer;
    transition: color 0.3s ease;
}
.navbar .menu li a:hover{
    color: #00dfcc;
}
.navbar.sticky .menu li a:hover{
    color: #00dfcc;
}

/* menu btn styling */
.menu-btn{
    color: #fff;
    font-size: 23px;
    cursor: pointer;
    display: none;
}
.scroll-up-btn{
    position: fixed;
    height: 45px;
    width: 42px;
    background: #00dfcc;
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 9999;
    font-size: 30px;
    border-radius: 6px;
    border-bottom-width: 2px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.scroll-up-btn.show{
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}
.scroll-up-btn:hover{
    color:#00DFCC;
    background:none;
    border:2px solid #00DFCC;
}


/* home section styling */
.home{
    display: flex;
    /*background: url("images/05-graywhale-banner.png") no-repeat center top;
    height: 100vh;
    background-size: cover;
    background-attachment: fixed;*/   
    color: #fff;
    min-height: 500px;
    animation: fadeIn 2s;
}
.home .max-width{
  width: 100%;
  display: flex;
}
.home .max-width .row{
  margin-right: 0;
}
.home img{ width:100%; height: auto; object-fit: cover;}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translate3d(0, -20%, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.reveal{
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active{
  transform: translateY(0);
  opacity: 1;
}

/* about section styling */
.about .title::after{
    content: "ux/ui design";
    color: #00DFCC;
}

.about .about-content .card{
    width: calc(25% - 10px);
    background: #FFFAFA;
    border-radius: 6px;
    padding: 25px;
    cursor: pointer;
    height:250px;
    transition: all 0.3s ease;
}

.about .about-content .card .box .text{
    align-items:normal;
    font-size:20px;
    font-weight: 300;
    margin-bottom: 10px;
}


/* overview section styling*/
.overview{
    background-color: #ffffff;
}
.overview .title::after{
    content: "what it is";
    color: #00DFCC;
}
.overview .title{
    margin-bottom:10px;
}
.overview .overview-content img{
    width:100%;
}

/* problem section styling*/
.problem{
    background-color: #b9dcff;
}
.problem .title::after{
    content: "what im solving";
    color: #00DFCC;
    background-color: #b9dcff;
}
.problem .problem-content .left{
    width: 35%;
}
.problem .problem-content .left img{
    width: 100%;
    object-fit: cover;
}
.problem .problem-content .right{
    width: 65%;
}

.problem .problem-content .right .text{
    font-size: 24px;
    font-weight:600;
    padding-left:60px;
    margin-bottom: 10px;
}

/* research section styling */
.research{
    background-color: #ffffff;
}
.research .title::before{
    display:none;
}
.research .title{
    margin-bottom:0;
}
.research .research-content img{
    width:100%;
}


/* testing section styling */
.testing{
    background-color: #b9dcff;
}
.testing .title::before{
    display:none;
}
.testing .title{
    margin-bottom:30px;
}
.testing .testing-content img{
    width:100%;
}

/* branding section styling */
.branding{
    background-color: #ffffff;
}
.branding .title::before{
    display:none;
}
.branding .title{
    margin-bottom:0;
}
.branding .branding-content img{
    width:100%;
}

/* design section styling */
.design{
    background-color: #ffffff;
}
.design .title::before{
    display:none;
}
.design .title{
    margin-bottom:0;
}
.design .design-content img{
    width:100%;
}

/* takeaway styling */
.takeaway .takeaway-content .left{
    width: 50%;
    text-align: center;
}
.takeaway .title::before{
    display:none;
}
.takeaway .takeaway-content .left img{
    width:400px;
    object-fit: cover;
}
.takeaway .takeaway-content .right{
    width: 50%;
}

.takeaway .takeaway-content .right .text{
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}
.takeaway .takeaway-content .right .text ul{
    padding-left: 25px;
}

.takeaway .takeaway-content .right .text ul li{
    margin-bottom: 10px;
}


/* Stylings Other Projects section */
.projects{
    font-family: 'Nunito', sans-serif;
}
.projects .title::before{
    display: none;
}
.projects .carousel .card{
    background: #222;
    border-radius: 6px;
    padding: 25px 35px;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
    color:#fff;
}
.projects .carousel .card:hover{
    background: #00dfcc;
}
.projects .carousel .card .box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.projects .carousel .card:hover .box{
    transform: scale(1.05);
}
.projects .carousel .card .text{
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}
.projects .carousel .card img{
    height: auto;
    width: 300px;
    object-fit: cover;
    /*border-radius: 50%;
    border: 5px solid #00dfcc;*/
    transition: all 0.3s ease;
}
.projects .carousel .card:hover img{
    border-color: #fff;
}
.owl-dots{
    text-align: center;
    margin-top: 20px;
}
.owl-dot{
    height: 13px;
    width: 13px;
    margin: 0 5px;
    outline: none!important;
    border-radius: 50%;
    border: 2px solid #00dfcc!important;
    transition: all 0.3s ease;
}
.owl-dot.active{
    width: 35px;
    border-radius: 14px;
}
.owl-dot.active,
.owl-dot:hover{
    background: #00dfcc!important;
}

/* footer section styling */
footer{
    background: #111;
    padding: 15px 23px;
    color: #fff;
    text-align: center;
}
footer span a{
    color: #00dfcc;
    text-decoration: none;
}
footer span a:hover{
    text-decoration: underline;
}

/* responsive media query start */
@media (max-width: 1104px) {

}

@media (max-width: 991px) {
    .max-width{
        padding: 0 50px;
    }
}
@media (max-width: 947px){
    .menu-btn{
        display: block;
        z-index: 999;
    }
    .menu-btn i.active:before{
        content: "\f00d";
    }
    .navbar .menu{
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        background: #111;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease;
    }
    .navbar .menu.active{
        left: 0;
    }
    .navbar .menu li{
        display: block;
    }
    .navbar .menu li a{
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
    }
    .max-width{
        max-width: 930px;
    }
    .about .about-content .card{
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
    .overview .overview-content .column{
        width: 100%;
    }
    .overview .overview-content .left{
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }
    .overview .overview-content .right{
        flex: 100%;
        padding-left: 10px;
    }

    .overview .overview-content .right .text,
    .overview .overview-content .right p{
        padding-left: 10px;
    }    
    .problem .problem-content .column{
        width: 100%;
    }
    .problem .problem-content .left{
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }    
    .problem .problem-content .text{
        font-size:24px;
    } 
    .problem .problem-content{
        font-size:20px;
    }
    .problem .problem-content .right .text{
        font-size: 16px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .takeaway .takeaway-content .column{
        width: 100%;
    }
    .takeaway .takeaway-content .left{
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }
    .takeaway .takeaway-content .right{
        flex: 100%;
    }    
}

@media (max-width: 690px) {
    .max-width{
        padding: 0 23px;
    }
    .projects .proj-content .card{
        width: 100%;
    } 
}

@media (max-width: 500px) {
    .home{
        padding: 70px 0 100px 0;
    }   
    .about{
        padding-top:0;
    }
    .about .about-content .card{
        width: 100%;
    }    
    .about .about-content .right .text{
        font-size: 19px;
    }
    .scroll-up-btn{
        right: 15px;
        bottom: 15px;
        height: 38px;
        width: 35px;
        font-size: 23px;
        line-height: 38px;
    }
}
