@import url(../css/all.min.css);
@import url(../css/bootstrap.css);
@import url(../css/owl.carousel.min.css);
@import url(../css/owl.theme.default.min.css);
@import url(../css/animate.css);
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');


*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}

:root {
    --main-color: #16162F;
    --sub-color: #4A6DA3;
    --ph-color: #28323C;
    --sec-padding: 80px 0;
}

body {
    font-family: 'Montserrat', sans-seri;
    background-color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-seri;
    font-weight: 700;
    font-style: normal;
    margin: 0;
}

p {
    margin: 0;
}

html,
button,
input,
select,
textarea {
    color: #222;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

img {
    vertical-align: middle;

}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}


a,
button {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

p {
    margin: 0;
}

a {
    cursor: pointer !important;
    text-decoration: none !important;
}

a:hover,
a:active,
a:focus,
a:visited {
    text-decoration: none !important;
}

input,
textarea,
a,
button {
    outline: none !important;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.main-wrapper {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    padding-top: 100px;
}



.menu-toggle .main-wrapper {
    -webkit-transition: -webkit-transform .0s ease;
    transition: -webkit-transform .0s ease;
    transition: transform .0s ease;
    transition: transform .0s ease,
        -webkit-transform .0s ease;
}



.hamburger,
.is-closed {
    position: absolute;
    z-index: 9;
    left: 15px;
    top: 30px;
    -webkit-transition: background-color .2s linear;
    -ms-transition: background-color .2s linear;
    transition: background-color .2s linear;
    margin-right: 0px;
    background-color: transparent;
}

.hamburger span,
.is-closed span {
    width: 20px;
    height: 3px;
    border-radius: 20px;
    background-color: #fff;
    display: block;
    margin-bottom: 5px;
    -webkit-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -ms-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger span:nth-child(1) {
    width: 30px;
}

.hamburger span:nth-child(2) {
    width: 25px;
}

.hamburger span:nth-child(3) {
    width: 20px;
}

.is-closed span:nth-child(1) {
    transform: rotate(45deg)
}

.is-closed span:nth-child(2) {
    display: none;
}

.is-closed span:nth-child(3) {
    transform: rotate(135deg);
    margin-top: -5px;
}

.opt-mobail {
    display: none;
}

/*menu*/

.menu-mobile {
    position: fixed;
    left: 0px;
    top: 0px;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: var(--main-color);
    z-index: 1001;
    overflow-y: auto;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
}

.brd-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    border-bottom: 1px solid #F4F4F4
}

.close_menu {
    font-size: 18px;
    cursor: pointer;
    color: var(--ph-color);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
    position: absolute;
    left: 20px;
    top: 30px;
    background-color: #fff;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.close_menu:hover {
    background-color: #767676;
    color: #fff;
}

.menu-mobile>ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.menu-mobile>ul li {
    margin-bottom: 20px;
}

.menu-mobile>ul li a {
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: all .3s;
}

.menu-mobile>ul li.active a {
    font-weight: 700;
}

.menu-mobile>ul li img,
.menu-mobile>ul li svg {
    margin-right: 10px;
}

.menu-mobile .dropdown-toggle::after {
    right: 24px;
}

.menu-mobile .dropdown-menu {
    position: relative !important;
    width: 100%;
    background: transparent;
    box-shadow: none;
    border: 0;
}

.menu-mobile .dropdown-menu.show {
    transform: initial !important;
}

.menu-mobile .dropdown-menu li {
    margin-bottom: 0
}

.menu-mobile .dropdown-toggle::after {
    top: 10px;
    transform: inherit;
}

.m-overlay {
    position: fixed;
    content: '';
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background: #C6C7C9;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.menu-toggle {
    overflow: hidden;
}

.menu-toggle .m-overlay {
    opacity: 0.6;
    visibility: visible;
}

.menu-toggle .menu-mobile {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);

}

html.menu-toggle {
    overflow: hidden;
}


/* Style Header */

#header {
    width: 100%;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--main-color);
    z-index: 9;
    box-shadow: 0 1px 7px rgb(0 0 0 / 16%);
    z-index: 999;
}

#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9;
}

.logo-site a {
    display: inline-block;
}

.logo-site img {
    max-width: 130px;
}

.top-header {
    display: flex;
}

.top-header ul {
    display: flex;
    margin-left: auto;
    position: relative
}

.top-header ul:before {
    content: "";
    background: #222246;
    width: 300%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.top-header ul li {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 12px;
    padding: 10px 15px;
    border-left: 1px solid #222246;
}

.top-header ul li:last-child {
    border-right: 1px solid #222246;
}

.top-header strong {
    font-weight: 500;
}

.top-header a {
    color: #fff;
}

.ls-fajr strong {
    font-weight: 500;
    margin-left: 10px
}

.top-header figure {
    margin-bottom: 0;
    margin-right: 10px;
}

.top-header svg,
.ls-fajr img {
    margin-right: 10px;
}

.top-header img {
    width: 15px;
}

.ls-date p {
    margin-left: 10px;
    padding-left: 10px;
    position: relative;
}

.ls-date p:before {
    content: "";
    background: #4A6DA3;
    width: 1px;
    height: 80%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.main_menu {
    display: flex;
}

.main_menu>li>a {
    display: block;
    color: #fff;
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 400;
    position: relative;
    padding: 20px 20px;
    border-radius: 10px;
}

.main_menu>li:last-child a {
    padding-right: 0;
}

.main_menu>li.active a {
    font-weight: 700;
}

.main_menu .dropdown-toggle::after {
    border: 0;
    font: normal normal normal 14px/1 FontAwesome;
    content: "\f107";
    font-size: 11px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 4px;
}

.main_menu .dropdown-menu {
    transition: all .8s ease-in-out;
    transform: translateY(100px) !important;
    box-shadow: none;
    background: #4A6DA3;
    border-radius: 0;
}

.main_menu .dropdown-menu li {
    padding: 0 20px
}

.main_menu .dropdown-menu li a {
    padding: 10px 0;
    color: #fff;
    font-size: 14px;
}

.main_menu .dropdown-item:hover,
.main_menu .dropdown-item:focus {
    color: #1e2125;
    background-color: transparent;
    color: #fff;
    transform: translateX(10px);
}

.main_menu .dropdown-menu.show {
    transform: translateY(63px) !important
}

#header.fixed-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 1px 7px rgb(0 0 0 / 16%);
    z-index: 33;
}

/* Style Home Slide */

.section_home {
    position: relative;
    z-index: 1;
}

.section_home .item {
    position: relative;
    display: flex;
    align-items: end;
    min-height: calc(100vh - 65px);
    width: 100%;
    background-size: cover !important;
    background-position: center !important;
    padding-bottom: 80px;
}

.owl-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: block !important;
}

.owl-dot span {
    background: #fff;
    width: 10px;
    height: 10px;
    margin-left: 10px;
    border-radius: 50%;
    display: block;
}

.owl-dot.active span {
    background: #4A6DA3
}

@-webkit-keyframes ticker {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes ticker {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.ticker-wrap {
    overflow: hidden;
    background-color: rgba(20, 24, 28, 0.9);
    padding-left: 100%;
    background: var(--main-color);
    display: flex;
    align-items: center;
    position: relative;
}

.head-latest {
    width: max-content;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: absolute;
    left: 0;
    top: 0;
    padding: 0 30px;
    height: 50px;
    display: flex;
    align-items: center;
    z-index: 99;
}

.ticker-wrap .ticker {
    display: inline-flex;
    height: 50px;
    white-space: nowrap;
    padding-right: 100%;
    box-sizing: content-box;
    -moz-animation-duration: 30s;
    -webkit-animation-duration: 30s;
    animation-duration: 30s;
    -moz-animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -moz-animation-name: ticker;
    -webkit-animation-name: ticker;
    animation-name: ticker;
}

.ticker-wrap .ticker__headline {
    display: inline-flex;
    align-items: center;
    padding: 0 15px;
    font-size: 16px;
    color: white;
}

/* Style Stac Site */

.sec_head {
    margin-bottom: 40px;
    padding-bottom: 10px;
    position: relative;
    text-align: center;
}

.sec_head:before {
    content: "";
    background: #fff;
    height: 2px;
    width: 60px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.sec_head h2 {
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    position: relative;
    text-transform: uppercase
}

.sec_head span {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.btn-site {
    height: 40px;
    font-size: 15px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    margin: 30px auto 0;
    border-radius: 0;
    justify-content: center;
    background: #4A6DA3;
    border-bottom: 0;
    border-top: 0;
    width: max-content;
    position: relative;
    overflow: hidden;
}

.btn-site:before {
    background: #EBEBEB;
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    left: -10px;
    width: 0%;
    transform: skew(-10deg);
    transition-duration: .6s;
    z-index: 0;
}

.btn-site:hover:before {
    position: absolute;
    content: "";
    top: 0;
    left: -10px;
    width: 120%;
    z-index: 0
}

.btn-site span {
    color: #fff;
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
}

.btn-site:hover span {
    color: var(--main-color);
}

/* Style About */

.section_about {
    position: relative;
    padding: 80px 0;
}

.section_about:before {
    content: "";
    background: url(../images/oj.png);
    background-size: 100% 100%;
    width: 700px;
    height: 600px;
    position: absolute;
    top: 0;
    left: -370px;
}

.cont-about span {
    display: block;
    color: var(--main-color);
    font-size: 16px;
}

.cont-about h2 {
    color: var(--main-color);
}

.cont-about small {
    color: #000;
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin: 5px 0;
    line-height: 2;
}

.cont-about p {
    font-size: 15px;
    color: #000;
    line-height: 2;
}

.cont-about .btn-site {
    margin: 30px 0 0;
    background: #fff;
    border: 1px solid var(--main-color)
}

/* Style Services */

.section_services {
    position: relative;
    padding: 80px 0;
    background: url(../images/bg-services.png);
    background-size: 100% 100% !important;
}

.section_services:before {
    content: "";
    background: rgb(25 25 46 / 69%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.item-services {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
    padding: 40px;
}

.item-services img {
    width: 50px;
}

.txt-services h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

.txt-services p {
    color: #fff;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Style Articles */

.section_articles {
    position: relative;
    padding: 80px 0;
    background: url(../images/bg-artical.png);
    background-size: 100% 100% !important;
}

.section_articles:before {
    content: "";
    background: linear-gradient(0deg, rgba(18, 18, 33, 1) 0%, rgba(22, 22, 47, 0.43) 57%, rgba(22, 22, 47, 1) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 69%;
}

#articles-slider {
    width: 120%
}

#articles-slider .item {
    padding-bottom: 30px;
}

.item-article {
    position: relative;
}

.item-article figure {
    margin-bottom: 0;
}

.txt-article {
    width: 100%;
    padding: 15px;
    position: absolute;
    bottom: -30px;
    left: 0;
    z-index: 2
}

.txt-article:before {
    content: "";
    background: rgb(22 22 47 / 39%);
    width: 100%;
    height: calc(100% - 30px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1
}

.date-art {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.date-art img {
    width: 15px !important;
    margin-right: 10px;
}

.date-art time {
    color: #fff;
    font-size: 14px;
}

.txt-article h5 {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 10px;
}

.txt-article .btn-site {
    margin: 0;
}

.txt-article .btn-site span {
    font-size: 15px;
    text-transform: capitalize;
}

#articles-slider .owl-dots {
    bottom: -50px;
    left: 41%;
}

.veiw-all {
    margin-top: 80px;
}

.veiw-all .btn-site {
    background: transparent;
    border: 1px solid #fff;
    height: 45px;
}

.veiw-all .btn-site:before {
    background: #fff;
}

.veiw-all .btn-site span {
    color: #fff;
    font-size: 15px;
}

.veiw-all .btn-site:hover span {
    color: var(--main-color);
}


/* Style Watch */

.section_watch {
    padding: 120px 0;
    position: relative;
}

.section_watch:before {
    content: "";
    background: url(../images/shape-watch.svg);
    background-size: 100% 100%;
    width: 660px;
    height: 500px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.section_watch .row {
    align-items: center;
}

.txt-watch h3 {
    color: var(--main-color);
    margin-bottom: 15px;
}

.txt-watch p {
    color: #000000;
    font-size: 14px;
    line-height: 2;
}

.section_watch iframe {
    box-shadow: 0 0px 45px rgb(13 13 13 / 56%)
}

/* Style Social Media */

.section_social_media {
    position: relative;
    padding: 40px 0;
}

.section_social_media .sec_head:before {
    background: var(--main-color);
}

.section_social_media .sec_head h2,
.section_social_media .sec_head span {
    color: var(--main-color);
}

.item-social {
    margin-bottom: 20px;
}

.item-social img {
    width: 100%;
}



/* Style Fotter */

footer {
    position: relative;
    background: var(--main-color);
}

.top-footer {
    padding: 30px 0;
}

.logo-ft {
    margin-bottom: 20px;
    display: block;
}

.logo-ft img {
    width: 150px;
    max-width: 100%;
}

.cont-ft ul {
    display: flex;
}

.cont-ft li {
    margin-right: 10px;
}

.cont-ft li:last-child {
    margin-right: 0;
}

.cont-ft li a {
    width: 30px;
    height: 30px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cont-ft svg path {
    fill: var(--main-color)
}

.cont-ft li a:hover {
    border-radius: 10px;
}

.menu-ft h5 {
    color: #4A6DA3;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.menu-ft ul li {
    margin-bottom: 15px;
}

.menu-ft ul li a {
    color: #fff;
    font-size: 14px;
}

.li-ft li a:hover {
    opacity: .5;
}

.list-contact li {
    display: block;
    margin-bottom: 10px;
    color: #fff
}

.list-contact li a {
    color: #fff;
    display: flex;
    align-items: center;
}

.list-contact li a:hover {
    opacity: .5
}

.list-contact li a svg {
    margin-right: 10px;
    width: 20px;
}

.bottom-ft {
    padding: 15px 0;
    border-top: 1px solid #222246;
}

.cont-bt {
    text-align: center
}

.copyRight {
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
}

.cont-bt p {
    color: #fff;
    font-size: 14px;
}

.cont-bt p a {
    color: #fff;
}



/* Style Head Page */

.hd-page {
    position: relative;
    background: url(../images/bg-head.png);
    background-position: center !important;
    background-size: cover !important;
    height: 100px;
}

.hd-page:before {
    content: "";
    background: rgb(64 109 163 / 64%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hd-page .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

.hd-page h3 {
    color: #fff;
}


/* Style Curriculum Vitae Page */

.stag-padding {
    position: relative;
    padding: 30px 0;
}

.txt-more-about {
    padding-top: 100px;
}

.txt-more-about strong {
    color: #4A6DA3;
    display: block;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
}

.txt-more-about p {
    color: #000;
    font-size: 14px;
    line-height: 1.7;
}

/* Style Album Page */

.item-album {
    position: relative;
    margin-bottom: 70px;
    display: block;
}

.item-album figure {
    margin-bottom: 0;
}

.txt-album {
    position: absolute;
    left: 10px;
    bottom: -20px;
    width: max-content;
    padding: 22px 30px;
    background: #4A6DA3;
    height: 60px;
}

.txt-album h5 {
    color: #fff;
    font-size: 15px;
}

.fancybox__backdrop {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: var(--fancybox-bg, rgba(24, 24, 27, 1));
}

.plyr__video-embed {
    height: 530px;
}

.item-video {
    padding: 8px;
    border: 1px solid #EFEFEF;
    margin-bottom: 25px;
}

.item-video p {
    font-weight: 600;
}

.item-video figure {
    position: relative;
}

.item-video figure:before {
    content: "";
    background: #fff;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.item-video figure a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FF0000;
    font-size: 45px;
}

/* Style Article Page */

.item-article-oj {
    position: relative;
    background: #FAFAFA;
    padding: 40px 20px;
    margin-bottom: 25px;
}

.item-article-oj figure {
    background: #4A6DA3;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px
}

.icon-file-pdf {
    background: url(../images/icon-pdf.svg);
    background-size: 100% 100%;
    width: 30px;
    height: 30px;
}

.icon-calendar {
    background: url(../images/icon-calendar-color.svg);
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
}

.txt-article-oj h4 {
    color: #000;
    font-size: 15px;
    line-height: 1.8
}

.txt-article-oj time {
    display: flex;
    color: #16162F;
    margin-bottom: 5px;
}

.txt-article-oj time i {
    margin-right: 10px;
}


/* Style About Page */

.nav-tabs {
    border-bottom: 1px solid #666A6B;
    margin-bottom: 30px;
}

.nav-tabs .nav-item {
    flex: 1;
    margin: 0;
}

.nav-tabs .nav-item .nav-link {
    width: 100%;
    text-align: start;
    border-radius: 0;
    margin: 0;
    padding: 15px 0;
    color: #000;
    position: relative;
    border: 0;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: var(--sub-color);
    background-color: transparent;
    border: 0;
    font-weight: 700;
}

.nav-tabs .nav-link.active:before {
    content: "";
    background: var(--sub-color);
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: -2px;
    left: 0;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
    border: 0;
}

.txt-about h5 {
    color: var(--main-color);
    margin-bottom: 20px;
}

.txt-about strong {
    color: #000000;
    font-size: 14px;
    display: block;
    margin-bottom: 20px;
}

.txt-about p {
    font-size: 14px;
    line-height: 2;
}

.other-txt-about {
    margin-top: 30px;
}

.other-txt-about p {
    font-size: 14px;
    line-height: 2;
}

/* Style Board Trustess Page */

.item-board {
    position: relative;
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #EFEFEF;
    display: flex;
}

.item-board figure {
    width: 200px;
    height: 200px;
    margin-bottom: 0;
}

.item-board figure img {
    width: 100%;
}

.item-board .txt-board {
    width: calc(100% - 200px);
    padding-left: 30px;
}

.txt-board>span {
    display: block;
    margin-bottom: 5px;
}

.txt-board h2 {
    color: var(--main-color);
    font-size: 25px;
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #EFEFEF
}

.txt-board p {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 2;
}

.txt-board .btn-site {
    margin: 0;
}

.aside-board figure img {
    width: 100%
}

.aside-board .txt-board h2 {
    border: 0;
    padding-bottom: 0;
}

.data-board-details h5 {
    margin-bottom: 20px;
    color: var(--main-color);
}

.data-board-details p {
    margin-bottom: 20px;
    line-height: 2;
    font-size: 14px;
}

.data-board-details strong {
    display: block;
    color: #000;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 20px;
}

/* Style Astronomy Page */

.content-astronomy {
    margin-bottom: 50px;
}

.data-ast {
    margin-bottom: 30px;
}

.data-ast h3 {
    color: var(--main-color);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.icon-sun {
    background: url(../images/icon-sun.svg);
    background-size: 100% 100%;
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

.data-ast strong {
    display: block;
    margin-bottom: 5px;
    color: #000;
    font-size: 20px;
    line-height: 2;
}

.data-ast p {
    line-height: 2;
    font-size: 14px;
}

.thumb-astr {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #01010A;
    padding: 40px;
}

.dta-sun {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-sun {
    flex: 0 0 auto;
    width: 50%;
    padding: 0 7.5px;
    margin-bottom: 15px;
}

.col-sun:last-child,
.col-sun:nth-last-child(2) {
    margin-bottom: 0;
}

.cont-moon .col-sun:first-child {
    width: 100%
}

.it-sun {
    background: #FAFAFA;
    padding: 15px;
    height: 100%;
}

.it-sun h5 {
    color: var(--main-color);
    font-size: 17px;
    margin-bottom: 8px;
}

.it-sun p {
    color: #000;
    font-weight: 500;
    margin-bottom: 5px;
}

.it-sun p:last-child {
    margin-bottom: 0;
}

.it-sun p span {
    color: var(--sub-color);
    font-weight: 600;
}

.it-sun small {
    display: block;
    margin-top: 10px;
    font-size: 19px;
    font-weight: 500;
    color: #000
}

.icon-picture {
    background: url(../images/icon-picture.svg);
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.bg-non {
    background: transparent;
    padding: 0;
}

/* Style Articles Page */

.item-article {
    margin-bottom: 60px;
}

.more-circullars {
    position: relative;
    background: var(--main-color);
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.txt-more {
    width: calc(100% - 200px);
    padding-right: 30px;
}

.txt-more h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 5px
}

.txt-more p {
    color: #fff
}

.view--more {
    text-align: end;
    width: 200px;
}

.view--more .btn-site {
    margin: 0;
    margin-inline-start: auto
}


.item-circullar {
    margin-bottom: 25px;
}

/* Style Articles Details */

.cont-article-details .thumb-img {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
    max-width: 450px;
}

.cont-article-details time {
    margin-bottom: 5px;
}

.cont-article-details h3 {
    color: #000;
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.cont-article-details p {
    line-height: 3;
    font-size: 14px;
}

.cont-article-details .icon-calendar {
    margin-right: 10px;
}

.cont-article-details .btn-site {
    margin: 0 0 25px;
}

/* Style Forecast Page */

.nav-forecast {
    margin-bottom: 0;
    border: 0;
}

.nav-forecast .nav-item .nav-link,
.nav-agriculture .nav-item .nav-link {
    background: #FAFAFA;
    text-align: center;
}

.nav-forecast .nav-link span {
    display: block;
    margin-top: 5px;
}

.nav-forecast .nav-link.active,
.nav-agriculture .nav-link.active {
    background: var(--main-color);
    color: #fff;
}

.nav-forecast .nav-link.active:before,
.nav-agriculture .nav-link.active:before {
    display: none
}

.tp--frc {
    display: flex;
    align-items: center;
    background: var(--main-color);
    padding: 30px;
}

.tp--frc figure {
    width: 150px;
    margin-bottom: 0;
}

.tp--frc figure img {
    width: 45px;
}

.tp--frc>div {
    flex: 1;
    display: flex;
    align-items: center;
}

.tp--frc p {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
}

.tp--frc strong {
    color: #fff;
    font-size: 24px;
    margin-left: 10px;
}

.dt--frc {
    background: #FAFAFA;
    padding: 20px;
    margin-bottom: 20px;
}

.data-frc {
    margin-bottom: 20px;
}

.data-frc span {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.data-frc span img {
    margin-right: 10px;
    width: 30px !important;
}

.bt--frc {
    display: flex;
}

.bt--frc>div {
    flex: 1;
    background: var(--sub-color);
    padding: 20px;
}

.bt--frc>div:first-child {
    background: var(--main-color);
}

.box-mf h4 {
    font-size: 18px;
    color: #fff;
}

.box-mf div {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.box-mf img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.box-mf h3 {
    color: #fff;
    font-size: 18px;
}

.bt--frc .box-frc {
    padding-left: 50px;
}

.box-frc span {
    display: block;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.box-frc p {
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 10px;
}

.box-frc p:last-child {
    margin-bottom: 0;
}

.forecast-mobile {
    display: none;
}

.day-frc {
    background: #FAFAFA;
    padding: 15px 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

.day-frc p,
.day-frc span {
    font-weight: 700;
    color: #000;
}

.day-frc p {
    margin-right: 10px;
}

.forecast-mobile .tp--frc {
    flex-wrap: wrap
}

.forecast-mobile .tp--frc figure {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.forecast-mobile .tp--frc figure img {
    width: 60px !important;
    margin: auto;
}

.forecast-mobile .tp--frc>div {
    flex: 1 100%;
    justify-content: center;
    margin-bottom: 10px;
}

.forecast-mobile .bt--frc {
    flex-direction: column;
}

.forecast-mobile .bt--frc .box-frc {
    margin-bottom: -1px;
    padding: 20px;
}

.forecast-mobile .box-frc span {
    font-size: 18px;
}

.forecast-mobile .box-frc p {
    font-size: 17px;
}

.forecast-mobile .box-frc:last-child {
    padding-top: 0;
}

.forecast-mobile .box-mf img {
    width: 40px !important
}

.owl-nav>button {
    position: absolute;
    top: 10px;
    font-size: 25px !important;
    left: 15px;
}

.owl-nav>button.owl-next {
    right: 15px;
    left: auto;
}


/* Style Alojeiri Calendar Page */

.prayer-times {
    background: var(--main-color);
    margin-bottom: 20px;
    position: relative;
}

.head-date {
    padding: 15px;
    border-bottom: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.head-date p {
    position: relative;
    margin-right: 8px;
    padding-right: 8px;
    color: #fff;
    font-weight: 500;
}

.head-date p:before {
    content: "";
    background: #4A6DA3;
    width: 2px;
    height: 60%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%)
}

.head-date p:last-child:before {
    display: none
}

.choose-date {
    position: relative;
}

.choose-date input {
    background: var(--sub-color);
    color: #fff;
    height: 45px;
    padding-left: 40px;
    width: 180px;
}

.choose-date input::placeholder {
    color: #fff;
    font-weight: 700;
}

.choose-date .icon-calendar {
    background: url(../images/icon-calendar.svg);
    background-size: 100% 100% !important;
    display: block;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%)
}

.datepicker {
    padding: 10px;
}

.datepicker td,
.datepicker th {
    padding: 5px;
    font-size: 13px !important;
    font-weight: 700;
}

.datepicker table tr td.active {
    background: var(--sub-color) !important;
}

.ls-prayer {
    display: flex
}

.item-prayer {
    position: relative;
    text-align: center;
    flex: 1 16.6667%;
    padding: 50px 20px;
}

.item-prayer figure {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.item-prayer figure img {
    width: 50px;
}

.item-prayer span {
    font-weight: 500;
    display: block;
    color: #fff;
    font-size: 14px;
    margin-bottom: 5px;
}

.item-prayer h4 {
    color: #fff;
    font-size: 20px;
}

.item-prayer.active {
    background: var(--sub-color);
}

.item-prayer b {
    color: #fff;
    font-size: 15px;
    width: 100%;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.item-prayer strong {
    color: #fff;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.cont-condition {
    display: flex;
    margin-bottom: 20px;
}

.col-aside {
    width: 15%;
}

.sea-condition {
    position: relative;
    background: var(--sub-color);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.sea-condition:before {
    content: "";
    border: 1px solid #fff;
    width: 90%;
    height: 90%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.sea-condition h3 {
    color: #fff;
    font-size: 17px;
    line-height: 2;
    text-align: center;
    position: relative;
}

.cont-tides {
    width: 85%;
    padding-left: 20px;
}

.item-tides {
    margin-bottom: 20px;
    display: flex;
}

.item-tides:last-child {
    margin-bottom: 0
}

.item-tides .box-mf {
    background: var(--main-color);
    padding: 30px;
    width: 40%;
}

.item-tides .box-mf h3 {
    font-size: 16px;
}

.item-tides .box-mf h4 {
    font-size: 15px;
}

.data-tides {
    width: 60%;
    background: #FAFAFA;
}

.data-tides {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
}

.data-tides>div {
    padding: 20px;
}

.data-tides h4 {
    color: var(--sub-color);
    font-size: 17px;
    margin-bottom: 10px;
}

.data-tides p {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
}

.data-tides p:last-child {
    margin-bottom: 0;
}

.txt-ojeiriat {
    background: #FAFAFA;
    padding: 20px;
    margin-bottom: 20px;
}

.txt-ojeiriat h4 {
    color: var(--main-color);
    margin-bottom: 5px;
    font-size: 17px;
}

.txt-ojeiriat p {
    color: #000;
    font-size: 14px;
    line-height: 1.7;
}

.cont-bt-cal {
    display: flex;
}

.cont-happ {
    width: 70%;
    padding: 20px;
    background: var(--sub-color);
    margin-right: 15px;
}

.cont-happ h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 18px;
}

.cont-happ p {
    color: #fff;
    font-size: 14px;
    line-height: 1.8;
}

.cont-holiday {
    background: var(--main-color);
    padding: 20px;
    width: 30%;
}

.cont-holiday {
    display: flex;
}

.cont-holiday figure {
    width: 60px;
    margin-bottom: 0;
}

.txt-holiday {
    width: calc(100% - 60px);
    padding-right: 15px;
}

.txt-holiday span {
    display: block;
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 5px
}

.txt-holiday h6 {
    color: #fff;
    margin-bottom: 5px;
    line-height: 1.8;
}

.txt-holiday a {
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    text-decoration: underline !important;
}

.txt-holiday a:hover {
    color: var(--sub-color) !important;
}

.tab-holiday>div {
    padding: 15px 20px;
    border: 1px solid #D3D3D3;
    border-bottom: 0;
}

.tab-holiday>div:last-child {
    border-bottom: 1px solid #D3D3D3;
}

.tab-holiday>div p {
    width: 50%;
    color: #000;
    font-weight: 500;
    font-size: 14px;
}

.tab-holiday>div span {
    width: 50%;
    color: var(--sub-color);
    font-size: 14px;
}

.modal-header {
    border: 0;
}

.modal-header .btn-close {
    background-color: var(--main-color) !important;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    opacity: 1;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/.7em auto no-repeat;
}

/* Style Agriculture Plam Page */

.nav-agriculture {
    margin-bottom: 30px;
    border: 0;
}

.select-agr {
    background: #FAFAFA;
    height: 45px;
    padding: 10px;
    margin-bottom: 20px;
    width: 100%;
    font-weight: 600;
    color: #000;
    font-size: 17px;
    display: none;
}

.item-crops,
.item-palm {
    display: flex;
    position: relative;
    margin-bottom: 35px;
    border: 1px solid #E2E2E2;
    padding: 20px;
}

.item-crops figure {
    width: 95px;
    height: 95px;
    margin-bottom: 0;
}

.txt-crops {
    width: calc(100% - 95px);
    padding-left: 10px;
    overflow: hidden;
}

.txt-crops h5 {
    font-size: 17px;
    margin-bottom: 5px;
}

.txt-crops p {
    font-size: 14px;
}

.item-palm {
    margin-bottom: 20px;
}

.item-palm figure {
    width: 110px;
    height: 110px;
    margin-bottom: 0;
}

.item-palm figure img {
    width: 100%;
    height: 100%
}

.txt-palm {
    width: calc(100% - 110px);
    padding-left: 20px;
}

.txt-palm h3 {
    color: #000;
    margin-bottom: 5px;
}

.txt-palm strong {
    color: var(--main-color);
    margin-bottom: 5px;
    font-weight: 600;
    display: block;
}

.txt-palm p {
    font-size: 14px;
}

.static-page {
    padding-bottom: 100px;
}

.cont-ph-static p {
    line-height: 1.8;
}


/* Style Contact */

.contact-page {
    padding-bottom: 0;
}

.aside-contact {
    background: var(--main-color);
    padding: 40px 80px;
}

.aside-contact h4 {
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.form-contact .form-group {
    margin-bottom: 35px;
}

.form-contact .form-group:last-child {
    margin-bottom: 0
}

.form-contact .form-control {
    background: #fff;
    height: 45px;
    border: 0;
    border-radius: 0;
}

.form-contact .form-control::placeholder {
    color: #000;
    font-weight: 500;
    font-size: 14px;
}

.form-contact textarea.form-control {
    height: 120px;
}

.form-contact .btn-site {
    margin: 0;
    width: 200px;
}

.form-contact .btn-site span {
    text-transform: capitalize;
}

.head-touch {
    margin-bottom: 60px;
}

.head-touch h4 {
    color: var(--main-color);
    margin-bottom: 10px;
}

.item-contact {
    margin-bottom: 40px;
}

.item-contact:last-child {
    margin-bottom: 0;
}

.item-contact h6 {
    color: #000;
    margin-bottom: 5px;
}

.item-contact p {
    font-size: 14px;
}

.item-contact ul {
    display: flex;
    margin-top: 10px;
}

.item-contact li {
    margin-right: 10px;
}

.item-contact li a {
    height: 40px;
    width: 40px;
    padding: 5px;
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-contact li a:hover {
    border-radius: 10px;
}

.item-contact li a svg {
    width: 20px;
    height: 20px;
}

#googleMap2 {
    height: 400px;
    width: 100%;
    margin-top: 50px;
}

.cont-tha {
    padding: 20px 10px 20px;
}

#contactModal .modal-dialog {
    max-width: 370px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.cont-tha>span {
    font-weight: 600;
    display: block;
    color: #000;
    margin-bottom: 5px;
}

.cont-tha p {
    margin-bottom: 10px;
}

.cont-tha .btn-site {
    margin: 0 0 0 auto;
}


/* Style 404 Page */

.found-page {
    padding: 100px 0;
}

.found-page .row {
    align-items: center;
}

.thumb-not-found img {
    max-width: 100%;
}

.txt-not-found h5 {
    color: var(--main-color);
    margin-bottom: 15px;
    font-size: 30px
}

.txt-not-found p {
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 40px;
}

.txt-not-found .btn-site {
    margin: 0
}

.txt-not-found .btn-site span {
    font-size: 13px
}

/* Style Search Modal */

#searchModal .modal-content {
    background: transparent;
    border: 0;
}

#searchModal .modal-dialog {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 120px;
}

.form-search {
    position: relative;
}

.form-search .form-control {
    background: #fff;
    height: 45px;
    border: 0;
    border-radius: 0;
    padding-left: 45px;
}

.form-search .form-control::placeholder {
    font-weight: 500;
    color: #000;
}

.form-search svg {
    position: absolute;
    top: 15px;
    left: 20px;
}


.login-page {
    padding: 80px 0;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

.step h2 {
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.step h2 span {
    color: rgb(74 109 163);
}

.country-option {
    display: flex;
    justify-content: space-between;
    background: #1c204a;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 6px;
    cursor: pointer;
    color: #fff;
}


.radio-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1c204a;
    padding: 14px 16px;
    border-radius: 0px;
    margin-bottom: 12px;
    cursor: pointer;
    border: 1px solid transparent;
}

/* Hide real radio */
.radio-card input[type="radio"] {
    display: none;
}

/* Right circle */
.custom-radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #bfc6ff;
    position: relative;
}

/* Selected state */
.radio-card input[type="radio"]:checked+.custom-radio {
    border-color: #5a86ff;
}

.radio-card input[type="radio"]:checked+.custom-radio::after {
    content: "";
    width: 8px;
    height: 8px;
    background: #5a86ff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.country-name {
    color: #fff;
    font-size: 15px;
}

.step .btn {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background: rgb(74 109 163);
    border: none;
    color: #fff;
    font-weight: 500;
    border-radius: 0px;
    font-size: 18px;
    cursor: pointer;
}

.otp-text {
    font-size: 14px;
    margin-bottom: 15px;
    color: #bbb;
    text-align: center;

}

.otp-box {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.otp-box input {
    width: 45px;
    height: 45px;
    text-align: center;
    font-size: 18px;
    border-radius: 6px;
    border: none;
    background: #e5e5e5;
}

.resend {
    font-size: 13px;
    margin-top: 10px;
    color: #bbb;
    text-align: center;
}

.resend a {
    color: #fff;
    font-weight: 600;
}

#timer {
    margin-left: 6px;
    color: #bbb;
}

#resendBtn.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.subtitle {
    color: #b0b3d6;
    font-size: 14px;
    margin-bottom: 25px;
}

.phone-input {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #6f74c5;
    padding-bottom: 8px;
}

.phone-input .code {
    color: #fff;
    margin-right: 8px;
    font-weight: 600;
}

.phone-input input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
}

.our-product {
    padding: 80px 0;
}

/* Product Card */
.product-card {
    background-color: var(--main-color);
    border-radius: 25px;
    padding: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    color: #fff;
    margin-bottom: 30px;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Image */
.product-image {
    background: #FFFFFF;
    border-radius: 14px;
    overflow: hidden;
    padding: 0px;
    text-align: center;
}

.product-image img {
    height: 250px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Title */
.product-title {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin: 0px 0 3px;
}

/* Info Section */
.product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    gap: 12px;
}

/* Price */
.product-price {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

/* Quantity */
.wg-quantity {
    display: flex;
    align-items: center;
    background: #4A6DA3;
    border-radius: 40px;
    overflow: hidden;
    margin-right: 10px;
    border: 1px solid #cce7d0;
}

.btn-quantity {
    width: 30px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    transition: background 0.2s ease;
}

.btn-quantity:hover {
    color: var(--ph-color);
}

.quantity-product {
    width: 20px;
    border: none;
    text-align: center;
    background: transparent;
    font-weight: 600;
    color: #fff;
}

.quantity-product:focus {
    outline: none;
}

/* Button */
.add-cart-btn {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background-color: #4A6DA3;
    text-align: center;
    margin-right: 3px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cce7d0;
}

.add-cart-btn img {
    width: 18px;
}

.product-info-right {
    display: flex;
}

.product-card-s2 .product-info-right {
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.wg-quantity {
    animation: fadeScale 0.25s ease;
}

@keyframes fadeScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.icon-minus {
    display: none;
    font-size: 18px;
    font-weight: 600;
}

.icon-delete {
    width: 16px;
    height: 16px;
}

.wg-quantity[data-qty="1"] .icon-delete {
    display: block;
}

.wg-quantity[data-qty="1"] .icon-minus {
    display: none;
}

.wg-quantity[data-qty]:not([data-qty="1"]) .icon-delete {
    display: none;
}

.wg-quantity[data-qty]:not([data-qty="1"]) .icon-minus {
    display: block;
}

.product-row {
    padding-bottom: 80px;
}

.view-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #3f5f8f, #5577a8);
    padding: 10px 22px 10px 10px;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.25s ease;
    max-width: 420px;
    width: 100%;
}

.view-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.3);
    color: #fff;
}

/* Left Count Circle */
.cart-count {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

/* Center Text */
.cart-text {
    font-size: 18px;
    flex: 1;
    text-align: left;
}

/* Right Price */
.cart-price {
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
}

.view-cart-details {
    width: 500px;
    margin: 0 auto;
    display: block;
    text-align: center;
}

/* Container */
.cart-section {
    padding: 80px 0;
}

/* Cart Card */


/* Cart Item */
.cart-item {
    display: flex;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid rgb(2 6 23 / 23%);
}


.cart-img {
    width: 80px;
    height: 80px;
    border-radius: 14px;
    background: #020617;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.cart-img img {
    width: 100%;
    height: 100%;
    background: #fff;
    object-fit: contain;
    border-radius: 10px;
}

/* Item Info */
.cart-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-title {
    font-size: 18px;
    font-weight: 600;
}

.cart-card .cart-price {
    font-size: 16px;
    color: var(--main-color);
    margin-top: 4px;
}

/* Quantity */
.cart-card .wg-quantity {
    display: flex;
    align-items: center;
    background: #020617;
    border-radius: 999px;
    padding: 6px;
    gap: 10px;
}

.cart-card .btn-quantity {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
}

.cart-card .quantity-product {
    width: 36px;
    background: transparent;
    border: none;
    color: #fff;
    text-align: center;
    font-weight: 600;
}

.cart-card .quantity-product:focus {
    outline: none;
}
.cart-card .btn-quantity:hover{
    background-color: #fff;
}

/* Remove */
.remove-item {
    cursor: pointer;
    color: #f87171;
    font-size: 14px;
    font-weight: 600;
}

/* Summary */
.cart-summary {
    background: linear-gradient(135deg, #3f5f8f, #5577a8);
    border-radius: 20px;
    padding: 22px;
    margin-top: 24px;
    color: #fff;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    margin-bottom: 12px;
}

.summary-row.total {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 20px;
    font-weight: 700;
    padding-top: 10px;
}

/* Checkout */
.continue-shopping-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    color: #020617;
    padding: 14px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #020617;
    transition: all 0.3s ease;
}
.continue-shopping-btn:hover {
    background: #020617;
    color: #fff;
}
.checkout-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #020617;
    color: #fff;
    padding: 14px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.checkout-btn:hover{
    background-color: #fff;
    color: var(--main-color);
}
.cart-info-left{
    flex: 1;
}
.cart-item-list{
    padding-right: 30px;
}
.remove-item{
        width: 40px;
    height: 40px;
    background: red;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}
.remove-item img{
    width: 20px;
}


.form-group {
    margin-bottom: 14px;
}

.form-group label {
    font-size: 13px;
    color: #b5b5c3;
    display: block;
    margin-bottom: 6px;
}

.step .form-group input {
    width: 100%;
    height: 50px;
    border-radius: 0;
    border: none;
    padding: 0 12px;
    font-size: 14px;
}

.phone-number-input {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 0px;
    height: 50px;
    padding-bottom: 0;
}

.phone-number-input .code {
    padding: 0 12px;
    font-size: 14px;
    color: #333;
}

.phone-number-input input {
    border: none;
    flex: 1;
    height: 100%;
    padding-right: 12px;
}

.step select.form-select {
    width: 100%;
    height: 50px;
    border: none;
    padding: 0 12px;
    font-size: 14px;
    background-color: #fff;
    border-radius: 0;
    box-shadow: none !important;
}

.required {
    color: #ff4d4f;
}

.delivery-box {
    margin-bottom: 16px;
}

.delivery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.delivery-header h6 {
    color: #ffffff;
    font-size: 15px;
    margin: 0;
}

.change-link {
    font-size: 16px;
    color: #16183a;
    text-decoration: none;
    font-weight: 600
}
.change-link:hover {
      color: #fff;
}
.delivery-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(180deg, #1b1d3f, #16183a);
    padding: 14px;
    border-radius: 14px;
}

.delivery-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivery-icon img {
   width: 26px;
}

.delivery-text p {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.delivery-text span {
    font-size: 14px;
    color: #b5b7e3;
}
.payment-box {
    margin-top: 18px;
}

.payment-title {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 12px;
}

.payment-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border-radius: 12px;
    padding: 8px 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

.payment-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-left img {
    width: 45px;
    height: auto;
}

.payment-left span {
    font-size: 16px;
    color: #1c1c1c;
    font-weight: 600;
}

/* Hide default radio */
.payment-item input {
    display: none;
}

/* Custom radio */
.radio-ui {
    width: 18px;
    height: 18px;
    border: 2px solid #bcbcbc;
    border-radius: 50%;
    position: relative;
}

.payment-item input:checked + .payment-left + .radio-ui {
    border-color: #020617;
}

.payment-item input:checked + .payment-left + .radio-ui::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #020617;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.promo-box {
    margin-top: 18px;
}

.promo-title {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 8px;
}

.promo-input {
    display: flex;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
}

.promo-input input {
    flex: 1;
    border: none;
    padding: 12px 14px;
    font-size: 14px;
    outline: none;
}

.promo-input input::placeholder {
    color: #9a9a9a;
}

.promo-input button {
    background: #020617;
    color: #ffffff;
    border: none;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.promo-input button:hover {
    opacity: 0.9;
}

.payment-summary{
    margin-top: 18px;
}
.summary-title {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 8px;
}