@font-face {
    font-family: "Roboto-Regular";
    src: url('fonts/Roboto-Regular.ttf');
}

@font-face {
    font-family: "Roboto-Light";
    src: url('fonts/Roboto-Light.ttf');
}


@font-face {
    font-family: "Roboto-Medium";
    src: url('fonts/Roboto-Medium.ttf');
}

@font-face {
    font-family: "Roboto-MediumItalic";
    src: url('fonts/Roboto-MediumItalic.ttf');
}


@font-face {
    font-family: "Roboto-Bold";
    src: url('fonts/Roboto-Bold.ttf');
}

@font-face {
    font-family: "Roboto-Bold-Condensed-Italic";
    src: url('fonts/Roboto-BoldCondensedItalic.ttf');
}


@font-face {
    font-family: "Lato-Black";
    src: url('fonts/Lato-Black.ttf');
}

@font-face {
    font-family: "Roboto-Condensed";
    src: url('fonts/Roboto-Condensed.ttf');
}

@font-face {
    font-family: "Roboto-Condensed-italic";
    src: url('fonts/Roboto-CondensedItalic.ttf');
}


@font-face {
    font-family: "Roboto-BoldCondensed";
    src: url('fonts/Roboto-BoldCondensed.ttf');
}


@font-face {
    font-family: "Roboto-Black";
    src: url('fonts/Roboto-Black.ttf');
}
@font-face {
    font-family: "Roboto-Black-Italic";
    src: url('fonts/Roboto-BlackItalic.ttf');
}
body {	
    font-size: 16px;
    font-weight: 400;    
	background: #fff;
	color: #333333;	
}

a:hover {
    text-decoration: none;
}

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

::selection {
    color: white; 
    background:#0082C8;
}

::-webkit-selection {
    color: white; 
    background:#0082C8;
}

::-moz-selection {
    color: white; 
    background:#0082C8;
}



/*--- header-area start --*/
.header-area {
    background-color: #fff;
    padding: 0px 0;
}

.header-area .container {
    max-width: 1265px;
    display: block;
    margin: auto;
    padding: 0px 0;
}

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

.header-logo img {
    display: block;
    width: 338px;
}

.nav-part ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-align: right;
    position: relative;
}

.nav-part ul li {
    display: inline-block;
    margin-left: -4px;

}

.nav-part ul li a {
   /* font-family: "Roboto-Medium";
    color: #5B5B5B;
    font-size: 17px;
    font-weight: 500;
    padding: 35px 14px;
    display: block;
    border-top: 6px solid #fff;*/

    font-family: "Roboto-Bold";
    font-size: 18px;
    text-decoration: none;
    color: #494949;
    font-weight: bold;
    padding: 35px 17px;


}

.nav-part ul li a i {
    font-size: 11px;
    position: absolute;
    padding-left: 3px;
    margin-top: 3px;  
}

.licolor:hover .licolora {
    color: #C04B3F;;



}


.nav-part ul li a:hover {
    color: #0082C8;
}

.menuactive {
	font-family: "Roboto-Black";
			font-size: 18px !important;
            background:#C04B3F !important;

			color:white !important;
			padding:5px 16px !important;
            padding-right: 19px !important; 
            padding-left: 19px !important; 
			border-radius: 5px !important; 
}


.menuactive {
    position: relative; /* Ensures ::after is positioned relative to the menu */
}

.menuactive::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 30px; /* The size of the gap */
    top: 100%; /* Extends below the menu */
    background: transparent; /* Invisible hover zone */
    pointer-events: auto; /* Allows hovering */
}

.menuactive:hover::after {
    display: block; /* Keeps it active */
}







/*
.menuactive {
    font-family: "Roboto-Black";
    font-size: 18px !important;
    color: white !important;
    padding: 35px 16px !important;
    border-radius: 5px !important;
    position: relative; 
    background: none !important; 
}

.menuactive::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 32px; 
    background: #C04B3F !important;
    border-radius: 5px !important; 
}
*/









.nav-part ul li.active a {
    background-color: #F4F4F4;
    color: #0082C8;
    border-top: 6px solid #0082C8;
}


/* dropdown */
.nav-part ul li ul {
    background: #fff;
    text-align: left;
    margin: 0;
    margin-top: 32px;
    padding: 0;
    list-style-type: none;
    position: absolute;
    /* width: 240px;*/
    display: none;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
    z-index: 999;
    border-top: 1px solid #ddd;

    border-radius: 0 0 8px 8px; /* Rounded corners at the bottom */
    overflow: hidden; /* Ensures border-radius applies properly */
    
}

.nav-part ul li ul li {
      border-bottom: 1px solid #ddd; /* Thin grey line between tabs */
     
    display: block;
    margin: 0;    
}


.nav-part ul li ul li a {
    color: #5B5B5B;
    font-size: 17px;
    padding: 9px 15px;
    display: block;
    text-transform: uppercase;
    border-top: 0;
}

.nav-part ul li ul li a:hover {
    background:#C04B3F !important;
    color: #fff;
    font-family: "Roboto-Bold" !important;
    font-size: 17px !important;
}


.nav-part ul li:hover ul {
    display: block;
}






		/* Bread Crumbs */
		.breadcrumbs2 {
			background-color: #F6F7FB;
			position: relative;
			padding: 30px 0px;
			margin-top: -15px;
		}

		.breadcrumbs2 .bread-inner {
			z-index: 22;
			text-align: left;
		}

		.breadcrumbs2 .bread-list {

			display: inline-block;
			font-family: "Roboto-Medium";
		}

		.breadcrumbs2 ul li {
			display: inline-block;
			position: relative;
		}

		.breadcrumbs2 ul li i {
			margin: 0px 10px;
			font-size: 9px;
			font-weight: 600;
			color: #333;
		}

		.breadcrumbs2 ul li a {
			color: #5B5B5B;
			font-size: 18px;
			font-weight: 400;
			text-transform: capitalize;
		}

		.breadcrumbs2 ul li.active a {
			color: #333;
			display: inline-block;
		}

		.breadcrumbs2 ul li a:hover {
			color: #00703C;
		}
	



.licolor1:hover .licolor1a {
    color: #CE3436;
}

.licolor1a {
    font-family: "Tajawal", sans-serif !important;
    color: #CE3436 !important;
    font-size: 15px !important;
    font-weight: bold !important;
    padding-right: 0px !important;
}

.licolor1a i {
    color: #5B5B5B;   
}

.nav-part ul li:last-child ul {
    right: 0;
    width: 200px;
}


.header-btn a {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    background-color: #fff;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 5px;    
}

.header-right {
    display: flex;
    align-items: center;
}


.menu-part {
    padding-left: 20px;
    display: none;
}


.menu-part i {
    color: #00703C;
    font-size: 29px;
    cursor: pointer;   
}


.menu-icon2 {
    display: none;
}


.header-rights {
    display: none;
}


/*--- slider1-area start --*/
.mainslider1-area {
    background: #ffffff;
    padding: 0px 0;
}

.slider-bg1 {
    width: 100%;
    height: 528px;
    display: grid;
    align-items: center;
    overflow: hidden;
}


.sliderbg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;    
}

.slider1-part {
    position: relative;
    z-index: 99999;
}

/*
.owl-item.active .sliderbg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomIn 26s ease-in-out infinite; 
}

@keyframes zoomIn {
  0% {
    transform: scale(1); 
  }
  50% {
    transform: scale(1.2); 
  }
  100% {
    transform: scale(1); 
  }
}
*/


.owl-item.active .sliderbg {
    width: 100%;
    height: 100%;
   /* object-fit: cover; */
    animation: zoomIn 26s ease-in-out infinite; 
  }
  
  @keyframes zoomIn {
    0% {
      transform: scale(1); 
    }
    50% {
      transform: scale(1.1); 
    }
    100% {
      transform: scale(1); 
    }
  }
  
.slider1-part h1 {
    font-family: "Roboto-Medium";
    color: #5B5B5B;
    font-size: 54px;
    margin: 0;
    font-weight: 500;
    line-height: 42px;
}


.slider1-part h1 span  {
    color: #00703C;
}


.slider1-part a {
    font-family: "Roboto-Regular";
    color: #fff;
    font-size: 18px;
    width: 182px;
    height: 40px;
    display: block;
    background-color: #00703C;
    line-height: 40px;
    text-align: center;
    border-radius: 18px;
    font-weight: 900;
    margin-top: 35px;
    transition: 0.6s all ease;

}

.slider1-part a:hover {
    background-color: #000;
    color: #fff;
}


.owl-item.active h1 {
  font-family: "Roboto-Medium";
  /* width: 22ch; */
  animation: typing 2s steps(30), blink .2s step-end infinite alternate;
  white-space: nowrap;
  overflow: hidden;
}

@keyframes typing {
  from {
    width: 0
  }
}
    
@keyframes blink {
  50% {
    border-color: transparent
  }
}

.owl-item.active .slider1-part {
color: #fff;
  animation: fadeInRight 1s ease-in-out;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(600px);
  }
  to {
    opacity: 1;
  }
}

.owl-item.active .fade-ins {
  animation: fadeIn ease 5s;
  -webkit-animation: fadeIn ease 5s;
  -moz-animation: fadeIn ease 5s;
  -o-animation: fadeIn ease 5s;
  -ms-animation: fadeIn ease 5s;
}


/*--- events --*/
.truncate-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Apply truncation only for screens wider than 768px (tablets & desktops) */
@media (min-width: 768px) {
    .truncate-text {
        max-width: 100%; /* Prevents overflow */
    }
}

/* Allow full text on small screens */
@media (max-width: 767px) {
    .truncate-text {
        white-space: normal; /* Allows text to wrap */
        overflow: visible; /* Shows full text */
        text-overflow: unset; /* Removes ellipsis */
    }
}
@keyframes fadeIn{
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}


.mainslider1-area {
    position: relative;
}

.customNextBtn1 i {
    width: 27px;
    height: 36px;
    background-color: #5b5b5b;
    line-height: 36px;
    text-align: center;
    border-radius: 16%;
    color: #fff;
    font-size: 22px;
    position: absolute;
    right: 30px;
    top: 45%;
    z-index: 999;
    cursor: pointer;
    transition: 0.6s all ease;    
}

.customNextBtn1 i:hover {
    background-color: #00703C;
    color: #fff;   
}

.customPrevBtn1 i {
    width: 27px;
    height: 36px;
    
    background-color: #5b5b5b;
    line-height: 36px;
    text-align: center;
    border-radius: 16%;
    color: #fff;
    font-size: 22px;
    position: absolute;
    left: 30px;
    top: 45%;
    z-index: 999;
    cursor: pointer;
    transition: 0.6s all ease;    
}

.customPrevBtn1 i:hover {
    background-color: #00703C;
    color: #fff;   
}


.mainslider1-area .owl-dots {
    display: none;
}



/*--- FindDoctor-area start --*/
.FindDoctor-area {
    background: #ffffff;
    padding: 100px 0;
}

.FindDoctor-heading h2 {
    font-family: "Roboto-Regular";
    color: #0082C8;
    font-size: 48px;
    margin: 0;
    text-align: center;
    font-weight: 400;
    padding-bottom: 25px;
}

.FindDoctor-heading p {
    font-family: "Roboto-Regular";
    color: #5B5B5B;
    font-size: 22px;
    text-align: center;
    font-weight: 400;
    margin: 0;  
}

.FindDoctor-form-item {
    width: 844px;
    display: flex;
    margin: auto;
    justify-content: space-between;
    padding-top: 35px;
}

.FindDoctor-form-item input {
    font-family: "Roboto-Regular";
    color: #0082C8;
    font-size: 18px;
    font-weight: 400;
    width: 276px;
    height: 52px;
    border: 1px solid #C6C6C6;
    padding: 10px 10px;
    text-align: center;
    outline: none; 
}

.FindDoctor-form-item input::placeholder {
    font-family: "Roboto-Regular";
    color: #0082C8;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
}



.submit-btn input {
    font-family: "Roboto-Regular";
    color: #5B5B5B;
    font-size: 15px;
    background-color: #E2E2E2;
    width: 182px;
    height: 40px;
    display: block;
    margin: auto;
    border: none;
    border-radius: 18px;
    outline: none;
    transition: 0.3s all ease;
    margin-top: 30px;   
}

.submit-btn input:hover {
    background-color: #0082c8;
    color: #fff;
}


.FindDoctor-form-item select { 
    text-align:center!important;
}
.FindDoctor-form-item select .lt { 
    text-align:center!important;
}










/*--- boxs3-area start --*/
.boxs3-area {
    background: #0082C8;
    padding: 100px 0;
}

.boxs3-area .container {
    padding: 0 0px;
}

.boxs3-part {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px;
    justify-content: space-around;
    grid-row-gap: 20px;    
}

.boxs3-item {
    padding: 60px 15px;
    padding-bottom: 45px;
}

.boxs3-item-image {
    width: 139px;
    height: 139px;
    background-color: #FFFFFF;
    border: 1px solid #D6D6D6;
    box-sizing: border-box;
    line-height: 139px;
    text-align: center;
    margin: auto;
}

.boxs3-item-image img {
    height: 77px;
}

.boxs3-item h2 {
    font-family: "Roboto-Light";
    color: #00703C;
    font-size: 33px;
    text-align: center;
    margin: 0;
    padding-top: 22px;
}

.boxs3-item p {
    font-family: "Roboto-Regular";
    color: #959595;
    font-size: 18px;
    margin: 0;
    text-align: center;
    font-weight: 400;
    padding-top: 9px;
    line-height: 29px;
    padding-bottom: 20px;
    letter-spacing: -0.6px;
}

.boxs3-item i {
    color: #fff;
    font-size: 19px;
    width: 55px;
    height: 55px;
    display: block;
    margin: auto;
    background-color: #00703C;
    line-height: 55px;
    text-align: center;
    border-radius: 50%;
}

.Visitingimg img {
    height: 64px;    
}

.phoneimg img {
    height: 63px;   
}


/*--- newevent-area start --*/
.newevent-area {
    background: #fff;
    padding: 58px 0;
    padding-bottom: 38px;
}

.newevent-area .container {
    max-width: 1175px;
    display: block;
    margin: auto;
    padding: 0 0px;
}

.newevent-heading h2 {
    font-family: "Roboto-Condensed";
    color: #5B5B5B;
    font-size: 34px;
    text-align: center;
    margin: 0;
    padding-bottom: 45px;
    font-weight: 400;
}

.newevent-heading h2 i {
    color: #BD4343;
    font-size: 22px;
    padding-left: 12px;
    position: relative;
    top: -4px;
    cursor: pointer;
    cursor: pointer;
    z-index: 999;
}


.vert-move {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
.vert-move {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}


@-webkit-keyframes mover {
    0% { transform: translateX(0); }
    100% { transform: translateX(-10px); }
}
@keyframes mover {
    0% { transform: translateX(0); }
    100% { transform: translateX(-10px); }
}




.newevent-item-image {
    width: 100%;
    height: 235px;
}

.newevent-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.newevent-item-text {
    text-align: center; /* Center the inline-block child */
}

.newevent-item-text h6 {
    font-family: "Roboto-MediumItalic";
    color: #4F4F4F;
    font-size: 14px;
    font-style: italic;
    line-height: 23px;
    text-align: center;
    background-color: #EFEFEF;
    text-transform: uppercase;
    padding: 5px 10px; /* Adjust padding for spacing */
    display: inline-block; /* Ensures background wraps the text content */
    margin: 0 auto 38px; /* Center horizontally with bottom margin */
    border-radius: 3px; /* Optional: Rounded corners */
}

     



.newevent-item-text h2 {
    font-family: "Roboto-Regular";
    color: #00703C;
    font-size: 22px;
    text-align: center;
    margin: 0;
    font-weight: 400;
    padding-bottom: 13px;
    letter-spacing: -1px;
}

.newevent-item-text p {
    font-family: "Roboto-Regular";
    color: #959595;
    font-size: 17px;
    text-align: center;
    margin: 0;
    font-weight: 400;
    line-height: 31px;   
}


.newevent-item-text h5 {
    text-align: center;
    padding-top: 16px;
    margin: 0;   
}


.newevent-item-text h5 a {
    font-family: "Roboto-Regular";
    color: #343434;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -1px;
    transition: 0.3s all ease; 
}

.newevent-item-text h5 a:hover {
    color: #00703C;
    text-decoration: underline;
}


.newevent-plus {
    position: relative;
    margin-top: 60px;

}

.newevent-plus i {
    color: #fff;
    font-size: 16px;
    width: 40px;
    height: 40px;
    background-color: #00703C;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.6s all ease;
}

.newevent-plus span {
   width: 100%;
   height: 1px;
   background-color: #E2E2E2;
   display: block;
}


.newevent-item:hover .newevent-plus i {
    background-color: #CE3436;
}

.newevent-item:hover .newevent-plus span {
   width: 100%;
   height: 1px;
   background-color: #f6f9f9;
   display: block;
}

.newevent-items {
    padding: 0 10px;
    border: 1px solid #fff;
    transition: 0.6s all ease;
        border-top: 0;
}

.newevent-item:hover .newevent-items {
    background: #f6f9f9;
    border: 1px solid #b9dcf7;
    border-top: 0;
}

.newevent-item {
    padding-bottom: 21px;
}

/*--- last-area start --*/
.donationmatters-area {
    padding: 0px 0;
}

.donationmattersbg {
    background: #b9dcf7;
    padding: 100px 0;
}

.donationmatters-left {
    width: 577px;
    margin: auto;
    margin-right: 18px;    
}

.donationmatters-left h2 {
    font-family: "Roboto-Light";
    color: #5B5B5B;
    font-size: 68px;
    font-weight: 300;
    margin: 0;
    line-height: 79px;
    padding-bottom: 35px;
}

.donationmatters-left p {
    font-family: "Roboto-Regular";
    color: #00703C;
    font-size: 22px;
    font-weight: 400;
    margin: 0;
    line-height: 33px;
    padding-bottom: 42px;
}

.donationmatters-left a  {
    font-family: "Roboto-Regular";
    color: #5B5B5B;
    font-size: 15px;
    font-weight: 500;
    background-color: #fff;
    width: 182px;
    height: 40px;
    line-height: 40px;
    display: block;
    border-radius: 18px;
    outline: none;
    transition: 0.3s all ease;
    text-align: center; 
}

.donationmatters-left a:hover {
    background-color: #0082c8;
    color: #fff;
}




.donationmatters-right img {
    width: 100%;
    display: block;
    height: 711px;   
}



/*--- footer-area start --*/
.footer-area {
    background: #fff;
    padding: 15px 0;
}

.footer-left h3 {
    font-family: "Roboto-BoldCondensed";
    color: #6D6D6D;
    font-size: 30px;
    margin: 0;
    padding-bottom: 35px;

}

.footer-left p {
    font-family: "Roboto-Regular";
    color: #A0A0A0;
    font-size: 17px;
    margin: 0;   
}


.footer-left ul li a {
    font-family: "Roboto-Regular";
    color: #A0A0A0;
    font-size: 17px;
    font-weight: 400;
    transition: 0.3s all ease;   
}
.footer-left ul li a:hover {
    color: #00703C;
}
.footer-left ul li span {
    width: 6px;
    height: 6px;
    display: inline-block;
    background-color: #A0A0A0;
    border-radius: 50%;
    margin-right: 7px;
    position: relative;
    top: -2px;    
}

.footer-innter {
    padding-left: 88px;
}


.footer-innter h3 {
    font-family: "Roboto-BoldCondensed";
    color: #6D6D6D;
    font-size: 30px;
    margin: 0;
    padding-bottom: 35px;

}

.footer-innter ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.footer-innter ul li {
    display: block;
    padding-bottom: 10px;
}

.footer-innter ul li i {
    color: #A0A0A0;
    font-size: 21px;   
}

.footer-innter ul li p {
    font-family: "Roboto-Regular";
    margin: 0;
    padding-left: 32px;
    margin-top: -27px;
}


.footer-innter ul li p a {
    font-family: "Roboto-Regular";
    color: #A0A0A0;
    font-size: 17px;
    font-weight: 400;
    transition: 0.3s all ease;  
}

.footer-innter ul li p a:hover {
    text-decoration: none;
}

.footer-innter ul li p a:hover {
    color: #00703C;
}

.footer-right {
    padding-left: 123px;
}

.footer-right h3 {
    font-family: "Roboto-BoldCondensed";
    color: #6D6D6D;
    font-size: 30px;
    margin: 0;
    padding-bottom: 30px;

}

.footer-right ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.footer-right ul li {
    display: block;
    padding-bottom: 0px;
}





.footer-right ul li span {
    width: 6px;
    height: 6px;
    display: inline-block;
    background-color: #A0A0A0;
    border-radius: 50%;
    margin-right: 7px;
    position: relative;
    top: -2px;    
}
.footer-right ul li p {
    font-family: "Roboto-Regular";
    margin: 0;
    padding-left: 18px;
    margin-top: -23px;
}
.footer-right ul li a {
    font-family: "Roboto-Regular";
    color: #A0A0A0;
    font-size: 17px;
    font-weight: 400;
    transition: 0.3s all ease;   
}

.footer-right ul li a:hover {
    color: #00703C;
}

/*--- last-area start --*/
.last-area {
    background: #494949;
    padding: 26px 0;
}



.social-icons ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.social-icons ul li {
    display: inline-block;
    padding-right: 3px;
}

.social-icons ul li a {
    color: #727272;
    font-size: 20px;
    background-color: #fff;
    width: 35px;
    height: 35px;
    display: block;
    line-height: 37px;
    text-align: center;
    border-radius: 50%;
    transition: 0.3s all ease; 
}

.social-icons ul li a:hover {
    transform: scale(1.2); 
    background-color: #000;
    color: #fff;

}

.last-part p {
    font-family: "Roboto-Condensed";
    color: #fff;
    font-size: 18px;
    margin: 0;
    font-weight: 400;
    text-align: center;
    padding-top: 5px;   
}

.heading-primary--sub {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1.75rem;
  -webkit-animation: moveInRight 1s ease-out;
  animation: moveInRight 1s ease-out;
}

.btn-part {
text-transform: uppercase;
    text-decoration: none;
    padding: 12px 30px;
    display: inline-block;
    border-radius: 5px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    position: relative;
    font-size: 19px;
    border: none;
    cursor: pointer;
}

.btn-part:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.btn-part:hover::after {
  -webkit-transform: scaleX(1.4) scaleY(1.6);
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.btn-part:active,
.btn-part:focus {
  outline: none;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

.btn--white {
  background-color: #fff;
  color: #777;
}

.btn--white::after {
  background-color: #fff;
}

.card-boxs {
  position: relative;
  height: 450px;

}

.card__side {
  height: 450px;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
        background-color: #F9F9F9;
}

.card__side--front {
  background-color: #fff;
}


.card-boxs:hover .card__side--front-1,
.card-boxs:hover .card__side--front-2,
.card-boxs:hover .card__side--front-3 {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}

.card-boxs:hover .card__side--back {
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
}

.card__cta {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
}

.card__price-box {
  text-align: center;
  color: #fff;
  margin-bottom: 36px;
}

.card__price-only {
    font-size: 18px;
    text-transform: uppercase;
    margin: 0;
    padding-bottom: 10px;
    font-weight: 600;
}

.card__price-value {
    font-size: 50px;
    font-weight: 100;
}

.card__side--back {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}




.main {
    overflow: hidden;
}



.newevent-icon1 {
    display: none;
}

.latestevent-icon1 {
    display: none;
}



























.select-menu {
    position: relative;
}



.select-menu .select-btn {
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    font-family: "Roboto-Regular";
    color: #0082C8;
    font-size: 18px;
    font-weight: 400;
    width: 276px;
    height: 52px;
    border: 1px solid #C6C6C6;
    padding: 10px 10px;
    text-transform: uppercase;
}

.select-menu .options {
  position: absolute;
  width: 100%;
  overflow-y: auto;
  max-height: 295px;
  padding: 10px;
  margin-top: 10px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-duration: 0.35s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.35s;
  -webkit-animation-fill-mode: both;
}
.select-menu .options .option {
    display: flex;
    height: 55px;
    cursor: pointer;
    border-radius: 8px;
    align-items: center;
    background: #fff;
    justify-content: center;
    text-transform: uppercase;
}
.select-menu .options .option:hover {
  background: #0082C8;
  color: #fff;
}


.select-menu .options .option .option-text:hover {
    color: #fff;
    font-size: 15   px;
    text-align: center;
}


.select-menu .options .option .option-text {
    font-family: "Roboto-Regular";
    font-size: 15px;
    text-align: center;
}

.select-btn i {
    font-size: 18px;
    transition: 0.3s;
    padding-left: 5px;

}

.select-menu.active .select-btn i {
    transform: rotate(-180deg);
    padding-right: 5px;
    
}

.select-menu.active .options {
  display: block;
  opacity: 0;
  z-index: 10;
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
  animation-duration: 0.4s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    transform: translate3d(0, 30px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInDown {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  to {
    transform: translate3d(0, 20px, 0);
    opacity: 0;
  }
}

.select-menu .options {
    margin-top: 5px;

}

.select-menu .options  {
    display: none;
}
