*,
::before {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    padding: 0;
    margin: 0;
  height: 100%;

}

ul {
    list-style-type: none
}

a {
    text-decoration: none
}

button {
    outline: none;
    border: none;
    padding: 10px;
    border: 1px solid #9acd32;
    border-radius: 5px;
    cursor: pointer;
    transition: all .3s linear;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.200)
}

hr {
    border: none;
    background-color: rgba(0, 0, 0, 0.212);
    height: .05em;
    width: 50%;
    transition: 1s all ease
}


/* Top up Button style for all pages */

.overlay-btns {
    position: fixed;
    right: 10px;
    bottom: 10px;
    width: 50px;
    height: 50px;
    border-radius: 2rem;
    border: solid yellowgreen;
    background-color: white;
    color: yellowgreen;
    cursor: pointer;
    z-index: 200000;
    display: none;
    transition: all 1s linear;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.543);
}

.overlay-btns:focus {
    outline: none;
}

.overlay-btns i {
    font-size: 1.5rem;
}

.Tarrow {
    transition: 1s all ease-in-out;
}

.overlay-btns:hover .Tarrow {
    margin-bottom: 1rem;
    color: var(--bigtext);
    transition: .5s all ease-in-out;
}

.overlay-btns:hover {
    border: none;
    transition: 1s all ease-in-out;
}


/* end of scroll */

.wrapper {
    position: relative;
    margin-top: 0;
    }

.owl-dots {
    text-align: center;
    margin: 10px 0
}

.owl-dot {
    height: 15px;
    width: 45px;
    border: 1.6px solid #9acd32!important;
    border-radius: 10px;
    margin: 0 10px
}

.owl-dot:hover {
    background-color: #9acd32!important
}

.owl-dot.active {
    background-color: #9acd32!important
}

.owl-nav {
    display: none;
    transition: all 1s linear
}

article:hover .owl-nav {
    display: block
}

.owl-nav .owl-prev {
    position: absolute;
    top: 210px;
    left: 25px;
    opacity: 1;
    z-index: 1;
    box-shadow: none
}

.owl-nav .owl-next {
    position: absolute;
    top: 210px;
    right: 25px;
    opacity: 1;
    z-index: 1;
    box-shadow: none
}

header .owl-dot {
    display: none;
}

header .owl-nav {
    display: block;
}

header .owl-nav .owl-prev,
header .owl-nav .owl-next {
    top: -20px;
    color: yellowgreen;
}

header .owl-nav span {
    font-size: 50px;
    color: yellowgreen;
}

.owl-nav span {
    font-size: 40px;
    color: #07f
}

.owl-nav:hover span {
    color: #9acd32
}

.owl-nav:active span {
    color: #07f
}

.inputs {
    display: flex;
    width: 100%
}

footer {
    width: 100%;
    height: auto;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    margin-top: 20px;
    clear: both;
    z-index:1000;
}

footer .left-side span {
    display: inline-block;
    font-size: 20px
}

footer .brand-name {
    color: #9acd32;
    font-weight: 700;
    font-family: Nautilus
}

footer .right-side span {
    display: inline-block
}

footer .social-list {
    font-size: 24px;
    font-weight: 700;
    color: #9acd32
}

.social-lis a {
    text-decoration: none;
}

footer .social span {
    margin: 5px;
    cursor: pointer
}

.login {
    background-color: #9acd32
}

.add-post-form {
    width: 50%;
    display: block;
    margin: 0 auto;
    padding: 20px;
    margin-top: 80px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.200);
    border-radius: 5px
}

.modal-container,
.boxes-modal-container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    visibility: hidden;
    transform: scale(0);
    transition: 200ms ease-in-out;
    display: block;
    margin: 0 auto
}

.modal-container .add-work-card {
    background-color: #9acd32
}

.user-modal {
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.200);
    border-radius: 5px;
    position: absolute;
    left: 10%;
    top: 10%;
    bottom: 0;
    z-index: 1000
}

.modal-container.opened,
.boxes-modal-container.opened {
    visibility: visible;
    transform: scale(1)
}

.close-modal {
    float: right;
    margin: 5px 10px;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    z-index: 4000000
}