@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

* {
    margin: auto;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    /*display:flex;*/
}

.toggle {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: url(images/menu.png);
    background-size: cover; /* 30px */
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 1000;
}

    .toggle.active {
        background: /*black*/ url(images/close.png);
        background-size: 30px; /* cover or 25px */
        background-position: center;
        background-repeat: no-repeat;
    }

section {
    padding: 100px;
    min-height: 100vh;
}

.banner {
    display: flex;
    flex-direction: row;
    position: relative;
    width: 100%;
    min-height: 100vh;
}

    .banner .imgSideBar {
        justify-content: center;
        align-items: center;
        display: flex;
        position: relative;
        justify-items: flex-start;
        height: fit-content;
    }

        .banner .imgSideBar img {
            width: auto;
            display: flex;
            justify-content: center;
            height: auto;
            align-items: center;
        }

    .banner .contentBx {
        position: relative;
        width: calc(100% - 50%);
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 100px;
        height: fit-content;
    }

.sideBar {
    position: relative;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px;
}

.logoText {
    position: absolute;
    top: 40px;
    left: 100px;
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #333;
    color: white;
    padding: 0 5px;
}

.banner .contentBx h4 {
    font-size: 1.5em;
    color: white;
    font-weight: 300;
}

    .banner .contentBx h4 span {
        color: #00bcd4;
        font-size: 1.5em;
        font-weight: 700;
    }

.banner .contentBx h2 {
    color: white;
    line-height: 1em;
    font-size: 3em;
}

p {
    color: white;
    font-size: 1.1em;
    margin: 20px 0;
    width: 500px;
    text-align: justify;
}

.btn {
    background: #887f6e;
    color: white;
    padding: 10px 30px;
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 2px;
}

.sideBar {
    position: fixed;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    padding: 40px;
    z-index: 100;
    right: -100%;
}

    .sideBar ul {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

        .sideBar ul li {
            list-style: none;
        }

            .sideBar ul li a {
                color: white;
                text-decoration: none;
                font-size: 2em;
                margin: 10px 0;
                font-weight: 300;
                letter-spacing: 2px;
                text-transform: uppercase;
            }

                .sideBar ul li a:hover {
                    color: #887f6e;
                }

    .sideBar.active {
        right: 0;
    }

.sci {
    position: absolute;
    left: 100px;
    bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .sci li {
        margin-right: 10px;
        list-style: none;
    }

        .sci li img {
            border-radius: 40px;
            height: 100px;
            transform: scale(0.5);
            opacity: 0.7;
        }

            .sci li img:hover {
                transform: scale(0.7);
                opacity: 1;
            }

.title {
    width: 100%;
    text-align: center;
}

    .title h1 {
        position: relative;
        color: white;
        font-size: 45px;
        font-weight: 700;
        letter-spacing: 1px;
        margin-bottom: auto;
        margin-top: auto;
    }

    .title p {
        max-width: 700px;
        display: inline-block;
    }

    .title h2::before {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -10px;
        width: 60px;
        height: 4px;
        background: black;
    }

    .title.white h2, .title.white p {
        color: white;
    }

        .title.white h2::before {
            background: radial-gradient(white, black);
        }

.about {
    background: #887f6e;
}

    .about .content {
        flex-direction: column;
        display: flex;
        justify-content: space-between;
        margin-top: 40px;
    }

        .about .content .textBx {
            min-width: 49%;
            width: 49%;
        }

            .about .content .textBx p {
                color: white;
            }

        .about .content .imgBx {
            margin-left: 40px;
        }

            .about .content .imgBx img {
                max-width: 100%;
            }

.skills {
    background-color: #887f6e;
}

    .skills .content {
        display: flex;
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
    }

        .skills .content .skillsBx {
            width: 600px;
            height: 800px;
            padding: 40px 20px;
            margin: 20px;
            transition: 00.5s;
            text-align: center;
        }

            .skills .content .skillsBx:hover {
            }

            .skills .content .skillsBx img {
                width: auto;
                transition: 0.5s;
                background-color: white;
            }
            /* .skills .content .skillsBx:hover img{
    filter: invert(1);
} */
            .skills .content .skillsBx h1 {
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                margin-top: auto;
                margin-bottom: auto;
                /*font-size: 25 px;*/
                font-weight: 600;
                transition: 0.5s;
                color: white;
                height: 60px;
            }

            .skills .content .skillsBx:hover h1 {
                color: black;
            }

            .skills .content .skillsBx p {
                margin: 0;
                transition: 0.5s;
            }

            .skills .content .skillsBx:hover p {
                color: white;
            }
.work {
    background-color: #887f6e;
}

.work .content {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

    .work .content .workBx {
        position: relative;
        width: 280px;
        height: 360px;
        margin: 10px;
        transition: 0.5s;
        text-align: center;
    }

        .work .content .workBx .imgBx,
        .work .content .workBx .textBx {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .work .content .workBx .imgBx img {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

        .work .content .workBx .textBx {
            background: black;
            opacity: 0;
            transition: 0.5s;
        }

        .work .content .workBx:hover .textBx {
            opacity: 0.8;
        }

        .work .content .workBx .textBx h3 {
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1em;
        }

.contact {
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

    .contact .contactForm {
        position: relative;
        width: 700px;
        margin-top: 20px;
    }

        .contact .contactForm .row {
            width: 100%;
            display: flex;
        }

            .contact .contactForm .row .col50 {
                width: 50%;
                margin: 10px;
            }

            .contact .contactForm .row .col100 {
                width: 100%;
                margin: 10px;
                text-align: center;
            }

            .contact .contactForm .row input, textarea {
                width: 100%;
                padding: 10px;
                border: none;
                outline: none;
                background: #111;
                color: white;
                font-size: 16px;
                resize: none;
            }

            .contact .contactForm .row textarea {
                height: 100px;
            }

            .contact .contactForm .row input[type="submit"] {
                background: #00bcd4;
                color: white;
                padding: 10px 30px;
                display: inline-block;
                font-weight: 500;
                letter-spacing: 2px;
                cursor: pointer;
                max-width: 150px;
            }

.copyright {
    /* justify-content: center; */
    display: flex;
    color: white;
    background: #111;
    text-align: center;
    padding: 10px;
}

    .copyright p {
        margin: 0;
        margin-left: 20px;
        font-size: 16px;
    }

@media (max-width: 991px) {
    .banner {
        display: flex;
        flex-direction: column;
    }

    .contentBx {
        bottom: 140px;
    }

    .banner .imgSideBar {
        /* margin: 0 auto;*/
        flex-direction: column;
        display: flex;
        align-self: center;
        align-items: self-start;
        height: 500px;
        top: 100px;
    }

    .banner .contentBx h2 {
        color: white;
        line-height: 1em;
        font-size: 3em;
        margin-top: 330px;
    }

    #imgMain {
        margin-top: 100%;
        margin-bottom: 100%;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        height: auto;
        vertical-align: middle;
    }

    .banner .contentBx, .sideBar {
        width: 100%;
        padding: 40px;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        align-self: center;
        position: inherit;
        /*bottom: 140px;*/
    }

    .logoText {
        left: 40px;
    }

    .toggle {
        right: 40px;
    }

    .sci {
        left: 40px;
    }

    section {
        padding: 40px;
    }

    .about .content {
        flex-direction: column;
    }

        .about .content .textBx {
            min-width: 100%;
            width: 100%;
        }

    .about .content {
        margin-top: 0;
    }

        .about .content .imgBx {
            margin-left: 0;
        }

    .services .content .servicesBx {
        padding: 30px 20px;
        max-width: 340px;
        margin: 10px;
    }

    .contact .contactForm {
        width: 100%;
    }

    .contactForm .row {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

    .contact .contactForm .row .col50 {
        width: 100%;
    }

    .sideBar ul li a {
        font-size: 1.5em;
    }

    .switch-background {
        margin-left: 20px;
        margin-bottom: -4em;
        margin-right: 0;
    }

    p {
        vertical-align: middle;
        color: white;
        font-size: 1.1em;
        margin: 20px 0;
        width: 100%;
        text-align: justify;
    }
}

@media(max-width: 500px) {
    .services .content .servicesBx,
    .work .content .workBx {
        padding: 30px 20px;
        max-width: 100%;
        width: 100%;
        margin: 10px 0;
    }
}









html,
body {
    height: 100vh;
    width: 100%;
    background-color: black;
}

.banner .container {
    position: relative;
    width: 50px;
    height: 50px;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background-color: black; */
}

.switch-background {
    background-color: rgb(255, 255, 255);
    height: 25px;
    width: 75px;
    border-radius: 100px;
    margin-bottom: 10em;
    margin-right: 9em;
    /* padding-left: 15px;
    padding-top: 5px; */
    /* box-shadow: 12px 12px 22px gray, inset 12px 12px 10px #402955; */
    box-shadow: 5px 5px 35px rgb(201, 183, 83), -5px -5px 35px rgba(229, 229, 226, 0.636);
    transition: box-shadow 1s ease-in;
}

.off-shadow {
    box-shadow: 5px 5px 35px rgb(201, 183, 83), -5px - 5px 35px rgba(229, 229, 226, 0.636);
}

.on-shadow {
    /* visibility: hidden; */
    box-shadow: 5px 5px 35px rgb(226, 228, 226), -5px -5px 35px rgba(173, 149, 84, 0.468);
    /* box-shadow: 12px 12px 22px gray, inset 12px 12px 10px #402955; */
}

.innerSwitch {
    /* margin-left: 20px;
    margin-right: 20px; */
    background-color: #6ef0e1;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.face {
    width: 17px;
    padding-bottom: 7px;
}


.clock {
    position: relative;
    /* top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%); */
    /* color: #17D4FE;
    font-size: 60px;*/
    font-family: Orbitron;
    letter-spacing: 7px;
    left: 60%;
}

.nav {
    background-color: red;
    overflow: hidden;
    position: fixed;
}

#meetId {
    color: #887f6e;
}

#horizontalC {
    display: flex;
    flex-direction: column;
}

#screen1:hover {
    content: url("images/screen1.2.png");
}

#screen2:hover {
    content: url("images/screen2.2.png");
}

#screen4:hover {
    content: url("images/screen4.2.png");
}

#linkedin {
    text-decoration: none;
    font-size: 20px;
    color: white;
    cursor: pointer;
}

    #linkedin:hover {
        font-size: 30px;
        color: dodgerblue;
    }



/* The actual timeline (the vertical ruler) */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

    /* The actual timeline (the vertical ruler) */
    .timeline::after {
       z-index:-1;
        content: '';
        position:absolute;
        width: 6px;
        background-color: #887f6e;
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -3px;
    }

/* Container around content */
.containerL {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

/* The circles on the timeline */
/*.containerL::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: white;
  border: 4px solid #FF9F55;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}*/

/* Place the container to the left */
.left {
    left: 0;
}

/* Place the container to the right */
.right {
    left: 50%;
}
#docs .content .workBx .textBx {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  
    text-align: center;
    
}
#docs .content .workBx {
    border:2px solid #887f6e;
    border-radius: 20px;
    height:200px;
    width:300px;
    margin:5%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    text-align: center;
}
#docs .content {
    margin:10%;
    flex-wrap:wrap;
    justify-content: center;
    align-items: center;
    align-self: center;
    display: flex;
    flex-direction: row;
}
h5 {
   
    color: white;
    font-size: 18px;
}
    /* Add arrows to the left container (pointing right) */
    /*.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}*/

    /* Add arrows to the right container (pointing left) */
    .right::before {
        content: " ";
        height: 0;
        position: absolute;
        top: 22px;
        width: 0;
        z-index: 1;
        left: 30px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }

    /* Fix the circle for containers on the right side */
    .right::after {
        left: -16px;
    }

/* The actual content */
.contentL {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
}

    .contentL p {
        color: gray;
    }
/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
    /* Place the timelime to the left */
    .timeline::after {
        left: 31px;
    }

    /* Full-width containers */
    .containerL {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

        /* Make sure that all arrows are pointing leftwards */
        .containerL::before {
            left: 60px;
            border: medium solid white;
            border-width: 10px 10px 10px 0;
            border-color: transparent white transparent transparent;
        }

    /* Make sure all circles are at the same spot */
    .left::after, .right::after {
        left: 15px;
    }

    /* Make all right containers behave like the left ones */
    .right {
        left: 0%;
    }
}

