body {
    font-family: "Livvic", Sans-serif !important;
}

nav {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.dropdown-item:active {
    background-color: red !important;
}

@media (min-width: 1200px) {
    .navbar-nav {
        text-align: center;
        display: flex;
        flex-direction: column;
        padding-left: 30% !important;
        margin-bottom: 0;
        list-style: none;
    }
}


/* Center align the text within the three columns below the Hero section */

.marketing .col-lg-4 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.marketing h2 {
    font-weight: 400;
}


/* rtl:begin:ignore */

.marketing .col-lg-4 p {
    margin-right: .75rem;
    margin-left: .75rem;
}

.our-team {
    text-align: center;
    margin-bottom: 100px;
    z-index: 1;
    position: relative;
}

.our-team .pic {
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.our-team .pic:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s ease 0s;
}

.our-team:hover .pic:after {
    opacity: 1;
}

.our-team .pic img {
    width: 100%;
    height: auto;
}

.our-team .social {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    position: absolute;
    top: 45%;
    left: 0;
    z-index: 1;
    transition: all 0.5s ease 0s;
}

.our-team:hover .social {
    opacity: 1;
}

.our-team .social li {
    display: inline-block;
}

.our-team .social li a {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    border: 1px solid #fff;
    font-size: 15px;
    color: #fff;
    margin-right: 10px;
    transition: all 0.5s ease 0s;
}

.our-team .social li a:hover {
    background: #fff;
    color: #000;
}

.our-team .team-content {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dotted #ddd;
    position: absolute;
    bottom: -70px;
    left: 0;
    z-index: -1;
    transition: all 0.5s ease 0s;
}

.our-team:hover .team-content {
    border: 2px dotted #dc3545;
}

.our-team .team-info {
    width: 100%;
    color: #464646;
    position: absolute;
    bottom: 12px;
    left: 0;
}

.our-team .title {
    font-size: 20px;
    font-weight: 600;
    color: #464646;
    margin: 0 0 5px 0;
    transition: all 0.5s ease 0s;
}

.our-team:hover .title {
    color: #dc3545;
}

.our-team .post {
    display: block;
    font-size: 14px;
    color: #464646;
}

@media (min-width: 1200px) {
    #hero-heading {
        font-size: 5rem;
        letter-spacing: 2px;
        font-weight: 1000!important;
    }
}

.as-cta-full-gradient {
    background-color: #222;
    background-image: linear-gradient(135deg, #444 0, #222 100%);
}

.as-cta-full-gradient .as-cta-desc h2,
.as-cta-full-gradient .as-cta-desc p {
    color: #fff;
}

@media (max-width: 767px) {
    .as-cta-full-gradient {
        text-align: center;
    }
    .as-cta-full-gradient .as-cta-btn {
        margin-top: 20px;
    }
}

#cotact-form-status {
    width: 90%;
    max-width: 500px;
    text-align: center;
    padding: 10px;
    margin: 0 auto;
    border-radius: 8px;
}

#cotact-form-status.success {
    background-color: #449857;
    color: white;
}

#cotact-form-status.error {
    background-color: #dc3545;
    color: white;
}