html {
    touch-action: pan-y pinch-zoom;
    /* required to swipe left or right */
}

.gf-section h3 {
    color: rgba(0, 194, 255, 1); 
    /* color: hsla(60, 100%, 48%, 1); */
    /* yellow val */
    /* font-family: 'Anton', sans-serif; */
    font-family: 'Anton';
    margin-top: 2rem;
}

.gf-primary {
    color: rgba(255, 255, 255, 1);
    background-color: rgb(27, 145, 255);
    transition-duration: 0.2s;
}

.gf-primary:hover {
    color: rgba(255, 255, 255, 1);
    background-color: rgb(0, 105, 204);
    box-shadow: 0 0 10px 0 rgb(0, 105, 204);
    transition-duration: 0.2s;
}

.gf-intro h1 {
    /* font-family: 'Dancing Script', cursive; */
    font-family: 'Dancing Script';
    font-weight: 300;
    line-height: 1.2;
}

.gf-intro {
    top: 0;
    height: 584px;
    /* hack to prevent the section to resize when on screen keyboard pops-up/out */
    overflow: hidden;
}

/* hack to prevent the section to resize when on screen keyboard pops-up/out */

@media (min-width: 576px) {
    .gf-intro {
        height: 304px;
    }
}

/* hack to prevent the section to resize when on screen keyboard pops-up/out */

@media (min-width: 768px) {
    .gf-intro {
        height: 100vh;
        min-height: 360px;
    }
}

.gf-intro>div {
    position: absolute;
    top: 68px;
    /* let enough space for the menu */
    left: 0px;
    bottom: 0px;
    right: 0px;
    padding-left: 20px;
    padding-right: 20px;
    z-index: 30;
}

@keyframes scroll-icon-animation {
    from {
        transform: translateY(-25px) scale(1.25);
    }
    to {
        transform: translateY(0px) scale(1);
    }
}

.gf-intro i.fas {
    color: rgba(255, 255, 255, 1);;
    animation-name: scroll-icon-animation;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: normal;
}

/* blue transparent overlay */

.gf-intro::before {
    z-index: 10;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: linear-gradient(to right, rgb(13, 72, 127) 0%, rgb(27, 145, 255) 100%);
    opacity: .7;
}

.gf-intro {
    color: rgba(255, 255, 255, 1);;
}

@media (min-width: 768px) {
    .gf-intro h1 {
        font-size: 6rem;
    }
}

.gf-social {
    height: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 8rem;
    margin: 0px;
}

.gf-social a:link,
.gf-social a:visited,
.gf-social a:active {
    font-size: 3rem;
    color: rgba(255, 255, 255, 1);;
    transition: 0.5s;
    text-decoration: none;
}

@media (min-width: 768px) {
    .gf-social {
        height: 5rem;
        width: 10rem;
    }
    .gf-social a:link,
    .gf-social a:visited,
    .gf-social a:active {
        font-size: 4rem;
    }
    .gf-social a:hover {
        font-size: 5rem;
        transition: 0.5s;
        color: rgb(27, 145, 255);
    }
}

.gf-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.gf-section p,
.gf-section ul {
    font-size: 1rem;
    font-weight: 300;
    text-align: justify;
}

.gf-section ul {
    padding: 0;
    margin: 0 0 0 0;
    list-style-type: none;
}

.gf-section li {
    margin-bottom: 1rem;
}

.gf-section li::before {
    /* content: "\f35a\00a0"; */
    content: "\f35a";
    padding-right: 1rem;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    color: rgba(189, 189, 189, 1);;
}

.gf-section ul.colored li::before {
    color: rgb(27, 145, 255);
}

@media (min-width: 768px) {
    .gf-section p,
    .gf-section ul {
        font-size: 1.25rem;
    }
    .gf-box p,
    .gf-box ul {
        font-size: 1rem;
    }
}

.gf-box {
    background: rgba(255, 255, 255, 1);;
    border-radius: 10px;
    margin-bottom: 1.5em;
    margin-top: 3em;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 18px 17px 104px -24px rgba(0, 0, 0, 0.5);
    flex-grow: 1;
    flex-basis: 0;
    max-width: 350px;
}

.gf-box-header {
    background: linear-gradient(to bottom, rgb(20, 104, 183) 0%, rgb(27, 145, 255) 100%);
    /* background: rgb(27, 145, 255); */
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
    padding-top: 15px;
    padding-bottom: 15px;
    color: rgb(255, 255, 255);
    /* border-bottom: #636363 solid 3px; */
}

.gf-box-content {
    padding: 2em;
}

.gf-box .icon {
    font-size: 50px;
}

.gf-box h3 {
    text-align: center;
    margin-top: 10px;
    color: inherit;
}

@media (min-width: 768px) {
    .figure {
        width: 33%;
        /* height: 100%; */
    }
    .figure.float-md-left {
        margin-right: 20px;
        margin-left: 0px;
    }
    .figure.float-md-right {
        margin-right: 0px;
        margin-left: 20px;
    }
}

.gf-section h2 {
    color: rgb(27, 145, 255);
    margin-bottom: 1em;
    font-size: 3em;
    /* font-family: 'Lobster', sans-serif; */
    font-family: 'Lobster';
    text-align: center;
}

.gf-section-separator {
    /* height: 25vh; */
    height: 160px;
    /* hack to prevent the section to resize when on screen keyboard pops-up/out */
    background-image: url("../img/bg.svg");
}

/* hack to prevent the section to resize when on screen keyboard pops-up/out */

@media (min-width: 576px) {
    .gf-section-separator {
        height: 100px;
    }
}

/* hack to prevent the section to resize when on screen keyboard pops-up/out */

@media (min-width: 768px) {
    .gf-section-separator {
        height: 25vh;
        min-height: 160px;
    }
}

.gf-section-separator::before {
    z-index: 30;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: linear-gradient(to right, rgb(13, 72, 127) 0%, rgb(27, 145, 255) 100%);
    opacity: .7;
}

.gf-section-separator::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 50;
    content: "";
    box-shadow: inset 0px 30px 30px -10px rgba(31, 31, 31, 0.7), inset 0px -30px 30px -10px rgba(31, 31, 31, 0.7);
}

.gf-with-overlay::before {
    z-index: 30;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: linear-gradient(to right, rgb(13, 72, 127) 0%, rgb(27, 145, 255) 100%);
    opacity: .35;
    border-radius: inherit;
}

.gf-jarallax-rounded {
    border-radius: 0.25rem;
}
.gf-jarallax-rounded>* {
    border-radius: inherit;
}

.gf-last-section {
    min-height: 100vh;
}

.gf-skills-logo {
    width: 80px;
    align-self: center;
    margin-left: 1rem;
    margin-right: 1rem;
}

#contact-me textarea {
    height: 33vh;
}

#contact-me strong {
    color: rgb(27, 145, 255);
}