body,
html {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Source Sans Pro';
}

.bouncing-arrow {
    -moz-animation: bouncing-arrow 1s infinite, arrow-fadein 3s linear;
    -webkit-animation: bouncing-arrow 1s infinite, arrow-fadein 3s linear;
    animation: bouncing-arrow 1s infinite, arrow-fadein 3s linear;
}

.bouncing-arrow a,
.bouncing-arrow a:hover,
.bouncing-arrow a:active,
.bouncing-arrow a:focus {
    color: white;
    font-size: 4vw;
    text-decoration: none;
    animation-delay: 3s;
}

.green-arrow a,
.green-arrow a:hover,
.green-arrow a:active,
.green-arrow a:focus {
    color: #25a693;
}

.teal-arrow a,
.teal-arrow a:hover,
.teal-arrow a:active,
.teal-arrow a:focus {
    color: #1d809f;
}

@keyframes bouncing-arrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes arrow-fadein {
    0% {
        opacity: 0;
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.btn-xl {
    padding: 1.25rem 2.5rem;
}

.content-section {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
}

.content-section-heading h2 {
    font-size: 3rem;
}

.content-section-heading h3 {
    font-size: 1rem;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

.text-faded {
    color: rgba(255, 255, 255, 0.7);
}

a {
    color: #1D809F;
}

a:hover,
a:focus,
a:active {
    color: #155d74;
}

.btn-primary {
    background-color: #1D809F !important;
    border-color: #1D809F !important;
    color: #fff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #155d74 !important;
    border-color: #155d74 !important;
}

.btn-secondary {
    background-color: #ecb807 !important;
    border-color: #ecb807 !important;
    color: #fff !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background-color: #ba9106 !important;
    border-color: #ba9106 !important;
}

.btn-dark {
    color: #fff !important;
}

.btn {
    -webkit-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

.bg-primary {
    background-color: #1D809F !important;
}

.text-primary {
    color: #1D809F !important;
}

.text-secondary {
    color: #ecb807 !important;
}

/* Map */

.map {
    height: 30rem;
}

@media (max-width: 992px) {
    .map {
        height: 75%;
    }
}

.map iframe {
    pointer-events: none;
}

.scroll-to-top {
    position: fixed;
    right: 15px;
    bottom: 15px;
    display: none;
    width: 50px;
    height: 50px;
    text-align: center;
    color: white;
    background: rgba(52, 58, 64, 0.5);
    line-height: 45px;
}

.scroll-to-top:focus,
.scroll-to-top:hover {
    color: white;
}

.scroll-to-top:hover {
    background: #343a40;
}

.scroll-to-top i {
    font-weight: 800;
}

.masthead {
    min-height: 30rem;
    position: relative;
    display: table;
    width: 100%;
    height: auto;
    padding-top: 8rem;
    padding-bottom: 8rem;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.1))), url("../img/bg-masthead.jpg");
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%), url("../img/masthead-bg.jpg");
    background-position: top left;
    background-repeat: repeat;
    color: white;
}

.masthead .shifted {
    margin-left: -3vw;
}

.masthead .row > div:last-child {
    text-align: left;
}

.masthead h1 {
    font-size: 7.5vw;
    margin: 0;
    padding: 0;
    color: #083947;
    line-height: 1;
}

.masthead h3 {
    color: #26A795;
    font-size: 3vw;
    margin-bottom: 4vw !important;
    line-height: 1.1;
}

.masthead h3 span {
    color: #196B5F;
}

.masthead h5 {
    margin-bottom: 5vw;
    margin-top: 0;
    font-size: 2vw;
}

.masthead {
    height: 100vh;
    min-height: 30rem !important;
    padding-bottom: 8rem !important;
}

.masthead > div {
    display: block;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}

.header-img {
    text-align: center;
}

@media (max-width: 576px) {
    .masthead .shifted {
        position: relative;
        margin-left: 0;
    }

    .masthead .row > div:last-child {
        text-align: center;
    }

    .masthead h1 {
        font-size: 4rem;
        margin-top: 1rem;
        line-height: 0.9;
    }

    .masthead h3 {
        font-size: 1.7rem;
        margin-top: 1rem;
    }

    .masthead h5 {
        font-size: 1rem;
        margin-top: 2rem;
    }

    .bouncing-arrow a,
    .bouncing-arrow a:hover,
    .bouncing-arrow a:active,
    .bouncing-arrow a:focus {
        font-size: 3rem;
        margin-top: 1rem;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .masthead {
        height: unset;
    }

    .masthead .row {
        margin-top: -15vh;
    }
}

/* About */

#about {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background: url('../img/about-bg.jpg');
}

#about .introduction {
    padding-bottom: 2rem;
}

#about h1 {
    color: white;
    font-size: 5.5rem;
    padding-bottom: 2rem;
}

#about p {
    color: #597b84;
    font-size: 1.6rem;
    line-height: 1.2;
    padding-bottom: 0;
}

@media (min-width: 576px) and (max-width: 991px) {
    #about h1 {
        font-size: 4.5rem;
    }

    #about p {
        font-size: 1.4rem;
        line-height: 1;
    }
}

@media (max-width: 576px) {
    #about p {
        font-size: 1.1rem;
        line-height: 1;
    }

    #about .introduction {
        padding-bottom: 0;
    }
}

/* Skills */

#skills {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

@media (min-width: 576px) and (max-width: 992px) {
    #skills .container {
        max-width: 992px;
    }
}

#skills h1 {
    color: #25a693;
    font-size: 5.5rem;
    padding-bottom: 2rem;
}

#skills .charts {
    padding-bottom: 2rem;
}

#skills .html-title {
    color: #3f51b5;
    padding-top: 0;
    padding-bottom: 2rem;
}

#skills .frontend-title {
    color: #d81b60 !important;
    padding-top: 0;
    padding-bottom: 2rem;
}

#skills .backend-title {
    color: #7cb342 !important;
    padding-top: 0;
    padding-bottom: 2rem;
}

.canvas-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem auto;

}

.canvas-wrapper1 {
    position: relative;
    width: 212px;
    height: 28px;
    padding-left: 1.3rem;
    margin: 0;
}

@media (min-width: 576px) and (max-width: 767px) {
    .canvas-wrapper {
        width: 150px;
        height: 150px;
    }

    .canvas-wrapper1 {
        width: 160px;
        height: 22px;
    }
}

#skills h3 {
    font-weight: normal;
    color: #607d8b;
}

@media (max-width: 576px) {
    #skills h1 {
        font-size: 3.5rem;
        padding-bottom: 0;
    }

    #skills .html-title,
    #skills .css-title,
    #skills .javascript-title {
        color: #3f51b5;
        padding-top: 3rem;
    }

    #skills .html-title {
        padding-top: 1rem;
    }
}

#skills .fa-ul {
    text-align: left;
    max-width: 200px;
    margin: 2rem auto;
    font-size: 1.2rem;
}

#skills .fa-ul li i {
    color: #26A795;
    padding-right: 15px;
    font-size: 1rem;
}

#bar-photoshop {
    height: 10px;
    width: 100%;
    display: block;
}

/* Experience timeline */

#experience {
    background: #25a693 !important;
    padding-top: 2rem;
    padding-bottom: 2rem;
    color: white;
}

#experience h1 {
    color: white;
    font-size: 4.5rem;
    padding-bottom: 2rem;
}

@media (max-width: 576px) {
    #experience h1 {
        font-size: 3.5rem;
    }
}

.timeline {
    line-height: 1.4em;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.timeline h1,
.timeline h2,
.timeline h3,
.timeline h4,
.timeline h5,
.timeline h6 {
    line-height: inherit;
}

.timeline h3 {
    color: #196b5f;
}

.timeline h4 {
    font-size: 1rem;
    color: #196b5f;
}

.timeline p {
    margin-bottom: 1rem;
}

.timeline a {
    color: #4dcfb1;
    font-weight: 700;
    text-decoration: underline;
}

.timeline a:hover,
.timeline a:focus {
    color: #4dcfb1;
    text-decoration: none;
}

/*----- TIMELINE ITEM -----*/
.timeline-item {
    padding-left: 40px;
    position: relative;
    text-align: left;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

/*----- TIMELINE INFO -----*/
.timeline-info {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 0 0 0.5em 0;
    text-transform: uppercase;
    white-space: nowrap;
}

/*----- TIMELINE MARKER -----*/
.timeline-marker {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15px;
}

.timeline-marker:before {
    background: #f79221;
    border: 3px solid transparent;
    border-radius: 100%;
    content: "";
    display: block;
    height: 15px;
    position: absolute;
    top: 4px;
    left: 0;
    width: 15px;
    transition: background 0.3s ease-in-out, border 0.3s ease-in-out;
}

.timeline-marker:after {
    content: "";
    width: 3px;
    background: #ccd5db;
    display: block;
    position: absolute;
    top: 24px;
    bottom: 0;
    left: 6px;
}

.timeline-item:last-child .timeline-marker:after {
    content: none;
}

.timeline-item:not(.period):hover .timeline-marker:before {
    background: transparent;
    border: 3px solid #f79221;
}

/*----- TIMELINE CONTENT -----*/
.timeline-content {
    padding-bottom: 40px;
}

.timeline-content p:last-child {
    margin-bottom: 0;
}

/*----- TIMELINE PERIOD -----*/
.period {
    padding: 0;
}

.period .timeline-info {
    display: none;
}

.period .timeline-marker:before {
    background: transparent;
    content: "";
    width: 15px;
    height: auto;
    border: none;
    border-radius: 0;
    top: 0;
    bottom: 30px;
    position: absolute;
    border-top: 3px solid #ccd5db;
    border-bottom: 3px solid #ccd5db;
}

.period .timeline-marker:after {
    content: "";
    height: 32px;
    top: auto;
}

.period .timeline-content {
    padding: 40px 0 70px;
}

.period .timeline-title {
    margin: 0;
}

/*---------------------------------------------- MOD: TIMELINE SPLIT ----------------------------------------------*/
@media (min-width: 576px) {

    .timeline-split .timeline,
    .timeline-centered .timeline {
        display: table;
    }

    .timeline-split .timeline-item,
    .timeline-centered .timeline-item {
        display: table-row;
        padding: 0;
    }

    .timeline-split .timeline-info,
    .timeline-centered .timeline-info,
    .timeline-split .timeline-marker,
    .timeline-centered .timeline-marker,
    .timeline-split .timeline-content,
    .timeline-centered .timeline-content,
    .timeline-split .period .timeline-info,
    .timeline-centered .period .timeline-info {
        display: table-cell;
        vertical-align: top;
    }

    .timeline-split .timeline-marker,
    .timeline-centered .timeline-marker {
        position: relative;
    }

    .timeline-split .timeline-content,
    .timeline-centered .timeline-content {
        padding-left: 30px;
    }

    .timeline-split .timeline-info,
    .timeline-centered .timeline-info {
        padding-right: 30px;
    }

    .timeline-split .period .timeline-title,
    .timeline-centered .period .timeline-title {
        position: relative;
        left: -45px;
    }
}

/*---------------------------------------------- MOD: TIMELINE CENTERED ----------------------------------------------*/
@media (min-width: 992px) {

    .timeline-centered,
    .timeline-centered .timeline-item,
    .timeline-centered .timeline-info,
    .timeline-centered .timeline-marker,
    .timeline-centered .timeline-content {
        display: block;
        margin: 0;
        padding: 0;
    }

    .timeline-centered .timeline-item {
        padding-bottom: 40px;
        overflow: hidden;
    }

    .timeline-centered .timeline-marker {
        position: absolute;
        left: 50%;
        margin-left: -7.5px;
    }

    .timeline-centered .timeline-info,
    .timeline-centered .timeline-content {
        width: 50%;
    }

    .timeline-centered > .timeline-item:nth-child(odd) .timeline-info {
        float: left;
        text-align: right;
        padding-right: 30px;
    }

    .timeline-centered > .timeline-item:nth-child(odd) .timeline-content {
        float: right;
        text-align: left;
        padding-left: 30px;
    }

    .timeline-centered > .timeline-item:nth-child(even) .timeline-info {
        float: right;
        text-align: left;
        padding-left: 30px;
    }

    .timeline-centered > .timeline-item:nth-child(even) .timeline-content {
        float: left;
        text-align: right;
        padding-right: 30px;
    }

    .timeline-centered > .timeline-item.period .timeline-content {
        float: none;
        padding: 0;
        width: 100%;
        text-align: center;
    }

    .timeline-centered .timeline-item.period {
        padding: 50px 0 90px;
    }

    .timeline-centered .period .timeline-marker:after {
        height: 30px;
        bottom: 0;
        top: auto;
    }

    .timeline-centered .period .timeline-title {
        left: auto;
    }
}

/*---------------------------------------------- MOD: MARKER OUTLINE ----------------------------------------------*/
.marker-outline .timeline-marker:before {
    background: transparent;
    border-color: #ff6b6b;
}

.marker-outline .timeline-item:hover .timeline-marker:before {
    background: #ff6b6b;
}


/* Side Menu */

#sidebar-wrapper {
    position: fixed;
    z-index: 2;
    right: 0;
    width: 250px;
    height: 100%;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    -webkit-transform: translateX(250px);
    transform: translateX(250px);
    background: #1D809F;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 250px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-nav li.sidebar-nav-item a {
    display: block;
    text-decoration: none;
    color: #fff;
    padding: 15px;
}

.sidebar-nav li a:hover {
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

.sidebar-nav li a:active,
.sidebar-nav li a:focus {
    text-decoration: none;
}

.sidebar-nav > .sidebar-brand {
    font-size: 1.2rem;
    background: rgba(52, 58, 64, 0.1);
    height: 80px;
    line-height: 50px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
}

.sidebar-nav > .sidebar-brand a {
    color: #fff;
}

.sidebar-nav > .sidebar-brand a:hover {
    color: #fff;
    background: none;
}

#sidebar-wrapper.active {
    right: 250px;
    width: 250px;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.menu-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    width: 50px;
    height: 50px;
    text-align: center;
    color: #fff;
    background: rgba(52, 58, 64, 0.5);
    line-height: 50px;
    z-index: 999;
}

.menu-toggle:focus,
.menu-toggle:hover {
    color: #fff;
}

.menu-toggle:hover {
    background: #343a40;
}

/* PORTFOLIO */

#portfolio {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background: url('../img/pattern.png');
}

#portfolio h1 {
    color: #1d809f;
    font-size: 4.5rem;
}

@media (min-width: 576px) and (max-width: 767px) {
    #portfolio h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 576px) {
    #portfolio h1 {
        font-size: 2.5rem;
    }
}

.portfolio-filter > button:not(:last-child) {
    margin-right: 1rem;
}

.portfolio-filter button {
    background: transparent;
    color: #212529;
    text-transform: uppercase;
    box-shadow: none;
    -webkit-box-shadow: none;
}

.portfolio-filter button:hover,
.portfolio-filter button:active,
.portfolio-filter button:focus,
.portfolio-filter button.active {
    background: #1d809f;
    color: white;
    box-shadow: none;
    -webkit-box-shadow: none;
}

.portfolio-filter button.active {
    cursor: default !important;
}

.portfolio-grid {
    margin: 1rem 0;
    display: inline-block;
    padding-top: 2rem;
    padding-left: 0;
    padding-right: 0;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    -webkit-column-width: 33.33333333333333%;
    -moz-column-width: 33.33333333333333%;
    column-width: 33.33333333333333%;
}

@media (min-width: 576px) and (max-width: 991px) {
    .portfolio-grid {
        padding-left: 0;
        padding-right: 0;
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
        -webkit-column-width: 50%;
        -moz-column-width: 50%;
        column-width: 50%;
    }
}

@media (max-width: 576px) {
    .portfolio-grid {
        padding-left: 1rem;
        padding-right: 1rem;
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
        -webkit-column-width: 100%;
        -moz-column-width: 100%;
        column-width: 100%;
    }
}

.tile {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 350ms ease;
    transition: all 350ms ease;
    break-inside: avoid-column;
    height: unset;
    width: unset;
}

.height0 {
    height: 0;
    width: 0;
}

.tile:hover {}

.scale-anm {
    transform: scale(1);
}

.tile img {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.mfp-container {
    cursor: pointer;
}

.mfp-inline-holder .mfp-content {
    cursor: pointer !important;
    width: unset;
}

.portfolio-modal .portfolio-modal-dialog {
    padding: 1rem;
    margin: 1rem calc(1rem - 8px);
    position: relative;
    z-index: 1;
    width: auto;
    cursor: default;
    -webkit-box-shadow: 0 0 3rem 1rem rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 3rem 1rem rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.portfolio-modal .portfolio-modal-dialog h2 {
    font-size: 2rem;
}

.portfolio-modal .pic {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 1rem;
}

.portfolio-modal .description {
    text-align: left;
}

.portfolio-modal .description p {
    margin-bottom: 1rem;
}

.portfolio-modal .description p.link {
    margin-bottom: 0;
}

.portfolio-modal .description h3 {
    color: #196b5f;
    font-size: 2.5rem;
    margin-bottom: 0;
    line-height: 1;
}

.portfolio-modal .description h4 {
    color: #196b5f;
    font-size: 1.2rem;
    margin-top: 2rem;
}

.portfolio-modal .description a {
    color: #4dcfb1;
    display: block;
    text-decoration: underline;
}

.portfolio-modal .description a:hover,
.portfolio-modal .description a:focus {
    color: #4dcfb1;
    text-decoration: none;
}

.portfolio-modal .description .fa-ul {
    text-align: left;
    font-size: 1.2rem;
    margin-left: 0;
    margin-top: 1rem;
}

.portfolio-modal .description .fa-ul li {
    font-size: 1rem;
    height: 1.7rem;
}

.portfolio-modal .description .fa-ul li i {
    color: #26A795;
    padding-right: 15px;
    font-size: 1rem;
    line-height: 1;
}

.portfolio-modal .gallery {
    display: table;
    width: 100%;
    margin-top: 1rem;
}

.portfolio-modal .gallery > div {
    display: table-cell;
}

.portfolio-modal .gallery .delimiter {
    width: 1rem;
}

.portfolio-modal .gallery img {
    cursor: pointer;
}

.portfolio-modal .gallery img.active {
    cursor: default;
}

.portfolio-modal .gallery .big-pic {
    width: 54.5%;
}

.portfolio-modal .gallery .big-pic1 {
    width: 24.5%;
}

.portfolio-modal .gallery .big-pic2 {
    width: 35%;
}

.portfolio-modal .gallery .big-pic3 {
    width: 37%;
}

.portfolio-modal .gallery .big-pic4 {
    width: 19%;
}

@media (min-width: 768px) {
    .portfolio-modal .portfolio-modal-dialog {
        padding: 2rem;
        margin: 3rem calc(3rem - 8px);
    }

    .portfolio-modal .portfolio-modal-dialog h2 {
        font-size: 3rem;
    }

    .portfolio-modal .pic {
        padding-right: 1rem;
        margin-bottom: 2rem;
    }
}

/* Contact */

#contact {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background: white !important;
}

#contact h1 {
    color: #25a693;
    font-size: 4.5rem;
}

@media (min-width: 576px) and (max-width: 767px) {
    #contact h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 576px) {
    #contact h1 {
        font-size: 2.5rem;
    }
}

.floating-label-form-group {
    position: relative;
    border-bottom: 1px solid #e9ecef;
}

.floating-label-form-group input,
.floating-label-form-group textarea {
    font-size: 1.5em;
    position: relative;
    z-index: 1;
    padding-right: 0;
    padding-left: 0;
    resize: none;
    border: none;
    border-radius: 0;
    background: none;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.floating-label-form-group label {
    font-size: 0.85em;
    line-height: 1.764705882em;
    position: relative;
    color: #80deea;
    z-index: 0;
    top: 2em;
    display: block;
    margin: 0;
    -webkit-transition: top 0.3s ease, opacity 0.3s ease;
    transition: top 0.3s ease, opacity 0.3s ease;
    vertical-align: middle;
    vertical-align: baseline;
    opacity: 0;
}

.floating-label-form-group:not(:first-child) {
    padding-left: 14px;
    border-left: 1px solid #e9ecef;
}

.floating-label-form-group-with-value label {
    top: 0;
    opacity: 1;
}

.floating-label-form-group-with-focus label {
    color: #00acc1;
}

form .row:first-child .floating-label-form-group {
    border-top: 1px solid #e9ecef;
}

.alert-message {
    list-style-type: none;
    padding-left: 0;
    display: block;
    background: #f44336;
    width: auto;
    float: left;
    padding: 5px 10px;
    border-radius: 5px;
    color: white;
}

p.help-block {
    height: 0;
    margin-bottom: 0;
}

.warning > div > p.help-block,
.error > div > p.help-block {
    height: 20px;
    margin-bottom: 1rem;
}

.alert button.close {
    color: white;
    opacity: 1;
    text-shadow: none;
}

.alert-danger {
    color: white;
    background: #f44336;
    border-color: transparent;
}

.alert-success {
    color: white;
    background: #8bc34a;
    border-color: transparent;
}

ul.social-buttons {
    margin-bottom: 0;
}

ul.social-buttons li a {
    font-size: 20px;
    line-height: 50px;
    padding-right: 1rem;
    display: block;
    width: 50px;
    height: 50px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: white;
    border-radius: 100%;
    outline: none;
    background-color: #146b5f;
}

ul.social-buttons li a:active,
ul.social-buttons li a:focus,
ul.social-buttons li a:hover {
    background-color: #073846;
}

footer {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: #4ecfb2;
    color: white !important;
}

footer .list-inline-item:first-child {
    margin-left: 0;
}

footer .social {
    text-align: right;
}

footer .copyright {
    text-align: left;
    padding-top: 0.7rem;
}

@media (min-width: 768px) and (max-width: 991px) {
    footer .list-inline-item:not(:last-child) {
        margin-right: 2rem;
    }

    footer .list-inline-item:first-child {
        margin-left: 2rem;
    }

    footer .list-inline-item:nth-child(-n + 2) {
        margin-bottom: 0.5rem;
    }

}

@media (max-width: 576px) {
    footer .social {
        text-align: center;
    }

    footer .copyright {
        text-align: center !important;
    }

    ul.social-buttons li a {
        padding-right: 0;
    }
}
