* {
    margin: 0;
    padding: 0;
}

input {
    outline: none;
}

textarea {
    resize: none !important;
    outline: none;
}

input::placeholder,
textarea::placeholder {
    font-size: 14px;
    color: #d3d3d3;
    font-weight: 400;
}
.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.or-text {
    margin-top: 8px;
}
/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
#fileNames {
    text-align: right;
    margin-top: 10px;
    color: #1763F5;
    font-size: 14px;
}
#slide {
    position: absolute;
    left: -100px;
    width: 100px;
    height: 100px;
    background: blue;
    -webkit-animation: slide 0.5s forwards;
    -webkit-animation-delay: 2s;
    animation: slide 0.5s forwards;
    animation-delay: 2s;
}

@-webkit-keyframes slide {
    100% {
        left: 0;
    }
}

@keyframes slide {
    100% {
        left: 0;
    }
}


@keyframes slideIn {
    from {
        transform: translateX(200px)
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0px)
    }

    to {
        transform: translateX(200px);
    }
}

@keyframes sliderAnimate {
    from {
        transform: translateX(300px)
    }

    to {
        transform: translateX(0px);
    }
}

.sliderAnimate {
    animation: sliderAnimate .5s ease-in;
}

.slideInOut {
    animation: slideIn .5s ease-out;
}

.closeNav:focus .slideInOut {
    animation: slideOut .5s ease-in;
}


@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fade {
    animation: fadeIn 2000ms;
    transition: ease-in-out;
}


/* carousel */
.carousel_inner {
    width: 100%;
    overflow: hidden;
    display: flex;
}

.carousel_item {
    position: relative;
    float: left;
    display: none;
    width: 100%;
    /* margin-right: -50%; */
}

/* slide effect */
.carousel_item__active,
.carousel_item__pos_next {
    display: block;
}

.carousel_item__pos_next {
    left: 50%;
}

.carousel_item__next {
    transform: translateX(-100%);
    transition: transform .5s ease-in-out;
}


.pulsate {
    animation-name: stretch;
    animation-duration: 1.0s;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-play-state: running;
}

.pulsate-delay {
    animation-delay: 1s;
}

@keyframes stretch {
    0% {
        transform: scale(1.0);
    }


    100% {
        transform: scale(1.1);
    }
}

@media screen and (max-width:767px) {
    .navBar {
        transition: all .5s;
        width: 200px;
    }

    .navColor {
        background-color: #181818;
    }
}

@media screen and (max-width:400px) {
    .last-slider {
        margin-top: 40px;
        position: relative;
    }
}

.slider-container {
    position: relative;
}

.slide {
    opacity: 0;
    position: absolute;
    transition: 0.4s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
}


#arrow1:hover,
#arrow2:hover {
    background-color: #fff;
}

.line {
    height: 1px;
    background-color: #C5B5B5;
    transition: background-color 0.6s ease;
}

.activeSlide,
.line:hover {
    background-color: #000;
    height: 2px;
}


.none-active {
    color: black;
    background-color: #E2EBFE;
}

.btn:first-child {
    background-color: #1763F5;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.active,
.btn:first-child:hover {
    background-color: #1763F5;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.boldFont {
    font-weight: bold;
}


.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.activeClick .accordion-content {
    margin-top: 15px;
    max-height: 1000px;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-item.activeClick .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content2 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item2.activeClick .accordion-content2 {
    margin-top: 15px;
    max-height: 1000px;
}

.accordion-icon2 {
    transition: transform 0.3s ease;
}

.accordion-item2.activeClick .accordion-icon2 {
    transform: rotate(45deg);
}

.accordion-content3 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item3.activeClick .accordion-content3 {
    max-height: 1000px;
}

.accordion-icon3 {
    transition: transform 0.3s ease;
}

.accordion-item3.activeClick .accordion-icon3 {
    transform: rotate(45deg);
}
