/*******************************/
/********* General CSS *********/
/*******************************/
body {
    font-family: "Outfit";
    margin: 0;
    padding: 0;
    height: 100%;
    background: #ffffff;
    background-repeat: no-repeat;
    overflow: auto;
}

h1,
h2, 
h3, 
h4,
h6 {
    color: #5e12cf;
}

h5 { 
font-size: 100px;
color: white;
}  

h1 { 
font-size: 20px;
color: #5e12cf;

}  

p {
     font-family: "outfit";
     font-weight: 500;
     font-style: normal;
     color: #a076d8;
 }
    

a:hover,
a:active,
a:focus {
    color: #FFF;
    outline: none;
    text-decoration: none;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1140px;
}

.btn {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;
    background: #00000000;
    border: 2px solid transparent;
    border-radius: 0;
    box-shadow: inset 0 0 0 50px #a076d8;
    transition: ease-out 0.3s;
    -webkit-transition: ease-out 0.3s;
    -moz-transition: ease-out 0.3s;
}

.btn:hover {
    color: #a076d8;
    background: transparent;
    box-shadow: inset 0 0 0 0 #a076d8;
    border-color: #a076d8;
}

#loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-out, visibility 0s linear .3s;
    -o-transition: opacity .3s ease-out, visibility 0s linear .3s;
    transition: opacity .3s ease-out, visibility 0s linear .3s;
    z-index: 999;
}

#loader.show {
    -webkit-transition: opacity .6s ease-out, visibility 0s linear 0s;
    -o-transition: opacity .6s ease-out, visibility 0s linear 0s;
    transition: opacity .6s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#loader .loader {
    position: relative;
    width: 45px;
    height: 45px;
    border: 5px solid #dddddd;
    border-top: 5px solid #a076d8;
    border-radius: 50%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.back-to-top {
    position: fixed;
    display: none;
    width: 44px;
    height: 44px;
    padding: 8px 0;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    z-index: 9;
}

.back-to-top i {
    color: #ffffff;
}

.back-to-top:hover i {
    color: #a076d8;
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
    position: relative;
    transition: .5s;
    z-index: 998;
    fill: white;
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

.logo {
    fill: white;
}


.navbar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

ul {
    margin-top: 7px;
}    

a {
    fill: #ffffff;
    transition: .3s;
}

a:hover {
    fill: #a076d8;
    transition: .3s;
}


@media (min-width: 992px) {

    .navbar {
        position: absolute;
        width: 100%;
        padding: 30px 150px;
        background: transparent !important;
        border-bottom: 1px;
        z-index: 9;
    }

    .navbar.nav-sticky {
        padding: 30px 150px;
        background: #ffffff !important;
    }  

    .navbar.nav-sticky a {
     fill: #5e12cf;
    }  

    a:hover,
    a:active,
    a:focus {
    color: #a076d8;
    outline: none;
    text-decoration: none;
    }

    

    }
    .navbar .navbar-brand {
        color: #ffffff;
    }
    
    .navbar.nav-sticky .navbar-brand {
        color: #ffffff;
    }

    .navbar-light .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link:focus {
        padding: 10px 10px 8px 10px;
        color: #ffffff;
        font-weight: medium;
        font-size: 15px;
    }
    
    .navbar-light.nav-sticky .navbar-nav .nav-link,
    .navbar-light.nav-sticky .navbar-nav .nav-link:focus {
        color: #5e12cf;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: #a076d8;

    }
    
    .navbar-light.nav-sticky .navbar-nav .nav-link:hover,
    .navbar-light.nav-sticky .navbar-nav .nav-link.active {
        color: #a076d8;
    }

    .navbar-light .navbar-toggler {
        color: #FFF;
        border-color: #5e12cf;
    }
 

@media (max-width: 991.98px) {   

    .navbar {
        padding: 15px;
        background: #ffffff !important;
    }

    
    .navbar .navbar-brand {
        color: #a076d8;
    }

    a {
        fill: #5e12cf;
        transition: .3s;
    }

    .logo {
        fill: #5e12cf;
        transition: ease-out 0.3s;
        
    }

    .logo :hover {
        fill: #a076d8;
        transition: ease-out 0.3s;
    }

    a:hover{
        fill: #a076d8;
        transition: .3s;
    }

    ul {
    padding-left: 8px;

    }
    
    .navbar .navbar-nav {
        margin-top: 15px;
    }

    .navbar-light .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link:focus {
        padding: 10px 10px 8px 10px;
        color: #5e12cf;
        font-size: 15px;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: #a076d8;

    }
    
    .navbar-light.nav-sticky .navbar-nav .nav-link:hover,
    .navbar-light.nav-sticky .navbar-nav .nav-link.active {
        color: #a076d8;
    }
  
    .navbar a.nav-link {
        padding: 5px;
    }
    
    .navbar .dropdown-menu {
        box-shadow: none;
    }
}


/*******************************/
/********** Hero CSS ***********/
/*******************************/
.hero {
    position: relative;
    width: 100%;
    margin-top: auto;
    margin-bottom: 70px;
    padding: 21%;
    overflow: hidden;
    background: linear-gradient(to bottom, #5e12cf 0%, #F8E6FF 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.hero .hero-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
}

@keyframes twinkle {
    0% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 0.3; transform: scale(1); }
}

.twinkle-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none; /* Prevents interference with interactions */
    overflow: hidden;
}

.twinkle-star {
    position: absolute;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
    animation: twinkle 2s infinite alternate;
}

/* Random star positioning and sizing */
.twinkle-star:nth-child(1) { top: 10%; left: 15%; width: 2px; height: 2px; animation-duration: 1.5s; }
.twinkle-star:nth-child(2) { top: 25%; left: 30%; width: 3px; height: 3px; animation-duration: 2s; }
.twinkle-star:nth-child(3) { top: 40%; left: 50%; width: 2px; height: 2px; animation-duration: 1.8s; }
.twinkle-star:nth-child(4) { top: 60%; left: 70%; width: 4px; height: 4px; animation-duration: 2.5s; }
.twinkle-star:nth-child(5) { top: 80%; left: 85%; width: 3px; height: 3px; animation-duration: 1.7s; }
.twinkle-star:nth-child(6) { top: 90%; left: 20%; width: 2px; height: 2px; animation-duration: 2.2s; }
.twinkle-star:nth-child(7) { top: 50%; left: 10%; width: 3px; height: 3px; animation-duration: 2.3s; }
.twinkle-star:nth-child(8) { top: 75%; left: 40%; width: 2px; height: 2px; animation-duration: 1.9s; }

.hero .hero-text h5 {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    color: #FFF;
    text-align: center;
    font-size: 100px;
    margin-top: -50px;
    margin-bottom: auto;
    letter-spacing: 10px;
    padding-left: 10px;
    animation: fadeIn 2s;
  }



@media (max-width: 991.98px) {
    .hero {
        padding: 40%;
    }    
}

@media (max-width: 767.98px) {
    .hero .hero-text h5 {
        font-size: 64px; /* Slightly larger font on small screens */
    }
}

@media (max-width: 575.98px) {
    .hero .hero-text h5 {
        display: flex;
        justify-content: center;

    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    margin-bottom: 45px;
}

.section-header p {
    display: inline-block;
    margin: 0 30px;
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: #5e12cf;
    padding-top: 0%;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: white;
}

.section-header p::before {
    position: absolute;
    content: "";
    height: 3px;
    top: 11px;
    right: 0;
    left: -30px;
    background: #5e12cf;
    z-index: -1;
}

.section-header p::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 3px;
    top: 11px;
    left: 3px;
    background: #5e12cf;
    z-index: 1;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 45px;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
    }
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    margin: auto;
    padding-top: 100px;
    padding-bottom: 100px;
}

.about .col-lg-6 {
    padding: 0;
}

.row-align-items-center {
    width: 100%;

    margin: 0 auto;
    padding: 0;
    clear: both;
  }


.about .section-header {
    margin-bottom: 30px;
}

.about .about-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    --s: 10px; /* control the size */
    padding: var(--s);
    border: calc(2*var(--s)) solid #0000;
    outline: 2px solid #a076d8;
    outline-offset: calc(-1*var(--s));
}


.about .about-content {
    padding: 0 60px;
}

.about .about-text p {
    font-size: 16px;
}

.about .skills {
    margin-bottom: 30px;
}

.about .skill-name {
    margin-top: 15px;
}

.about .skill-name p {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
}

.about .skill-name p:last-child {
    float: right;
}

.about .progress {
    height: 10px;
    border-radius: 10px;
    background: #dddddd;
}

.about .progress .progress-bar {
    width: 0px;
    background:#a076d8;
    border-radius: 10px;
    transition: 1s;
}

.about .about-text a.btn {
    margin-top: 15px;
}

@media (max-width: 991.98px) {
    .about .about-content {
        padding: 45px 15px 0 15px;
    }
}


/*******************************/
/******* Experience CSS ********/
/*******************************/
.experience {
    position: relative;
    padding: 100px 0 15px 0;
}

.experience .timeline {
    position: relative;
    width: 100%;
}

.experience .timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: #a076d8;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.experience .timeline .timeline-item {
    position: relative;
    background: inherit;
    width: 50%;
    margin-bottom: 30px;
}

.experience .timeline .timeline-item.left {
    left: 0;
    padding-right: 30px;
}

.experience .timeline .timeline-item.right {
    left: 50%;
    padding-left: 30px;
}

.experience .timeline .timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 48px;
    right: -8px;
    background: white;
    border: 2px solid #a076d8;
    border-radius: 16px;
    z-index: 1;
}

.experience .timeline .timeline-item.right::after {
    left: -8px;
}

.experience .timeline .timeline-item::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  top: 46px;
  right: 10px;
  z-index: 1;
  border: 10px solid;
  border-color: transparent transparent transparent #dddddd;
}

.experience .timeline .timeline-item.right::before {
  left: 10px;
  border-color: transparent #dddddd transparent transparent;
}

.experience .timeline .timeline-date {
    position: absolute;
    width: 100%;
    top: 44px;
    font-size: 16px;
    font-weight: 600;
    color: #a076d8;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

.experience .timeline .timeline-item.left .timeline-date {
    text-align: left;
    left: calc(100% + 55px);
}

.experience .timeline .timeline-item.right .timeline-date {
    text-align: right;
    right: calc(100% + 55px);
}

.experience .timeline .timeline-text {
    padding: 30px;
    background: #ffffff;
    position: relative;
    border-right: 5px solid #a076d8;
    box-shadow: 0 0 60px rgba(0, 0, 0, .08);
}

.experience .timeline .timeline-item.right .timeline-text {
    border-right: none;
    border-left: 5px solid #a076d8;
}

.experience .timeline .timeline-text h2 {
    margin: 0 0 5px 0;
    font-size: 22px;
    font-weight: 600;
}

.experience .timeline .timeline-text h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
}

.experience .timeline .timeline-text p {
    margin: 0;
    font-size: 16px;
}

@media (max-width: 767.98px) {
    .experience .timeline::after {
        left: 8px;
    }

    .experience .timeline .timeline-item {
        width: 100%;
        padding-left: 38px;
    }
    
    .experience .timeline .timeline-item.left {
        padding-right: 0;
    }
    
    .experience .timeline .timeline-item.right {
        left: 0%;
        padding-left: 38px;
    }

    .experience .timeline .timeline-item.left::after, 
    .experience .timeline .timeline-item.right::after {
        left: 0;
    }
    
    .experience .timeline .timeline-item.left::before,
    .experience .timeline .timeline-item.right::before {
        left: 18px;
        border-color: transparent #a076d8 transparent transparent;
    }
    
    .experience .timeline .timeline-item.left .timeline-date,
    .experience .timeline .timeline-item.right .timeline-date {
        position: relative;
        top: 0;
        right: auto;
        left: 0;
        text-align: left;
        margin-bottom: 10px;
    }
    
    .experience .timeline .timeline-item.left .timeline-text,
    .experience .timeline .timeline-item.right .timeline-text {
        border-right: none;
        border-left: 5px solid #a076d8;
    }
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.service .service-item {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 0 0 transparent;
    fill: #a076d8;
    transition: ease-out 0.5s;
}

.service .service-item:hover {
    box-shadow: inset 800px 0 0 0 #a076d8;
}

.service .service-icon {
    position: relative;
    width: 150px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #a076d8;
    background: #ffffff;
}
#Layer_1{
fill:#a076d8;
}

.service .service-icon i {
    position: relative;
    font-size: 60px;
    color: #a076d8;
    transition: .3s;
}

.service .service-item:hover i {
    font-size: 75px;
}

.service .service-text {
    position: relative;
    width: calc(100% - 120px);
    padding: 0 30px;
}

.service .service-text h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    transition: 1s;
}

.service .service-text p {
    margin: 0;
    font-size: 14px;
    transition: 1s;
}

.service .service-item:hover .service-text h3,
.service .service-item:hover .service-text p {
    color: #ffffff;
}

@media (max-width: 575.98px) {
    .service .service-text h3 {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .service .service-text p {
        font-size: 14px;
    }
}


/*******************************/
/******** Portfolio CSS ********/
/*******************************/

  

  /* HEADER */
  
  .projekte-header h1 {
    background-color: #a076d8;
    font-weight: 300;
    font-size: 90px;
    color: white;
    text-align: center;
    padding: 30px 0;
  }

  .projekte-header p {
    background-color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    color: #a076d8;
    text-align: center;
    padding: 30px 0;
  }



/* Gallery Layout */

.gallery-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Ensure the gallery itself is centered */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1140px;
    width: 100%;
    margin: 0 auto; /* Centering */
}

.gallery img {
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    width: 100%;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.5s all;
}


.gallery img:hover {
    transform: scale(1.05);
    background-position: 100% 100%;
}

/* Popup Modal */

/*.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8); 
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    z-index: 999;
    transition: opacity 0.3s ease-in-out;
}

#popup-image {
    max-width: 100%;
    max-height: 450px;
    object-fit: contain; 
    border-radius: 10px;
    margin: 30px auto;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    opacity: 1;
    animation: fade-in 0.25s ease-in;
}

.popup-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: max-content;
    max-height: 80vh;
    overflow: auto;
    position: relative;
}

#popup h2 {
    background-color: #a076d8;
    margin-top: 0;
    padding: 40px;
    font-size: 44px;
    color: white;
    border-radius: 10px 10px 0 0;
}

#popup p {
    margin-top: 5px;
    font-size: 16px;
    color: #555;
}

#popup-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
    padding: 10px;
    justify-content: center;
}

#popup-thumbnails img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
}

#popup-thumbnails img:hover {
    transform: scale(1.01);
    transition: 0.2s ease-in-out;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}*/
.popup {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    z-index: 999;
    justify-content: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Popup Content */
.popup-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    max-height: 100vh;
    overflow: auto;
}

#popup h2 {
    background-color: #a076d8;
    margin-top: 0;
    padding: 40px;
    font-size: 44px;
    color: white;
    border-radius: 10px 10px 0 0;
}

#popup p {
    margin-top: 5px;
    font-size: 16px;
    text-align: center;
    max-width: 580px;
    color: #a076d8;
}

/* Show the popup smoothly */
.popup.show {
    visibility: visible;
    opacity: 1;
}

.popup.show .popup-content {
    transform: scale(1);
    opacity: 1;
}

/* Popup Image */
#popup-image {
    max-width: 50%;
    max-height: fit-content;
    object-fit: contain;
    margin-top: 20px;
    opacity: 0;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* When image is loaded, make it visible smoothly */
.popup.show #popup-image {
    opacity: 1;
    transform: translateY(0);
}

/* Thumbnails */
#popup-thumbnails img {
    grid-template-columns: repeat(3, 1fr);
    width: 140px;
    margin: 50px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

#popup-thumbnails img:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

#close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #5e12cf;
    background-color: #ffffff;
    border: none;
    font-size: 18px;
    padding: 5px 12px;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
}

#close-btn:hover {
    transform: scale(1.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    #popup-thumbnails img{
        width: 200px;
        height: 200px;
        object-fit: cover;
        gap: 5px;
        margin: 40px;
    }

    .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            margin: auto;
    }

    #popup-thumbnails img{
        width: 200px;
        height: 200px;
        object-fit: cover;
        gap: 5px;
        margin: 40px;
    }

    #popup h2{
    font-size: 20px;
    }

    .projekte-header p {
        margin-top: 5px;
        font-size: 14px;
        text-align: left;
        padding: 5%;
        color: #a076d8;
    }

    #popup-image {
        max-width: 100%;
    }

    #popup-thumbnails {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 500px) {

    #popup-thumbnails {
        width: 100px;
        height: 100px;
        object-fit: cover;
        gap: 5px;
        margin: 40px;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
}




/*******************************/
/********* Contact CSS *********/
/*
.contact {
    position: relative;
    width: 100%;
    margin: 45px 0;
    background: #a076d8;
}

.contact .contact-form {
    position: relative;
    padding: 90px 0 90px 45px;
    background-color: #a076d8;
}

.contact .contact-form input {
    color: #ffffff;
    padding: 15px 0;
    background: none;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(256, 256, 256, .5);
}

.contact .contact-form textarea {
    color: #ffffff;
    height: 90px;
    padding: 15px 0;
    background: none;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(256, 256, 256, .5);
}

.contact .contact-form .form-control::placeholder {
    color: #ffffff;
    opacity: 1;
}

.contact .contact-form .form-control:-ms-input-placeholder,
.contact .contact-form .form-control::-ms-input-placeholder {
    color: #ffffff;
}

.contact .contact-form .btn {
    margin-top: 35px;
    color: #a076d8;
    background: #ffffff;
    box-shadow: inset 0 0 0 50px #ffffff;
}

.contact .contact-form .btn a {
    color: #a076d8;
    text-decoration: none;
    background-color: transparent;
}

.contact .contact-form .btn:hover {
    color: #ffffff;
    background: transparent;
    box-shadow: inset 0 0 0 0 #ffffff;
    border-color: #ffffff;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 14px;
    font-style: italic;
    color: #ffffff;
}

@media (max-width: 767.98px) {
    .contact .container-fluid {
        background: none;
    }
    
    .contact .contact-form {
        padding: 90px 0;
    }
}

/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    background: #ffffff;
}

.footer .container-fluid {
    padding: 10px;
}

.footer .footer-menu {
    text-align: center;
    padding: 5px;
    margin-top: 10%;
    margin-bottom: 5%;
}

.footer .footer-menu p {
    color: #a076d8;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    border-right: 1px solid #ffffff;
}

.footer .footer-menu a {
    color: #5e12cf;
    
}

.footer .footer-menu a:hover {
    color: #a076d8;
}

.footer .footer-menu p:last-child {
    border: none;
}

.footer-email {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}

@media (max-width: 575.98px) {
    .footer-email a {
        margin-bottom: 20px;
        font-size: 16px;
        font-weight: 600;
    }

    .footer .footer-info h3 {
        margin-bottom: 20px;
        font-size: 10px;
    }

    .footer .footer-menu p {
        font-size: 16px;
        line-height: 16px;
        padding: 0 5px;
    }
}
