.container {
    max-width: 100%;
}
.lh-md{
    line-height: 28px;
}
.text-red-custom {
    color: #DF2D1D !important;
}
.text-red-custom-2 {
    color: #DD2B1B;
}
.text-black-custom {
    color:  #333333;
}
.text-grey-custom {
    color:  #555555;
}
.text-grey-custom-2 {
    color:  #777777a2;
}
.text-grey-custom-3 {
    color:  #33333394;
}
.text-blue-custom{
    color: #00296B;
}
.text-blue-custom-2{
    color: #10026B;
}
.h-5{
    height: 5rem;
}
.bg-blue-custom{
    background-color: #00296B;
}
.bg-white-custom{
    background-color: #F5F5FF;
}
.bg-grey-custom{
    background-color: #333333;

}
.w-max {
    width: max-content;
}
.w-fit {
    width: fit-content;
}

.btn-1 {
    background-color: unset;
    color: white;
    border: 1px solid white;
    transition: .3s ease-in-out;
}

.btn-1:hover {
    background-color: white;
    color: #00296B;
    border: 1px solid #00296B;
    transition: .3s ease-in-out;
}

.btn-2 {
    background-color: #00296B;
    color: white;
    border: 1px solid #00296B;
    transition: .3s ease-in-out;
}

.btn-2:hover {
    background-color: white;
    color: #00296B;
    border: 1px solid #00296B;
}

.btn-3 {
    background-color: #F5F5FF;
    color: #00296B;
    border: 1px solid #00296B;
    transition: .3s ease-in-out;
}

.btn-3:hover {
    background-color: #00296B;
    color: white;
    border: 1px solid #00296B;

}

.z-99 {
    z-index: 99;
}

.lh-md-2 {
    line-height: 48px;
}

.overlay-blue::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #14143fbf;
    z-index: 0;
}

.navbar .navbar-toggler {
    border: none;
}

.navbar .navbar-toggler:focus-visible {
    outline: none;
}

.navbar .navbar-toggler-icon:focus-visible {
    outline: none !important;
}

#offcanvasNavbar .btn-close:focus-visible {
    outline: none;
}

#offcanvasNavbar .btn-close:focus {
    box-shadow: none;
}

.navbar .navbar-toggler:focus {
    /* outline: none; */
    box-shadow: none;
}

.rounded-32 {
    border-radius: 32px;
}

.px-3-custom {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}


.navbar-toggler-icon {
    background-image: url("../images/toggler.svg");
}

.page-link {
    background-color: rgb(248 249 250);
    color: black;
}
.page-link.active:focus {
    box-shadow: none;
}
.page-link:focus {
  box-shadow: none;
  background: unset;
}

.page-link.active {
    background-color: #10026B;
    border-radius: 50%;
    color: white;
    z-index: 0;
}
.video-container {

       /* background-image: url(../images/notfound-desk.jpg); */
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    min-height: 250px;
}



.video-container i{
    background-color: #10026B;
    font-size: 40px;
    display: flex;
    width: 4rem;
    height: 4rem;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 50%;
}
.video-container .btn:active{
    border: none;
}



#videoModal .modal-content {
    padding: 0 ;
    margin: 0 ;
    border: none ;
    border-radius: 0 ;
    box-shadow: none ;
    background: #000 ;
}


.menu-desktop .custom-menu {
    display: block !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .35s ease-in-out;
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    border-radius: 8px;
    padding: 5px 0;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
    z-index: 10;
    white-space: nowrap;
}


.menu-desktop .custom-hover:hover .custom-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.curved-line {
    height: 0;
    position: relative;
    margin: 40px 0;
}

.curved-line::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;

    height: 3px;
    border-radius: 100px;


    background: radial-gradient(ellipse at center,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(80, 80, 80, 0.25) 35%,
            rgba(80, 80, 80, 0.12) 55%,
            rgba(255, 255, 255, 0) 100%);


    mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);


    transform: translateY(-50%) scaleY(1.2);
    transform-origin: center;
}





#accordionMenu ul li::marker {
    color: #DE2D1D;
}


.list-header {
    background-image: url("../images/header-list-mobile.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 1rem;
    min-height: 130px;
}




.border-y-red {
    border-top: 3px solid #DE2D1D;
    border-bottom: 3px solid #DE2D1D;
}

.divider-after::after {
    content: "";
    position: absolute;
    right: 90%;
    top: 10%;
    bottom: 0;
    width: 0.5px;
    background-color: rgba(255, 255, 255, 0.566);
    height: 25px;
}





.list-header .breadcrumb-item+.breadcrumb-item::before {
    color: white;
}

.custom-menu .dropdown-item {
    color: grey;
    transition: color .3s ease-in-out;
}

.menu-desktop .custom-menu .dropdown-item:hover {
    color: #DE2D1D;
    transition: color .3s ease-in-out;
}

.menu-desktop .dropdown-item:focus,
.dropdown-item:hover {
    background-color: unset;
}

.overlay-grey-2-lg::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    height: 100%;
    right: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 1rem;
}
.map-iframe iframe{
    height: 250px;
}

@media (min-width:992px) {
    .container {
        max-width: 81%;
    }

    .px-lg-6 {
        padding-right: 6rem;
        padding-left: 6rem;
    }

    .ps-lg-6 {
        padding-right: 6rem;
    }


    .list-header {
        background-image: url("../images/header-list-desk.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;

    }
    .divider-after::after {
    right: 100%;
}
  

}


.container-lg-none {
    max-width: 100%;
}
.position-sticky-custom{
    position: sticky;

    top: 6rem;
}


.mySwiper-reports .swiper-slide img ,.mySwiper-reports-images .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.questions .accordion-button:not(.collapsed) {
  background-color: white;}

#accordionReportsFAQ .accordion-button:focus{
    box-shadow: none;
}

#accordionReportsFAQ .accordion-button:not(.collapsed){
    color: #DE2D1D;
}
#accordionRules .accordion-button:focus{
    box-shadow: none;
}
#accordionRules .accordion-button{
    background-color: white;
}
#accordionRules .accordion-button:not(.collapsed) {
  color: #DE2D1D;
}
.idea-input:focus-visible{
    outline: none;
    box-shadow: 0.5px 0.5px 2px #ababab;
}
.modal-report-details .btn-close:focus{
     box-shadow: 0.5px 0.5px 2px #ababab;
}
.position-unset{
    position: unset;
}
.modal-report-details .carousel-indicators [data-bs-target]{
    text-indent: unset;
}
.modal-detail{
    background-color: rgba(0, 0, 0, 0.65);
}


.carousel-indicators button img {
    opacity: 0.5;
    transition: 0.3s;
}

.carousel-indicators button.active img {
    opacity: 1;
}


#accordionMenu.accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.navbar .accordion-button {
    box-shadow: none;
}

.navbar .accordion-button:not(.collapsed) {
    box-shadow: none;
}

.accordion-item:focus {
    border: none;
    outline: none;
}

#accordionMenu .accordion-item {
    border: none !important;
    outline: none;
}

.navbar .accordion-button:not(.collapsed) {
    background-color: white;
}

.accordion-button {
    outline: none;
    box-shadow: none;
}

.contact-info li::marker{
    color: #DE2D1D;
}
.span-contact-phone{
    display: inline-block;
    direction: ltr;
}


.border-bottom-blue > *:not(:last-child) {
    border-bottom: 1px solid #00296B;
}



.title-line::after {
    content: "";
    position: absolute;
    bottom: -7px;
    right: 0;
    width: 90%;

    height: 1px;

    border-radius: 100px;

    background: linear-gradient(to right,
            rgba(255, 0, 0, 0) 0%,

            rgba(255, 0, 0, 0.3) 35%,

            rgba(222, 45, 29, 1) 60%,

            rgba(222, 45, 29, 1) 100%

        );


    mask-image: linear-gradient(to right,
            transparent 0%,
            black 12%,
            black 88%,
            transparent 100%);
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 12%,
            black 88%,
            transparent 100%);


    transform: translateY(-50%) scaleY(1.7);
    transform-origin: center;
}
.border-color-hover{
    border: 1px solid grey;
}
.border-color-hover:hover{
    transition: border .3s ease-in-out ;
    border: 1px solid #00296B;
}
/* #custom-legend .legend-item {
    font-family: IRANYekan, sans-serif;
    font-size: 14px;
} */

.legend-item {
    position: relative;
    padding-right: 22px;
    font-size: 12px;
    display: flex;
    align-items: center;
    width: 30%;
}

.legend-item::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 3px;
    background-color: var(--legend-color);
    position: absolute;
    right: 0;
}
.outline-none{
    outline: none;
}