@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    scroll-behavior: smooth;
    transition: all 1s ease;
    font-size: 17px;
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    margin-bottom: 24px;
}

img {
    width: 100%;
    height: 100%;
    display: block;
}

ul {
    text-decoration: none;
    padding-left: 0;
}

ul li {
    list-style: none;
    position: relative;
    display: block;
}

ul li:hover {
    background-color: #4a5568;
}

ul li a {
    display: block;
    padding: 10px 25px;
    cursor: pointer;
}

.w-85 {
    width: 85%;
}

.pt-60 {
    padding-top: 60px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pb-15 {
    padding-bottom: 15px !important;
}

.hide {
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease;
}

.show {
    background-color: inherit;
}

.image-number {
    position: absolute;
    left: 6px;
    bottom: 5px;
    width: 26px;
    height: 26px;
    background-color: black;
    color: white;
    text-align: center;
    border: 1px solid white;
    border-radius: 50%;
}

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

::-webkit-scrollbar-track {
    background: inherit;
}

::-webkit-scrollbar-thumb {
    background: #b255aa;
}

#particles-js {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    z-index: -1;
}

.swal2-height-auto {
    padding-right: 0 !important;
}

.preloader {
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    position: fixed;
    z-index: 99999999;
    background-color: rgba(0, 0, 0.5);
}

.preloader img {
    width: 150px;
}

.preloader .please-wait {
    position: absolute;
    top: 65%;
    left: 0;
    right: 0;
}

.light .filter-btn {
    color: black;
}

.filter-btn {
    background-color: inherit !important;
    transition: all .5s ease;
    color: #fff;
    border: 1px solid #b255aa;
}

.filter-btn:hover {
    border: 1px solid #b255aa;
    color: #fff;
    background-color: #b255aa !important;
}

.filter-active {
    background-color: #b255aa !important;
    color: #fff !important;
}

input, textarea {
    border: 1px solid #b255aa !important;
}

.btn-custom, input[type=file]::file-selector-button {
    color: #fff;
    transition: all .5s ease;
    background-color: #b255aa;
}

.btn-custom:hover, input[type=file]::file-selector-button:hover {
    transition: all .5s ease;
    background-color: #823d7d;
    color: #fff;
}

input:focus, textarea:focus {
    border: 1px solid #b255aa !important;
    box-shadow: 0 0 5px 2px #b255aa !important;
    transition: all ease .3s;
}

.errorValidation {
    border: 2px solid red;
}

.image-container {
    position: relative;
    min-width: 200px;
    height: 150px;
    overflow: hidden;
    flex: 0 0 20%;
}

.image-container img {
    display: inline-block;
    border: 3px solid transparent;
    object-fit: cover;
}


.notification-count {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rebeccapurple;
    text-align: center;
    font-weight: bold;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.cover-options {
    width: 50%;
}

.cover-preview {
    width: 50%;
}

.vh-30 {
    height: 30vh;
}

.bg-default {
    background: url("../imgs/wall.jpg") no-repeat center center/cover;
}

.bg-color-default {
    background-color: #b255aa;
}

#social-share {
    color: #b255aa;
    font-size: 28px;
}

.validateFail {
    border: 2px solid red !important;
}

.cover-image {
    border: 3px solid #00ec00 !important;
}

.image-container i {
    font-size: 24px;
    color: red;
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.project-header {
    background: linear-gradient(to right, transparent, transparent, rgba(178, 85, 170, .5), transparent, transparent);
}

#current-project-images {
    max-height: 400px;
    overflow: auto;
}

#current-project-images img {
    display: block;
    padding-right: 5px;
    margin-bottom: 10px;
}

#current-project-images div, #current-blog-images div {
    flex-basis: 50% !important;
}

#contact-us, #subscribe {
    background-color: rgb(55 55 55 / 15%);
}

@keyframes backToTop {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
    100% {
        transform: translateY(0);
    }
}

#back-to-top {
    position: fixed;
    right: 30px;
    bottom: -100%;
    border-radius: 50%;
    border: 1px solid #b255aa;
    transition: all 1.5s ease;
    cursor: pointer;
    animation: backToTop 1.5s linear infinite;
    color: #212529;
    z-index: 99999;
}

#back-to-top.show-btn {
    bottom: 40px;
    transition: all 1.5s ease;
}

#back-to-top i {
    padding: 10px;
    font-size: 24px;
    color: #b255aa;
}

#back-to-top:hover {
    background-color: #b255aa;
    transition: all .5s ease;
}

#back-to-top:hover i {
    color: #fff;
    transition: all .5s ease;
}

@media only screen and (max-width: 768px) {
    #current-project-images div, #current-blog-images div {
        flex-basis: 100% !important;
    }

    .project-header {
        background: linear-gradient(to right, transparent, rgba(178, 85, 170, .5), transparent);
    }

    .pb-60 {
        padding-bottom: 30px !important;
    }

    .pt-60 {
        padding-top: 30px !important;
    }
}
