@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Condensed:wght@700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --transtion: 250ms ease-in-out;
}

body {
    background: #EBF2FC;
}

a {
    text-decoration: none;
}

.container {
    width: calc(100% - 2rem);
    max-width: 1100px;
    margin-inline: auto;
    display: flex;
    flex-wrap: wrap;

    margin-top: 200px;
    margin-bottom: -18%;
}

/* headding  */

nav {
    width: calc(100% - 2rem);
    max-width: 1100px;
    margin-inline: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 16px;
    padding-bottom: 16px;
}

.logo {
    font-size: 2rem;
}

.arrow {
    transform: translateY(5px);
    margin-left: 5px;
    transition: scale 250ms ease-in-out;
}



.navBox {
    background: rgb(25, 114, 150);
    color: #fff;
    display: flex;
}

nav a {
    color: #fff;
    transition: opacity 250ms ease-in;
}

nav a:hover {
    opacity: .8;
}

nav a:hover .arrow {
    scale: 1.1;
}


.hero {
    height: 520px;
    width: 100%;
    background: url(./hero.jpg) no-repeat center 40% ;
    background-size: cover;
    margin-bottom: -200px;
}

.heroOverlay {
    background: rgba(11, 11, 46, .65);
    position: absolute;
    width: 100%;
    height: 520px;
}

@media (max-width: 900px) {
    .hero {
        margin-bottom: -100px;
    }
}

.heroContent {
    width: 85%;
    float: right;
    position: relative;
    top: 10%;
    color: #fff;
    letter-spacing: 1.2px;
}

.heroContent h2 {
    font-size: 2.4rem;
    text-shadow: 4px 10px 15px rgba(255, 253, 253, 0.1);
    font-family: 'IBM Plex Sans Condensed', sans-serif;
}

.talkBox {
    width: fit-content;
    height: 40px;
    font-size: 1rem;
    background: #fff;
    display: flex;
    justify-content: space-between;
    margin-top: 22px;
}

.talkBox p {
    font-weight: 600;
    color: #282828;
    line-height: 40px;
    padding-left: 16px;
    padding-right: 8px;
}

.talkBtn {
    height: 100%;
    width: 50px;
    background: url(./arrowBtn.png) no-repeat center,  #FECB04;
    background-size: 60%;
    transition: scale 250ms ease-in-out;
    cursor: pointer;
}

.talkBtn:hover {
    scale: 1.1;
}

@media (min-width: 450px) {
    .heroContent {
        margin-top: 22%;
    }
}

@media (min-width: 900px) {
    .heroContent {
        margin-top: 6%;
        width: 40%;
    }
}

.box {
    width: 33.33%;
    height: 20.5rem;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: #fff;
}

.triangle {
    width: 20px;
    height: 20px;
    rotate: 45deg;
    position: absolute;
    right: -15px;
    background: #fff;
}

.btnBox {
    width: 50px;
    height: 50px;
    position: absolute;

    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1px;
    box-shadow: 5px 10px 15px rgba(28, 28, 28, .5);

    transition: scale 250ms ease-in-out;
    cursor: pointer;
}

.btnBox:hover {
    scale: 1.1;
}

.teamBtn {
    background: #CB0164;
    top: -3px;
    right: -3px;
}

.questionBtn {
    background: rgb(25, 114, 150);
    left: -3px;
    top: -3px;
}

.dayBtn {
    background: #10583a;
    top: -3px;
    right: -3px;
}

.slogen {
    font-size: .95rem;
    color: rgba(28, 28, 28, .7);
    font-weight: 600;
}

.title {
    color: rgba(28, 28, 28, .8);
    line-height: 1.28;
}

.discription {
    color: rgba(28, 28, 28, .5);
    font-size: .85rem;
    margin-top: 1rem;
    line-height: 1.8;
}

.serviceBoxContent .title {
    margin-bottom: 1.2rem;
}

.serviceBox {
    height: 30rem;
    margin-top: -9.5rem;
    padding-bottom: 1rem;
}

.serviceRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .4rem;
}

.serviceRow p {
    font-weight: 500;
}

.serviceBox p span {
    font-weight: 600;
    color: rgb(25, 114, 150);
}

.serviceRow img {
    transition: scale var(--transtion);
    cursor: pointer;
}

.serviceRow img:hover {
    scale: 1.3;
}

.timeBox {
    background: rgb(25, 114, 150);
}

.timeContent {
    text-align: center;
    color: #fff;
    
}

.timeContent > h1 {
    font-size: 4rem;
    margin-bottom: 0;
}

.timeContent > p {
    margin-top: -10px;
}


.videoBox {
    background: linear-gradient(rgba(11, 11, 46, .6), rgba(11, 11, 46, .6)), url(./team.jpg) no-repeat;
    background-size: cover;
}



.playBox {
    width: 60px;
    height: 60px;
    background: rgb(25, 114, 150,.6);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.playBox svg {
    cursor: pointer;
    transition: scale var(--transtion);
}

.playBox svg:hover{
    scale: 1.2;
}

.teamBox {
    padding-top: 0rem;
    background: url(./teamIcon.png) no-repeat 84% 92% , #ED008C;
    background-size: 25%;
}

.questionBox {
    height: 41rem;
}

.teamBoxContent > p {
    margin-right: 23%;
}

.teamBoxContent > * {
    color: #fff;
}

.questionBoxContent > h1 {
    margin-left: 1.5rem;
}

.questionRow {
    display: flex;
    align-items: center;
    margin: 20px 0;
    
}

.questionRow > div:nth-child(1) {
    margin-right: 1rem;
}

.questionRow p {
    margin: 0;
    margin-bottom: -5px;
}

.questionRow strong {
    margin: 0;
}

.profileImg {
    width: 32px;
    height: 32px;
    border-radius: 16px;
}

.profile1 {
    background: url(./person1.jpg) no-repeat center;
    background-size: cover;
}

.profile2 {
    background: url(./person2.jpg) no-repeat center;
    background-size: cover;
}

.thinkBox {
    background:url(./idea.png) no-repeat 85% 92%, #FFCC00 ;
    background-size: 20%;
}

.thinkBoxContent > p {
    margin-right: 23%;
}

.thinkBoxContent > * {
    color: #fff;
}

.mailBoxContent svg {
    fill: rgba(28, 28, 28, .4);
    width: 50%;
    margin-inline: auto;
    display: block;
}

.mailBoxContent p {
    text-align: center;
    margin-top: -1rem;
    font-weight: 600;
    color: rgba(28, 28, 28, .4);
}

.dayBox {
    background: #1DA66E;
    float: right;
    margin-left: 33.33%;
    margin-top: -20.5rem;
    width: calc(33.33% * 2);
}

.dayBoxContent > h1 {
    text-align: center;
}

.dayBoxContent > p {
    text-align: center;
    margin-top: 0;
}

.dayBoxContent > * {
    color: #fff;
}

.timeCount {
    display: flex;
    width: fit-content;
    margin-inline: auto;
    margin-top: 1.5rem;
}

.timeCount > div {
    display: flex;
    flex-direction: column;
    text-align: center;
}


.timeCount > div  > span {
    padding: 15px 26px;
    text-align: center;
    background: #fff;
    color: #1DA66E;
    font-weight: 900;
    font-size: 2.8rem;
    margin: 5px;
    letter-spacing: 10px;
    text-indent: 10px;
}

.timeCount > div  > p {
    font-weight: 700;
    font-size: 1rem;
}

.documentBox {
    background:url(./document.jpg) no-repeat 80% 90%, #FF761B;
    background-size: 20%;
}

.documentBoxContent > p {
    margin-right: 24%;
}

.documentBoxContent > * {
    color: #fff;
}

.designBox {
    background: url(./shirt.png) no-repeat center,#BAC0CC;
    background-size: 58%;
}

.designBoxContent > .title {
    position: absolute;
    top: 3rem;
    left: 2rem;
}

.designBoxContent > * {
    color: #fff;
}

.circle {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background: #fff;
    position: absolute;
    right: 3rem;
    bottom: 1rem;
}

.circle > .slogen {
    position: relative;
    text-align: center;
    top: 30%;
    left: 20%;
}

/* Responsive */

@media (max-width: 900px) {
    .box {
        width: 100%;
    }
    
    .teamBox {
        padding-top: 0rem;
        background: url(./teamIcon.png) no-repeat 90% 92% , #ED008C;
        background-size: 22%;
    }

    .teamBoxContent .title {
        margin-top: -2.1rem;
    }

    .teamBoxContent .discription {
        margin-right: 40%;
    }


    .thinkBoxContent .title {
        margin-top: -5rem;
    }

    .thinkBox .discription {
        margin-right: 40%;
    }

    .dayBox {
        width: 100%;
        margin: 0;
        height: fit-content;
    }

    .dayBoxContent .title {
        margin: 2rem;
        margin-top: 0;
    }

    .documentBoxContent .discription {
        margin-right: 40%;
    }
}

@media (max-width: 500px) {
    .timeCount {
        display: flex;
        flex-direction: column;
    }

    .timeCount >div {
        margin-bottom: 2rem;
    }
}

@media ((min-width: 430px) and (max-width: 900px)) {
    .designBox {
        background-size: contain;
    }
}

@media ((min-width: 600px) and (max-width: 900px)) {
    .thinkBox {
        background-size: 16%;
    }
}




.videoBoxContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 99;
    top: 0;
    background: rgba(11, 11, 46, .9);
    visibility: hidden;
}

.viewContent {
    display: none;
}

.videoBoxContainer video {
    width: 60%;
    background-blend-mode: darken;
    filter: blur(2px);
}

.videoPlaying {
    filter: blur(0) !important;
}

.close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    cursor: pointer;
    transition: scale var(--transtion);
}

.close:hover {
    scale: 1.4;
}

.videoPlay {
    position: absolute;
    width: 10%;
    cursor: pointer;
    transition: scale var(--transtion);
}

.videoPlay:hover {
    scale: 1.2;
}


footer {
    background: #404759;
}

footer .title {
    font-size: 1.5rem;
    color: #fff;
}

footer .container {
    display: flex;
}

footer .discription {
    color: #fff;
    opacity: .7;
    font-weight: 300;
    letter-spacing: 1.5px;
}

footer .container >div {
    width: 50%;
    padding: 12% 4%;
    padding-bottom: 50px;
}

ul li {

}

@media (max-width: 570px) {

    footer {
        margin-top: 0;
    }

    footer .container {
        flex-direction: column;
    }

    footer .container > div {
        width: 100%;
        padding-bottom: 0;
    }

    footer .container > div:nth-child(2) {
        margin-bottom: 50px;
    }
}
