
@import "https://use.fontawesome.com/releases/v5.8.1/css/all.css";
@import "https://unpkg.com/flickity@2/dist/flickity.min.css";
@import "https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.css";
@import "https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css";
@import "../css/toastify.css";
@import "../css/owl.carousel.min.css";
@import "../intlTelInput/intlTelInput.min.css";
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap');

:root{
    --main-color : #0E5299;
    --main-color-2 : 199, 105, 249;

    --dark-color: rgba(63, 63, 63, 1);
    --normal-color: rgba(95, 95, 95, 1);
    --light-color: rgba(158, 158, 158, 1) ;

    --black-color: rgba(28, 28, 28, 1);
    --green-color: rgba(88, 183, 47, 1);
    --blue-color: rgba(3, 148, 203, 1);
    --red-color: rgba(217, 43, 31, 1);
    --yellow-color: rgba(232, 185, 6, 1);
    --purple-color: rgba(141, 39, 221, 1);
    --white-color: rgba(255, 255, 255, 1);

    --overly : rgba(28, 28, 28, 0.4);
    --shadow : 0px 2px 4px rgba(0, 56, 56, 0.2);
    --shadow-hover : 0 .5rem 1rem rgba(0,0,0,.15) ;
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;

    --facebook: rgba(39, 76, 175, 1);
    --twitter: rgba(22, 174, 232, 1);
    --youtube: rgba(217, 43, 31, 1);
    --linkedin: rgba(0, 118, 164, 1);
    --instagram: rgba(211, 64, 131, 1);
    --telegram: rgba(0, 136, 204, 1);
    --skype: rgb(0, 175, 240);
    --whatsapp : rgb(37, 211, 102);
}

h1, h2 ,h3 ,h4 ,h5, h6{
    font-family: 'Almarai', sans-serif;
}
html, body {
    font-family: 'Almarai', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--dark-color);
}

a{
    color: var(--dark-color);
}
a,a:hover {
    text-decoration: none;
    color: var(--main-color);
}
section{
    position: relative;
}

.bg-theme{
    background-color: var(--main-color);
}
.bg-green{
    background-color: var(--green-color);
}
.bg-blue{
    background-color: var(--blue-color);
}
.bg-red{
    background-color: var(--red-color);
}
.bg-yellow{
    background-color: var(--yellow-color);
}
.bg-purple{
    background-color: var(--purple-color);
}
.text-purple{
    color: var(--purple-color);
}
form.disabled{
    opacity: .75;
    pointer-events: none;
}
video, img{
    max-width: 100%;
}

/*------------------------------------------
    button
------------------------------------------*/

.btn{
    position: relative;
    overflow: hidden;
    padding: 0 2rem;
    height: 40px;
    line-height: 40px;
    border-radius: var(--radius-sm);
    transition: all ease-in-out .5s;
    outline: none !important;
    box-shadow: none !important;
}
.btn::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 25%;
    height: 100%;
    width: 50%;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transition: all ease-in-out 0.5s;
    transform: scale(5, 5);
}
.btn:active::after {
    padding: 0;
    margin: 0;
    opacity: .2;
    transition: 0s;
    transform: scale(0, 0);
}

.text-theme {
    color:  var(--main-color) !important;
}
.btn-theme{
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--white-color) !important;
}
.btn-theme:hover,
.btn-theme:focus{
    background-color: #0E5299;
}
.btn-outline-theme{
    background-color: var(--white-color);
    border-color: var(--main-color);
    color: var(--main-color) !important;
}
.btn-outline-theme:hover,
.btn-outline-theme:focus{
    background-color: var(--main-color);
    color: var(--white-color) !important;
}

.btn-purple{
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--white-color) !important;
}
.btn-purple:hover,
.btn-purple:focus{
    background-color: var(--main-color);
}
.btn-outline-theme{
    background-color: var(--white-color);
    border-color: var(--main-color);
    color: var(--main-color) !important;
}
.btn-outline-theme:hover,
.btn-outline-theme:focus{
    background-color: var(--main-color);
    color: var(--white-color) !important;
}

.menu-btn{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
}
.menu-btn .menu-btn-burger{
    width: 30px;
    height: 3px;
    background-color: var(--dark-color);
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
}
.menu-btn .menu-btn-burger::before,
.menu-btn .menu-btn-burger::after{
    position: absolute;
    content: "";
    width: 30px;
    height: 3px;
    background-color: var(--dark-color);
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
}
.menu-btn .menu-btn-burger::before{
    transform: translateY(-10px);
}
.menu-btn .menu-btn-burger::after{
    transform: translateY(10px);
}
.menu-btn:not(.collapsed) .menu-btn-burger{
    transform: translateX(-50px);
    background-color: transparent;
}
.menu-btn:not(.collapsed) .menu-btn-burger::before{
    transform: rotate(45deg) translate(35px, -35px);
}
.menu-btn:not(.collapsed) .menu-btn-burger::after{
    transform: rotate(-45deg) translate(35px, 35px);
}

/*------------------------------------------
    Navbar
------------------------------------------*/

.inner-page .navbar{
    background-color: rgb(var(--normal-color-2), .8);
}
.navbar{
    padding: 0;
    width: 100%;
    z-index: 999;
    background: #FFFFFF;
    box-shadow: 0px 1px 0px #DDDDDD;
    box-shadow: 0 3px 6px rgb(0, 0, 0, .16)
}
.navbar-container{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0;
}
.navbar-container .logo{
    /*width: 176px;*/
    /*height: 24px;*/
    display: block;
}
.navbar-container .logo img{
    height: 40px;
}

.navbar-container .navbar-active{
    display: flex;
    align-items: center;
}
.navbar-container .main-nav{
    gap: 2rem;
}
[dir="rtl"] .navbar-container .main-nav{
    gap: 3rem;
}
.navbar-container .main-nav .nav-link{
    color: var(--dark-color);
    position: relative;
    padding: 0;
    line-height: 40px;
    font-size: 16px;
    font-weight: 500;
    transition: all .35s ease-in;
    cursor: pointer;
}
.navbar-container .main-nav .nav-link:hover,
.navbar-container .main-nav .nav-link.active,
.navbar-container .main-nav .show>.nav-link{
    color: var(--main-color);
}
.navbar .dropdown-toggle::after{
    border: none;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f107";
    vertical-align: middle;
    margin-inline-start: .75rem;
}
.navbar-container .dropdown-menu{
    border-color: transparent;
    box-shadow: var(--shadow);
    border-radius: var(--radius-lg);
}
.navbar-container .dropdown-item {
    font-size: 14px;
    color: var(--normal-color);
    padding: .5rem 1rem;
}
.dropdown-item:hover,
.dropdown-item.active,
.dropdown-item:active {
    color: var(--main-color);
    /*background-color: rgb(var(--main-color), .1);*/
}

.dropdown:hover .dropdown-menu{
    display: block;
    left: 0;
}
[dir="ltr"] .dropdown:hover .dropdown-menu{
    left: auto;
    right: 0;
}
/*------------------------------------------
    header
------------------------------------------*/

header{
    padding: 2rem 0;
    position: relative;
}
.owl-slider {
    position: relative;
}
.owl-slider .owl-box{
    position: relative;
    display: block;
    height: 565px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.owl-slider .owl-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.owl-slider .owl-box .header-box{
    position: absolute;
    width: 278px;
    height: 100%;
    background-color: rgba(28, 28, 28, 0.6);
    top: 0;
    left: 0;
    color: var(--white-color);
    padding: 2rem;
    display: flex;
    align-items: center;
}
.owl-slider .owl-box .header-box .category{
    font-size: 12px;
    font-weight: 600;
    transition: all 1s ease;
    transform: translateY(2rem);
    color: var(--white-color);
    opacity: 0;
}
.owl-slider .owl-box .header-box .title{
    font-size: 24px;
    transition: all 1.5s ease;
    font-weight: 700;
    color: var(--white-color);
    transform: translateY(2rem);
    opacity: 0;
}
.owl-slider .owl-box .header-box .info{
    font-size: 16px;
    font-weight: 400;
    transition: all 2s ease;
    transform: translateY(2rem);
    color: var(--white-color);
    opacity: 0;
}

.owl-slider .owl-item.active .owl-box .header-box .title,
.owl-slider .owl-item.active .owl-box .header-box .info,
.owl-slider .owl-item.active .owl-box .header-box .category{
    transform: translateY(0);
    opacity: 1;
}
.owl-slider.owl-theme .owl-dots{
    position: absolute;
    margin-top: 0;
    left: 2rem;
    bottom: 2rem;
    z-index: 1;
}
.owl-slider.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background-color: var(--white-color);
    transition: all .3s ease;
}
.owl-slider.owl-theme .owl-dots .owl-dot.active span,
.owl-slider.owl-theme .owl-dots .owl-dot:hover span {
    background-color: var(--main-color);
}

[dir="rtl"] .owl-slider.owl-theme .owl-dots{
    left: auto;
    right: 2rem;
}
[dir="rtl"] .owl-slider .owl-box .header-box{
    left: auto;
    right: 0;
}

/*----------------------
    card blog
----------------------*/

.card-blog{
    border-color: transparent;
    box-shadow: var(--shadow);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}
.card-blog .pic{
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.card-blog .pic::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--overly);
    z-index: 0;
    transition: all 0.3s ease;
    z-index: 2;
}
.card-blog .pic .category{
    position: absolute;
    top: 0;
    left: 0;
    min-width: 114px;
    padding: .25rem;
    text-align: center;
    border-top-left-radius: var(--radius-lg) ;
    border-bottom-right-radius: var(--radius-lg) ;
    color: var(--white-color);
    display: inline-block;
    font-weight: 600;
    font-size: 12px;
    z-index: 3;
}
.card-blog .pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}
.card-blog .icon{
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    cursor: pointer;
}
.card-blog .icon img{
    width: 52px;
    height: 52px;
}
.card-blog .title{
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    transition: all 0.3s ease;
    height: 56px;
    overflow: hidden;
}
.card-blog .info{
    font-size: 14px;
    font-weight: 400;
    height: 48px;
    overflow: hidden;
    color: var(--normal-color);
    margin-bottom: .5rem;
}
.card-blog .action{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.card-blog .date{
    font-size: 12px;
    font-weight: 600;
    color: var(--light-color);
    margin-bottom: 0;
}
.card-blog .date i{
    position: relative;
    top: -3px;
}
.card-blog .read-more{
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0;
    text-transform: capitalize;
}
.card-blog .read-more i{
    color: var(--main-color);
    margin-inline-start: .5rem;
    display: inline-block;
    position: relative;
    top: -3px;
}
[dir="rtl"] .card-blog .read-more i{
    transform: rotateY(-180deg);
}
.card-blog:hover{
    box-shadow: var(--shadow-hover);
}
.card-blog:hover .title{
    color: var(--main-color);
}

.card-blog:hover .pic img{
    transform: scale(1.05);
}

.card-blog:hover .pic::before{
    background-color: rgb(var(--main-color-2), .1);
}

[dir="rtl"] .card-blog .pic .category{
    left: auto;
    right: 0;
    border-radius: 0;
    border-top-right-radius: var(--radius-lg) ;
    border-bottom-left-radius: var(--radius-lg) ;
}

.ads-box{
    display: block;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-height: 800px;
}

.ads-box img{
    width: 100%;
}
/*------------------------------------------
    blog-fillter
------------------------------------------*/

.blog-fillter{
    gap: 1rem;
    margin-bottom: 2rem;
}
.blog-fillter .nav-link{
    border-radius: var(--radius-md);
    border: 1px solid var(--dark-color);
    color: var(--dark-color);
    font-size: 12px;
    font-weight: 600;
}
.blog-fillter .nav-link:hover{
    border: 1px solid rgb(var(--main-color-2), .1);
    background-color: rgb(var(--main-color-2), .1);
    color: var(--main-color);
}
.blog-fillter .nav-link:focus,
.blog-fillter .nav-link.current{
    border: 1px solid var(--main-color);
    background-color: var(--main-color);
    color: var(--white-color);
}

/*------------------------------------------
    social-media-btn
------------------------------------------*/

.sidebar-box .title{
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 2rem;
    padding: 0;
}
.sidebar-box .info{
    font-size: 16px;
    font-weight: 400;
    color: var(--light-color);
    margin-bottom: 2rem;
    padding: 0;
}
.social-media-btn{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}
.social-media-btn:hover{
    box-shadow: var(--shadow-hover);
}
.social-media-btn.facebook{
    background-color: var(--facebook);
}
.social-media-btn.twitter{
    background-color: var(--twitter);
}
.social-media-btn.youtube{
    background-color: var(--youtube);
}
.social-media-btn.instagram{
    background-color: var(--instagram);
}
.social-media-btn.linkedin{
    background-color: var(--linkedin);
}
.social-media-btn.whatsapp{
    background-color: var(--whatsapp);
}
.social-media-btn.skype{
    background-color: var(--skype);
}
.social-media-btn.telegram{
    background-color: var(--telegram);
}

.social-media-btn .title{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
    color: var(--white-color);
    margin-inline-start: 2rem;
}
.social-media-btn i{
    position: absolute;
    width: 80px;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    font-size: 70px;
    color: var(--white-color);
    opacity: 0.25;
    text-align: center;
    transition: all 0.3s ease;
}
.social-media-btn:hover i{
    transform: translateY(-50%) scale(1.1) rotate(-4deg);
    opacity: 0.8;
}
[dir="rtl"] .social-media-btn i{
    right: auto;
    left: 1rem;
}

/*------------------------------------------
    Footer
------------------------------------------*/

.footer{
    background-color: var(--black-color);
    padding: 2rem 0 1rem;
    color: #fff;
}

.mail-list .info{
    display: flex;
}
.mail-list .content .title{
    font-size: 28px;
    font-weight: 600;
    font-family: 'Almarai', sans-serif;
    margin-bottom: 0.25rem;
}
.mail-list .content .info{
    font-size: 16px;
    font-weight: 600;
    font-family: 'Almarai', sans-serif;
    margin-bottom: 0;
}

.footer-list{
    padding: 1rem 0;
}
.footer-list .nav-link{
    font-size: 16px;
    font-weight: 700;
    font-family: 'Almarai', sans-serif;
    color: var(--white-color);
}
.footer-list .nav-link:hover{
    color: var(--main-color);
}

.copyright{
    padding: 1rem 0 0;
    border-top: 1px solid #7e7e7e;
    display: block;
    align-items: center;
}
.copyright .copyright-text{
    font-size: 14px;
    font-family: 'Almarai', sans-serif;
}
.footer .nav-social-media a{
    color: #fff;
}
.footer .nav-social-media a:hover{
    color: var(--main-color);
}

/*------------------------------------------
    Form
------------------------------------------*/

.form .form-group{
    margin-bottom: 1rem;
}
.form .form-control{
    min-height: 40px;
}
.search-box .title{
    text-align: center;
    color: var(--light-color);
    font-size: 32px;
    font-weight: 700;
}
.search-box .title span{
    color: var(--dark-color);
}
.form-search{
    position: relative;
    margin-bottom: 2rem;
}
.form-search .form-control{
    padding-inline-end: 60px;
    border-radius: var(--radius-md);
    border-color: rgba(0, 72, 116, 0.32);
}
.form-search .btn{
    position: absolute;
    top: -2px;
    right: 0;
    color: var(--normal-color);
}
[dir="rtl"] .form-search .btn{
    right: auto;
    left: 0;
}

.form-check-input:checked {
    box-shadow: none;
    background-color: var(--main-color);
    border-color: var(--main-color);
}

/*------------------------------------------
    post-view-head
------------------------------------------*/

.post-view-head{
    text-align: center;
    margin-bottom: 3rem;
}
.post-view-head .category{
    border-top-left-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    display: inline-block;
}
[dir="rtl"] .post-view-head .category{
    border-radius: 0;
    border-top-right-radius: var(--radius-lg);
    border-bottom-left-radius: var(--radius-lg);
}

.post-view-head .title{
    font-size: 40px;
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 1rem;
}
.post-view-head .info{
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: .5rem;
}
.post-view-head .hr{
    width: 48px;
    height: 4px;
    margin: 1rem auto;
    background-color: var(--dark-color);
    display: inline-block;
}
.post-view-head .nav{
    justify-content: center;
    align-items: center;
}
.post-view-head .nav .nav-item{
    position: relative;
}
.post-view-head .nav .nav-item::after{
    position: absolute;
    content: "";
    width: 1px;
    height: 12px;
    background-color: var(--dark-color);
    top: 50%;
    left: 0;
    transform: translateY(-30%);
}
[dir="rtl"] .post-view-head .nav .nav-item::after{
    left: auto;
    right: 0;
}
.post-view-head .nav .nav-item:first-child:after{
    display: none;
}
.post-view-head .nav .nav-link{
    padding: 0 1rem;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-color);
}
.post-view-head .nav .nav-link span{
    font-size: 12px;
    font-weight: 500;
    color: var(--light-color);
}

.post-view-pic{
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 3rem;
}
.post-view-pic *,
.post-view-pic img,
.post-view-pic img.main-pic{
    width: 100%;
}
.post-view-pic .icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    cursor: pointer;
}
.post-view-pic .content{
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2rem;
    width: 100%;
    z-index: 2;
    background-image: linear-gradient( rgba(0, 0, 0, 0)  0% , #000000 100%);
    color: var(--white-color);
}
[dir="rtl"] .post-view-pic .content{
    left: auto;
    right: 0;
}
.post-view-pic .content .title{
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 0;
}
.post-view-pic .content .job{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}
.post-view-pic .content .info{
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}

.post-view-share{
    border-top: 1px solid #9E9E9E;
    padding-top: 1.5rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 1.5rem;
}
.post-view-share .title{
    font-size: 16px;
    font-weight: 400;
    color: var(--dark-color);
}
.post-view-share .nav .nav-link{
    color: var(--main-color);
    padding: .5rem;
    transition: all 0.3s ease;
}
.post-view-share .nav .nav-link:hover{
    color: var(--dark-color);
    transform: scale(1.1);
}

.post-view-reaction{
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid #E5E5E5;
}
.post-view-reaction .title{
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-color);
}
.post-view-reaction-container{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.post-view-reaction-container .reaction-box{
    text-align: center;
    cursor: pointer;
}
.post-view-reaction-container .reaction-box .pic{
    text-align: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}
.post-view-reaction-container .reaction-box .title{
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: capitalize;
    transition: all 0.3s ease;
}
.post-view-reaction-container .reaction-box:hover .pic{
    transform: scale(1.1) rotate(5deg);
}
.post-view-reaction-container .reaction-box:hover .title{
    color: var(--main-color);
}
.post-view-reaction-container .reaction-box .count{
    background-color: #F7F7F7;
    border-radius: var(--radius-lg);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    min-width: 110px;
    padding: 4px;
}

.post-view-nav{
    display: flex;
    justify-content: space-between;
}
.post-view-nav .post-view-prev,
.post-view-nav .post-view-next{
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: var(--black-color);
    font-size: 16px;
    font-weight: 500;
}
.post-view-nav .post-view-prev:hover,
.post-view-nav .post-view-next:hover{
    color: var(--main-color);
}
.post-view-nav i{
    line-height: 0.5px;
}
[dir="rtl"] .post-view-nav i{
    transform: rotate(-180deg);
}

.leave-comment .title{
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.leave-comment .info{
    font-weight: 400;
    font-size: 16px;
    color: var(--light-color);
    margin-bottom: 1rem;
}
.leave-comment .form-control{
    border-radius: var(--radius-sm);
    box-shadow: inset 0px 0px rgba(0, 72, 116, 0.32);
}
.leave-comment textarea.form-control{
    min-height: 96px;
}
.leave-comment .form-check-label{
    color: var(--light-color) !important;
}
.leave-comment .btn-submit{
    font-size: 16px;
    font-weight: 600;
    padding: 0 1rem;
}

/*------------------------------------------
    author box
------------------------------------------*/

.author-box{
    display: flex;
}
.author-box .pic{
    width: 68px;
    height: 68px;
    border-radius: 50%;
    margin-inline-end: 1rem;
    overflow: hidden;
}
.author-box .pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.author-box .content .author-name{
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: .5rem;
}
.author-box .content .nav{
    justify-content: flex-start;
}
.author-box .content .nav .nav-item::after{
    display: none;
}
.author-box .content .nav .nav-item .nav-link{
    color: var(--light-color);
    padding: 0 .5rem;
}
.author-box .content .nav .nav-item:first-child .nav-link{
    padding-inline-start: 0;
}

.modal-backdrop {
    background-color: var(--purple-color);
    opacity: .80;
}

/*------------------------------------------
    header-solution
------------------------------------------*/

.header-solution{
    position: relative;
    background: #fff;
    min-height: 800px;
    width: 100%;
    display: flex;
    align-items: center;
}
.header-solution::after{
    position: absolute;
    content: "";
    min-height: 800px;
    width: 100%;
    top: -50px;
    left: 0;
    background-image: url(../img/overlay.png);
    background-size: cover;
    z-index: 0;
}
[dir="rtl"] .header-solution::after{
    background-image: url(../img/overlay-rtl.png);
}

.header-solution-box,
.header-solution-pic{
    position: relative;
    z-index: 2;
}

.header-solution-box .title{
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white-color);
}
.header-solution-box .info{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--white-color);
}
.header-solution-box .btn-purple{
    color: var(--purple-color) !important;
    background-color: var(--white-color);
    border-color: var(--white-color);
}
.header-solution-box .btn-purple:hover{
    color: var(--white-color) !important;
    border-color: var(--white-color);
    background-color: transparent;
}

.solution-info .title{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}
.solution-info .info{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 1rem;
    color: var(--dark-color);
    text-align: justify;
}
.solution-info .info-bold{
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 1rem;
    color: var(--normal-color);
    text-align: justify;
}

.solution-pic{
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.solution-pic .pic{
    position: relative;
}
.solution-pic .pic .icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.solution-pic .pic .main-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*
    solution-box
*/

.solution-box{
    display: block;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: 0px 12px 20px 0px rgba(0, 0, 0, 0.12);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}
.solution-box .pic{
    width: 72px;
    height: 72px;
    line-height: 72px;
    border-radius: var(--radius-lg);
    background-color: rgba(249, 241, 255, 1);
    margin: 0 auto 1rem;
}
.solution-box .title{
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 1rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
}
.solution-box .info{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 1rem;
    color: var(--dark-color);
}
.solution-box .info{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 1rem;
}

.solution-box:hover{
    transform: translateY(-.5rem);
}
.solution-box:hover .title{
    color: var(--main-color);
}

/*------------------------------------------
    solution-approach
------------------------------------------*/

.solution-approach{
    position: relative;
    display: block;
    padding: 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgb(var(--main-color-2), .5);
    background-color: rgb(var(--main-color-2), .1);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.solution-approach .head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.solution-approach .head .icon{
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.solution-approach .head .icon img{
    max-width: 60px;
    max-height: 60px;
}
.solution-approach .head .number{
    font-size: 52px;
    line-height: 60px;
    font-weight: 400;
    color: rgb(var(--main-color-2), .5);
}
.solution-approach .content .info{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--normal-color);
}

.solution-approach:hover{
    transform: translateY(-.5rem);
    background-color: rgb(var(--main-color-2));
    box-shadow: var(--shadow-hover);
}

.solution-approach:hover .head .number,
.solution-approach:hover .content .info{
    color: var(--white-color);
}
.solution-approach:hover .head .icon{
    background-color: var(--white-color);
}


/*------------------------------------------
   testimonials-box
------------------------------------------*/

.testimonials-box{
    width: 80%;
    position: relative;
    background: rgba(235, 249, 255, 0.2);
    border: 1px solid #9DE4FF;
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    margin-inline: 0 1rem;
}
.testimonials-box::before{
    position: absolute;
    content: "";
    top: 1rem;
    left: 1rem;
    width: 110px;
    height: 80px;
    background-image: url(../img/qt.svg);
    background-repeat: no-repeat;
}
.testimonials-box::after{
    position: absolute;
    content: "";
    bottom: 1rem;
    right: 1rem;
    width: 110px;
    height: 80px;
    background-image: url(../img/qb.svg);
    background-repeat: no-repeat;
}
[dir="rtl"] .testimonials-box::before{
    left: auto;
    right: 1rem;
}
[dir="rtl"] .testimonials-box::after{
    right: auto;
    left: 1rem;
}
.testimonials-box .name{
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    color: var(--dark-color);
    margin-bottom: 0;
}
.testimonials-box .info{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--light-color);
    margin: 1.5rem 0;
}
.testimonials-box .nav-star{
    justify-content: center;
    color: var(--yellow-color);
}

/*------------------------------------------
   partner-box
------------------------------------------*/

.partner-box{
    padding: 1rem;
    width: 20%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}
.partner-box img{
    width: auto !important;
    max-width: 100%;
    max-height: 70px;
}
@media (max-width: 786px){
    .partner-box{
        padding: 1rem;
        width: 30%;
    }
}
@media (max-width: 420px){
    .partner-box{
        padding: 1rem;
        width: 40%;
    }
}

/*------------------------------------------
    solution-feature
------------------------------------------*/

.solution-feature{
    position: relative;
    display: block;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: #EBF9FF;
    border: 1px solid #9DE4FF;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.solution-feature .head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.solution-feature .head .icon{
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.solution-feature .head .icon img{
    max-width: 60px;
    max-height: 60px;
}
.solution-feature .head .number{
    font-size: 52px;
    line-height: 60px;
    font-weight: 400;
    color: #9DE4FF;
}
.solution-feature .content .info{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--normal-color);
}

.solution-feature:hover{
    transform: translateY(-.5rem);
    background-color: var(--blue-color);
    box-shadow: var(--shadow-hover);
}

.solution-feature:hover .head .number,
.solution-feature:hover .content .info{
    color: var(--white-color);
}
.solution-feature:hover .head .icon{
    background-color: var(--white-color);
}

.back-to-solution{
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    z-index: 3;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.back-to-solution i{
    display: inline-block;
    line-height: 15px;
}
[dir="rtl"] .back-to-solution i{
    transform: rotate(180deg);
}

/*------------------------------------------
    search-box
------------------------------------------*/

.search-box-input{
    position: relative;
    border-radius: 15px;
    border: 1px solid #2E333828;
}
.search-box-input .form-control{
    box-shadow: none !important;
    padding-inline-start: 50px !important;
}

.search-box-input .search-icon{
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    line-height: 35px;
    text-align: center;
}
[dir="rtl"] .search-box-input .search-icon{
    left: auto;
    right: 0;
}

/*------------------------------------------
   contact section
------------------------------------------*/

.contact-section .card{
    padding: 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(221, 221, 221, 1);
}
.contact-section .card .card-head{
    padding: 1rem;
}
.contact-section .card .card-head .title{
    color: var(--dark-color);
    font-size: 32px;
    font-weight: 700;
    line-height: 44px;
}
.contact-section .card .card-head .title-2{
    color: var(--dark-color);
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
}
.nav-address .nav-link{
    display: flex;
    align-items: flex-start;
    padding-inline-start: 0;
}
.nav-address .nav-link i{
    min-width: 35px;
    font-size: 20px;
    line-height: 1;
    color: var(--main-color);
}
.nav-address .nav-link span{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--dark-color);
}

.map-location-box{
    padding: .5rem 1rem;
    left: 246.5px;
    background: #EDEDED;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--normal-color);
    text-align: center;
    margin-inline-end: 1rem;
    margin-block-end: 1rem;
    transition: all .3s ease;
}
.map-location-box:hover{
    background: var(--main-color);
    color: var(--white-color);
}

/*------------------------------------------
    job section
------------------------------------------*/

.job-section .card{
    border-radius: var(--radius-sm);
    border: 1px solid rgba(221, 221, 221, 1);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}
.job-section .card .card-header,
.job-section .card .card-footer{
    padding: 1rem;
    border-radius: 0;
    background-color: transparent;
    border-color: rgba(221, 221, 221, 1);
}

.job-section .card .card-header .title{
    color: var(--main-color);
    font-size: 23px;
    font-weight: 700;
    line-height: 32px;
    margin: 0;
}

.job-section .card .card-body .info{
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.job-section .card .card-body .place{
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
}

.job-section .job-card .card:hover{
    transform: translateY(-.5rem);
    box-shadow: var(--shadow-hover);
}

.job-card{
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}
.job-card .job-carousel-box{

    display: block;
    min-width: calc(100% - 120px) !important;
}
.job-card .customPrevBtn,
.job-card .customNextBtn{
    display: block;
    min-width: 50px;
    text-align: center;
}
[dir="rtl"] .job-card .customPrevBtn,
[dir="rtl"] .job-card .customNextBtn{
    transform: rotate(180deg);
}

.btn-upload{
    border: 2px dashed #ddd;
    display: flex;
    align-items: center;
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.btn-upload .icon{
    min-width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-inline-end: 1px solid #ddd;
    font-size: 20px;
    margin-inline-end: 1rem;
}

.media-kit{
    display: flex;
    margin-bottom: 2rem;
}
.media-kit .pic{
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-inline-end: 1rem;
}
.media-kit .pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.media-kit .content .title{
    color: var(--dark-color);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}
.media-kit .content .info{
    color: var(--main-color);
    font-size: 12px;
    line-height: 16px;
}


/*------------------------------------------
    Error 404
------------------------------------------*/

.error-404{
    position: relative;
    background-image: url(../img/page-404.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.error-404::before{
    position: absolute;
    content: "";
    top: -20%;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/dots.svg);
    background-size: cover;
    z-index: 0;
}
.error-404-logo,
.error-404-pic,
.error-404-box{
    position: relative;
    z-index: 3;
}
.error-404-box .title{
    font-size: 40px;
    font-weight: 700;
    line-height: 52px;
    color: var(--dark-color);
    margin: 0;
}
.error-404-box .info{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--dark-color);
    margin: 1rem 0;
}

/*------------------------------------------
    page content
------------------------------------------*/

.page-content{
    /*background-color: #f5f5f5;*/
    /*background-image: url(../img/dots.png);*/
    background-size: contain;
    background-repeat: no-repeat;
}

.page-content section{
    padding: 5rem 0;
}
.page-content .section-title{
    margin-bottom: 2rem;
}
.page-content .section-title .title{
    color: var(--dark-color);
    font-weight: bold;
    font-size: 24px;
    line-height: 32px;
}

/*------------------------------------------
    header-label
------------------------------------------*/

.header-label{
    padding: 5rem 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background: radial-gradient(91.08% 826.56% at 0.94% 8.16%, #0E0F1A 0%, #671EA2 100%);
    min-height: 470px;
    display: flex;
    align-items: center;
}
.header-label .title{
    color: var(--white-color);
    font-size: 40px;
    font-weight: 700;
    line-height: 52px;
}
.header-label .info{
    margin-top: 2rem;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

/*------------------------------------------
    about-page
------------------------------------------*/

.about-page{
    background-color: #fff;
}
.about-page section{
    padding: 5rem 0;
}
.about-box{
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}
.about-box .pic{
    margin-inline-end: 1rem;
    min-width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}
.about-box .pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-box .content .title{
    color: var(--dark-color);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}
.about-box .content .info{
    color: var(--light-color);
    font-size: 16px;
    line-height: 24px;
}
.about-page .section-title .title{
    color: var(--dark-color);
    font-weight: bold;
    font-size: 32px;
    line-height: 44px;
}
.about-page .section-title .info{
    color: var(--normal-color);
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
}

/*------------------------------------------
    sponsor-box
------------------------------------------*/

.sponsor-section {
    /*background-color: #E5E5E5;*/
}
.sponsor-box{
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: #fff;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}
.sponsor-box img{
    width: auto;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}
.sponsor-box:hover{
    box-shadow: var(--shadow-hover);
}
.sponsor-box:hover img{
    transform: scale(.9);
}

/*------------------------------------------
    Login
------------------------------------------*/

.login {
    background-color: var(--main-color);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login .form{
    background-color: var(--white-color);
    padding: 10%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.login .form .form-group{
    margin-block-end: 2rem;
}
.login .form .form-control,
.login .form .btn{
    border-radius: var(--radius-lg);
}
.login .form .logo{
    text-align: center;
}
.login .header{
    text-align: center;
}
.login .header .title{
    font-size: 30px;
    font-weight: 600;
    color: var(--dark-color);
}
.login .header .info{
    font-size: 16px;
    color: var(--light-color);
}


/*------------------------------------------
    Responsive
------------------------------------------*/

@media (max-width: 1400px) and (min-width: 1200px) {
    .navbar-container .main-nav {
        gap: 1.5rem;
    }
}
@media (max-width: 1200px) {
    .navbar-collapse{
        position: fixed;
        z-index: 9;
    }
    .navbar-collapse.collapsing .navbar-nav {
        display: block;
        position: fixed;
        top: 0;
        bottom: 0;
        left: -300px;
        transition: all 0.2s ease;
        justify-content: start !important;
        height: 100%;
        overflow-y: scroll;
    }
    .navbar-container .main-nav{
        gap: 0;
    }
    .navbar-collapse.show .navbar-nav {
        background-color: #fff;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        flex-direction: column;
        height: auto;
        width: 300px;
        padding: 1rem;
        transition: left 0.35s ease;
        box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
        z-index: 99;
        overflow-y: scroll;
    }

    [dir="rtl"] .navbar-collapse.collapsing .navbar-nav {
        left: auto;
        right: -300px;
    }
    [dir="rtl"] .navbar-collapse.show .navbar-nav {
        left: auto;
        right: 0;
        transition: right 0.35s ease;
    }

    .navbar-collapse.show .navbar-nav .nav-link{
        font-weight: bold;
        color: var(--dark-color);
        font-size: 16px;
        padding: 1rem;
        border-bottom: 1px solid #f1f1f1;
    }
    .navbar-collapse.show .navbar-nav .nav-link.active{
        color: var(--main-color);
    }
    .navbar-collapse.show .navbar-nav li:last-child .nav-link{
        border-bottom: none;
    }
}
@media (max-width: 1024px) {
}
@media (max-width: 992px){
    .owl-slider .owl-box {
        position: relative;
        display: block;
        height: 700px;
    }
    .owl-slider .owl-box .header-box{
        max-width: 100%;
        padding: 2rem;
    }
    .owl-slider .owl-box::before{
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }
    .owl-slider .owl-box .header-box {
        z-index: 2;
        max-width: 100%;
        width: 100%;
        padding: 2rem;
        right: 0;
        left: 0;
    }
    .owl-slider .owl-box .header-box .title{
        font-size: 60px;
        color: #fff;
    }
    .owl-slider .owl-box .header-box .info{
        max-width: 100%;
        font-size: 14px;
        color: #fff;
    }
}
@media (max-width: 780px) {
    .owl-slider .owl-box .header-box .title{
        font-size: 30px;
        color: #fff;
    }
}
@media (max-width: 600px) {
    .owl-slider .owl-box {
        position: relative;
        display: block;
        height: 600px;
    }

}
@media (max-width: 420px) {
    .btn{
        padding: 0px 1rem;
    }
    section{
        padding: 3rem 0;
    }
    .header-label .header-box .breadcrumb-item,
    .header-label .header-box .breadcrumb-item+.breadcrumb-item::before{
        font-size: 14px;
    }
    .header-label{
        height: 300px;
    }
    .navbar-container{
        display: block;
    }
    .navbar-container .logo{
        width: 200px;
        margin: 2rem auto;
    }
    .navbar-container .navbar-action{
        display: flex;
        width: 100%;
        justify-content: space-evenly;
    }
    .mail-list .content .title {
        font-size: 24px;
    }
}

@media (min-width: 768px) {
    .animate {
        animation-duration: 0.3s;
        -webkit-animation-duration: 0.3s;
        animation-fill-mode: both;
        -webkit-animation-fill-mode: both;
    }
}
@keyframes slideIn {
    0% {
        transform: translateY(2rem);
        opacity: 0;
    }

    100% {
        transform: translateY(0rem);
        opacity: 1;
    }

    0% {
        transform: translateY(2rem);
        opacity: 0;
    }
}

@-webkit-keyframes slideIn {
    0% {
        -webkit-transform: transform;
        -webkit-opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        -webkit-opacity: 1;
    }

    0% {
        -webkit-transform: translateY(2rem);
        -webkit-opacity: 0;
    }
}

.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}


.upDown {
    -webkit-animation: upDown-animation 2s infinite  alternate;
    animation: upDown-animation 2s infinite  alternate;
}

@keyframes upDown-animation {
    0% { transform: translateY(0); }
    100% { transform: translateY(-1rem); }
}

/*
    new update .... 20/01/2022
*/

.login-section{
    background-image: url(../img/profile/login-bg.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 50%;
    min-height: 100vh;
}
.feedback-section{
    background-image: url(../img/profile/feedback.png);
    background-repeat: no-repeat;
    background-position: top right;
    min-height: 100vh;
}
[dir="rtl"] .login-section,
[dir="rtl"] .feedback-section{
    background-position: top left;
}
.login-section .logo-box{
    padding: 30px 0;
    display: inline-block;
}
.login-row{
    height: calc(100vh - 150px);
}
.login-box-head{
    margin-bottom: 40px;
}
.login-box-head .title{
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-color);
}
.login-box-head .info{
    font-size: 16px;
    color: var(--light-color);
    margin-bottom: 0;
}
.login-tab{
    margin-bottom: 20px;
    border: none;
}
.login-tab .nav-item{
    width: 50%;
    justify-content: center;
    overflow: hidden;
}
.login-tab .nav-item:first-child{
    border-start-start-radius: 6px;
    border-end-start-radius: 6px;
}
.login-tab .nav-item:last-child{
    border-start-end-radius: 6px;
    border-end-end-radius: 6px;
}
.login-tab .nav-link{
    font-size: 16px;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 50px;
    background-color: #f5f5f5;
    opacity: .8;
    border: none;
    text-align: center;
    border-radius: 0 !important;
    border-bottom: 5px solid #ccc;
}
.login-tab .nav-link.active,
.login-tab .nav-link:hover{
    opacity: 1;
    background-color: rgb(14, 82, 153 , 0.1);
    color: var(--main-color);
    border-bottom: 5px solid var(--main-color);
}
.login-tab .tab-content{
    padding: 20px 0;
}

.form-login .form-group{
    margin-bottom: 15px;
}
.form-login .form-control{
    min-height: 50px;
    border-radius: var(--radius-lg);
}
.form-login .form-check{
    margin: 30px 0;
}
.form-login .form-check-label{
    color: var(--dark-color);
    font-size: 14px;
}
.form-login .form-label{
    font-weight: 700;
}
.form-login .form-check-label a{
    color: var(--main-color);
    font-weight: 700;
}
.form-login .btn{
    border-radius: var(--radius-md);
    height: 50px;
    line-height: 45px;
}
.form-login .note{
    text-align: center;
    color: var(--normal-color);
    font-size: 16px;
    margin-top: 20px;
}
.form-login .note a{
    font-weight: 700;
}
.form-login .forget-password{
    display: block;
    font-weight: 700;
    color: var(--dark-color);
    font-size: 16px;
    margin-bottom: 50px;
}

/*
    magazine-subscrib
*/

.magazine-subscrib{
    display: block;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    border-radius: var(--radius-lg);
    background: transparent linear-gradient(101deg, #00AD77 0%, #8D27DD 100%);
    box-shadow: 0px 50px 200px #32325D40;
    margin-bottom: 30px;
}
[dir="rtl"] .magazine-subscrib{
    background: transparent linear-gradient(-101deg, #00AD77 0%, #8D27DD 100%);
}
.magazine-subscrib .title{
    font-weight: 800;
    color: var(--white-color);
    font-size: 18px;
    margin-bottom: 0;
}
.magazine-subscrib .btn{
    font-weight: 600;
    background-color: #33D2A1;
    border-radius: var(--radius-sm);
    color: var(--white-color);
    font-size: 14px;
    margin-bottom: 0;
}


.magazine-topic{
    position: relative;
}
.magazine-topic .complete-reading{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 260px;
    background: transparent linear-gradient(180deg, #C769F900 0%, #C769F978 28%, #C769F9 100%);
    padding: 50px;
}
.magazine-topic .complete-reading .pic{
    width: 100px;
    margin: 20px auto;
}
.magazine-topic .complete-reading .title{
    font-size: 16px;
    line-height: 24px;
    color: var(--white-color);
}
.magazine-topic .complete-reading .title a{
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: var(--white-color);
}

.magazine-buy-box{
    position: relative;
    border-radius: var(--radius-md);
    padding: 50px 30px;
    background: transparent linear-gradient(109deg, #00AD77 0%, #8D27DD 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 50px 200px #32325D40;
}
.magazine-buy-box::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: url(../img/magazine-pattern.png);
    box-shadow: 0px 50px 200px #32325D40;
}
[dir="rtl"] .magazine-buy-box{
    background: transparent linear-gradient(-109deg, #00AD77 0%, #8D27DD 100%) 0% 0% no-repeat padding-box;
}
.magazine-buy-box .content{
    position: relative;
    z-index: 1;
}
.magazine-buy-box .title{
    font-weight: 800;
    color: var(--white-color);
    font-size: 24px;
    margin-bottom: 10px;
}
.magazine-buy-box .info{
    font-weight: 800;
    color: var(--white-color);
    font-size: 16px;
    margin-bottom: 30px;
}
.magazine-buy-box .action{
    margin: auto;
    align-items: center;
    gap: 20px;
    justify-content: center;
}
.magazine-buy-box .btn{
    min-width: 180px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    color: var(--white-color);
    font-size: 14px;
    margin-bottom: 0;
}
.magazine-buy-box .btn-success{
    background-color: #33D2A1 ;
    border-color: #33D2A1 ;
}

.post-view-pic.position-relative{
    overflow: visible;
}
@media (min-width: 1300px){
    .navbar-share{
        position: absolute;
        top: 0;
        flex-direction: column;
        left: -90px;
        gap: .5rem;
        z-index: 9;
    }
    [dir="rtl"] .navbar-share{
        left: auto;
        right: -90px;
    }
}

.navbar-share{
    align-items: center;
}

@media (max-width: 1299px){
    .navbar-share .nav-item{
        display: inline-block;
        width: auto;
    }
}
.navbar-share .nav-link{
    padding: 0;
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    background-color: #F6F7FB;
    margin-block-end: .5rem;
}
.navbar-share .nav-link.active svg path,
.navbar-share .nav-link:hover svg path{
    stroke: var(--white-color);
}
.navbar-share .nav-link.active,
.navbar-share .nav-link:hover{
    background-color: #00AD77;
}
.navbar-share .nav-link.like.active,
.navbar-share .nav-link.like:hover{
    background-color: var(--red-color);
}
.navbar-share .nav-link.facebook:hover{
    background-color: var(--facebook);
}
.navbar-share .nav-link.twitter:hover{
    background-color: var(--twitter);
}
.navbar-share .nav-link.instagram:hover{
    background-color: var(--instagram);
}

.plan-section{
    padding: 5rem 0;
}
.plan-head{
    text-align: center;
    margin-bottom: 100px;
}
.plan-head .title{
    font-weight: 800;
    font-size: 30px;
    color: var(--dark-color);
}
.plan-head .info{
    font-size: 16px;
    color: var(--light-color);
    margin-bottom: 24px;
}
.nav-plan {
    display: inline-flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 54px;
    margin: auto;
    margin-bottom: 50px;
    padding: 3px;
    background: #F7F7F7;
    border: none;
    border-radius: 14px;
}
.nav-plan .nav-link{
    width: 175px;
    font-size: 16px;
    height: 38px;
    color: var(--dark-color);
    border-radius: 14px;
    font-weight: 800;
}
.nav-plan .nav-link:hover,
.nav-plan .nav-link.active{
    color: var(--white-color);
    background-color: #33D2A1 !important;
}
.plan-box{
    padding: 40px 30px;
    display: block;
    border: 1px solid #E0E0E0;
    border-radius: 24px;
    margin-bottom: 1.5rem;
    transition: all .3s ease;
}
.plan-box .title{
    font-size: 18px;
    text-align: center;
    color: var(--light-color);
}
.plan-box .user-cost{
    font-size: 18px;
    font-weight: 800;
    color: var(--dark-color);
    text-align: center;
}
.plan-box .user-cost span{
    font-weight: 400;
    margin-inline-start: 1rem;
}
.plan-box .price{
    font-size: 16px;
    color: var(--light-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.plan-box .price span{
    font-size: 24px;
    font-weight: 800;
    margin-inline-start: 1rem;
    color: var(--dark-color);
}
.plan-box .btn{
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 40px;
    height: 40px;
    line-height: 40px;
}
.plan-box ul{
    padding: 0;
}
.plan-box ul li{
    font-size: 14px;
    display: flex;
    align-items: center;
    color: #5F5F5F;
    margin-bottom: 1rem;
}
.plan-box ul li svg{
    margin-inline-end: .5rem;
}
.plan-box ul li svg path{
    fill: var(--main-color)
}
.plan-box:not(.main):hover{
    box-shadow: var(--shadow-hover);
    transform: translateY(-.5rem);
}

.plan-box.main{
    position: relative;
    border: none;
    background-color: #fff;
    border-radius: 24px 24px 0 0 ;
    box-shadow: none;
}

.plan-box .recommended{
    position: absolute;
    content: "";
    top: -52px;
    left: -2.5%;
    width: 105%;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    color: var(--main-color);
    text-transform: capitalize;
    background: linear-gradient(180deg, #EFD5FF 0%, #C769F900 100%) 0% 0% no-repeat padding-box;;
    border-radius: 24px  24px   0  0 ;
    height: calc(100% + 60px);
    line-height: 60px;
    z-index: -1;
}

/*------------------------------------------
    profile-sidebar
------------------------------------------*/

.profiel-section {
    padding: 4rem 0;
}
.profile-sidebar{
    border: 1px solid #CDCFD8;
    border-radius: var(--radius-lg);
    padding: 20px;
    position: sticky;
    top: 4rem;
    margin-bottom: 1.5rem;
}
.profile-sidebar .nav-item{
    margin-bottom: 1rem;
}
.dropdown-profile-sidebar .nav-link,
.profile-sidebar .nav-link{
    display: flex;
    align-items: center;
    color: var(--dark-color);
    font-size: 16px;
    border-radius: var(--radius-lg);
    height: 50px;
    margin: auto;
    padding: 0;
    line-height: 30px;
}

.dropdown-profile-sidebar .nav-link .icon,
.profile-sidebar .nav-link .icon{
    margin-inline-start: 30px;
}

.dropdown-profile-sidebar .nav-link span,
.profile-sidebar .nav-link span{
    margin-inline-start: 1rem;
}
.dropdown-profile-sidebar .nav-link:not(.logout):hover,
.dropdown-profile-sidebar .nav-link:not(.logout).active,
.dropdown-profile-sidebar .nav-link:not(.logout):focus,
.profile-sidebar .nav-link:not(.logout):hover,
.profile-sidebar .nav-link:not(.logout).active,
.profile-sidebar .nav-link:not(.logout):focus{
    color: var(--white-color);
    background-color: var(--main-color);
}
.profile-sidebar .logout{
    color: #FF4646;
}
.dropdown-profile-sidebar .nav-link:not(.logout) svg circle,
.dropdown-profile-sidebar .nav-link:not(.logout) svg path,
.profile-sidebar .nav-link:not(.logout) svg circle,
.profile-sidebar .nav-link:not(.logout) svg path{
    stroke: var(--dark-color);
}
.dropdown-profile-sidebar .nav-link:not(.logout):hover svg circle,
.dropdown-profile-sidebar .nav-link:not(.logout):hover svg path,
.dropdown-profile-sidebar .nav-link:not(.logout):focus svg circle,
.dropdown-profile-sidebar .nav-link:not(.logout):focus svg path,
.dropdown-profile-sidebar .nav-link:not(.logout).active svg circle,
.dropdown-profile-sidebar .nav-link:not(.logout).active svg path,
.profile-sidebar .nav-link:not(.logout):hover svg circle,
.profile-sidebar .nav-link:not(.logout):hover svg path,
.profile-sidebar .nav-link:not(.logout):focus svg circle,
.profile-sidebar .nav-link:not(.logout):focus svg path,
.profile-sidebar .nav-link:not(.logout).active svg circle,
.profile-sidebar .nav-link:not(.logout).active svg path{
    stroke: var(--white-color);
}
.dropdown-profile-sidebar .dropdown-menu{
    min-width: 220px;
}

.form-upload-img{
    position: relative;
    width: 120px;
    height: 120px;
    margin: auto;
    margin-bottom: 30px;
}
.form-upload-img .edit{
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}
.form-upload-img .remove_pic{
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}
[dir="ltr"] .form-upload-img .edit{
    right: auto;
    left: 0;
}
[dir="ltr"] .form-upload-img .remove_pic{
    left: auto;
    right: 0;
}
.preview-pic{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    overflow: hidden;
}
.preview-pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-card .title{
    font-size: 30px;
    font-weight: 800;
    color: var(--dark-color);
    padding-bottom: 30px;
    margin: 0;
}
.nav-porfile{
    border-bottom: 1px solid #CDCFD8;
    margin-bottom: 40px;
}
.nav-porfile .nav-link{
    color: var(--light-color);
    font-size: 16px;
    font-weight: 700;
    padding: 1rem;
    border: none ;
    border-bottom: 1px solid transparent;
}
.nav-porfile .nav-link.active,
.nav-porfile .nav-link:hover{
    color: var(--main-color);
    border-bottom: 3px solid var(--main-color);
}


.no-result{
    padding: 90px 0;
    text-align: center;
}
.no-result .pic{
    width: 100px;
    margin: 0 auto 20px;
}
.no-result .title{
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 40px;
    padding: 0;
}
.no-result .btn{
    max-width: 180px;
    width: 100%;
}

.saved-box .card-blog .content .title{
    font-size: 24px;
    padding: 0;
    margin-bottom: 15px;
}

.btn-like,
.btn-saved{
    position: absolute;
    content: "";
    top: 1rem;
    right: 1rem;
    z-index: 11;
}
[dir="rtl"] .btn-like,
[dir="rtl"] .btn-saved{
    right: auto;
    left: 1rem;
}


.table-history{
    text-align: center;
}
.table-history tr th{
    background-color: rgba(var(--main-color-2) ,.2);
    color: var(--dark-color);
    font-weight: 800;
    padding: 20px 15px;
}
[dir="rtl"] .table-history tr th:last-child,
.table-history tr th:first-child{
    border-radius: var(--radius-lg) 0 0  var(--radius-lg);
}
[dir="rtl"] .table-history tr th:first-child,
.table-history tr th:last-child{
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.table-history tr td{
    color: var(--dark-color);
    font-weight: 400;
    padding: 20px 15px;
    vertical-align: middle;
}

.table-history .btn-action{
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: block;
    border-radius: 50%;
}

.table-history .btn-action svg path{
    stroke: var(--main-color);
}
.table-history .btn-action:hover,
.table-history .btn-action:focus{
    background-color: rgba(var(--main-color-2) ,.1);
}


.subscription-box{
    padding: 30px;
    border: 1px solid #CDCFD8;
    border-radius: 18px;
}

.subscription-box .title{
    padding: 0;
    font-weight: 800;
    color: var(--dark-color);
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: capitalize;
}
.subscription-col {
    margin-bottom: 0;
}
.subscription-col .title{
    color: var(--light-color);
    font-size:  14px;
    font-weight: 400;
    padding: 0;
    margin-bottom: 15px;
}
.subscription-col .info{
    color: var(--dark-color);
    font-size:  16px;
    font-weight: 800;
    margin-bottom: 0;
}
.subscription-col .status{
    width: 9px;
    height: 9px;
    display: inline-block;
    border-radius: 50%;
    margin-inline-end: 10px;
}
.subscription-col .status.green{
    background-color: var(--green-color);
}
.subscription-col .status.red{
    background-color: var(--red-color);
}
.subscription-col .status.yellow{
    background-color: var(--yellow-color);
}

.user-box::after{
    display: none;
    padding: 0;
}
.user-box .pic{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}
.user-box .pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*
    2022/02/03
*/

.alert-message {
    margin: 20px 0;
    padding: 20px;
    border-inline-start: 5px solid #eee;
}
.alert-message h4 {
    margin-top: 0;
    margin-bottom: 5px;
}
.alert-message p:last-child {
    margin-bottom: 0;
}
.alert-message code {
    background-color: #fff;
    border-radius: 3px;
}
.alert-message-success {
    background-color: #F4FDF0;
    border-color: var(--green-color);
}
.alert-message-success h4 {
    color: var(--green-color);
}
.alert-message-danger {
    background-color: #fdf7f7;
    border-color: var(--red-color);
}
.alert-message-danger h4 {
    color: var(--red-color);
}
.alert-message-warning {
    background-color: #fcf8f2;
    border-color:  var(--yellow-color);
}
.alert-message-warning h4 {
    color: var(--yellow-color);
}
.alert-message-info {
    background-color: #f4f8fa;
    border-color: var(--blue-color);
}
.alert-message-info h4 {
    color: var(--blue-color);
}
.alert-message-default {
    background-color: #EEE;
    border-color: var(--light-color);
}
.alert-message-default h4 {
    color: var(--dark-color);;
}
.alert-message-notice {
    background-color: #FCFCDD;
    border-color: #BDBD89;
}
.alert-message-notice h4 {
    color: #444;
}

.phone-input{
    padding-left: 91px !important;
}



.rate {
    display: flex;
    gap: .5rem;
}
.rate:not(:checked) > input {
    position:absolute;
    top:-9999px;
}
.rate:not(:checked) > label {
    overflow:hidden;
    white-space:nowrap;
    cursor:pointer;
    color:#AE4BFC;
}
.rate:not(:checked) > label::before {
    content: '\f005';
    font-family: "Font Awesome 5 Free";
    font-weight: 100;
    font-size: 24px;
}
.rate > input:checked ~ label {
    color: #AE4BFC;
}
.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
    color: #AE4BFC;
}
.rate > input:checked ~ label::before,
.rate:not(:checked) > label:hover::before{
    font-weight: 900;
}
.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
    color: #AE4BFC;
}


@media (max-width: 1680px){
    .navbar-container .main-nav {
        gap: 1.5rem;
    }
    .navbar-container .main-nav .nav-link{
        font-size: 14px;
        line-height: 1.5;
    }
    .btn {
        padding: 0px 1rem;
    }
    .header-label {
        padding: 2rem 0;
    }
    .header-label img{
        max-width: 270px;
    }
    .card-blog .title {
        font-size: 18px;
        height: 44px;
    }
    .card-blog .info {
        font-size: 13px;
        height: 42px;
    }
    .card-blog .read-more {
        font-size: 12px;
    }

    .owl-slider .owl-box {
        height: 495px;
    }
    .social-media-btn {
        height: 70px;
    }
    .social-media-btn i {
        font-size: 50px;
    }
}

.navbar-action{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.no-magazine{
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 700px;
    border-radius: 16px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/magazien.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.no-magazine::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.9;
    background: transparent linear-gradient(179deg, #C769F980 0%, #8D27DD 100%) 0% 0% no-repeat padding-box;
    z-index: 1;
}
.no-magazine .content-box{
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
}
.no-magazine .content-box .logo{
    background-color: #fff;
    width: 200px;
    height: 200px;
    background: #FFFFFF;
    border-radius: 49px;
    opacity: 0.85;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin: 0 auto 2rem;
}
.no-magazine .content-box .logo img{
    max-width: 100px;
    object-fit: cover;
}
.no-magazine .content-box .title{
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
}
.no-magazine .content-box .info{
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 32px;
}
.no-magazine .content-box .btn{
    width: 180px;
    height: 50px;
    line-height: 50px;
    padding: 0 1rem;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 8px;
}
.no-magazine .content-box .btn-success{
    background-color: #33D2A1;
    border-color: #33D2A1;
}
.no-magazine .content-box .btn-theme{
    background-color: #cc82f2;
    border-color: #cc82f2;
}


/*
    check-email
*/

.check-email{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    height: 100vh;
    background: linear-gradient(180deg, #8062EB 0%, #E3DDF9 100%);
}
.check-email-box{
    display: flex;
    width: 100%;
    align-items: center;
    border-radius: 50px;
    overflow: hidden;
    background-color: #fff;
}
.check-email-box .check-email-pic{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50%;
    padding: 2rem;
    height: calc(100vh - 120px);
    background-color: var(--main-color);
}
.check-email-box .check-email-pic img{
    max-width: 100%;
}
.check-email-box .check-email-content{
    height: calc(100vh - 120px);
    background-color: #FCFCFC;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50%;
    padding: 2rem;
}
.check-email-box .check-email-content .check-email-form{
    max-width: 350px;
    width: 100%;
}
.check-email-box .check-email-content .check-email-form .head .title{
    font-weight: 700;
    font-size: 30px;
    line-height: 28px;
    text-align: center;
    color: #1C1C1C;
    margin-bottom: 30px;
}
.check-email-box .check-email-content .check-email-form .head .info{
    font-weight: 700;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    color: #1C1C1C;
    margin-bottom: 30px;
}

@media (max-width: 992px){
    .check-email-box{
        flex-direction: column;
    }
    .check-email-box .check-email-pic,
    .check-email-box .check-email-content{
        height: auto;
        padding: 4rem 0;
    }
    .check-email-box .check-email-pic{
        padding: 4rem 10rem;
    }

    .check-email-box{
        border-radius: 25px;
    }
}

@media (max-width: 768px){

    .check-email-box .check-email-content .check-email-form .head .title{
        font-size: 20px;
        margin-bottom: 0;
    }
    .check-email-box .check-email-content .check-email-form .head .info{
        font-size: 14px;
        margin-bottom: 20px;
    }
}
@media (max-width: 520px){
    .check-email{
        padding: 2rem;
    }
    .check-email-box .check-email-pic,
    .check-email-box .check-email-content{
        height: auto;
        padding: 2rem 0;
    }
    .check-email-box .check-email-pic{
        padding: 2rem;
    }
}

@media (min-width: 1400px){
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1140px;
    }
}


.login-section,
.feedback-section{
    background-image: none;
    position: relative;
}
.bg-section{
    position: fixed;
    top: 0;
    left: 0;
    max-width: 50%;
    height: 100vh;
    object-fit: cover;
}
[dir="ltr"] .bg-section{
    left: auto;
    right: 0;
    transform: rotateY(180deg);
}
@media (max-width: 991px){
    .bg-section{
        display: none;
    }
}


/*
    2022/11/01
*/

.card-blog .title {
    line-height: 1.5;
}
.header-card{
	margin-bottom: 1.5rem;
}
.login-box-head .title {
    font-size: 26px;
}
.form-login .forget-password {
    margin-bottom: 30px;
}
.login-tab .nav-link {
    line-height: 40px;
}
.login-section .logo-box img{
	height: 50px;
}
.form-login .form-control{
	box-shadow: none;
}
.header-label {
    padding: 2rem 0;
    min-height: 400px;
}
.header-label img{
	height: 300px;
}
.post-view-head .title {
    font-size: 40px;
    line-height: 1.5;
}
.contact-section .card {
    border: 1px solid #E5E5E5;
}
.form-card .title {
    font-size: 24px;
}
.email-verified{
    display: flex;
    height: calc(100vh - 120px);
    align-items: center;
}
@media (max-width: 420px){
	.navbar-container .logo { 
		text-align: center;
		margin: auto;
		margin-bottom: 1.5rem;
	}
}


@media (min-width: 1024px){
    .solution-box,
    .solution-feature{
        height: 100%;
    }
}

/* New Content */
.owl-slider .owl-box{
    border-radius: 24px;
}
.card-blog{
    border-radius: 16px;
}

/*--------------------------------
    customer-reviews-card
--------------------------------*/

.customer-reviews-card{
    display: flex;
    align-items: center;
    gap: 110px;
    background: #E6F2FF;
    border-radius: 24px;
    padding: 50px 140px;
}
.customer-reviews-card .pic{
    min-width: 150px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
}
.customer-reviews-card .pic img{
    height: 100%;
    object-fit: cover;
}
.customer-reviews-card .content .user-name{
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--color-text-dark);
}
.customer-reviews-card .content .user-review{
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--color-text-normal);
}
.customer-reviews-card .content .nav-review-star{
    gap: 16px;
    color: var(--yellow);
    font-size: 24px;
    margin-bottom: 16px;
}
.customer-reviews-card .content .carousel-control-btn{
    display: flex;
    gap: 1rem;
}
.customer-reviews-card .content .carousel-control-btn .btn{
    min-width: 40px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    color: #fff;
    background-color: var(--color-theme);
    opacity: .5;
    border-radius: 8px;
    transition: all .3s ease;
}
.customer-reviews-card .content .carousel-control-btn .btn:hover,
.customer-reviews-card .content .carousel-control-btn .btn:focus{
    opacity: 1;
}

@media (max-width: 1200px){
    .customer-reviews-card {
        gap: 60px;
    }
}
@media (max-width: 992px){
    .customer-reviews-card{
        padding: 60px;
    }
}
@media (max-width: 786px){
    .section-title .title{
        font-size: 24px;
    }
    .customer-reviews-card{
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
    }
}