/* COLORS */
colors {
    color:
    #fff
    #d5d5d5
    #f5f5f5
    #222222
    #333333
    #007ced
}


.main-bg {
    color: #007ced;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    color: #333333;
    font-family: 'poppins';
}

.error {
    color: red;
}


/* SCROLL TO TOP */
#topIcon {
    background-color: #000;
    position: fixed;
    bottom: 1rem;
    right: 1.2rem;
    height: 35px;
    width: 35px;
    z-index: 93;
    border-radius: 3px;
    display: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}


#topIcon:hover {
    background-color: #333333;
}

#topIcon:hover i {
    transform: scaleY(1.2);
}

#topIcon i {
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    animation-name: top;
    cursor: pointer;
    animation-timing-function: ease-in-out;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

@keyframes top {
    from {
        margin-top: 10px;
    } to {
        margin-top: 13px;
    }
}

@-webkit-keyframes top {
    from {
        margin-top: 10px;
    } to {
        margin-top: 13px;
    }
}


/* BUTTONS */
.button {
    color: #fff;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 12px;
    width: 150px;
    border: 2px solid #007ced;
    background-color: #333333;
}

.second-button {
    color: #fff;
    border-radius: 25px;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 18px;
    /* width: 130px; */
    border: 2px solid #dfdfdf;
    background-color: #333333;
}

.second-button:hover {
    color: #ffffff;
    transition: all 0.5s ease;
    background-color: grey;
    border: 2px solid grey;
}

.button:hover {
    transition: all 0.5s ease;
    background-color: #007ced;
}



/* HEADER */
header {
    padding: 25px 55px;
    height: 625px;
    background-color: #222222;
}

#second-navbar {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    animation: move-down 1s ease-in-out;
}

@keyframes move-down {
    from {
        top: -35px;
    } to {
        top: 0;
    }
}

@-webkit-keyframes move-down {
    from {
        top: -35px;
    } to {
        top: 0;
    }
}

@keyframes move-up {
    from {
        top: 0;
    } to {
        top: -35px;
    }
}

@-webkit-keyframes move-up {
    from {
        top: 0;
    } to {
        top: -35px;
    }
}

#top-nav {
    z-index: 99;
    width: 100%;
    padding: 15px 55px;
    position: fixed;
    top: 0;
    background-color: #222222;
}

#letter {
    color: #fff;
    height: 50px;
    width: 50px;
    font-weight: 700;
    font-size: 29px;
    border-radius: 50%;
    display: flex;
    margin-right: 10px;
    justify-content: center;
    align-items: center;
    font-family: 'poppins';
    background-color: #007ced;
}

img#letter {
    transform: rotate(15deg);
}

.a-link {
    color: #007ced;
}

.a-link:hover {
    color: #1577d2;
}

#name {
    font-size: 25px;
    color: #fff;
    font-family: 'poppins';
}

#first-name {
    font-weight: 600;
}


/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    width: 600px;
    justify-content: space-between;
    align-items: center;
}

nav ul li {
    font-family: 'poppins';
    font-weight: 600px;
    list-style-type: none;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: #f1f1f1;
}

nav ul li a:not(.active)::after {
    transform: scale(0);
}

nav ul li a:not(.active):hover::after {
    content: "";
    left:  0px;
    width: 35px;
    bottom: -10px;
    transform: 0;
    transform: scale(1);
    transition: all 0.3s ease-in-out;
    transform-origin: center;
    position: absolute;
    border-bottom: 3px solid #f1f1f1;
}

nav ul li .active {
    color: #007ced;
}

nav ul li  .active::after {
    content: "";
    left: 0px;
    width: 35px;
    bottom: -10px;
    position: absolute;
    border-bottom: 3px solid #007ced;
}



#menu {
    all: unset;
    width: 50px;
    height: 50px;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    display: none;
    cursor: pointer;
    transition: all 2s ease; 
    background-color: #1577d2;
    box-shadow: 10px #333333;
}

#menu i {
    color: #fff;
    transition: all 0.2s ease; 
}

#menu-container {
    border-radius: 5px;
    width: 60px;
    position: absolute;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #d5d5d5;
    animation: zoom-in 1s infinite ease-in-out;
}

@keyframes zoom-in {
    0%{height: 50px;width: 50px;opacity: 0.3}
    50%{height: 55px;width: 55px;opacity: 0.6}
    75%{height: 60px;width: 60px;opacity: 1}
    100%{height: 65px;width: 65px;opacity: 0}
}

@-webkit-keyframes zoom-in {
    0%{height: 50px;width: 50px;opacity: 0.3}
    50%{height: 55px;width: 55px;opacity: 0.6}
    75%{height: 60px;width: 60px;opacity: 1}
    100%{height: 65px;width: 65px;opacity: 0}
}

@keyframes zoom-out {
    0%{height: 65px;width: 65px;opacity: 0}
    50%{height: 50px;width: 50px;opacity: 0.3}
    75%{height: 55px;width: 55px;opacity: 0.6}
    50%{height: 60px;width: 60px;opacity: 1}
}

@-webkit-keyframes zoom-out {
    0%{height: 65px;width: 65px;opacity: 0}
    50%{height: 50px;width: 50px;opacity: 0.3}
    75%{height: 55px;width: 55px;opacity: 0.6}
    50%{height: 60px;width: 60px;opacity: 1}
}

#front-img-container {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 20px solid #333333;
}

#front-img-container img {
    width: 310px;
    height: 310px;
    border-radius: 50%;
}

#top-button-container button:last-child {
    margin-left: 10px;
}

#home-details {
    width: auto;
    max-width: 500px;
    color: #f5f5f5;
    font-family: 'poppins';
}

#intro-text {
    line-height: 1.5em;
}


/* TYPEWRITER */
.typewriter {
    background-color: #222222;
    display: flex;
    align-items: center;
}
  
.typewriter p {
    color: #ffffff;
    font-size: 1.5em;
    font-weight: 500;
    width: 0;
    max-width: max-content;
    overflow: hidden; 
    border-right: .05em solid #464545;
    white-space: nowrap;
    margin: 0; 
  }
  
  
/* The type and erase effect */
@keyframes typing-erase {
    0% { width: 0 }
    60% { width: 100%; }
    90%, 100% { width: 0 }
}

@-webkit-keyframes typing-erase {
    0% { width: 0 }
    60% { width: 100%; }
    90%, 100% { width: 0 }
}
  
/* The typewriter cursor effect */
@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: gray }
}

@-webkit-keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: gray }
}

.typewriter #firstletter {
    color: #007ced;
    /* display: none; */
    font-size: 30px;
    padding-right: 5px;
}

#top-button-container .button:first-child {
    background-color: #007ced;
}

#top-button-container .button:first-child:hover {
    transition: all 0.3s ease-in-out;
    border: 2px solid #356ea4;
}


/* MODAL */
#modal-container {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 105;
    display: none;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.5);
}

#modal {
    margin: auto;
    width: 100%;
    z-index: 105;
    height: 100%;
    top: 0;
    bottom: 0;
    overflow-y: scroll;
    position: fixed;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}


#modal-header {
    color: #ffffff;
    height: 90px;
    background-color: #333333;
}

#close {
    all: unset;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid #FFFEFE;
}

#close i {
    font-size: 35px;
}

#close:hover {
    color: #fff;
    border: 3px solid #6e6e6e;
}

#modal-body {
    color: #080808;
    padding: 25px;
    height: fit-content;
}

#modal-footer {
    color: #ffffff;
    height: fit-content;
    width: 100%;
    background-color: #356ea4;
}

@keyframes zoom-in {
    from {
        transform: scale(0);
    } to {
        transform: scale(1);
    }
}

@-webkit-keyframes zoom-in {
    from {
        transform: scale(0);
    } to {
        transform: scale(1);
    }
}



/* ABOUT */
#abt-me {
    font-family: 'poppins';
}

#about-text {
    color: #6e6e6e;
    font-size: 15px;
    line-height: 1.5em;
    font-family: default;
}

#button-container {
    width: 750px;
    display: flex;
    justify-content: center;
    flex-flow: wrap;
    flex-wrap: wrap;
    margin: auto;
}

.abt-button {
    color: #6e6e6e;
    border-radius: 5px;
    font-weight: 400;
    font-size: 15px;
    padding: 8px 15px;
    margin: 7px 15px;
    width: auto;
    text-align: center;
    background: transparent;
    border: 2px solid #007ced;
}

.cv-button {
    color: #fff;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 12px;
    width: auto;
    border: 2px solid #007ced;
    background-color: #007ced;
}

.cv-button:hover {
    transition: all 0.5s;
    transform: scale(1.1);
}



/* SERVICES */
#services {
    color: #f5f5f5;
    padding-block: 100px;
    background-color: #222222;
    font-family: 'poppins';
}

#services > div > div {
    display: flex;
    justify-content: center;
    align-items: center;
}

#services-headline {
    padding-left: 0%;
}

#services > p {
    font-family: 'poppins';
}

.underline {
    width: 100px;
    height: 3px;
    position: relative;
    border-radius: 10px;
    background-color: #007ced;
}

.underline > span {
    background-color: #fff;
    width: 50px;
    height: 100%;
    position: absolute;
    border-radius: 10px;
    margin-left: 50px;
}

.services {
    display: flex;
    background-color: #fff;
    color: #000;
    border-radius: 3px;
}

#pwa {
    width: 60px;
    margin-top: 7px;
}

#services .grid-2{
    grid-gap: 35px 50px;
}

.services i {
    color: #007ced;
}

.headline {
    font-weight: 900;
}

.services-text {
    width: 450px;
    font-weight: 300;
}

.quote-button {
    all: unset;
    color: #000;
    font-size: 19px;
    margin-top: 45px;
    font-weight: 600;
    padding: 10px 15px;
    background-color: #fff;
    border-radius: 3px;
    cursor: pointer;
}

.quote-button:hover {
    transition: all 0.3s;
    outline: 3px solid #007ced;
}

.grid-2.showlink {
    animation: fade-up 1.5s ease-in-out;
}


@keyframes fade-up {
    from {
        opacity: 0;
        padding-top: 300px;
    } to {
        opacity: 1;
        margin-top: 35px;
    }
}

@-webkit-keyframes fade-up {
    from {
        opacity: 0;
        padding-top: 300px;
    } to {
        opacity: 1;
        margin-top: 35px;
    }
}


/* SKILLS */
#skills {
    font-family: 'poppins';
}

:root {
    --html: 97%;
    --css: 95%;
    --js: 90%;
    --php: 96%;
    --python: 87%;
    --wordpress: 89%;
}

.lang-container p {
    z-index: 5;
    text-align: center;
}

.language,.professional {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    color: #fff;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: conic-gradient(#007ced 3.6deg, #dfdfdf 0deg);
}

.language::before {
    content: "";
    position: absolute;
    width: 60px;
    z-index: 5;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
}

.language::after,
.professional::after {
    content: "";
    position: absolute;
    top: 0;
    z-index: 4;
    border-radius: 50%;
    animation: progressing infinite 1s ease-in-out;
    background-color: #000;
}

@keyframes progressing {
    from {
        width: 0;
        height: 0;
        background-color: transparent;
    } to {
        width: 100%;
        height: 100%;
        background: #ffffff4b;
    }
}

@-webkit-keyframes progressing {
    from {
        width: 0;
        height: 0;
        background-color: transparent;
    } to {
        width: 100%;
        height: 100%;
        background: #ffffff4b;
    }
}

.language p,
.professional p {
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    color: #000;
}

.personal-skills {
    border-top: 1px solid #333333;
}

.personal-skills > p {
    font-weight: 700;
}

.personal-skills:last-child {
    border-bottom: 1px solid #333333;
}

.progress-bar {
    width: 100%;
    background-color: #333333;
}

.bar {
    position: relative;
    height: 5px;
    animation-name: progress;
    animation-duration: 1s;
    background-color: #007ced;
}

.bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    animation: progress infinite 1s ease-in-out;
    background-color: #ffffff4b;
}

#html {
    width: var(--html);
}

#css {
    width: var(--css);
}

#js {
    width: var(--js);
}

#php {
    width: var(--php);
}

#wordpress {
    width: var(--wordpress);
}

#python {
    width: var(--python);
}

@keyframes progress {
    from {
        width: 0%;
    } to {
        width: width;
    }
}

@-webkit-keyframes progress {
    from {
        width: 0%;
    } to {
        width: width;
    }
}

ul#knowledge li {
    margin: 7px 15px;
    font-weight: 600;
    list-style-image:url(../images/check-solid.svg);
}

.professional {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    color: #fff;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: conic-gradient(#007ced 3.6deg, #dfdfdf 0deg);
}

.professional::before {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #fff;
}



/* INTERESTED */
#interested {
    font-family: 'poppins';
    height: 275px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    background-image: url(../images/pexels-fwstudio-129731.jpg);
}

#interested > section .underline {
    color: #fff;
}

#interested-text {
    color: #080808;
    font-size: 19px;
}

#interested > div {
    position: absolute;
    color: #000;
}

.interested-btn {
    color: #fff;
    position: fixed;
    bottom: 4rem;
    right: 15px;
    font-family: 'poppins';
    background-color: #075E54;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 40px;
    padding-left: 10px;
    transition: all 0.3s ease-in-out;
    border: 2px solid #fff;
}


.interested-btn:hover {
    transition: all 0.5s ease-in-out;
    background-color: #0E4732 ;
}

.interested-btn i.fa-solid {
    animation: chat 1.5s infinite ease;
    position: relative;
}


#first-logo {
    animation: chat-icon 1.5s infinite ease-in-out;
    position: relative;
    opacity: 0;
}

@keyframes chat {
    from {
        left: 0;
        opacity: 0;
    } to {
        left: 25px;
        opacity: 1;
    }
}

@-webkit-keyframes chat {
    from {
        left: 0;
        opacity: 0;
    } to {
        left: 25px;
        opacity: 1;
    }
}

@keyframes chat-icon {
    from {
        opacity: 0;
        left: 0;
    } to {
        opacity: 1;
        left: 23px;
    }
    35%{opacity: 0;}
}

@-webkit-keyframes chat-icon {
    from {
        opacity: 0;
        left: 0;
    } to {
        opacity: 1;
        left: 23px;
    }
    35%{opacity: 0;}
}




/* PORTFOLIO  PAGE */
#portfolio {
    font-family: 'poppins';
}

#heading {
    font-weight: 800;
    font-size: 19px;
}

#port-container {
    margin-top: -15px;
}

#porfolio-categories li {
    color: #6e6e6e;
    font-size: 16px;
    font-weight: 600;
    margin: auto 10px;
    list-style-type: none;
}

#porfolio-categories li.active-portfolio {
    color: #000;
}

#porfolio-categories li:hover {
    cursor: pointer;
    color: #000;
}

#porfolio-categories li:last-child {
    margin-right: 0;
}

#portfolio-container,
.portfolio-container {
    width: 85%;
    margin: auto;
}

.single-portfolio {
    z-index: 5;
    position: relative;
    height: 350px;
    width: 355px;
    border: 3px solid #333333;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
    margin: 8px;
}

.single-portfolio.show {
    width: 355px;
    margin: 8px;
    height: 350px;
	animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
	0%{
		opacity: 0;
		height: 0;
        width: 0;
	}
	100%{
		opacity: 1;
		height: 350px;
		width: 355px;
	}
}

@-webkit-keyframes fadeIn {
	0%{
		opacity: 0;
		height: 0;
        width: 0;
	}
	100%{
		opacity: 1;
		height: 350px;
		width: 355px;
	}
}

.single-portfolio.hide {
    animation: fadeOut 1s ease;
	display: none;
}

@keyframes fadeOut {
	0%{
		opacity: 1;
        height: height;
		width: width;
	}
	100%{
        height: 0;
        width: 0;
		opacity: 0;
	}
}

@-webkit-keyframes fadeOut {
	0%{
		opacity: 1;
        height: height;
		width: width;
	}
	100%{
        height: 0;
        width: 0;
		opacity: 0;
	}
}

.portfolio {
    height: 350px;
    width: 355px;
}

#portfolio .grid div {
    grid-column-gap: 25px;
}

.single-portfolio:hover .portfolio-details {
    height: 60%;
    padding: 20px;
    display: block;
}

.single-portfolio:hover .portfolio img {
    z-index: -2;
    position: absolute;
    transition: all 0.5s;
    transform: scale(1.3);
}

.portfolio-details {
    bottom: 0;
    height: 0;
    color: #ffffff;
    padding: 0;
    width: 100%;
    background-color: #333333;
    position: absolute;
    transition: all 0.3s;
    overflow: hidden;
}

.portfolio-details p:last-child > span {
    color: #007ced;
}

.portfolio-details p:last-child span:hover {
    color: #dfdfdf;
    cursor: pointer;
}

.portfolio-details p:last-child span:hover i {
    margin-left: 5px;
    transition: all 0.3s;
    transform: scale(1.1);
}


/* PROJECT MORE INFO */
.portfollio-name {
    font-family: 'poppins';
}

#controller {
    height: 40px;
    width: 60px;
    display: flex;
    margin: 10px 0;
    justify-content: end;
    background-color: #222222;
}

#controller button {
    all: unset;
    width: 50px;
    color: #007ced;
    display: flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    transition: all 0.1s;
    background-color: transparent;
}

#controller button:hover {
    color: #ffffff;
    background-color: #333333;
}

#controller button:first-child { 
    border-right: 1px solid #6e6e6e;
}

#project-text {
    color: #222222;
    font-family: 'poppins';
    font-size: 21px;
    font-weight: 600;
}

.portfolio-img-wrapper {
    left: 0%;
    overflow: hidden;
    position: relative;
}

.portfolio-img-wrapper img {
    object-fit: cover;
}

.portfolio-img-wrapper > div.flex {
    left: 0%;
    position: relative;
}

#category {
    color: #fff;
    border-radius: 3px;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 18px;
    background-color: #333333;
}

.project-img {
    height: 350px;
    width: 354px;
    border: 1px solid #222222;
}

.project-information {
    color: #fff;
    background-color: #333333;
}

.portfolio-container {
    display: none;
}

.back {
    color: #007ced;
    cursor: pointer;
    text-decoration: underline;
}

.back:hover {
    color: #356ea4;
}

.project-info li,
.project-infos li {
    font-size: 15px;
    margin: 10px 0;
    list-style-type: none;
}

.project-info li {
    color: #ffffff;
}

.project-infos li {
    color: #dfdfdf;
}

.port {
    margin: 45px auto;
} 

.port-container {
    transition: all 3s;
    transform: translate(50px,100px);
}

.port > div {
    grid-gap: 25px;
}

.show {
    display: flex;
}

.details-link {
    color: #208df3;
}

.details-link:hover {
    color: #ffffff;
}

.back-btn {
    all: unset;
    width: 85%;
    margin: auto;
    padding: 15px 0;
    font-size: 19px;
    font-weight: 600;
    color: #000;
    display: none;
    text-align: center;
    background-color: #fff;
    border: 2px solid #333;
    border-radius: 5px;
}

.back-btn:hover {
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    background-color: #000;
}




/* BLOG PAGE */
#blog {
    font-family: 'poppins';
}

#all-blog-posts.show {
    animation: fade-up 1.5s ease-in-out;
}

#post-details {
    width: fit-content;
    color: #fff;
    padding: 8px 15px;
    font-size: 12px;
    margin-top: 10px;
    background-color: #333333;
}

.post-title {
    cursor: pointer;
    color: #007ced;
}

#blog ol li {
    list-style-position: inside;
}

.blog-post-container .img {
    width: 97.3%;
    height: auto
}

.blog-information {
    color: #fff;
    background-color: #333333;
}

.post-category {
    all:unset;
    font-size: 12px;
    font-weight: 400;
    border: 3px solid #007ced;
    padding: 5px 5px;
    transition: transform 2s ease-in-out;
}

#social-share i:hover {
    cursor: pointer;
    transform: scale(1.3);
    color: #007ced;
}

#blog-img {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    border: 3px solid #007ced;
}

#post-lists li {
    margin: 12px 0;
    margin-top: 20px;
    list-style-type: none;
    border-bottom: 3px solid #007ced;
}

#post-lists li:first-child {
    margin: 0;
}

#post-lists li a {
    color: #656363;
    text-decoration: none;
}

#post-lists li a:hover {
    color: #222222;
    text-decoration: underline;
}

#recent-posts a {
    cursor: pointer;
}



/* CONTACT */
#contact {
    position: relative;
}

#contact-text {
    font-family: 'Poppins';
}

.contact-icon {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid #00f;
}

.contact-icon i, #firstletter {
    color: #00f;
}

#form input[type="text"] {
    color: #222222;
    border: 2px solid #007ced;
    height: 63px;
    font-family: 'poppins';
    outline: none;
    padding: 25px;
    font-size: 15px;
    width: 100%;
    border-radius: 3px;
}

#form textarea {
    color: #222222;
    font-family: 'poppins';
    border: 2px solid #007ced;
    outline: none;
    width: 100%;
    height: 100%;
    padding: 25px;
    border-radius: 3px;
}

#contact-container > div.card:first-child i {
    animation: bounce 1.5s infinite ease-in-out;
}

@keyframes bounce {
    from {
        margin-top: -10px;
    } to {
        margin-top: 10px;
    }
}

@-webkit-keyframes bounce {
    from {
        margin-top: -10px;
    } to {
        margin-top: 10px;
    }
}

#contact-container > div.card:nth-child(2) .contact-icon {
    position: relative;
}

#contact-container > div.card:nth-child(2) span {
    width: 15px;
    height: 15px;
    font-size: 12px;
    border-radius: 50%;
    background-color: #00f;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 57px;
    left: 79px;
    animation: pop-message 1.5s infinite ease-in-out;
}

@keyframes pop-message {
    from {
        transform: scale(1.2);
    } to {
        transform: scale(1);
    }
}

@-webkit-keyframes pop-message {
    from {
        transform: scale(1.2);
    } to {
        transform: scale(1);
    }
}

#contact-container > div.card:last-child i {
    animation: shake 0.2s infinite ease-in-out;
}

@keyframes shake {
    from {
        transform: rotate(15deg);
    } to {
        transform: rotate(0);
    }
}

@-webkit-keyframes shake {
    from {
        transform: rotate(15deg);
    } to {
        transform: rotate(0);
    }
}

.input-container {
    margin-bottom:25px;
}

#reply-container {
    min-height: 50px;
    height: auto;
    padding: 10px;
    width: 100%;
    display: flex;
    color: #ffffff;
    background-color: #007ced;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

#submit {
    padding: 12px 45px;
}

.contact-button-container {
    position: relative;
}

.contact-button {
    all: unset;
    font-weight: 500;
    padding: 10px 15px;
    color: #fff;
    cursor: pointer;
    font-size: 19px;
    border: 3px solid #00f;
    background: linear-gradient(#00f 100%, #fff);
}

.contact-button-container:hover .contact-button span {
    opacity: 0;
}

.contact-button-container:hover #bg {
    opacity: 1;
    display: block;
    height: fit-content;
    z-index: 8;
    bottom: 0;
    cursor: pointer;
    padding: 12px 45px;
    animation: change-button .3s ease;
    border: 3px solid #00f;
}

@keyframes change-button {
    from {
        height: 0;
        opacity: 0;
        display: none;
    } to {
        opacity: 1;
        height: 20px;
    }
}

@-webkit-keyframes change-button {
    from {
        height: 0;
        opacity: 0;
        display: none;
    } to {
        opacity: 1;
        height: 20px;
    }
}

#bg {
    all: unset;
    color: #00f;
    opacity: 0;
    height: 0;
    bottom: 0;
    display: none;
    position: absolute;
    width: fit-content;
    font-weight: 500;
    font-size: 19px;
    padding: 12px 45px;
    border: 3px solid #fff;
    background: linear-gradient( #fff 100%, #000);
}




/* FOOTER */
footer {
    background-color: #222222;
    font-family: 'poppins';
    color: #DDDDDD;
}

#footer-name {
    display: none;
}

#mobile-footer {
    display: none;
}

#footer-links-container a img {
    width: 25px;
    margin: 0 7px;
    border-radius: 10px;
    transition: transform 0.1s ease;
}

#footer-links-container img:hover {
    transform: scale(1.2);
}

#copyright {
    font-size: 14px;
}
