.stop-scrolling {
    height: 100%;
    overflow: hidden;
}

.heading1,
.heading2,
.heading3,
.heading4,
.heading5,
.heading6 {
    font-style: normal;
    color: #000000;
}

.heading1 {
    font-family: "Playfair Display";
    font-weight: 700;
    font-size: 70px;
    line-height: 93px;
}

.heading2 {
    font-family: "Playfair Display";
    font-weight: 700;
    font-size: 40px;
    line-height: 53px;
}

.heading3 {
    font-family: "Playfair Display";
    font-weight: 600;
    font-size: 25px;
    line-height: 33px;
}

.heading4 {
    font-family: "Playfair Display";
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
}

.heading5 {
    font-family: "Montserrat";
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
}

.heading6 {
    font-family: "Montserrat";
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}

.paragraph {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #747d7c;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

a {
    text-decoration: none !important;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.divider {
    height: 1px;
    background: #d9d9d9;
}

.square {
    width: 130px;
    height: 130px;
}

.sub-header .paper_wrapper {
    width: 64px;
    height: 40px;
    margin-left: -27px;
    margin-bottom: -8px;
}
.sub-header .heading4 {
    color: #9900cc;
    max-width: 273px;
    text-align: center;
}

.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding-bottom: 20px;
}
.product-card .heading5 {
    font-family: "Playfair Display";
    font-weight: 600;
    color: #000;
    text-align: center;
    transition: 0.3 ease;
}
.product-card .heading5:hover {
    color: #9900cc;
}
.product-card a {
    text-decoration: none;
}
.product-card .paragraph {
    max-width: 235px;
}
.product-card .heading3 {
    font-family: "Montserrat";
    color: #9900cc;
    margin-top: 15px;
}
.product-card .img-wrapper {
    position: relative;
}
.product-card .img-wrapper .overlay {
    width: 100%;
    height: 100%;
    padding: 20px;
    top: 0;
    left: 0;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(93, 136, 52, 0);
    transition: 0.8s ease;
    opacity: 0;
    scale: 0;
}
.product-card .img-wrapper .overlay .icon-wrapper {
    display: flex;
    gap: 20px;
}
.product-card .img-wrapper .overlay .icon-wrapper .tooltip-wrapper {
    position: relative;
}
.product-card .img-wrapper .overlay .icon-wrapper .tooltip-wrapper .my-tooltip {
    position: absolute;
    bottom: 82px;
    left: 50%;
    transform: translate(-50%, 50%);
    background: #9900cc;
    min-width: 120px;
    max-width: 200px;
    border-radius: 50px;
    font-size: 14px;
    text-align: center;
    color: white;
    padding: 5px 10px 8px 10px;
    opacity: 0;
    transition: 0.5s ease;
}
.product-card
    .img-wrapper
    .overlay
    .icon-wrapper
    .tooltip-wrapper
    .my-tooltip:after {
    content: "";
    width: 15px;
    height: 15px;
    background: #9900cc;
    rotate: 45deg;
    bottom: -7px;
    left: 50%;
    transform: translate(-50%, 50%);
    position: absolute;
}
.product-card .img-wrapper .overlay .icon-wrapper .tooltip-wrapper .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #9900cc;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotateY(0deg);
    transition: 0.5s ease;
    color: white;
    font-size: 20px;
}
.product-card
    .img-wrapper
    .overlay
    .icon-wrapper
    .tooltip-wrapper
    .icon:hover
    + .my-tooltip {
    opacity: 1;
    transition: 0.5s ease;
}
.product-card .img-wrapper .overlay .icon-wrapper .tooltip-wrapper:hover .icon {
    background: white;
    transform: rotateY(-180deg);
    transition: 0.5s ease;
    color: #9900cc;
}
.product-card .img-wrapper .hovered-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: 0.8s ease;
    opacity: 0;
    scale: 0;
}
.product-card .img-wrapper:hover .overlay {
    transition: 0.8s ease;
    opacity: 1;
    scale: 0.9;
}
.product-card .img-wrapper:hover .hovered-img {
    transition: 0.8s ease;
    opacity: 1;
    scale: 1;
}

#popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(24, 38, 37, 0);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
}
#popup-overlay .popup {
    max-width: 1121px;
    width: 100%;
    padding: 60px 56px;
    background: #fff;
    gap: 30px;
    align-items: center;
    position: relative;
}
#popup-overlay .popup .close {
    position: absolute;
    right: 35px;
    top: 35px;
    font-size: 25px;
    color: #9900cc;
    cursor: pointer;
}
#popup-overlay .popup .img-wrapper {
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}
#popup-overlay .popup .content {
    width: calc(100% - 100px);
}
#popup-overlay .popup .content .price {
    gap: 27px;
    align-items: flex-start;
}
#popup-overlay .popup .content .price span {
    color: #9900cc;
    font-size: 30px;
    font-weight: 600;
    font-family: "Montserrat";
}
#popup-overlay .popup .content .price .line-through {
    color: #a3a8a8;
    text-decoration: line-through;
    font-size: 28px;
}
#popup-overlay .popup .content .rating {
    margin: 20px 0;
    font-size: 15px;
    color: #ffa800;
}
#popup-overlay .popup .content .quantity-wrapper {
    max-width: 336px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#popup-overlay .popup .content .quantity-wrapper .quantity {
    padding: 0px 6px;
    background: #f7f9f5;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
    font-weight: 700;
    font-size: 25px;
    font-family: "Montserrat";
    align-items: center;
}
#popup-overlay .popup .content .quantity-wrapper .quantity input {
    max-width: 60px;
    text-align: center;
    border: none;
    background: transparent;
}
#popup-overlay .popup .content .quantity-wrapper .quantity span {
    cursor: pointer;
}
#popup-overlay.active {
    z-index: 1111;
    opacity: 1;
    visibility: visible;
}
#popup-overlay .overlay-popup-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(24, 38, 37, 0.8);
    z-index: -1;
}
@media (max-width: 767px) {
    #popup-overlay .popup {
        flex-direction: column;
        padding: 40px 20px;
    }
    #popup-overlay .popup .img-wrapper {
        max-width: 200px;
        width: 100%;
    }
    #popup-overlay .popup .content {
        width: 100%;
    }
}

.short-banner,
.profile-banner {
    padding: 100px 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.short-banner .heading5,
.profile-banner .heading5 {
    text-decoration: none;
}
.short-banner.primary,
.profile-banner.primary {
    background-image: url(../images/products/bg.png);
}
.short-banner.primary .heading2,
.short-banner.primary .heading5,
.profile-banner.primary .heading2,
.profile-banner.primary .heading5 {
    color: #9900cc;
}
.short-banner.primary7,
.profile-banner.primary7 {
    background-image: url(../images/about-us/bg.png);
}
.short-banner.primary7 .heading2,
.short-banner.primary7 .heading5,
.profile-banner.primary7 .heading2,
.profile-banner.primary7 .heading5 {
    color: #f7f9f5;
}
.short-banner.profile-banner,
.profile-banner.profile-banner {
    background-image: url(../images/profile/b-1.png);
}
.short-banner.blog-banner,
.profile-banner.blog-banner {
    background-image: url(../images/blog/top.png);
}
.short-banner.blog-banner .heading2,
.profile-banner.blog-banner .heading2 {
    color: white;
}
.short-banner.blog-banner a,
.profile-banner.blog-banner a {
    color: white;
}
@media (max-width: 767px) {
    .short-banner,
    .profile-banner {
        padding: 50px 0;
    }
}

.related-slider.owl-carousel {
    position: relative;
}
.related-slider.owl-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #9900cc !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    position: absolute;
    top: 25%;
}
.related-slider.owl-carousel .owl-nav button:nth-child(2) {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #9900cc !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    position: absolute;
    top: 25%;
    right: 0;
}
.related-slider.owl-carousel .owl-nav button span {
    margin-top: -9px;
    font-size: 35px;
    color: white;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 767px) {
    .related-slider.owl-carousel .owl-nav button {
        width: 40px;
        height: 40px;
    }
    .related-slider.owl-carousel .owl-nav button:nth-child(2) {
        width: 40px;
        height: 40px;
    }
    .related-slider.owl-carousel .owl-nav button span {
        font-size: 25px;
    }
}

.quantity-wrapper {
    display: flex;
    align-items: center;
}
.quantity-wrapper .quantity {
    background: #f7f9f5;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
    font-weight: 700;
    font-size: 25px;
    font-family: "Montserrat";
}
.quantity-wrapper .quantity .quantity-down,
.quantity-wrapper .quantity .quantity-up {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}
.quantity-wrapper .quantity .quantity-down:active,
.quantity-wrapper .quantity .quantity-up:active {
    background: #9900cc;
    color: white;
    transition: 0.3s ease;
}
.quantity-wrapper .quantity input {
    max-width: 60px;
    text-align: center;
    padding-left: 15px;
    border: none;
    background: transparent;
}
.quantity-wrapper .quantity span {
    cursor: pointer;
}
@media (max-width: 767px) {
    .quantity-wrapper .quantity {
        font-size: 16px;
    }
    .quantity-wrapper .quantity input {
        max-width: 40px;
        padding-left: 0px;
    }
    .quantity-wrapper .quantity .quantity-down,
    .quantity-wrapper .quantity .quantity-up {
        width: 30px;
        height: 30px;
    }
}

.item-animation {
    position: relative;
}
.item-animation:before {
    background: rgba(255, 255, 255, 0.4);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 50%;
    top: 0;
    opacity: 1;
    width: 0;
    z-index: 0;
}
.item-animation:after {
    background: rgba(255, 255, 255, 0.6);
    bottom: 50%;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    opacity: 1;
    width: 0;
    z-index: 0;
}
.item-animation:hover:before {
    left: 0;
    right: 0;
    opacity: 0;
    width: auto;
    z-index: 0;
    transition: 1.4s ease;
}
.item-animation:hover:after {
    top: 0;
    bottom: 0;
    opacity: 0;
    width: auto;
    z-index: 0;
    transition: 1.4s ease;
}

.container {
    width: 100%;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    margin-right: auto;
    margin-left: auto;
}

/*08  Component common styles */
.button-1 {
    color: white;
    border: none;
    font-size: 18px;
    min-width: 170px;
    font-weight: 600;
    line-height: 22px;
    padding: 19px 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent;
    border: 1px solid #9900cc;
    z-index: 11;
    transition: 0.3s;
}
.button-1::before {
    content: "";
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: #9900cc;
    z-index: -1;
    transition: 0.3s ease;
}
.button-1:after {
    content: "";
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    position: absolute;
    background: rgb(255, 255, 255);
    z-index: -1;
    transition: 0.3s ease;
}
.button-1:hover {
    color: #000;
}
.button-1:hover:after {
    width: 100%;
}
.button-1:hover::before {
    width: 0%;
}

.button-2 {
    border: 1px solid #dddddd;
    padding: 19px 38px;
    background-color: transparent;
    color: #9900cc;
    font-weight: 600;
    line-height: 22px;
    min-width: 170px;
    z-index: 11;
    position: relative;
    transition: 0.3s;
}
.button-2::before {
    content: "";
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: white;
    z-index: -1;
    transition: 0.3s ease;
    border: 1px solid #dddddd;
}
.button-2:after {
    content: "";
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    position: absolute;
    background: #9900cc;
    z-index: -1;
    transition: 0.3s ease;
}
.button-2:hover {
    color: #fff;
}
.button-2:hover:after {
    width: 100%;
}
.button-2:hover::before {
    width: 0%;
}

.button-3 {
    padding: 19px 38px;
    background-color: #dce775;
    color: #9900cc;
    font-weight: 600;
    line-height: 22px;
    max-width: 170px;
    font-size: 18px;
    border: none;
}

a.button-1,
a .button-2,
a .button-3 {
    text-decoration: none;
    width: -moz-fit-content;
    width: fit-content;
}

.circle_right {
    position: absolute;
    width: 800px;
    height: 800px;
    right: -400px;
    top: -350px;
    background: radial-gradient(
        50% 50% at 50% 50%,
        rgba(93, 136, 52, 0.15) 0%,
        rgba(93, 136, 52, 0) 100%
    );
}

.circle_left {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(
        50% 50% at 50% 50%,
        rgba(93, 136, 52, 0.15) 0%,
        rgba(93, 136, 52, 0) 100%
    );
}

.pagination .d-flex {
    gap: 18px;
}
.pagination .arrow-left,
.pagination .arrow-right {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}
.pagination a {
    color: #000;
}
.pagination span {
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    transition: 0.3s ease;
}
.pagination span:hover {
    color: #9900cc;
}
.pagination .arrow-left {
    background: #dce775;
    color: #9900cc;
}
.pagination .arrow-left:hover {
    background: #9900cc;
    color: white;
    transition: 0.3s ease;
}
.pagination .arrow-right {
    background: #9900cc;
    color: #fff;
}
.pagination .arrow-right:hover {
    background: #dce775;
    color: #9900cc;
    transition: 0.3s ease;
}

.main-search-bar {
    top: 0;
    left: 0;
    position: fixed;
    z-index: 1111;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 0vh;
    visibility: hidden;
    opacity: 0;
    transition: 0.8s ease;
}
.main-search-bar.active {
    height: 100vh;
    transition: 0.8s ease;
    visibility: visible;
    opacity: 1;
}
.main-search-bar .close {
    position: absolute;
    right: 30px;
    top: 30px;
    color: rgb(218, 218, 218);
    font-size: 35px;
    cursor: pointer;
    transition: 0.3s ease;
}
.main-search-bar .close:hover {
    transition: 0.3s ease;
    color: #9900cc;
}
.main-search-bar form {
    max-width: 600px;
    width: 100%;
    display: flex;
    border-bottom: 1px solid rgb(218, 218, 218);
    padding: 30px 10px;
}
.main-search-bar form input {
    width: calc(100% - 100px);
    border: none;
    background: transparent;
    font-size: 35px;
    outline: none;
    color: rgb(177, 177, 177);
}
.main-search-bar form button {
    border: none;
    width: 100px;
    background: transparent;
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    color: rgb(177, 177, 177);
    transition: 0.3s ease;
}
.main-search-bar form button:hover {
    transition: 0.3s ease;
    color: #9900cc;
}

.payment-success {
    top: 0;
    left: 0;
    position: fixed;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 0vh;
    visibility: hidden;
    opacity: 0;
    transition: 0.8s ease;
}
.payment-success.active {
    height: 100vh;
    transition: 0.8s ease;
    visibility: visible;
    opacity: 1;
}
.payment-success .payment-overlay {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.48);
    position: absolute;
    opacity: 1;
}
.payment-success .success-card {
    max-width: 800px;
    width: 100%;
    height: 430px;
    border-radius: 10px;
    background: #9900cc;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    z-index: 11;
}
.payment-success .success-card .check {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #9900cc;
    background: #dce775;
}
.payment-success .success-card .paragraph {
    color: white;
}
.payment-success .success-card .heading5 {
    font-weight: 600;
    font-size: 22px;
    color: white;
}

.primary {
    color: #9900cc;
}

.secondary {
    color: #dce775;
}

.danger {
    color: red;
}

.side_cart {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    z-index: 11;
}
.side_cart p {
    margin-bottom: 0;
}
.side_cart .top-1 {
    background-color: #dce775;
    width: -moz-fit-content;
    width: fit-content;
    color: #9900cc;
    text-align: center;
    cursor: pointer;
    transition: 0.3s ease;
    opacity: 0.4;
}
.side_cart .top-1 .top-items-number {
    padding: 7px 9px;
    border-bottom: 1px solid #f7f9f5;
}
.side_cart .top-1 .top-item-dollar {
    padding: 3px 0px;
}
.side_cart .top-1 .top-item-dollar .paragraph-2 {
    font-weight: 500;
}
.side_cart .top-1:hover {
    background: #9900cc;
    color: white;
    transition: 0.3s ease;
    opacity: 1;
}
.side_cart .top-2 {
    background-color: #9900cc;
    cursor: pointer;
    margin-top: 10px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
}

.mfp-bg {
    z-index: 11111 !important;
}

.mfp-wrap {
    z-index: 111111 !important;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
    width: 100%;
    background: transparent !important;
}
.mfp-image-holder .mfp-content img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

@media (max-width: 992px) {
    .square {
        width: 100px;
        height: 100px;
    }
    .circle_left {
        display: none;
    }
    .circle_right {
        display: none;
    }
    .heading1 {
        font-weight: 700;
        font-size: 50px;
        line-height: 93px;
    }
    .heading2 {
        font-weight: 700;
        font-size: 35px;
        line-height: 53px;
    }
    .heading3 {
        font-weight: 600;
        font-size: 22px;
        line-height: 33px;
    }
    .heading4 {
        font-weight: 600;
        font-size: 18px;
        line-height: 27px;
    }
    .heading5 {
        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
    }
    .heading6 {
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
    }
    .paragraph {
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
    }
}
@media (max-width: 767px) {
    .square {
        width: 60px;
        height: 60px;
    }
    .button-1 {
        min-width: 140px;
        padding: 10px 28px;
        font-size: 14px;
    }
    .button-2 {
        padding: 10px 28px;
        min-width: 140px;
        font-size: 14px;
    }
    .button-3 {
        padding: 10px 28px;
        max-width: 140px;
        font-size: 14px;
    }
    .heading1 {
        font-weight: 700;
        font-size: 70px;
        line-height: 93px;
    }
    .heading2 {
        font-weight: 700;
        font-size: 30px;
        line-height: 38px;
    }
    .heading3 {
        font-weight: 600;
        font-size: 22px;
        line-height: 30px;
    }
    .heading4 {
        font-weight: 600;
        font-size: 18px;
        line-height: 25px;
    }
    .heading5 {
        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
    }
    .heading6 {
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
    }
    .paragraph {
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
    }
}
/* Deafult Margin & Padding */
/*-- Margin Top --*/
.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-55 {
    margin-top: 55px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-65 {
    margin-top: 65px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-75 {
    margin-top: 75px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-85 {
    margin-top: 85px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-95 {
    margin-top: 95px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-105 {
    margin-top: 105px;
}

.mt-110 {
    margin-top: 110px;
}

.mt-115 {
    margin-top: 115px;
}

.mt-120 {
    margin-top: 120px;
}

.mt-125 {
    margin-top: 125px;
}

.mt-130 {
    margin-top: 130px;
}

.mt-135 {
    margin-top: 135px;
}

.mt-140 {
    margin-top: 140px;
}

.mt-145 {
    margin-top: 145px;
}

.mt-150 {
    margin-top: 150px;
}

.mt-155 {
    margin-top: 155px;
}

.mt-160 {
    margin-top: 160px;
}

.mt-165 {
    margin-top: 165px;
}

.mt-170 {
    margin-top: 170px;
}

.mt-175 {
    margin-top: 175px;
}

.mt-180 {
    margin-top: 180px;
}

.mt-185 {
    margin-top: 185px;
}

.mt-190 {
    margin-top: 190px;
}

.mt-195 {
    margin-top: 195px;
}

.mt-200 {
    margin-top: 200px;
}

/*-- Margin Bottom --*/
.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-55 {
    margin-bottom: 55px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-65 {
    margin-bottom: 65px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-75 {
    margin-bottom: 75px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-85 {
    margin-bottom: 85px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-95 {
    margin-bottom: 95px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-105 {
    margin-bottom: 105px;
}

.mb-110 {
    margin-bottom: 110px;
}

.mb-115 {
    margin-bottom: 115px;
}

.mb-120 {
    margin-bottom: 120px;
}

.mb-125 {
    margin-bottom: 125px;
}

.mb-130 {
    margin-bottom: 130px;
}

.mb-135 {
    margin-bottom: 135px;
}

.mb-140 {
    margin-bottom: 140px;
}

.mb-145 {
    margin-bottom: 145px;
}

.mb-150 {
    margin-bottom: 150px;
}

.mb-155 {
    margin-bottom: 155px;
}

.mb-160 {
    margin-bottom: 160px;
}

.mb-165 {
    margin-bottom: 165px;
}

.mb-170 {
    margin-bottom: 170px;
}

.mb-175 {
    margin-bottom: 175px;
}

.mb-180 {
    margin-bottom: 180px;
}

.mb-185 {
    margin-bottom: 185px;
}

.mb-190 {
    margin-bottom: 190px;
}

.mb-195 {
    margin-bottom: 195px;
}

.mb-200 {
    margin-bottom: 200px;
}

/*-- margin left --*/
.ml-5 {
    margin-left: 5px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-25 {
    margin-left: 25px;
}

.ml-30 {
    margin-left: 30px;
}

.ml-35 {
    margin-left: 35px;
}

.ml-40 {
    margin-left: 40px;
}

.ml-45 {
    margin-left: 45px;
}

.ml-50 {
    margin-left: 50px;
}

.ml-55 {
    margin-left: 55px;
}

.ml-60 {
    margin-left: 60px;
}

.ml-65 {
    margin-left: 65px;
}

.ml-70 {
    margin-left: 70px;
}

.ml-75 {
    margin-left: 75px;
}

.ml-80 {
    margin-left: 80px;
}

.ml-85 {
    margin-left: 85px;
}

.ml-90 {
    margin-left: 90px;
}

.ml-95 {
    margin-left: 95px;
}

.ml-100 {
    margin-left: 100px;
}

.ml-105 {
    margin-left: 105px;
}

.ml-110 {
    margin-left: 110px;
}

.ml-115 {
    margin-left: 115px;
}

.ml-120 {
    margin-left: 120px;
}

.ml-125 {
    margin-left: 125px;
}

.ml-130 {
    margin-left: 130px;
}

.ml-135 {
    margin-left: 135px;
}

.ml-140 {
    margin-left: 140px;
}

.ml-145 {
    margin-left: 145px;
}

.ml-150 {
    margin-left: 150px;
}

.ml-155 {
    margin-left: 155px;
}

.ml-160 {
    margin-left: 160px;
}

.ml-165 {
    margin-left: 165px;
}

.ml-170 {
    margin-left: 170px;
}

.ml-175 {
    margin-left: 175px;
}

.ml-180 {
    margin-left: 180px;
}

.ml-185 {
    margin-left: 185px;
}

.ml-190 {
    margin-left: 190px;
}

.ml-195 {
    margin-left: 195px;
}

.ml-200 {
    margin-left: 200px;
}

/*-- margin right --*/
.mr-5 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-25 {
    margin-right: 25px;
}

.mr-30 {
    margin-right: 30px;
}

.mr-35 {
    margin-right: 35px;
}

.mr-40 {
    margin-right: 40px;
}

.mr-45 {
    margin-right: 45px;
}

.mr-50 {
    margin-right: 50px;
}

.mr-55 {
    margin-right: 55px;
}

.mr-60 {
    margin-right: 60px;
}

.mr-65 {
    margin-right: 65px;
}

.mr-70 {
    margin-right: 70px;
}

.mr-75 {
    margin-right: 75px;
}

.mr-80 {
    margin-right: 80px;
}

.mr-85 {
    margin-right: 85px;
}

.mr-90 {
    margin-right: 90px;
}

.mr-95 {
    margin-right: 95px;
}

.mr-100 {
    margin-right: 100px;
}

.mr-105 {
    margin-right: 105px;
}

.mr-110 {
    margin-right: 110px;
}

.mr-115 {
    margin-right: 115px;
}

.mr-120 {
    margin-right: 120px;
}

.mr-125 {
    margin-right: 125px;
}

.mr-130 {
    margin-right: 130px;
}

.mr-135 {
    margin-right: 135px;
}

.mr-140 {
    margin-right: 140px;
}

.mr-145 {
    margin-right: 145px;
}

.mr-150 {
    margin-right: 150px;
}

.mr-155 {
    margin-right: 155px;
}

.mr-160 {
    margin-right: 160px;
}

.mr-165 {
    margin-right: 165px;
}

.mr-170 {
    margin-right: 170px;
}

.mr-175 {
    margin-right: 175px;
}

.mr-180 {
    margin-right: 180px;
}

.mr-185 {
    margin-right: 185px;
}

.mr-190 {
    margin-right: 190px;
}

.mr-195 {
    margin-right: 195px;
}

.mr-200 {
    margin-right: 200px;
}

/*-- Padding Top --*/
.pt-5 {
    padding-top: 5px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-25 {
    padding-top: 25px;
}

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

.pt-35 {
    padding-top: 35px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-45 {
    padding-top: 45px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-55 {
    padding-top: 55px;
}

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

.pt-65 {
    padding-top: 65px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-75 {
    padding-top: 75px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-85 {
    padding-top: 85px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-95 {
    padding-top: 95px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-105 {
    padding-top: 105px;
}

.pt-110 {
    padding-top: 110px;
}

.pt-115 {
    padding-top: 115px;
}

.pt-120 {
    padding-top: 120px;
}

.pt-125 {
    padding-top: 125px;
}

.pt-130 {
    padding-top: 130px;
}

.pt-135 {
    padding-top: 135px;
}

.pt-140 {
    padding-top: 140px;
}

.pt-145 {
    padding-top: 145px;
}

.pt-150 {
    padding-top: 150px;
}

.pt-155 {
    padding-top: 155px;
}

.pt-160 {
    padding-top: 160px;
}

.pt-165 {
    padding-top: 165px;
}

.pt-170 {
    padding-top: 170px;
}

.pt-175 {
    padding-top: 175px;
}

.pt-180 {
    padding-top: 180px;
}

.pt-185 {
    padding-top: 185px;
}

.pt-190 {
    padding-top: 190px;
}

.pt-195 {
    padding-top: 195px;
}

.pt-200 {
    padding-top: 200px;
}

/*-- Padding Bottom --*/
.pb-5 {
    padding-bottom: 5px;
}

.pb-10 {
    padding-bottom: 10px;
}

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

.pb-20 {
    padding-bottom: 20px;
}

.pb-25 {
    padding-bottom: 25px;
}

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

.pb-35 {
    padding-bottom: 35px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-45 {
    padding-bottom: 45px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-55 {
    padding-bottom: 55px;
}

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

.pb-65 {
    padding-bottom: 65px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-75 {
    padding-bottom: 75px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-85 {
    padding-bottom: 85px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-95 {
    padding-bottom: 95px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-105 {
    padding-bottom: 105px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pb-115 {
    padding-bottom: 115px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pb-125 {
    padding-bottom: 125px;
}

.pb-130 {
    padding-bottom: 130px;
}

.pb-135 {
    padding-bottom: 135px;
}

.pb-140 {
    padding-bottom: 140px;
}

.pb-145 {
    padding-bottom: 145px;
}

.pb-150 {
    padding-bottom: 150px;
}

.pb-155 {
    padding-bottom: 155px;
}

.pb-160 {
    padding-bottom: 160px;
}

.pb-165 {
    padding-bottom: 165px;
}

.pb-170 {
    padding-bottom: 170px;
}

.pb-175 {
    padding-bottom: 175px;
}

.pb-180 {
    padding-bottom: 180px;
}

.pb-185 {
    padding-bottom: 185px;
}

.pb-190 {
    padding-bottom: 190px;
}

.pb-195 {
    padding-bottom: 195px;
}

.pb-200 {
    padding-bottom: 200px;
}

/*-- Padding left --*/
.pl-0 {
    padding-left: 0px;
}

.pl-5 {
    padding-left: 5px;
}

.pl-10 {
    padding-left: 10px;
}

.pl-15 {
    padding-left: 15px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-25 {
    padding-left: 25px;
}

.pl-30 {
    padding-left: 30px;
}

.pl-35 {
    padding-left: 35px;
}

.pl-40 {
    padding-left: 40px;
}

.pl-45 {
    padding-left: 45px;
}

.pl-50 {
    padding-left: 50px;
}

.pl-55 {
    padding-left: 55px;
}

.pl-60 {
    padding-left: 60px;
}

.pl-65 {
    padding-left: 65px;
}

.pl-70 {
    padding-left: 70px;
}

.pl-75 {
    padding-left: 75px;
}

.pl-80 {
    padding-left: 80px;
}

.pl-85 {
    padding-left: 85px;
}

.pl-90 {
    padding-left: 90px;
}

.pl-100 {
    padding-left: 100px;
}

.pl-105 {
    padding-left: 105px;
}

.pl-110 {
    padding-left: 110px;
}

.pl-115 {
    padding-left: 115px;
}

.pl-120 {
    padding-left: 120px;
}

.pl-125 {
    padding-left: 125px;
}

/*-- Padding right --*/
.pr-0 {
    padding-right: 0px;
}

.pr-5 {
    padding-right: 5px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-15 {
    padding-right: 15px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-25 {
    padding-right: 25px;
}

.pr-30 {
    padding-right: 30px;
}

.pr-35 {
    padding-right: 35px;
}

.pr-40 {
    padding-right: 40px;
}

.pr-45 {
    padding-right: 45px;
}

.pr-50 {
    padding-right: 50px;
}

.pr-55 {
    padding-right: 55px;
}

.pr-60 {
    padding-right: 60px;
}

.pr-65 {
    padding-right: 65px;
}

.pr-70 {
    padding-right: 70px;
}

.pr-75 {
    padding-right: 75px;
}

.pr-80 {
    padding-right: 80px;
}

.pr-85 {
    padding-right: 85px;
}

.pr-90 {
    padding-right: 90px;
}

.pr-95 {
    padding-right: 95px;
}

.pr-100 {
    padding-right: 100px;
}

.pr-105 {
    padding-right: 105px;
}

/* Background Color */
.gray-bg {
    background: #f5f8ff;
}

.white-bg {
    background: #fff;
}

.black-bg {
    background: #222;
}

/* Color */
.white {
    color: #fff;
}

.black {
    color: #222;
}

/* black overlay */
[data-overlay] {
    position: relative;
}

[data-overlay]::before {
    background: #000757;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

[data-overlay="3"]::before {
    opacity: 0.3;
}

[data-overlay="4"]::before {
    opacity: 0.4;
}

[data-overlay="5"]::before {
    opacity: 0.5;
}

[data-overlay="6"]::before {
    opacity: 0.6;
}

[data-overlay="7"]::before {
    opacity: 0.7;
}

[data-overlay="8"]::before {
    opacity: 0.8;
}

[data-overlay="9"]::before {
    opacity: 0.9;
} /*# sourceMappingURL=common.css.map */
