:root {
    --font-family-1: "Poppins", sans-serif;
    --font-family-2: "Inter", sans-serif;
    --font-family-3: "Roboto Condensed", sans-serif;
    --text-color-1: #222;
    --color-gray-2: #6E778C;
    --color-gray-3: silver;
    --color-gray-4: #d0d5dd;
    --color-gray-5: #f1f1f1;
    --color-gray-6: #f8f8f8;
    --title-color-1: #1f1f1f;
    --color-gray-medium: #d0d7e7;
    --bg-color-1: #f6f9fc;
    --bg-color-2: #0a2540;
    --bg-color-3: #1f4468;
    --bg-color-4: #f3effb;
    --bg-color-5: #3c00e21a;
    --color-white: #ffffff;
    --theme-color-1: #3c00e2;
    --theme-color-2: #6530fb;
    --theme-color-3: #00C4C4;
    --theme-color-4: #02bcf5;
    --button-hover-color: #1f1f1f;
    --gle-style-1: #4285F4;
    --gle-style-2: #DB4437;
    --gle-style-3: #F4B400;
    --gle-style-4: #0F9D58;
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
    word-wrap: break-word;
    word-break: break-word;
}

body {
    font-family: var(--font-family-2);
    color: var(--text-color-1);
    position: relative;
    font-size: 1rem;
    padding-top: 100px;
}

@media screen and (max-width: 767px) {

    html,
    body {
        font-size: 14px;
    }
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background-color: #ebebeb;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #a1a1a1;
}

::placeholder {
    color: rgb(151, 151, 151) !important;
    font-weight: 400;
    opacity: 1;
    /* Firefox */
}

::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: rgb(151, 151, 151) !important;
    font-weight: 400;
}

img.ti-lazy[src=""],
img.ti-lazy:not([src]),
img.ti-lazy[src="about:blank"],
img.ti-lazy[src*="404"] {
    display: none;
}

@media screen and (max-width: 991px) {
    body {
        padding-top: 6.25rem;
    }

    .row>* {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

button,
input,
optgroup,
select,
textarea {
    font-family: var(--font-family-2);
}

a {
    color: var(--text-color-1);
    text-decoration: none;
}

a:hover {
    color: var(--theme-color-1);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-2);
}

.modal {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, .7);
    opacity: 0;
    transition: opacity 0.5s;
}

.modal-backdrop {
    display: none;
}

@media (max-width: 431px) {

    .modal-dialog-centered {
        min-height: calc(100% - 40px);
    }

    .modal-dialog {
        margin: 20px;
    }
}

@media (min-width: 992px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 1305px !important;
    }
}

@media (max-width: 768px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 760px !important;
    }
}

.form-control,
.btn {
    border-color: var(--color-gray-medium);
}

.form-control:focus {
    border-color: var(--theme-color-1);
    box-shadow: none;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    border: 1px solid var(--gle-style-1);
    background-color: #E4ECFB;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.2s;
}

.back-to-top i {
    font-size: 24px;
    color: var(--gle-style-1);
    line-height: 0;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 3rem 0;
}

.section-title {
    font-family: var(--font-family-1);
    text-align: center;
    padding-bottom: 2.5rem;
    position: relative;
}

.section-title h3,
.section-title h2,
.section-title h1 {
    font-family: var(--font-family-3);
    font-weight: 600;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    color: var(--title-color-1);
}

.section-title>p {
    margin-bottom: 0;
    font-size: 20px;
    color: var(--color-gray-2);
}

@media (max-width: 768px) {

    .section-title h3,
    .section-title h2,
    .section-title h1 {
        font-size: 2.25rem;
    }

    .section-title>p {
        font-size: 20px;
    }
}

@media (max-width: 431px) {

    .section-title h3,
    .section-title h2,
    .section-title h1 {
        font-size: 2rem;
    }

    .section-title>p {
        font-size: 16px;
    }
}


.title-d-1::before,
.title-d-2::before,
.title-d-3::before,
.title-d-4::before {
    position: absolute;
    width: 100%;
    height: 11px;
    border-radius: 2px;
    content: "";
    left: 0;
    bottom: 15px;
    z-index: -1;
}

@media (max-width: 768px) {

    .title-d-1::before,
    .title-d-2::before,
    .title-d-3::before,
    .title-d-4::before {
        height: 5px;
        bottom: 14px;
    }
}

.title-d-1::before {
    background: var(--gle-style-1);
}

.title-d-2::before {
    background: var(--gle-style-2);
}

.title-d-3::before {
    background: var(--gle-style-3);
}

.title-d-4::before {
    background: var(--gle-style-4);
}


/*--------------------------------------------------------------
# Cliens
--------------------------------------------------------------*/

.cliens {
    padding: 12px 0;
    text-align: center;
}

.cliens img {
    max-width: 45%;
    /* transition: all 0.4s ease-in-out; */
    display: inline-block;
    padding: 15px 0;
    filter: grayscale(100);
}

.cliens img:hover {
    filter: none;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .cliens img {
        max-width: 40%;
    }
}


/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/

.about .content h3 {
    font-weight: bold;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-left: 28px;
    position: relative;
}

.about .content ul li+li {
    margin-top: 10px;
}

.about .content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: var(--theme-color-1);
    line-height: 1;
}

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

.about .content .btn-learn-more {
    font-family: var(--font-family-2);
    font-size: 14px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    /* transition: 0.3s; */
    line-height: 1;
    color: var(--theme-color-1);
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid var(--theme-color-1);
}

.about .content .btn-learn-more:hover {
    background: var(--theme-color-1);
    color: #fff;
    text-decoration: none;
}


/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/

.why-us .content {
    padding: 60px 100px 0 100px;
}

.why-us .content h3 {
    font-size: 34px;
    color: var(--text-color-1);
}

.why-us .content h4 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 5px;
}

.why-us .content p {
    font-size: 15px;
    color: #848484;
}

.why-us .img {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.why-us .accordion-list {
    padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
    padding: 0;
    list-style: none;
}

.why-us .accordion-list li+li {
    margin-top: 15px;
}

.why-us .accordion-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
}

.why-us .accordion-list a {
    display: block;
    position: relative;
    font-family: var(--font-family-2);
    font-size: 16px;
    line-height: 24px;
    padding-right: 30px;
    outline: none;
    cursor: pointer;
}

.why-us .accordion-list span {
    color: var(--theme-color-1);
    font-weight: bold;
    font-size: 18px;
    padding-right: 10px;
}

.why-us .accordion-list i {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.why-us .accordion-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
    display: none;
}

.why-us .accordion-list a.collapsed {
    color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
    color: var(--theme-color-1);
}

.why-us .accordion-list a.collapsed .icon-show {
    display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1024px) {

    .why-us .content,
    .why-us .accordion-list {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .why-us .img {
        min-height: 400px;
    }

    .why-us .content {
        padding-top: 30px;
    }

    .why-us .accordion-list {
        padding-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .why-us .img {
        min-height: 200px;
    }
}


/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/

.skills .content h3 {
    font-weight: bold;
    font-size: 32px;
    color: var(--text-color-1);
    font-family: var(--font-family-2);
}

.skills .content ul {
    list-style: none;
    padding: 0;
}

.skills .content ul li {
    padding-bottom: 10px;
}

.skills .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--theme-color-1);
}

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

.skills .progress {
    height: 60px;
    display: block;
    background: none;
    border-radius: 0;
}

.skills .progress .skill {
    padding: 0;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    display: block;
    font-weight: bold;
    font-family: var(--font-family-2);
    color: var(--text-color-1);
}

.skills .progress .skill .val {
    float: right;
    font-style: normal;
}

.skills .progress-bar-wrap {
    background: #e8edf5;
    height: 10px;
}

.skills .progress-bar {
    width: 1px;
    height: 10px;
    /* transition: .9s; */
    background-color: #4668a2;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .icon-box {
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    /* transition: all ease-in-out 0.4s; */
    background: #fff;
}

.services .icon-box .icon {
    margin-bottom: 10px;
}

.services .icon-box .icon i {
    color: var(--theme-color-1);
    font-size: 36px;
    transition: 0.3s;
}

.services .icon-box h4 {
    margin-bottom: 15px;
    font-size: 24px;
}

.services .icon-box h4 a {
    color: var(--text-color-1);
    /* transition: ease-in-out 0.3s; */
}

.services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .icon-box:hover {
    transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
    color: var(--theme-color-1);
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/

.cta {
    background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), url("../img/cta-bg.jpg") fixed center center;
    background-size: cover;
    padding: 120px 0;
}

.cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
}

.cta p {
    color: #fff;
}

.cta .cta-btn {
    font-family: var(--font-family-2);
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    /* transition: 0.5s; */
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
}

.cta .cta-btn:hover {
    background: var(--theme-color-1);
    border: 2px solid var(--theme-color-1);
}

@media (max-width: 1024px) {
    .cta {
        background-attachment: scroll;
    }
}

@media (min-width: 769px) {
    .cta .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

.portfolio #portfolio-flters {
    list-style: none;
    margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    margin: 10px 5px;
    font-size: 15px;
    line-height: 1;
    color: #444444;
    /* transition: all 0.3s; */
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-family-2);
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: var(--theme-color-1);
    color: #fff;
}

.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
    overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
    /* transition: all 0.6s; */
}

.portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 15px;
    bottom: 0;
    z-index: 3;
    right: 15px;
    /* transition: all 0.3s; */
    background: rgba(55, 81, 126, 0.8);
    padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
    color: #f9fcfe;
    font-size: 14px;
    margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 40px;
    font-size: 24px;
    top: calc(50% - 18px);
    color: #fff;
    /* transition: 0.3s; */
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: var(--theme-color-1);
}

.portfolio .portfolio-item .portfolio-info .details-link {
    right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
    transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
}


/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/

.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid var(--theme-color-1);
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--theme-color-1);
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(55, 81, 126, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

.team .member {
    position: relative;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 5px;
    background: #fff;
    /* transition: 0.5s; */
}

.team .member .pic {
    overflow: hidden;
    width: 180px;
    border-radius: 50%;
}

.team .member .pic img {
    /* transition: ease-in-out 0.3s; */
}

.team .member:hover {
    transform: translateY(-10px);
}

.team .member .member-info {
    padding-left: 30px;
}

.team .member h4 {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 20px;
    color: var(--text-color-1);
}

.team .member span {
    display: block;
    font-size: 15px;
    padding-bottom: 10px;
    position: relative;
}

.team .member span::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #cbd6e9;
    bottom: 0;
    left: 0;
}

.team .member p {
    margin: 10px 0 0 0;
    font-size: 14px;
}

.team .member .social {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.team .member .social a {
    /* transition: ease-in-out 0.3s; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 32px;
    height: 32px;
    background: #eff2f8;
}

.team .member .social a i {
    color: var(--text-color-1);
    font-size: 16px;
    margin: 0 2px;
}

.team .member .social a:hover {
    background: var(--theme-color-1);
}

.team .member .social a:hover i {
    color: #fff;
}

.team .member .social a+a {
    margin-left: 8px;
}


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing .row {
    padding-top: 40px;
}

.pricing .box {
    padding: 60px 40px;
    box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
    background: #fff;
    height: 100%;
    border-top: 4px solid #fff;
    border-radius: 5px;
}

.pricing h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--text-color-1);
}

.pricing h4 {
    font-size: 48px;
    color: var(--text-color-1);
    font-family: var(--font-family-2);
    margin-bottom: 25px;
}

.pricing h4 sup {
    font-size: 28px;
}

.pricing h4 span {
    color: var(--theme-color-1);
    font-size: 18px;
    display: block;
}

.pricing ul {
    padding: 20px 0;
    list-style: none;
    color: #999;
    text-align: left;
    line-height: 20px;
}

.pricing ul li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.pricing ul i {
    color: #28a745;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 6px;
}

.pricing ul .na {
    color: #ccc;
}

.pricing ul .na i {
    color: #ccc;
}

.pricing ul .na span {
    text-decoration: line-through;
}

.pricing .buy-btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    color: var(--theme-color-1);
    transition: none;
    font-size: 16px;
    font-family: var(--font-family-2);
    /* transition: 0.3s; */
    border: 1px solid var(--theme-color-1);
}

.pricing .buy-btn:hover {
    background: var(--theme-color-1);
    color: #fff;
}

.pricing .featured {
    border-top-color: var(--theme-color-1);
}

.pricing .featured .buy-btn {
    background: var(--theme-color-1);
    color: #fff;
}

.pricing .featured .buy-btn:hover {
    background: #23a3df;
}

@media (max-width: 992px) {
    .pricing .box {
        max-width: 60%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 767px) {
    .pricing .box {
        max-width: 80%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 420px) {
    .pricing .box {
        max-width: 100%;
        margin: 0 auto 30px auto;
    }
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/

.faq .faq-list {
    padding: 0 100px;
}

.faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.faq .faq-list li+li {
    margin-top: 15px;
}

.faq .faq-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    position: relative;
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-family: var(--font-family-2);
    font-size: 16px;
    line-height: 24px;
    padding: 0 30px;
    outline: none;
    cursor: pointer;
}

.faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: var(--theme-color-1);
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list a.collapsed {
    color: var(--text-color-1);
    /* transition: 0.3s; */
}

.faq .faq-list a.collapsed:hover {
    color: var(--theme-color-1);
}

.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}


/*--------------------------------------------------------------
# Data form
--------------------------------------------------------------*/

.data-form-wrapper #data-form {
    width: 100%;
}

.data-form-wrapper #data-form .form-group {
    padding-bottom: 8px;
    margin-bottom: 10px;
}

.data-form-wrapper #data-form label {
    font-size: 0.875rem;
    color: var(--text-color-1);
    font-weight: 500;
    padding-bottom: 5px;
}

.form-group.required label:after {
    content: "*";
    color: red;
    margin-left: 1px;
}

label.required:after {
    content: "*";
    color: red;
    margin-left: 1px;
}

.data-form-wrapper .form-control {
    border-radius: 0;
    box-shadow: none;
    font-size: 16px;
    border-radius: 3px;
    border: 1px solid var(--color-gray-medium);
}

.data-form-wrapper .form-control:focus {
    border-color: var(--color-gray-2);
}

.data-form-wrapper .form-control:not(textarea) {
    height: 40px;
}

.data-form-wrapper select option[value=""] {
    color: var(--color-gray-2);
}

.data-form-wrapper textarea.form-control {
    padding: 10px 12px;
}

.data-form-wrapper #data-form button[type="submit"] {
    padding: 0.375rem 1.75rem;
    margin-top: 1.5rem;
}

@media (max-width: 431px) {
    .data-form-wrapper #data-form {
        padding: 1rem;
    }
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    padding: 15px 0;
    background: #f3f5fa;
    min-height: 40px;
    margin-top: 72px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 68px;
    }
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: bold;
    color: var(--text-color-1);
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #4668a2;
    content: "/";
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    font-size: 16px;
    color: var(--color-white);
    background-color: var(--bg-color-1);
}

#footer .footer-top {
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
    font-size: 15px;
    margin-bottom: 0;
    color: var(--text-color-1);
}

#footer .footer-top .footer-contact p a {
    text-decoration: underline;
}

#footer .footer-top h4 {
    font-family: var(--font-family-1);
    font-size: 16px;
    font-weight: 600;
    color: var(--title-color-1);
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 25px;
}

#footer .footer-top h4::after {
    width: 50px;
    background: var(--color-gray-2);
    height: 2px;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    font-size: 0.875rem;
    display: inline-block;
    color: var(--text-color-1);
    font-weight: 500;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: underline;
}

#footer .footer-top .social-links a {
    font-size: 1.5rem;
    display: inline-block;
    color: var(--text-color-1);
    line-height: 1;
    margin-right: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
}

#footer .footer-top .social-links a:hover {
    color: var(--title-color-1);
}

#footer .footer-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
    color: var(--text-color-1);
    font-size: 0.775rem;
    border-top: 1px solid var(--color-gray-3);
}


#footer .footer-bottom ul {
    display: inline-flex;
    list-style: none;
    column-gap: 1rem;
    margin: 0;
}

#footer .footer-bottom ul li a {
    color: var(--title-color-1);
    font-size: 0.775rem;
}

#footer .footer-bottom ul li a:hover {
    text-decoration: underline;
}

#footer .copyright {
    float: left;
}

#footer .credits {
    float: right;
    padding-left: .5rem;
    font-size: 13px;
}

@media (max-width: 768px) {
    #footer .footer-bottom {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    #footer .credits {
        padding-top: 4px;
    }
}

@media (max-width: 431px) {
    #footer .footer-bottom {
        text-align: center;
    }

    #footer .copyright {
        float: unset;
    }

    #footer .footer-bottom ul {
        padding: 0;
    }
}