* {
    margin: 0;
    padding: 0;
}

:root {
    --black: #000;
    --white: #fff;
    --red: #f02828;
    --grey: #F2F2F2;
    --dark-blue: #00004D;
    --sky: #31b1e3;
    --font: 'Montserrat', sans-serif;
    --heading-font: "VerveineW01-Regular";
}

body {
    font-family: var(--font);
    overflow-x: hidden;
}

.container {
    max-width: 1400px !important;
}

.bi-2rem {
    font-size: 1.5rem;
}

marquee {
    background: #d0d0d0;
    padding: 7px;
}

.border-black {
    border: 1px solid var(--black);
}

ul.navbar-nav li a {
    color: var(--white);
    text-transform: capitalize;
    font-weight: 500;
    display: inline-block;
    font-size: 14px;
}

ul.navbar-nav li a.nav-link::after {
    content: '';
    display: block;
    height: 1px;
    margin-top: 2px;
    width: 0;
    background: var(--white);
    transition: width .2s;
}

ul.navbar-nav li a.nav-link:hover {
    color: var(--white);
}

ul.navbar-nav li a.nav-link:hover::after {
    width: 100%;
    transition: 0.5s ease-in-out;
}

a {
    text-decoration: none;
}

#myVideo {
    width: 100%;
    height: 800px;
    object-fit: cover;
}

.video-cont {
    position: absolute;
    top: 40%;
    left: 13%;
    right: 0;
    color: #fff;
}

.video-cont h1 {
    font-weight: 900;
    font-size: 60px;
}

.slide {
    /*margin-top: 70px;*/
}

.carousel-caption {
    bottom: 13rem;
    left: 12%;
    text-align: left;
}

.carousel-caption h3 {
    text-transform: uppercase;
    font-size: 60px !important;
    font-weight: 600;
    text-shadow: 0px 0px 5px rgb(0 0 0 / 50%);
}

.carousel-caption p {
    width: 50%;
}

ul.slider-btn li {
    display: inline-block;
}

ul.slider-btn li:nth-child(1) a {
    padding: 9px 29px;
    border-right: none;
    display: block;
    border-radius: 32px;
    font-weight: 700;
    border: 1px solid var(--red);
    background: var(--white);
    color: var(--black);
}

ul.slider-btn li:nth-child(2) a {
    padding: 9px 29px;
    border-right: none;
    display: block;
    border-radius: 32px;
    font-weight: 700;
    margin-left: 8px;
    border: 1px solid var(--red);
    background: var(--red);
    color: var(--white);
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(1, 1);
    }

    to {
        -webkit-transform: scale(1.5, 1.5);
    }
}

@keyframes zoom {
    from {
        transform: scale(1, 1);
    }

    to {
        transform: scale(1.5, 1.5);
    }
}

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

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

.heading h1 {
    font-weight: 900;
    font-family: var(--heading-font);
    font-size: 40px;
    margin-bottom: 30px;
}

.heading-fs-24 {
    font-weight: 800;
    color: var(--black);
    text-transform: uppercase;
    font-size: 24px;
    margin: 15px 0;
}

.eng-arb {
    width: 20%;
    float: right;
    border-radius: 50px;
    text-align: center;
    border: none;
    font-weight: 500;
    font-size: 14px;
    padding: 5px 0;
    margin: 5px;
    background: var(--red);
    color: var(--white);
}

.eng-arabic {
    width: 20%;
    float: left;
    border-radius: 50px;
    text-align: center;
    border: none;
    font-weight: 500;
    font-size: 14px;
    padding: 5px 0;
    margin: 5px;
    background: var(--red);
    color: var(--white);
}

/*.form-control:focus
{
	background: var(--red);
	box-shadow: none;
    color: var(--white);
}*/

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}

.slick1 {
    text-align: center;
}

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

.slick1 img {
    /*border-radius: 20px 20px 0 0;*/
    height: 350px;
    width: 100%;
    object-fit: cover;
}

.slick2 video {
    border-radius: 20px;
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.slick1 h3 {
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    font-size: 16px;
    margin: 15px 0;
}

.slick2 h4,
.gallery-item h4 {
    font-weight: 800;
    color: var(--black);
    text-transform: uppercase;
    font-size: 16px;
    margin: 15px 0;
}

.btn-red {
    padding: 9px 29px;
    border-right: none;
    display: inline-block;
    border-radius: 3px;
    font-weight: 700;
    border: 1px solid var(--grey);
    background: var(--grey);
    color: var(--dark-blue);
    text-align: center;
    font-size: 13px;
}

.btn-red:hover {
    background: var(--dark-blue);
    border: 1px solid var(--dark-blue);
    transition: .5s ease-in-out;
    color: var(--white);
}

.occasion-flex {
    display: flex;
}

.bg-white-video {
    margin: 10px;
    /*border-radius: 20px;*/
    background: var(--white);
    /*padding: 10px;
    box-shadow: 2px 2px 10px 0px rgb(0 0 0 / 10%);*/
    border: 1px solid #eee;
    text-align: center;
}

/*.zoom-350
{
    height: 350px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.zoom-350 img
{
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all 2s ease-in-out;
}

.zoom-350:hover img
{
    transform: scale(1.5, 1.5);
}
*/
.zoom-280 {
    height: 280px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.zoom-280 img {
    width: 100%;
    height: 280px;
    transition: all 2s ease-in-out;
}

.zoom-280:hover img {
    transform: scale(1.5, 1.5);
}

.zoom-200 {
    height: 200px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.zoom-200 img {
    width: 100%;
    height: 200px;
    transition: all 2s ease-in-out;
}

.zoom-200:hover img {
    transform: scale(1.5, 1.5);
}

.bg-white-popular {
    margin: 10px;
    border-radius: 20px;
    background: var(--white);
    padding: 10px;
    box-shadow: 2px 2px 10px 0px rgb(0 0 0 / 10%);
    text-align: center;
}

.bg-white-popular img {
    border-radius: 15px 15px 0 0;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.slick-prev:before,
.slick-next:before {
    color: var(--white) !important;
    background: #000;
    padding: 10px 12px;
    border-radius: 50px;
    font-family: inherit;
}

.slick-prev {
    left: -40px;
}

.testi video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.test-cont img {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    float: left;
}

.cname-loc {
    float: left;
    margin-left: 15px;
}

.cname-loc h5.client-name {
    font-weight: 600;
    text-align: left;
}

.client-name p {
    text-align: left;
    color: var(--black);
}

.test-cont p {
    text-align: left;
}

.gallery-item img {
    width: 100%;
    border-radius: 15px 15px 0 0;
    height: 280px;
    object-fit: cover;
}

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


footer {
    padding: 100px 0;
}

ul.footer-links {
    display: flex;
    justify-content: center;
    padding-left: 0;
}

ul.footer-links-red {
    display: flex;
    justify-content: center;
    padding-left: 0;
}

ul.footer-links li,
ul.footer-links-red li {
    list-style: none;
}

ul.footer-links li a {
    color: var(--white);
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 15px;
    font-size: 20px;
    border-right: 1px solid var(--white);
}

ul.footer-links-red li a {
    color: var(--red);
    text-decoration: none;
    padding: 0 15px;
    border-right: 1px solid var(--red);
}

ul.footer-links li:nth-child(5) a,
ul.footer-links-red li:nth-child(4) a {
    border-right: 0;
}

ul.footer-social {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
    padding-left: 0;
}

ul.footer-social li:nth-child(1) {
    margin-left: 0;
}

ul.footer-social li {
    list-style: none;
    margin: 0 7px;
}

ul.footer-social li a {
    color: var(--white);
    font-size: 22px;
}

ul.footer-social li:nth-child(1) {
    background: #3b5998;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
}

ul.footer-social li:nth-child(2) {
    background: #1DA1F2;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
}

ul.footer-social li:nth-child(3) {
    background: #0A66C2;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
}

ul.footer-social li:nth-child(4) {
    background: #d62976;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
}

ul.footer-social li:nth-child(5) {
    background: #FF0000;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
}

ul.footer-social li:hover {
    transform: rotate(360deg);
    transition: .5s ease-in-out;
}

.d-patch {
    position: absolute;
    bottom: 34.7%;
    margin-left: 1%;
    background: var(--red);
    padding: 15px 20px 7px;
    color: #fff;
    text-transform: uppercase;
}

.d-patch_2 {
    position: absolute;
    bottom: 39.7%;
    margin-left: 5%;
    background: var(--red);
    padding: 15px 20px 7px;
    color: #fff;
    text-transform: uppercase;
}

.d-patch_3 {
    position: absolute;
    bottom: 50%;
    margin-left: 1%;
    background: var(--red);
    padding: 15px 20px 7px;
    color: #fff;
    text-transform: uppercase;
}

.d-patch h3,
.d-patch_2 h3,
.d-patch_3 h3 {
    margin: 0;
    color: #fff;
    font-size: 30px;
    font-weight: 800;
}

.d-patch p,
.d-patch_2 p,
.d-patch_3 p {
    margin: 0;
    font-size: 18px;
}

#statistic {
    background-image: url(../img/bg.jpg);
    background-attachment: fixed;
    background-position: center;
}

/* tannu*/
img.section-img {
    width: 305px;
    height: 225px;
    object-fit: cover;
    margin-bottom: 1rem;
    border-radius: 15px;
}

.zoom-hover {
    width: 305px;
    height: 225px;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    border-radius: 15px;
}

.zoom-hover img {
    width: 305px;
    height: 225px;
    object-fit: cover;
    transition: all 2s ease-in-out;
}

.zoom-hover:hover img {
    transform: scale(1.5, 1.5);
    cursor: pointer
}

img.section-img:nth-child(2) {
    margin-bottom: 0;
}

section.about {
    background: #fff;
}

.about-us h3 {
    text-transform: uppercase;
    color: #000;
    font-weight: 800;
    font-size: 3rem
}

.about-us h3 span {
    color: var(--red);
    display: block;
    position: relative;
}

.read-more-btn {
    padding: 9px 29px;
    border-radius: 32px;
    font-weight: 700;
    color: var(--red);
    border: 2px solid var(--red);
    text-transform: uppercase;
}

.read-more-btn:hover {
    padding: 9px 29px;
    border-radius: 32px;
    font-weight: 700;
    color: var(--black);
    border: 2px solid var(--red);
    text-transform: uppercase;

}

/*tannu*/

.sponsor-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    position: absolute;
    top: 5%;
    margin-left: 10px;
    box-shadow: 0px 0px 5px var(--black);
    background: #fff;
    border-radius: 50px;
    padding: 6px;
}

.sponsor-logo_2 img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    position: absolute;
    top: 6%;
    margin-left: -144px;
    box-shadow: 0px 0px 5px var(--black);
    background: #fff;
    border-radius: 50px;
    padding: 6px;
}

.sponsor-logo_3 img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    position: absolute;
    top: 11%;
    margin-left: 10px;
    box-shadow: 0px 0px 5px var(--black);
    background: #fff;
    border-radius: 50px;
    padding: 6px;
}

.bg-white {
    background-color: var(--white);
}

.brand-sponsor {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.brand-sponsor img {
    background-color: var(--grey);
    margin-bottom: 3px;
}

.brand-sponsor img:hover {
    filter: grayscale(100%);
}

.bdr-15 {
    border-radius: 15px !important;
}

.bg-sponsor {
    background-image: url(../img/bg-sponsor.jpg);
    background-attachment: fixed;
    background-position: center;
}

.p-100 {
    padding: 100px;
}

.bg-sponsor h1 {
    font-size: 60px;
}

.hover-white:hover {
    color: var(--white);
}

.goog-logo-link {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
    font-size: 6px !important;
}

#google_translate_element span {
    display: none;
}

.goog-te-gadget .goog-te-combo {
    margin: 11px 0 0 !important;
}

/*breadcrumb*/

.bread-img {
    background-image: url('../img/bread.jpg');
    background-position: center;
    width: 100%;
    height: 300px;
    margin-bottom: 0;
}

.bread-img h1 {
    margin-top: 130px;
    text-transform: uppercase;
    margin-bottom: 10px;
}


.bread-img ul li {
    display: inline-block;
    text-transform: uppercase;
}

.bread-img ul li a {
    color: #fff;
}

.text-red {
    color: var(--red);
}

.text-justify {
    text-align: justify;

}

/*contact us*/

.contact_us {
    background-color: #f1f1f1;
    padding: 120px 0px;
}

.contact_inner {
    background-color: #fff;
    position: relative;
    box-shadow: 20px 22px 44px #cccc;
    border-radius: 25px;
}

.contact_field {
    padding: 60px 270px 90px 100px;
}

.right_conatct_social_icon {
    height: 100%;
}

.contact_field h3 {
    color: #000;
    font-size: 40px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px
}

.contact_field p {
    color: #000;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 35px;
}

.contact_field .form-control {
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid #ccc;
}

.contact_field .form-control:focus {
    box-shadow: none;
    outline: none;
    border-bottom: 2px solid #1325e8;
}

.contact_field .form-control::placeholder {
    font-size: 13px;
    letter-spacing: 1px;
}

.contact_info_sec {
    position: absolute;
    background-color: var(--black);
    right: 0px;
    top: 16%;
    height: 340px;
    width: 340px;
    padding: 70px 40px;
    border-radius: 25px 0 0 25px;
}

.contact_info_sec h4 {
    letter-spacing: 1px;
    padding-bottom: 15px;
}

.info_single {
    margin: 30px 0px;
}

.info_single i {
    margin-right: 15px;
}

.info_single span {
    font-size: 14px;
    letter-spacing: 1px;
}

button.contact_form_submit {
    background: linear-gradient(to top right, #1325e8 -5%, #8f10b7 100%);
    border: none;
    color: #fff;
    padding: 10px 15px;
    width: 100%;
    margin-top: 25px;
    border-radius: 35px;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 2px;
}

.socil_item_inner li {
    list-style: none;
}

.socil_item_inner li a {
    color: #fff;
    margin: 0px 15px;
    font-size: 14px;
}

.socil_item_inner {
    padding-bottom: 10px;
}

.right_conatct_social_icon {
    background-color: var(--red);
}

.contact_field input {
    padding: 1rem 0.75rem;
}

#login label,
#login input,
#login select,
#login textarea {
    margin-bottom: .5rem;
}

.flex-log {
    display: flex;
    justify-content: space-between;
}

.eye-icon {
    float: right;
    margin-right: 10px;
    margin-top: -38px;
    position: relative;
    z-index: 99999;
}

/*listing*/
.side-sticky {
    position: sticky;
    top: 100px;
}

.no-bullet {
    list-style: none;
}

.side-cover {
    border-radius: 20px;
    box-shadow: 2px 2px 10px 0px rgb(0 0 0 / 10%);
}

.side-sponsor-logo {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.side-sponsor-logo div img {
    width: 70px;
}

.br-20 {
    border-radius: 20px;
}

.flex-event {
    display: flex;
    justify-content: space-between;
}

.share-event {
    display: flex;
}

.event-dtl ul,
.share-event ul {
    display: flex;
    align-items: center;
}

.event-dtl ul li,
.share-event ul li {
    margin-right: 15px;
}

.share-event ul li:nth-child(5) {
    margin-right: 0;
}

.ai-center {
    align-items: center;
}

.next-prev {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul.list-unstyle {
    list-style: none;
}

ul.list-unstyle li {
    line-height: 1.8;
}

section#chng-pwd .eye-icon {
    margin-top: -45px;
}

section#my-event table tr td {
    vertical-align: middle;
}

.tbl-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.box-shadow {
    box-shadow: 2px 2px 10px 0px rgb(0 0 0 / 10%);
}

.h-400 img {
    height: 400px;
    object-fit: cover;
}

.event-photo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.event-photo img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-bottom: 10px;
}


@media only screen and (min-device-width: 1281px) and (max-device-width: 1366px) {
    .carousel-caption {
        bottom: 6rem;
    }

    .headerwp,
    .wsmainwp {
        max-width: 1200px !important;
    }

}

@media only screen and (min-device-width: 993px) and (max-device-width: 1280px) {

    .headerwp,
    .wsmainwp {
        max-width: 1200px;
    }

    .d-patch {
        bottom: 37.3% !important;
    }

    .d-patch_2 {
        bottom: 42.4%;
    }

    .d-patch_3 {
        bottom: 52.4% !important;
    }

    .carousel-caption {
        bottom: 5rem;
    }

    .sponsor-logo_2 img {
        margin-left: -120px;
    }


}

@media only screen and (min-width: 769px) and (max-width: 992px) {

    .headerwp,
    .wsmainwp {
        max-width: 900px;
    }

    .eng-arb {
        width: 30%;
    }

    .slide {
        margin-top: 0 !important;
    }

    .wsmenu>.wsmenu-list>li.rightmenu>.topmenusearch {
        width: 110px;
    }

    .zoom-hover {
        width: 100% !important;
    }

    .gallery-item {
        width: 33%;
    }

    .sponsor-logo_2 img {
        margin-left: -125px;
    }

    .d-patch {
        bottom: 31.8%;
        margin-left: 15px;
    }

    .d-patch_2 {
        bottom: 42.3%;
    }

    .d-patch_3 {
        bottom: 44.7%;
        margin-left: 15px;
    }

    .carousel-caption {
        bottom: 3rem;
    }

    .carousel-caption p {
        width: 90%;
    }

    .carousel-caption h3 {
        font-size: 32px !important;
    }

    .about-us h3 {
        font-size: 2rem;
    }
    .top-servises{
        margin-top: 18px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 768px) {
    .slide {
        margin-top: 15px;
    }

    .carousel-caption {
        bottom: 1rem;
    }

    .carousel-caption p {
        width: 90%;
        font-size: 14px;
    }

    .carousel-caption h3 {
        font-size: 30px !important;
    }

    .zoom-hover {
        width: 150px;
    }

    .about-us h3 {
        font-size: 1.8rem;
    }

    .d-patch {
        margin-left: 15px;
    }

    .gallery-item {
        width: 50% !important;
    }

    .bg-sponsor .p-100 {
        padding: 40px;
    }
}



@media only screen and (min-width: 360px) and (max-width: 480px) {
    /*.slide
    {
        margin-top: 55px;
    }*/

    .slick-prev:before,
    .slick-next:before {
        display: none;
    }

    .about-us h3 {
        font-size: 2rem;
    }

    .d-patch {
        bottom: 31.9%;
    }

    .d-patch_2 {
        bottom: 39.7%;
    }

    .d-patch_3 {
        margin-left: 12px;
        bottom: 44.5%;
    }

    .sponsor-logo_2 img {
        margin-left: -120px;
    }

    .bg-sponsor .p-100 {
        padding: 30px;
    }

    .zoom-hover,
    .zoom-hover img {
        width: 100%;
        object-fit: cover;
    }

    .about-us {
        margin-top: 3rem;
    }

    #filters {
        display: grid;
        text-align: center;
    }

    ul.footer-social li {
        margin: 0 7px;
    }

    ul.footer-links li a,
    ul.footer-links-red li a {
        border-right: 0;
    }

    ul.footer-links,
    ul.footer-links-red {
        flex-wrap: wrap;
    }

    .top-flex {
        flex-direction: column;
    }

    .search-width {
        width: inherit !important;
        margin: 10px 0;
    }

    .search-width~div {
        margin: 0 0 10px 0;
    }

    .navbar {
        justify-content: flex-start !important;
    }

    .navbar-toggler-icon {
        filter: invert(1);
    }

    .navbar-toggler {
        border: none;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }
    .top-servises{
        margin-top: 18px;
    }
}

#search-btn {
    cursor: pointer;
    border-radius: 0;
    background: var(--black);
    border: 1px solid var(--black);
}

.nav-search {
    border: 1px solid var(--black);
}

.nav-search {
    border-radius: 0;
}

ul.alphabet {
    display: flex;
    /*margin-top: 75px;*/
    justify-content: space-between;
    text-transform: uppercase;
}

ul.alphabet li {
    list-style: none;
}

ul.alphabet li a {
    color: #000;
    font-weight: 600;
    font-size: 18px;
}

.bg-grey {
    background: var(--grey);
}

.br-box {
    position: relative;
}

.br-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
}


.br-box h1,
.br-box h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    color: var(--black);
    font-weight: 800;
    background: rgb(255 255 255 / 25%);
    padding: 10px 40px;
}

.no-bullet {
    list-style: none;
}

.alpha_list {
    display: flex;
    justify-content: space-around;
    margin-bottom: 50px;
}

.big_letter a {
    color: var(--black);
    font-size: 40px;
    font-weight: 900;
    /*background: #fff000;*/
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alist ul li a {
    color: var(--black);
    text-transform: uppercase;
    font-weight: 600;
}

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

.center-heading {
    text-align: center;
}

.center-heading h2 {
    font-weight: 700;
}

.br-dark {
    border: 1px solid var(--black);
    border-radius: 10px;
    padding: 10px;
    margin: 5px;
}

.br-dark h5 {
    margin-bottom: 0;
    text-align: center;
}

.br-box~h3 {
    font-weight: 800;
    text-align: center;
    margin-top: 15px;
}

.flex-doctor {
    display: flex;
    padding: 20px;
}

.flex-doctor img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 2px 2px 5px rgb(0 0 0 / 30%);
    border-radius: 10px;
    margin-right: 50px;
}

.flex-doctor h3 {
    font-weight: 800;
    margin-bottom: 0;
}

.flex-filter {
    display: flex;
    justify-content: space-between;
}

.flex-cartdtl {
    display: flex;
}

.flex-cartdtl button {
    border: none;
    padding: 6px;
}

.flex-y-center {
    display: flex;
    align-items: center;
}

.flex-cartdtl ul li a {
    font-size: 22px;
    color: var(--black);
    margin-right: 10px;
}

#myTab {
    border: 1px solid var(--black);
    padding: 5px;
    border-radius: 7px;
    display: flex;
    justify-content: space-around;
    margin-bottom: 10px;
}

#myTabContent {
    border: 1px solid var(--black);
    padding: 15px;
    border-radius: 7px;
    margin-bottom: 10px;
}

ul#myTab li button {
    border: none;
    font-weight: bold;
    font-size: 20px;
}

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

.bb-navbar {
    border-bottom: 1px solid #000;
}

.no-bg-border {
    background: none;
    border: none;
    color: #00004D;
}

.partner-image {
    /*width: 200px;*/
    height: 127px;
    padding: 20px;
}

/*tani css
*/
.social-icon {
    display: inline-block;
    height: 45px;
    width: 45px;
    line-height: 45px;
    font-size: 18px;
    text-align: center;
    background-color: #000;
    color: #fff;
    border-radius: 4px;
}

.br-box1 img {
    width: 100%;
    height: 300px;
    object-fit: cover;

}

.cart-item-number {
    position: absolute;
    right: -10px;
    font-size: 10px;
}

.cart-image {
    width: 100px;
}

.checkout-image {
    width: 50px !important;
}

.navbar-brand img {
    /*width: 300px;*/
    margin: 10px 0;
}

.top-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.p-relative {
    position: relative;
}

.navbar {
    display: flex;
    justify-content: center;
    background: var(--dark-blue);
}

.form-control:focus {
    box-shadow: none;
}

.search-width {
    width: 25%;
}

.ar {
    display: none;
}

.language-change a {
    cursor: pointer;
}

.navbar .nav-item:hover .dropdown-menu {
    display: block;
    border: none;
}

.navbar .nav-item:hover .dropdown-menu {
    padding: 0;
    border-radius: 0;
}

ul.navbar-nav li a.dropdown-item {
    color: var(--black);
}

ul.navbar-nav li a.dropdown-item:hover {
    color: var(--white);
    background-color: var(--dark-blue);
}

ul.navbar-nav li a.dropdown-item:active {
    background-color: var(--dark-blue);
    color: var(--white);
}

.copyright {
    border-top: 1px solid var(--white);
}



/*testimonial*/

.bg-white-video {
    margin: 10px;
    border-radius: 20px;
    background: var(--white);
    padding: 10px;
    box-shadow: 2px 2px 10px 0px rgb(0 0 0 / 10%);
    text-align: center;
}


.search-width input::placeholder {
    font-size: 14px;
}



.prange img {
    height: 250px;
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.prange .bg-white-video {
    margin: 0;
    margin-bottom: 20px;
}

.prange h3 {
    font-weight: 700;
    color: var(--dark-blue);
    text-transform: uppercase;
    font-size: 16px;
    margin: 15px 0;
}

.breadcumb {
    padding: 100px 0;
    background-image: url('../img/bread.jpg');
    background-position: center;
    position: relative;
}

.breadcumb::before {
    content: '';
    background-color: rgb(0 0 0 / 50%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/*.bread
{
    position: absolute;
    width: 100%;
    z-index: 9;
    top: 55px;
    color: #fff;
}*/

.top-header ul li a:nth-child(1) {
    font-size: 18px;
    font-weight: 600;
}

.top-header ul li a:nth-child(2) {
    font-size: 18px;
    font-weight: 600;
}

.top-header ul li a:nth-child(3) {
    font-size: 18px;
    font-weight: 600;
}

.list-col-4 ul {
    justify-content: space-between;
    display: flex;
    flex-flow: wrap;
}

.list-col-4 ul li {
    width: 20%;
    line-height: 2;
}

.list-col-4 ul li a {
    font-size: 22px;
    font-weight: 600;
    color: var(--red);
}

.flex-search {
    display: flex;
}

/* ......... */

.brand-content {
    text-align: center;
}

.brand-content h2 {
    font-size: 27px;
    font-weight: 600;
    color: #00004D;
}

/* logo brand slider start */
.our-clients {
    background-color: #ffffff;
    padding-bottom: 10px;
}

.our-clients h2 {
    font-size: 27px;
    font-weight: 600;
    color: #00004D;
}

.slider {
    width: 100%;
    /* max-width: 1200px; */
    overflow: hidden;
    padding: 20px 0;
    border-radius: 16px;
    background-color: #ffffff;
    /* box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08); */
}

.track {
    display: flex;
    align-items: center;
    gap: 80px;
    white-space: nowrap;
    will-change: transform;
}

.logo {
    width: 100px;
    height: 100px;
    /* border-radius: 50%; */
    overflow: hidden;
    position: relative;
    flex: 0 0 auto;
    background-color: #ffffff;
}

.logo-client {
    display: flex;
    justify-content: space-between;
}

/* grayscale base image */
.logo img.gray {
    width: 100px;
    height: 100px;
    object-fit: cover;
    /* border-radius: 50%; */
    filter: grayscale(1);
    transition: opacity .25s ease;
}

/* hover color image */
.logo img.color {
    width: 100px;
    height: 100px;
    object-fit: cover;
    /* border-radius: 50%; */
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .25s ease;
}

.logo:hover img.color {
    opacity: 1;
    width: 100px;
    height: 100px;
}

.logo:hover img.gray {
    opacity: 0;
    width: 100px;
    height: 100px;
}

@media (max-width: 600px) {
    :root {
        --size: 70px;
        --gap: 20px;
    }
}

/* logo brand slider stop */

/* testomonial start */
.section-wrap {
    background: url('img/testimonials/bg.jpg') center/cover no-repeat;
    padding: 10px 0;
    position: relative;
    background-color: #00004D;
}

.section-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.title-row {
    text-align: center;
    color: #fff;
}

.section-title {
    font-size: 27px;
    margin: 10px 0;
    font-weight: 600;
}

.quote {
    font-size: 40px;
    color: #fff;
}

.slider {
    position: relative;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.6s ease;
}

.testimonial {
    min-width: 100%;
    text-align: center;
    color: #000000;
    padding: 20px;
    box-sizing: border-box;
}

.testimonial__text {
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial__img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 15px auto;
    display: block;
}

.testimonial__author {
    font-weight: bold;
    color: #00004D;
}

.testimonial__company {
    font-size: 14px;
    opacity: 0.8;
}

/* Arrows */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
    background: #ddd;
}

/* Dots */
.dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    margin: 5px;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #fff;
}
/* testomonial start */

.top-servises{
    text-align: center;
    padding: 12px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.top-servises img{
    width: 55px;
    height: 55px;
    margin-top: 4px;
}

.top-servises .top-img{
    width: 65px;
    height: 65px;
    margin-left: 162px;
    border-radius: 50%;
    background-color: #00004D;
}

.top-servises h3{
    font-size: 19px;
    font-weight: 600;
    padding-top: 7px;
    color: #00004D;
}
