/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* End CSS Reset */

/* font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');


html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    word-wrap: break-word;
    background-color: var(--page-bg);
}

a {
    color: var(--text-color);
    text-decoration: none;
}

.video-a{
    color: var(--text-color); 
    cursor: pointer;
}

a:hover {
    color: var(--orange-color);
}

:root {
    --orange-color: #F15A24;
    --page-bg: #000;
    --text-color: #fff;
    --hamburger-bg-switch: #000;
    --hamburger-color: #fff;
    --toggle-icon: #fff;
    --button-bg: #000;
    --button-bg-hover: #fff;
    --gray-color: #888;
   
}

.dark-mode {
    --orange-color: #F15A24;
    --page-bg: #fff;
    --text-color: #000;
    --hamburger-bg-switch: #fff;
    --hamburger-color: #000;
    --toggle-icon: #000;
    --button-bg: #fff;
    --button-bg-hover: #000;
    --gray-color: #5A5A5A;
}




/* Header styles */

nav {
    position: sticky;
    z-index: 100;
    top: 0;
    background-color: var(--button-bg);
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: max-content;
    padding: 30px 0;
    
}

.nav-identity {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-color);
}


.header-right {
    display: flex; 
    gap: 10px;
    align-items: center;
    font-weight: 600;
    
}

#navi-menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-left a, .header-right a {
    text-decoration: none;
    color: var(--text-color);
}

.header-right ul {
    display: flex;
    
}

.header-right ul li {
    margin: 0 20px;
    
}
li a {
    position: relative;
    color: var(--text-color);
    text-decoration: none;
  }
  
 li a:hover {
    color: var(--text-color);
  }
  
 li a::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--text-color);
    transform: scaleX(0);
    transform-origin: top left;
    transition: transform 0.3s ease;
  }
  
  li a:hover::before {
    transform: scaleX(1);
  }

.head-btn {
    width: 110px;
    height: 40px;
    border-radius: 20px;
    font-weight: 600;
    color: var(--button-bg-hover);
    background-color: var(--button-bg);
    border: 2px solid var(--text-color);
    transition: all .5s ease;
}

.head-btn:hover{
    background-color: var(--button-bg-hover);
    color: var(--button-bg);
    border-color: var(--orange-color);
}

/* Dark Mode toggle  */


.form-check-input {
    cursor: pointer;
    transform: rotate(90deg);
}

.form-check-input{
    box-shadow: 0px 0px 2px 4px rgba(241,90,36,0.61);
-webkit-box-shadow: 0px 0px 2px 4px rgba(241,90,36,0.61);
-moz-box-shadow: 0px 0px 2px 4px rgba(241,90,36,0.61);
}

.form-switch .form-check-input {
    background-image: url(/media/moon-solid.svg)  !important; 
    background-position: left 2px center !important;
    background-size: 35%;
    height:30px;
    width: 40px;
    border: 3px solid var(--orange-color);
    transition: all .6s ease-in-out;
}


.form-switch .form-check-input:checked {

    background-image: url(/media/sun-solid.svg) !important; 
    background-size: 45%;
    background-position: right 4px center !important;
    background-color: #000;
    height:30px;
    width: 40px;
    border: 3px solid var(--orange-color);
    transition: all .6s ease-in-out;
    
}

/* Mobile Menu styles */

.mobile-menu {
    cursor: pointer;
    transition: all 1s ease-in-out;
    direction: rtl;
    display: none;
    margin-top: 5px;
}

.hamburger-menu {
    
    background-color: var(--hamburger-color);
    left: 0;
    height: 3px;
    border-radius: 8px;
    margin-bottom: 5px;
    transition: 0.4s;
}

/* Middle  */
.hamburger-menu:nth-child(2) {
    padding-right: 0;
    width: 30px;
}


/* Top */
.hamburger-menu:nth-child(1) {
    width: 30px;
}

/* Bottom */
.hamburger-menu:nth-child(3) {
    width: 30px;
}
/* header responsive styles */

@media screen and (max-width: 1000px) {


    .header {
        display: flex;
        justify-content: space-around;
        height: max-content;
        padding: 30px 0;
    }

    .mobile-menu {
        display: block;
    }

    

    .nav-items {
        flex-direction: column;
        margin-bottom: 30px;
        
    }

    .list-items {
        padding-bottom: 40px;
    }

    #navi-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        right: -50%;
        width: 50%;
        height: 100vh; 
        color: var(--text-color);
        background-color: var(--hamburger-bg-switch);
        transition: all 0.1s ease-in-out;
    }

    
    .hide {
        display: none;
    }

    #navi-menu.active{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        right: 0;
        width: 60%;
        height: 100vh; 
        color: var(--text-color);
        background-color: var(--hamburger-bg-switch);
        overflow-x: hidden;
    }

    .top{
        top: 10px;
        position: relative;
        width: 35px;
        transform: rotate(-45deg);
    }

    .middle {
        position: relative;
        background-color: transparent;
        translate: 300%;
    }

    .bottom {
        top: -5px;
        width: 35px;
        position: relative;
        transform: rotate(45deg);
    }

    .form-switch .form-check-input {
    
    margin-right: 10px;
    }

    .form-check-input {
        transform: none;
    }

    .form-switch .form-check-input {
        height:30px;
        width: 45px;
    }
    
    
    .form-switch .form-check-input:checked {
        height:30px;
        width: 45px;
        
    }

}

/* Hero Section */

#home {
    height: max-content;
    padding: 70px 0;
}

#hero-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-bg {
    border-radius: 50%;
    background-color: var(--orange-color);
    height: 250px;
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.hero-img {
    height: 230px;
    padding: 15px;
}

#hero-right {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.hero-header-1 {
    color: var(--text-color);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    transition: all 1s ease-in-out;

}

.hero-parag {
    color: var(--gray-color);
    font-size: 17px;
    padding-top: 10px;
    width: 80%;
    
}

u {
    box-shadow: inset 0 -0.5em 0 var(--orange-color);
    text-decoration: none;
    transition: box-shadow .3s ease-out;
}

u:hover {
    box-shadow: inset 0 -1em 0 var(--orange-color);
}

.hero-wave-img {
    width: 2rem;
}



#cont-btns {
    margin-top: 15px;
}

.cont-btn {
    
    width: 130px;
    height: 40px;
    border-radius: 20px;
    font-weight: 600;
    color: var(--button-bg-hover);
    background-color: var(--button-bg);
    border: 2px solid var(--text-color);
    transition: all .7s ease;
}

.cont-btn:hover{
    background-color: var(--button-bg-hover);
    color: var(--button-bg);
}

.cont-btn .fa-brands, .cont-btn .fa-solid {
    margin-right: 3px;
}


#scrolldown {
    color: var(--text-color);
}

/* hero responsive styles */
@media screen and (min-width: 770px) and (max-width: 1000px) { 

    .hero-header-1 {
        font-size: 35px;
        
    }

   

}

@media screen and (max-width: 770px) {

    .col-md-6 {
        flex: 0 0 auto;
        width: 100%;
    }
    
    #hero-right {
        margin-top: 50px;
    }

    .hero-header-1 {
        font-size: 30px;
        font-weight: 600;
    }

    .hero-parag {
        text-align: center;
        width: 85%;
        margin-bottom: 10px;
        font-size: 15px;
        overflow: hidden;
    }

    #hero-right {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .cont-btn {
        margin-bottom: 10px;
    }
}


@media screen and (max-width: 700px) {

    .hero-header-2 {
        font-size: 20px;
        font-weight: 600;
    }

    #cont-btns {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #hero-right{
        align-items: center;
    }

    /* #scroller {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    } */

}
/* About Section */

#about {
    height: max-content;
    padding: 150px 0;
}

#about-row-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 30px;
    margin-bottom: 30px;
}
.heading-h2 {
    color: var(--text-color);
    font-size: 35px;
    font-weight: 700;
}

.heading-h3 {
    color: var(--text-color);
    margin-top: 35px;
    font-size: 20px;
    font-weight: 600;
}

.paragraph-text {
    margin-top: 15px;
    color: var(--text-color);
    font-size: 17px;
    line-height: 2;
    text-align: justify;
}

.link-text {
    color: var(--orange-color);
    text-decoration: underline;
    text-decoration-color: var(--orange-color);
    transition: all .4s ease-in-out;
}

.link-text:hover {
    color: var(--text-color);
    text-decoration: underline;
    text-decoration-color: var(--orange-color);
}


.about-hr {
    color: var(--text-color);
    width: 70%;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 30px;
    transition: all 1s ease-in-out;
}


#about-row-right {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-image {
    object-fit: cover;
    width: 450px;
    border-radius: 30px;
    border-bottom: 5px solid var(--orange-color);
    border-right: 10px solid var(--orange-color);
    transition: all 1s ease-in-out;
}

@media screen and (max-width:1000px) {

    .about-hr {
        margin: auto;
        margin-top: 20px;
    }

    #about-row-right {
        margin-top: 50px;
    }

    .heading-h2 {
        color: var(--text-color);
        font-size: 30px;
        font-weight: 700;
    }

    .about-image {
        object-fit: cover;
        width: 350px;
        border-radius: 30px;
        border-bottom: 5px solid var(--orange-color);
        border-right: 10px solid var(--orange-color);
    }
    
}


@media screen and (max-width:400px) {
    .about-image {
        object-fit: cover;
        width: 250px;
        border-radius: 30px;
        border-bottom: 5px solid var(--orange-color);
        border-right: 10px solid var(--orange-color);
    }
}

/* Skills Styles */
#skills {
    height: max-content;
    padding: 100px 0;
}



#skill-btns {
    margin-top: 15px;
    margin-bottom: 20px;
}


.skill-btn {
    width:max-content;
    padding: 10px 10px;
    margin-top: 10px;
    height: 40px;
    border-radius: 20px;
    font-weight: 600;
    color: var(--button-bg-hover);
    background-color: var(--button-bg);
    border: 2px solid var(--text-color);
    transition: all .5s ease;
}

.skill-btn:hover{
    background-color: var(--button-bg-hover);
    color: var(--button-bg);
}

.skill-btn .fa-brands, .cont-btn .fa-solid {
    margin-right: 3px;
}


/* Change color of svg on hover from white to black */
.skill-btn:hover > .skill-svg {
    filter: brightness(0.1);
} 


@media screen and (max-width: 800px ) {

    #skills-cont {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 20px;
    }

    .skill-btn {
        margin-top: 10px;
    }

   
}

@media screen and (max-width: 700px ) {

#skills {
    margin: 0 20px;
}



}


/* experience section */

#experience {
    height: max-content;
    padding: 100px 0;
}

.experience-heading {
    color: var(--text-color);
    margin-top: 30px;
    font-weight: 700;
    font-size: 22px;
}
.experience-description {
    color: var(--text-color);
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    
}

.experience-row {
    display: flex;
}

.experience-left{
    margin-top: 30px;
}

@media screen and (max-width:779px) {

    #experience{
        padding: 30px;
    }

   

    

}
/* experience section end */

/* Project Section */
#projects {
    height: max-content;
    padding: 100px 0;
    margin: 0 20px;
    
}

#proj-row-id {
    margin-top: 20px;
}


.port-card {
    width: 400px;
    height: max-content;
    margin-top: 30px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    border-radius: 5px;
    border: 2px solid var(--orange-color);
    transition: all 0.3s ease-in-out;
}

.project-filter {
    color: #fff;
    font-size: 20px;
    text-align: left;
    margin-top: 30px;
}

@media  screen and (max-width: 779px) {
    .project-filter{
        text-align: center;
    }
}

.port-card:hover {
    border: 2px solid var(--text-color);
}

.port-img {
    width: 350px;
    height: 200px;
    transition: all 0.3s ease-in-out;
}

.card-heading {
    color: var(--text-color);
    margin-top: 20px;
    font-weight: 700;
    font-size: 22px;
}

.description {
    color: var(--gray-color);
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.3;
}

.tags {
    display: flex;
    width: 80%;
    gap: 10px;
}

.tag-para {
    margin-top: 10px;
    font-size: 10px;
    font-weight: 600;
    padding: 5px;
    border: 1px solid var(--orange-color);
    color: var(--text-color);
}

.port-links {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

#load {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

#loadmore {
    width: 140px;
    height: 50px;
    color: #fff;
    font-weight: 500;
    border-radius: 5px;
    background-color: var(--orange-color);
    border: 1px solid var(--orange-color);
    transition: all .3s ease-in-out;
}

#loadmore:hover {
    background-color: var(--button-bg);
    color: var(--text-color);
}


#loadless {
    width: 140px;
    height: 50px;
    color: #fff;
    font-weight: 500;
    border-radius: 5px;
    background-color: var(--orange-color);
    border: 1px solid var(--orange-color);
    transition: all .3s ease-in-out;
}

#loadless:hover {
    background-color: var(--button-bg);
    color: var(--text-color);
}
#seemore {
    width: 140px;
    height: 50px;
    color: #fff;
    font-weight: 500;
    border-radius: 5px;
    background-color: var(--orange-color);
    border: 1px solid var(--orange-color);
    transition: all .3s ease-in-out;
}

#seemore:hover {
    background-color: var(--button-bg);
    color: var(--text-color);
}

#more-section {
    display: none;
}

/* responsive card styles */

@media screen and (min-width:1200px) and (max-width: 1400px) {

    .port-img {
        width: 300px;
    }
    .port-card {
        width: 350px;
    }
}

@media screen and (min-width:780px) and (max-width: 1200px) {
    
    .port-img {
        width: 250px;
        height: auto;
    }

    .port-card {
        width: 300px;
    }
  
    

}

@media screen and (max-width:779px) {
    .port-card {
        margin: 20px 0;
        width: 350px;
    }

    .port-img {
        width: 300px;
        height: auto;
    }

    #projects-cont, #card-col {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
   
}



@media screen and (max-width:540px) {
    
    .port-card {
        width: 290px;
    }

    .port-img {
        width: 250px;
    }

    
}


@media screen and (max-width:400px) {
    
    .port-card {
        width: 270px;
    }

    .port-img {
        width: 230px;
    }
}


@media screen and (max-width: 320px) {
    .port-card {
        width: 270px;
    }

    .port-img {
        width: 230px;
    }
}


@media screen and (max-width: 290px) {
    .port-img {
        width: 200px;
    }

    .port-card {
        width: 240px;
    }
}



/* Contact Section */
#contact {
    height: max-content;
    padding: 70px 0;
    display: flex;
    margin: 0 20px;
}



.contact-buttons {
    margin-top: 30px;
}

.heading-h3 a {
    text-decoration: underline;
}

input[type=text]{
    height: 50px;
    color: var(--text-color);
    margin-top: 20px;
    padding: 0 10px;
    width: 600px;
    background: transparent;
    border: 1px solid #888;
    border-radius: 5px;
    transition: all 0.3s ease-in-out

}

input[type=email] {
    height: 50px;
    color: var(--text-color);
    background: transparent;
    margin-top: 20px;
    padding: 0 10px;
    margin-bottom: 20px;
    width: 600px;
    border: 1px solid #888;
    border-radius: 5px;
    transition: all 0.3s ease-in-out
}

input[type=textarea] {
    padding: 0 10px;
    height: 150px;
    color: var(--text-color);
    width: 600px;
    background: transparent;
    border: 1px solid #888;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}



button[type=submit] {
    background-color: var(--orange-color);
    color: #fff;
    padding: 15px 25px;
    border-radius: 5px;
    margin-top: 20px;
    margin-left: 0;
    border: 2px solid var(--orange-color);
    transition: all 0.3s ease-in-out;
}

button[type=submit]:hover {
    background-color: var(--button-bg);
    color: var(--text-color);
}


@media screen and (max-width: 800px) {
    
    input[type=text]{
        height: 50px;
        color: var(--text-color);
        margin-top: 20px;
        padding: 0 10px;
        width: 400px;
        background: transparent;
        border: 1px solid #888;
        border-radius: 5px;
    
    }
    
    input[type=email] {
        height: 50px;
        color: var(--text-color);
        background: transparent;
        margin-top: 20px;
        padding: 0 10px;
        margin-bottom: 20px;
        width: 400px;
        border: 1px solid #888;
        border-radius: 5px;
    }
    
    input[type=textarea] {
        padding: 0 10px;
        height: 120px;
        color: var(--text-color);
        width: 400px;
        background: transparent;
        border: 1px solid #888;
        border-radius: 5px;
    }
}

@media screen and (max-width: 500px) {

    .heading-h3  {
        font-size: 15px;
    }

    input[type=text]{
        height: 50px;
        color: var(--text-color);
        margin-top: 20px;
        padding: 0 10px;
        width: 290px;
        background: transparent;
        border: 1px solid #888;
        border-radius: 5px;
    
    }
    
    input[type=email] {
        height: 50px;
        color: var(--text-color);
        background: transparent;
        margin-top: 20px;
        padding: 0 10px;
        margin-bottom: 20px;
        width: 290px;
        border: 1px solid #888;
        border-radius: 5px;
    }
    
    input[type=textarea] {
        padding: 0 10px;
        height: 120px;
        color: var(--text-color);
        width: 290px;
        background: transparent;
        border: 1px solid #888;
        border-radius: 5px;
    }
}

@media screen and (max-width: 350px) {
    input[type=text]{
        height: 50px;
        color: var(--text-color);
        margin-top: 20px;
        padding: 0 10px;
        width: 260px;
        background: transparent;
        border: 1px solid #888;
        border-radius: 5px;
    
    }
    
    input[type=email] {
        height: 50px;
        color: var(--text-color);
        background: transparent;
        margin-top: 20px;
        padding: 0 10px;
        margin-bottom: 20px;
        width: 260px;
        border: 1px solid #888;
        border-radius: 5px;
    }
    
    input[type=textarea] {
        padding: 0 10px;
        height: 120px;
        color: var(--text-color);
        width: 260px;
        background: transparent;
        border: 1px solid #888;
        border-radius: 5px;
    }
}


@media screen and (max-width: 290px) {
    input[type=text]{
        height: 50px;
        color: var(--text-color);
        margin-top: 20px;
        padding: 0 10px;
        width: 200px;
        background: transparent;
        border: 1px solid #888;
        border-radius: 5px;
    
    }
    
    input[type=email] {
        height: 50px;
        color: var(--text-color);
        background: transparent;
        margin-top: 20px;
        padding: 0 10px;
        margin-bottom: 20px;
        width: 200px;
        border: 1px solid #888;
        border-radius: 5px;
    }
    
    input[type=textarea] {
        padding: 0 10px;
        height: 120px;
        color: var(--text-color);
        width: 200px;
        background: transparent;
        border: 1px solid #888;
        border-radius: 5px;
    }
}

/* Footer Section */
#footer {
    height: max-content;
    padding: 50px 0;
}

#footer-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.socials {
    display: flex;
    gap: 20px;
}

/* back top button */
#btn-back-to-top {
    background-color: var(--orange-color);
    border-color: var(--text-color);
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
  }


/* Success html */
#fullpage-section {
    height: 500px;
    display: flex;
    align-items: center;
}

#fullpagecol {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.heading-alert {
    font-size: 30px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.backhome {
    margin-top: 10px;
    width: 110px;
    height: 50px;
    border-radius: 5px;
    color: #fff;
    background-color: var(--orange-color);
    border: 1px solid var(--orange-color);
    transition: all .3s ease-in-out;
}

.backhome:hover {
    background-color: var(--button-bg);
    color: var(--text-color);
}

/* failed html */

.heading-alert-fail {
    font-size: 30px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.heading-alert-fail .fa-solid {
    color: red;
}


/* Resume html */

.resume-section {
    margin: 35px 0;
}

.resume-download-btn {
    background-color: var(--orange-color);
    color: #fff;
    width: 200px;
    padding: 15px 15px;
    border-radius: 5px;
    margin-top: 20px;
    margin-left: 0;
    border: 2px solid var(--orange-color);
    transition: all 0.3s ease-in-out;
}

.resume-download-btn:hover {
    background-color: var(--button-bg);
    color: var(--text-color);
}

.accent-header {
    font-size: 20px;
    color: var(--orange-color);
    margin: 20px 0;
}

.accent-desc {
    color: var(--orange-color);
    margin-bottom: 25px;
    font-size: 17px;
}

.paragraph-text-li {
    margin-top: 15px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.2;
    text-align: justify;
}

ul > .paragraph-text-li {
    margin: 10px 30px;
    list-style:disc;
}


/* 404 */

.b404-back-btn{
    display: flex;
    justify-content: center;
}

.backhome-404 {
    text-align: center;
    margin-top: 10px;
    width: 200px;
    height: 50px;
    border-radius: 5px;
    color: #fff;
    background-color: var(--orange-color);
    border: 1px solid var(--orange-color);
    transition: all .3s ease-in-out;
}

.backhome-404:hover {
    background-color: var(--button-bg);
    color: var(--text-color);
}


/* Vimeo */

.vimeo-launch {
    display: block;
    background-color: transparent;
    border: none;
    width: 200px;
    height: 200px;
    transition: all .4s ease-in;
}

.vimeo-launch:hover {
 scale: 1.05;
}

.yellow-header {
    font-size: 35px;
    color: var(--primary-color);
}


@keyframes close-before {
    0% { margin-top: 0 }
    100% { margin-top: -10px }
  }
  
  @keyframes close-after {
    0% { margin-top: -10px }
    100% { margin-top: 0px }
  }

  .vimeo-launch:before {
    background: white;
    box-shadow: inset 0 0 0 4px white, inset 0 0 0 8px #62abfc;
    color: #3091fb;
    top: 0;
  }
  .vimeo-launch:after {
    background: #62abfc;
    box-shadow: inset 0 0 0 4px #62abfc, inset 0 0 0 8px white;
    color: white;
    top: 100%;
  }
  .vimeo-launch:hover:before {
    top: -100%;
  }
  .vimeo-launch:hover:after {
    top: 0;
  }
  
  #vimeo-pop-container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999999;
    background: rgba(0, 0, 0, 0.75);
  }
  #vimeo-pop-container div {
    height: 450px;
    width: 800px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  #vimeo-pop-container .vimeo-close {
    background-color: transparent;
    border: 3px solid white;
    cursor: pointer;
    margin-bottom: 10px;
    height: 30px;
    width: 30px;
    position: absolute;
    bottom: 100%;
    right: 0;
    transition: 200ms background-color;
  }
  #vimeo-pop-container .vimeo-close:before, #vimeo-pop-container .vimeo-close:after {
    content: "";
    background: white;
    border-radius: 3px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: rotate(45deg);
    transition: 500ms all;
  }
  #vimeo-pop-container .vimeo-close:before {
    height: 20px;
    width: 2px;
    margin-left: -1px;
    margin-top: -10px;
  }
  #vimeo-pop-container .vimeo-close:after {
    height: 2px;
    width: 20px;
    margin-left: -10px;
    margin-top: -1px;
  }
  #vimeo-pop-container .vimeo-close:hover {
    background-color: rgba(0, 0, 0, 0.25);
  }
  #vimeo-pop-container .vimeo-close.closing:before {
    transform: rotate(450deg);
    margin-left: -2px;
    margin-top: 0;
    -webkit-animation: close-before 500ms ease 500ms 1 forwards;
            animation: close-before 500ms ease 500ms 1 forwards;
  }
  #vimeo-pop-container .vimeo-close.closing:after {
    transform: rotate(540deg);
    margin-left: -11px;
    margin-top: -10px;
    -webkit-animation: close-after 500ms ease 500ms 1 forwards;
            animation: close-after 500ms ease 500ms 1 forwards;
  }
  #vimeo-pop-container iframe {
    border: 6px solid white;
    height: 100%;
    width: 100%;
  }

  
@media screen and (max-width: 1000px) {
    #vimeo-pop-container div {
        height: 450px;
        width: 500px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
      }

      .yellow-header {
        font-size: 30px;
      }

      h2 {
        font-size: 27px !important;
      }
}

@media screen and (max-width: 700px) {
    #vimeo-pop-container div {
        height: 350px;
        width: 350px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
      }

      
    
}