/* google fonts */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Diphylleia&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");
:root {
    --main: #c6242c;
    --black: #fff;
    --white: #000;
}
*::selection {
    background-color: var(--main);
    color: var(--white);
}
html::-webkit-scrollbar-thumb {
    background-color: var(--main);
}
html::-webkit-scrollbar {
    width: 10px;
}
html::-webkit-scrollbar-track {
    background-color: rgb(82, 65, 65);
}
body {
    font-family: "Open Sans", sans-serif;
    font-size: 0.9em;
    /* background: linear-gradient(rgb(24, 22, 22), #6a6d6e) !important; */
    overflow-x: hidden;
    /* cursor: none; */
}
/* scroll top button */
.scrollToTop {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 32px;
    width: 50px;
    height: 50px;
    /* padding:10px;  */
    background: var(--main);
    color: var(--white);
    text-decoration: none;
    z-index: 99999;
    position: fixed;
    bottom: 30px;
    left: 20px;
    display: none;
    border-radius: 5px;
}
.scrollToTop:hover {
    text-decoration: none;
}

/* custom cursor */
/* cursor-dot
cursor-outline */
/* .cursor-dot {
    width: 5px;
    height: 5px;
    background-color: var(--white);
}
.cursor-outline {
    width: 30px;
    height: 30px;
    border: 2px solid hsla(0, 0%, 100%, 0.5);
}
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: 100000000000;
    pointer-events: none;
} */
* {
    list-style: none;
    text-decoration: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.content a {
    color: var(--white);
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}
.content h5 {
    font-size: 25px;
    font-weight: bold;
    color: var(--white);
}
.content a:hover {
    letter-spacing: 2px;
    color: var(--main);
}
/* navbar */
.top-nav {
    background-color: var(--main);
    padding-top: 5px;
    padding-bottom: 5px;
}
.top-nav p {
    margin-bottom: 0;
    display: inline-block;
    margin-right: 16px;
    color: white;
}
.top-nav i,
.top-nav span {
    vertical-align: middle;
}
.social-links a {
    width: 34px;
    height: 34px;
    background-color: rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    border-radius: 50%;
}
.social-links a:hover {
    background-color: white;
    color: var(--main);
}
.navbar {
    padding: 15px;
    background: #151517 !important;
    transition: all 0.4s ease-in-out;
}
.navbar.scroll {
    background: rgb(49, 45, 45) !important;
    padding: 8px;
}
.navbar .nav-link.active {
    background-color: var(--main);
    border-radius: 5px;
    padding: 7px 20px !important;
}
.navbar-brand {
    color: #c6242c;
    /* font-weight: bold; */
    font-size: 18px;
}
.navbar .btn-danger {
    background-color: var(--main) !important;
}
.dropdown-menu {
    background-color: #222;
    top: 50px !important;
}
.dropdown-menu a {
    color: var(--white);
}

.search-box input[type="search"] {
    width: 50px;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
}

/* When the input field gets focus, change its width to 100% */
.search-box input[type="search"]:focus {
    width: 90% !important;
    position: absolute;
    left: 5%;
    top: 70px;
}
/* .search-box {
    margin-left: auto !important;
    margin-right: auto;
    height: 40px;
    display: flex;
    cursor: pointer;
    padding: 10px 20px;
    background-color: white;
    border-radius: 30px;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    position: absolute;
    transition: all 0.5s ease-in-out;
}
.search-box:hover input {
    width: 90%;
    position: absolute;
    left: 5%;
} */
.search-box button {
    position: absolute;
    top: 0;
    width: 0;
    outline: none;
    border: none;
    font-weight: 500;
    transition: 0.8s;
    background-color: transparent;
}
/* ads */
.alert-ads {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 10000000000000000000;
    background: var(--black);
    display: flex;
    justify-content: center;
    /* align-items: center; */
    color: white;
    border-color: var(--black);
}
.btn-close {
    background-color: var(--main) !important;
}
/* header */
header {
    /* background: url("../img/car6.jpg") no-repeat center center; */
    background-size: cover;
    position: relative;
}
/* header::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.895);
    top: 0;
    left: 0;
} */
.carousel button {
    background-color: #000;
    color: white;
    width: 30px;
    height: 60px;
    top: calc(50% - 30px);
}
.carousel-inner h2 {
    font-size: 30px;
    font-family: var(--sm-font);
}
.carousel-inner h5 {
    font-size: 15px;
}
.carousel-inner .btn {
    border-color: white !important;
}
.carousel-inner .btn:hover {
    border-color: var(--main) !important;
}
.btn:not(.nav-btns button) {
    background-color: white;
    color: var(--main);
    font-weight: bold;
    padding: 0 !important;
    border: 1px solid var(--main);
}
.btn:not(.nav-btns button) img {
    height: 220px;
}
.btn:not(.nav-btns button):hover {
    background-color: var(--main);
    color: white;
    border: 1px solid var(--main);
}
.title h2 {
    font-size: 18px !important;
    margin-bottom: 40px !important;
}
.title h2,
.btn {
    position: relative;
    border: 0;
    font-size: 14px;
    font-weight: 700;
    margin: 0 1.563rem;
    padding: 0.938rem 1.563rem;
    text-transform: uppercase;
    background-color: var(--main);
    color: #fff;
    z-index: 1;
    transition: 0.3s all ease-in-out;
}
.btn:hover {
    background-color: #222;
}
.title h2::after {
    content: "";
    position: absolute;
    top: 0;
    right: -1.563rem;
    border-top: 65px solid var(--main);
    border-right: 1.563rem solid transparent;
    width: 0;
    height: 0;
    transition: 0.3s all ease-in-out;
}
.title h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: -1.563rem;
    border-top: 65px solid var(--main);
    border-left: 1.563rem solid transparent;
    width: 0;
    height: 0;
    transition: 0.3s all ease-in-out;
}
@media only screen and (max-width: 600px) {
    .form-label,
    body input ,
    body textarea ,
    body ::placeholder ,
    body p ,
    body h1 ,
    body h2 ,
    body h3 ,
    body h4 ,
    body h5 ,
    body h6 {
        font-size: 90% !important;
    }
    .ad_img {
        width: 100%;
        height: 60%;
    }
    .alert-ads img {
        position: absolute;
        top: 20%;
        left: 0;
        bottom: 0;
        right: 0;
    }
}
/* brands */
.brands {
    background: var(--black);
    border-top: 1px solid var(--main);
    border-bottom: 1px solid var(--main);
}
.brands .swiper {
    padding: 30px;
    width: 100%;
    height: 100%;
}

.brands .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 195px;
    width: 200px;
    padding: 10px 0 0 0;
    overflow: hidden;
    box-shadow: 10px 10px 10px -10px rgba(0, 0, 0, 0.2),
        inset 10px 10px 10px -10px rgba(0, 0, 0, 0.7);
}

.brands .swiper-slide a {
    text-decoration: none;
}
.brands .swiper-slide h6 {
    font-size: 12px;
    height: 20px;
}
.image-container {
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: center center !important;
    height: 135px;
    width: 135px;
}
.full-image {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    object-fit: contain; /* or object-fit: contain; depending on your requirement */
}
/* categories */
.categories {
    /* margin: 100px auto; */
    background: var(--black);
    padding: 100px 0;
}
.categories .swiper {
    width: 100%;
    padding-top: 50px;
    /* padding-bottom: 150px; */
    height: 100%;
}

.categories .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 350px;
    background: #423738;
    /* -webkit-box-reflect: below 1px
    linear-gradient(transparent, transparent, #0002, #0004); */
}

.categories .swiper-slide img {
    display: block;
    width: 100%;
    height: 300px;
}
/* New Products */
.new {
    padding-top: 50px;
    padding-bottom: 70px;
    background: var(--black);
}
.new .box {
    background-color: #fff;
    box-shadow: 10px 10px 10px -10px rgba(0, 0, 0, 0.2),
        inset 10px 10px 10px -10px rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    height: 320px;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.new .box:hover {
    /* background: linear-gradient(45deg, #423738, #5c5353); */
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.box-content h6 {
    height: 50px;
}
/* trending */
.trending {
    position: relative;
    padding: 70px 0 !important;
    /* background: url("../img/car6.jpg") no-repeat center center; */
    background-size: cover !important;
    background-attachment: fixed;
    z-index: 100 !important;
    /* background: linear-gradient(rgba(24, 22, 22, 0.385), #6a6d6e) !important; */
}
.trending .box {
    box-shadow: 10px 10px 10px -10px rgba(0, 0, 0, 0.2),
        inset 10px 10px 10px -10px rgba(0, 0, 0, 0.7);
    padding: 20px 10px;
    border-radius: 10px;
    width: 100%;
    /* text-align: center; */
    transition: all 0.3s ease-in-out !important;
    background-color: #fff;
    color: black;
}
.trending::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: #000000c1 !important; */
    z-index: -1;
}
/* .trending .box:hover {
    background: linear-gradient(45deg, #423738, #5c5353);
    cursor: pointer;
    color: var(--white);
} */
.trending .box img {
    height: 280px;
}
/* latest */
.latest {
    margin: 70px auto;
}
.latest .box {
    box-shadow: 10px 10px 10px -10px rgba(0, 0, 0, 0.2),
        inset 10px 10px 10px -10px rgba(0, 0, 0, 0.7);
    /* padding: 20px; */
    border-radius: 20px;
    height: 300px;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease-in-out;
    background-color: var(--black);
}
.latest .box:hover {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
/* footer */
footer {
    padding: 30px;
    background-color: var(--black);
    text-align: center;
}
footer a {
    color: var(--white);
    text-decoration: none;
}
/* ======================================
============= ABOUT US PAGE ============= 
=========================================
*/

/* ======================================
============= PRODUCT  PAGE ============= 
=========================================
*/
/* ======================================
============ CONTACT US PAGE ============ 
=========================================
*/
/* ======================================
============  DETAILS  PAGE  ============ 
=========================================
*/
.list-group .list-group-item {
    background: transparent !important;
    color: var(--white);
}
.product1 img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    /* margin-bottom: 50px; */
    width: 100%;
    height: 25rem;
    background-color: #6a6d6e;
}
.product2 img {
    display: block;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: #6a6d6e;
}
.product2 {
    width: 110px;
    height: 65px;
    text-align: center;
    display: flex;
    justify-content: center;
    padding: 5px;
    background-color: #6a6d6e;
    margin: 10px;
    position: relative;
    text-align: center;
}
.slider-nav {
    width: 80%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-arrow {
    display: none !important;
}
.contact-accordion {
    background-color: #6a6d6e;
}
.contact-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.contact-btn svg {
    width: 40px;
    height: 40px;
    color: var(--main);
}
.contact-btn svg:hover {
    animation-name: trin;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    transform: scale(1.5);
}
@keyframes trin {
    from {
        transform: rotate3d(0, 0, 1, 0deg);
    }
    20%,
    32%,
    44%,
    56%,
    68% {
        transform: rotate3d(0, 0, 1, 0deg);
    }
    23%,
    35%,
    47%,
    59%,
    71% {
        transform: rotate3d(0, 0, 1, 15deg);
    }
    26%,
    38%,
    50%,
    62%,
    74% {
        transform: rotate3d(0, 0, 1, 0deg);
    }
    29%,
    41%,
    53%,
    65%,
    77% {
        transform: rotate3d(0, 0, 1, -15deg);
    }
    80% {
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

/* ring phone button */
.ring-wrapper {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 999;
}
.coccoc-alo-ph-circle {
    width: 100px;
    height: 100px;
    top: 20px;
    left: 20px;
    position: absolute;
    background-color: transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid rgba(30, 30, 30, 0.4);
    opacity: 0.1;
    -webkit-animation: coccoc-alo-circle-anim 1.2s infinite ease-in-out;
    -moz-animation: coccoc-alo-circle-anim 1.2s infinite ease-in-out;
    -ms-animation: coccoc-alo-circle-anim 1.2s infinite ease-in-out;
    -o-animation: coccoc-alo-circle-anim 1.2s infinite ease-in-out;
    animation: coccoc-alo-circle-anim 1.2s infinite ease-in-out;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.coccoc-alo-phone {
    background-color: transparent;
    width: 100px;
    height: 100px;
    cursor: pointer;
    z-index: 200000 !important;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -webkit-transition: visibility 0.5s;
    -moz-transition: visibility 0.5s;
    -o-transition: visibility 0.5s;
    transition: visibility 0.5s;
    right: 150px;
    top: 30px;
}

.coccoc-alo-phone.coccoc-alo-green .coccoc-alo-ph-circle-fill {
    background-color: #75eb50;
    opacity: 0.75 !important;
}

.coccoc-alo-ph-circle-fill {
    width: 100px;
    height: 100px;
    top: 0;
    left: 0;
    position: absolute;
    background-color: #000;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: 0.1;
    -webkit-animation: coccoc-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -moz-animation: coccoc-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -ms-animation: coccoc-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -o-animation: coccoc-alo-circle-fill-anim 2.3s infinite ease-in-out;
    animation: coccoc-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.coccoc-alo-ph-img-circle {
    width: 60px;
    height: 60px;
    top: 20px;
    left: 20px;
    position: absolute;
    background: rgba(30, 30, 30, 0.1) url(../img/download.htm) no-repeat center
        center;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: 0.7;
    -webkit-animation: coccoc-alo-circle-img-anim 1s infinite ease-in-out;
    -moz-animation: coccoc-alo-circle-img-anim 1s infinite ease-in-out;
    -ms-animation: coccoc-alo-circle-img-anim 1s infinite ease-in-out;
    -o-animation: coccoc-alo-circle-img-anim 1s infinite ease-in-out;
    animation: coccoc-alo-circle-img-anim 1s infinite ease-in-out;
}

.coccoc-alo-phone.coccoc-alo-green .coccoc-alo-ph-img-circle {
    background-color: #75eb50;
}

.coccoc-alo-phone.coccoc-alo-green .coccoc-alo-ph-circle {
    border-color: #75eb50;
    opacity: 0.5;
}

.coccoc-alo-phone.coccoc-alo-green.coccoc-alo-hover .coccoc-alo-ph-circle,
.coccoc-alo-phone.coccoc-alo-green:hover .coccoc-alo-ph-circle {
    border-color: #75eb50;
    opacity: 0.5;
}

.coccoc-alo-phone.coccoc-alo-green.coccoc-alo-hover .coccoc-alo-ph-circle-fill,
.coccoc-alo-phone.coccoc-alo-green:hover .coccoc-alo-ph-circle-fill {
    background-color: rgba(117, 235, 80, 0.5);
    opacity: 0.75 !important;
}

.coccoc-alo-phone.coccoc-alo-green.coccoc-alo-hover .coccoc-alo-ph-img-circle,
.coccoc-alo-phone.coccoc-alo-green:hover .coccoc-alo-ph-img-circle {
    background-color: #75eb50;
}

.ring input[type="checkbox"] {
    display: none;
}
.ring .main {
    margin-top: -182px;
    background-color: #74eb509c;
    font-size: 30px;
    text-align: center;
    line-height: 40px;
    height: 180px;
    width: 60px;
    padding: 10px;
    border-radius: 30px;
    transform: scaleY(0);
    margin-left: auto;
    margin-right: auto;
    transform-origin: bottom;
    transition: transform 0.4s ease-in-out;
}
.ring .main .bi-whatsapp {
    color: #fff;
}
.ring .main .bi-telegram {
    color: #fff;
}
.ring .main .bi-facebook {
    color: #fff;
}
.ring .main .bi-whatsapp {
    color: #fff;
}
.ring .main .bi-telephone-fill {
    color: #fff;
}
.contact-button:checked ~ .main {
    transform: scale(1);
}
.main.show {
    transition: 0.3s;
    opacity: 0;
}
@-moz-keyframes coccoc-alo-circle-anim {
    0% {
        transform: rotate(0) scale(0.5) skew(1deg);
        opacity: 0.1;
    }
    30% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.5;
    }
    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.1;
    }
}

@-webkit-keyframes coccoc-alo-circle-anim {
    0% {
        transform: rotate(0) scale(0.5) skew(1deg);
        opacity: 0.1;
    }
    30% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.5;
    }
    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.1;
    }
}

@-o-keyframes coccoc-alo-circle-anim {
    0% {
        transform: rotate(0) scale(0.5) skew(1deg);
        opacity: 0.1;
    }
    30% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.5;
    }
    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.1;
    }
}

@keyframes coccoc-alo-circle-anim {
    0% {
        transform: rotate(0) scale(0.5) skew(1deg);
        opacity: 0.1;
    }
    30% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.5;
    }
    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.1;
    }
}

@-moz-keyframes coccoc-alo-circle-fill-anim {
    0% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.2;
    }
    100% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
}

@-webkit-keyframes coccoc-alo-circle-fill-anim {
    0% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.2;
    }
    100% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
}

@-o-keyframes coccoc-alo-circle-fill-anim {
    0% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.2;
    }
    100% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
}

@keyframes coccoc-alo-circle-fill-anim {
    0% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.2;
    }
    100% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
}

@-moz-keyframes coccoc-alo-circle-img-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    10% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }
    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }
    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    100% {
        transform: rotate(0) scale(1) skew(1deg);
    }
}

@-webkit-keyframes coccoc-alo-circle-img-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    10% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }
    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }
    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    100% {
        transform: rotate(0) scale(1) skew(1deg);
    }
}

@-o-keyframes coccoc-alo-circle-img-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    10% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }
    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }
    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    100% {
        transform: rotate(0) scale(1) skew(1deg);
    }
}

@keyframes coccoc-alo-circle-img-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    10% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }
    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }
    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    100% {
        transform: rotate(0) scale(1) skew(1deg);
    }
}

/* *************************
********* software *********
****************************/
.software {
    padding: 70px 20px;
}
.software .accordion-item:not(:last-child) {
    margin-bottom: 20px;
    border-bottom: none;
}
.software .accordion-header button:not(.collapsed) {
    background-color: var(--main);
    color: white;
    transition: all 0.5s ease;
    border-bottom: none;
}
.software .accordion-header button:not(.collapsed)::before {
    position: absolute;
    content: "\f068";
    font-weight: 900;
    font-family: "FontAwesome";
}
.software .accordion-header button:hover {
    background-color: var(--main);
    color: white;
}
.software .accordion-header button {
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px 30px !important;
    font-size: 18px;
    font-weight: 500;
    color: var(--black-500);
    margin: 0;
    transition: all 0.5s ease;
    position: relative;
}
.accordion-button::after {
    display: none;
}
.software .accordion-header button::before {
    position: absolute;
    content: "\f067";
    font-weight: 900;
    font-family: "FontAwesome";
    right: 20px;
}
.software .accordion-body {
    /* background-color: var(--black); */
    font-size: 16px;
    color: var(--black) !important;
    font-weight: 300;
    margin: 0 0 20px 0;
    line-height: 26px;
}
.software .accordion-body .list-group-item {
    color: var(--black);
}

.ad_close {
    z-index: 9999;
    height: 0px !important;
    width: 0px !important;
    border-radius: 50% !important;
}
.alert-dismissible .btn-close {
    background-color: black !important;
    border: 2px solid var(--main) !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (min-width: 900px) {
    .alert-ads {
        width: 50%;
        height: 80%;
        margin-left: auto;
        margin-right: auto;
        position: sticky;
        background: #0000007a;
        box-shadow: 10px 5px 25px rgba(255, 0, 0, 0.214);
    }
    .search-box input[type="search"] {
        width: 150px;
        -webkit-transition: width 0.4s ease-in-out;
        transition: width 0.4s ease-in-out;
    }
}
a {
    text-decoration: none !important;
}
