/* Reset CSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
/* Font Awesome */
@font-face{font-family:"Font Awesome 5 Brands";font-display:block;font-weight:400;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:900;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:400;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype")}

body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
:root {
    --color-bg: #fff;
    --color-bg2: #f4f4f4;
    --color-toggle-accent: #ff7900;
    --color-text: #333333;
}
body{
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    background: #fff;
}

/* Header */
.header {
    background-color: var(--color-bg);
    border-bottom: 2px solid var(--color-bg);
    position: sticky;
    width: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .header a {
    color: var(--color-text);
  }
  
  .header .logo {
    display: block;
    float: left;
    text-decoration: none;
    padding: 6px 0;
  }
  
  .header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    background-color: var(--color-bg);
  }
  .header li{
    padding: 0px 12px;
  }
  .header .menu li{
    padding: 0px 25px;
  }
  .header li a {
    display: block;
    text-decoration: none;
    font-weight: 500;
  }
  .header .active{
    color: #F31316;
    border-bottom: 1px solid #F31316;
    padding-bottom: 5px;
  }
  header .shopping-cart{
    padding: 7px 15px;
  }
  .shopping-cart{
    color: #F31316 !important;
    border: 1px solid #F31316;
    border-radius: 20px; 
    padding: 4px 15px;
  }
  .shopping-cart:hover{
    color: #F31316; 
  }
  .social-menu li{
    padding: 0 4px;
  }
  .social-icon{
    background-color: #CCCCCC;
    border-radius: 50%;
    padding: 5px;
    width: 25px !important;
    height: 25px;
    color: #fff !important;
    font-size: 14px;
  }
  
  .header li a:hover,
  .header .menu-btn:hover {
    color: #F31316;
  }
  
  /* Nav Menu */
  .header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
    display: flex;
    align-items: center;
  }

  .header nav{
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
  }
  
  /* Menu Icon */
  .header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
  }
  
  .header .menu-icon .navicon {
    background: var(--color-text);
    display: block;
    height: 2px;
    width: 18px;
    position: relative;
    transition: background .2s ease-out;
  
  }
    
  .header .menu-icon .navicon:before,
  .header .menu-icon .navicon:after {
    background: var(--color-text);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
  }
  
  .header .menu-icon .navicon:before {
    top: 5px;
  }
  
  .header .menu-icon .navicon:after {
    top: -5px;
  }
  .header .menu-btn {
    display: none;
  }
  .header .menu-btn:checked ~ .menu {
    max-height: 240px;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
  }
  
/* 48em = 768px */
@media (min-width: 62em) {
    .header li {
      float: left;
    }
    .header .menu {
      clear: none;
      float: right;
      max-height: none;
    }
    .header .menu-icon {
      display: none;
    }
}
.desktop-view{
    display: block;
}
.mobile-view{
    display: none !important;
}
footer {
    background-color: #CCCCCC;
    color: #1F1F1F;
    padding: 2rem 0 0;
}
footer li{
    margin-bottom: 15px;
}
footer li a{
    color: #1F1F1F;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}
footer li a:hover{
    color: #F31316;
}
footer .social-icon{
    background-color: #1F1F1F;
    display: block;
}
footer .social-icon i{
    color: #CCCCCC;
}
footer .copyright{
    background: #303030;
    color: #fff;
    padding: 24px 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
}
.call-detail{
    font-size: 20px;
    word-break: break-all;
}
.call-detail a{
    color: #1F1F1F;
}
.social-menu{
    display: flex;
    margin: 10px 0;
}
.home-carousel{
    position: relative;
}
.home-carousel img{
    border-radius: 10px;
}
.title{
    font-size: 28px;
    font-weight: 800;
    line-height: 30px;
}
.title span{
    color: #F31316;
}
.slider-content{
  
    position: absolute;
    top: 50%;
    left: 5%;
    padding: 15px;
    width: 47%;
    border-radius: 5px;
}
.slider-content p{
    font-family: 'Open sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    line-height: 25px;
}
.owl-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, -50%);
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #F31316;
}
.owl-theme .owl-dots .owl-dot span{
    background: white;
    border: 1px solid #FF0000;
}
.owl-nav{
    display: none;
    margin: 0 !important;
}
.owl-carousel:hover .owl-nav{
    display: block;
}
.owl-prev,  .owl-next{
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}
.owl-prev i,  .owl-next i{
    font-size: 35px;
}
.owl-prev{
    left: 2%;
}
.owl-next{
    right: 2%;
}
.owl-theme .owl-nav [class*=owl-]:hover{
    background: none;
    color: #F31316;
}
.owl-carousel .owl-item img {
    border-radius: 5px;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot{
    color: #ffffff;
}
.slider-text {
    position: absolute;
    top: 0;
    right: 12px;
    left: auto;
    width: auto;
    padding: 5px;
    background: #262626BF;
    border-radius: 0px 5px 0px 0px;
}
.subtitle{
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}
.youtube-img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FF0000;
    font-size: 35px;
    width: auto !important;
}
.search-wrapper {
    display: flex;
    width: 65%;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: #fff;
    padding: 20px 40px;
    box-shadow: 0 4px 4px 0 #00000061;
    border-radius: 50px;
    margin-top: -40px;
    position: relative;
    z-index: 99;
    font-size: 14px;
}
.search-wrapper button{
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}
.search-wrapper select{
    margin-right: 20px;
    font-weight: 400;
}
.breadcrumb-item a{
    color: #F31316;
}
a{
    transition-delay: 0.3s;
}
.border-1{
    border: 1px solid #5C5C5C;
    border-radius: 10px;
}
.date{
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-size: 40px;
    width: 13%;
    border-right: 1px solid #5C5C5C;
}
.date span {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}
.news-block p{  
    font-family: 'Open Sans', sans-serif;
    color: #1F1F1F;
    font-size: 20px;
    line-height: 25px;
    font-weight: 400;
    width: 85%;
}
.pagination{
    justify-content: end;
}
.page-link{
    color: #1F1F1F;
    border: 0;
    font-size: 14px;
    font-weight: 400;
}
.page-link:focus{
    box-shadow: none;
    color: #000000;
    background: none;
}
.page-item.active .page-link{
    background-color: #F31316;
    border-color: #F31316;
    border-radius: 5px;
}
.modal-title{
    color:  #F31316;
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}
.modal-body h5{
    color: #000000;
    font-family: 'Open Sans', sans-serif;
    font-size: 32px;
    font-weight: 600;
}
.modal-body h5{
    color: #000000;
    font-family: 'Open Sans', sans-serif;
    font-size: 32px;
    font-weight: 600;
}
.modal-body p{
    color: #1F1F1F;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
}
.modal-dialog{
    border-radius: 10px;
}
.modal-header .btn-close {
    position: absolute;
    top: -7px;
    right: -7px;
    background: red;
    color: #fff;
    border-radius: 50px;
    opacity: 1;
}
.top-banner{
    position: relative;
}
.top-banner h2{
    position: absolute;
    bottom: 20px;   
    left: 30px;
    color: #8B8B8B;
    font-size: 32px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
}
.form-floating>label {
    padding-left: 1.5rem;
}
input, textarea, select {
    border: 1px solid #5C5C5C !important;
    color: #1F1F1F !important;
}
input:focus, textarea:focus, select:focus, button:focus {
    box-shadow: none !important;
}
.upcoming-event a{
    color: #1F1F1F;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}
.upcoming-event a:hover{
    color: #F31316;
}
  
@media (min-width: 992px) {
    .modal-dialog {
        max-width: 75%;
    }
}
@media(max-width: 992px){
    .header{
        display: block;
    }
    .desktop-view{
        display: none;
    }
    .mobile-view{
        display: flex !important;
    }
    .slider-content{
        width: 55%;
        margin-top: 15px;
    }
    .home-carousel .owl-dots {
        bottom: -10px;
    }
    .search-wrapper{
        margin-top: 20px;
        width: 80%;
    }
    .header nav{
        display: block;
    }
}
@media(max-width: 767px){
    .top-banner h2{ 
        font-size:  20px;
    }
    .news-block{
        display: flex;
        margin-bottom: 15px !important;
    }
    .news-block .date{
        width: 33%;
        text-align: left !important;
        border: 0;
        display: flex;
        align-items: center;
        padding: 10px !important;;
    }
    .news-block .date span{
        justify-content: start !important;
        margin-left: 7px;
    }
    .news-block p {
        font-size: 16px;
        line-height: 22px;
    }
    .title {
        font-size: 22px;
    }
    .search-wrapper{
        margin-top: 20px;
        width: 95%;
        display: block;
        box-shadow: 0 0px 0px 1px #00000061;
        padding: 20px 20px;
        border-radius: 10px;
    }
    .search-wrapper select{
        margin-right: 0;
        margin-bottom: 15px;
    }
    .news-carousel, .upcoming-event {
        margin: 30px 0 -20px !important;
    }
    .slider-content {
        position: relative;
        width: 100%;
        left: 0;
        padding: 15px 0;
    }
    .home-carousel .owl-dots {
        bottom: -20px;
    }
    .home-carousel .owl-prev, .home-carousel .owl-next{
        top: 28%;
    }
    .home-carousel .owl-prev {
        left: 4%;
    }
    .header .menu-btn:checked ~ .menu.social-menu{
        margin: 15px 0;
    }
    .header .menu.social-menu li{
        padding: 0 5px !important;
    }
    .header .social-menu .shopping-cart{
        margin: 0 !important;
    }
    .header .menu{
        display: block;
    }
    .header .menu li {
        padding: 10px 12px !important;
    }
    .modal-dialog {
        margin: 1.5rem;
    }
}
@media(max-width: 1365px){
    .news-block-content{
        display: block !important;
    }
    .news-block-content p{
        width: 100%;
        margin-bottom: 10px;
    }
    .header li a{
        font-size: 14px;
        width: fit-content;
    }
    .header .menu li{
        padding: 0px 12px;
    }
}

.list-wrapper {
	padding: 15px;
	overflow: hidden;
}

.list-wrapper .list-item{
    display: flex

}

.simple-pagination ul {
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
	text-align: right;
}

.simple-pagination li {
	display: inline-block;
	margin-right: 5px;
}

.simple-pagination li a,
.simple-pagination li span {
	color: #666;
	padding: 5px 10px;
	text-decoration: none;
	border: 1px solid #EEE;
	background-color: #FFF;
	box-shadow: 0px 0px 10px 0px #EEE;
    border-radius: 10px;
}

.simple-pagination .current {
	color: #FFF;
	background-color: #F31316;
	border-color: #F31316;
    border-radius: 10px;
}

.simple-pagination .prev.current,
.simple-pagination .next.current {
	background: #F31316;
    border-radius: 10px;
}
