html {
  /* font-family: sans-serif; */
  /* line-height: 1.15; */
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
  font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  background-color: #fff;
  -webkit-print-color-adjust:exact !important;
  print-color-adjust:exact !important;
}
.form-control {
  border-radius: 1.5rem;
}
.no-radius
{
  border-radius: 0px !important;
}
.form-control-override
{
  border-radius: 0px;
  background: transparent;
  border: none;
}

  @font-face {
      font-family: 'Plain-Regular';
      src: url('../fonts/Plain-Regular.woff2') format('woff2'),
          url('../fonts/Plain-Regular.woff') format('woff');
      font-weight: normal;
      font-style: normal;
  }

  @font-face {
      font-family: 'Plain-Light';
      src: url('../fonts/Plain-Light.woff2') format('woff2'),
          url('../fonts/Plain-Light.woff') format('woff');
      font-weight: bold;
      font-style: normal;
  }

  @font-face {
      font-family: 'Plain-Bold';
      src: url('../fonts/Plain-Bold.woff2') format('woff2'),
          url('../fonts/Plain-Bold.woff') format('woff');
      font-weight: bold;
      font-style: normal;
  }

  :root {
    /* --primary-color:        #057a8d; */
    /* --primary-color:        #cc6f16; */
    --primary-color:        #ededed;
    --secondary-color:      #b78402;
    --third-color:      #8d2702;
    --fourth-color:      #ff5011;
    --fifth-color:      #cc6f16;
    --white-color:          #ffffff;
    --dark-color:           #171819;
    --project-bg:           #f0f8ff;
    /* --menu-bg:              #0c8195; */
    /* --menu-bg:              #e29144; */
    --menu-bg:              #ffffff;

    --title-color:          #15141a;
    --gray-color:           #909090;
    --link-color:           #404040;
    --p-color:              #666262;
    --lightgray-color:           #f7f7f7;

    --base-font-family:     'Plain-Light', sans-serif;
    --title-font-family:    'Plain-Regular', sans-serif;
    --font-bold-family:     'Plain-Bold', sans-serif;
    --font-weight-bold:     bold;

    /* --h1-font-size:         42px; */
    --h1-font-size:         1.5rem;
    --h2-font-size:         1rem;
    --h3-font-size:         24px;
    --p-font-size:          18px;
    --base-font-size:       16px;
    /* --menu-font-size:       13px; */
    --menu-font-size:       16px;

    --border-radius-large:  100px;
    --border-radius-small:  5px;
  }

  h1,h2,h3,h4,h5,h6 {
    font-family: var(--title-font-family);
    line-height: inherit;
  }

  h1 {
    color: var(--title-color);
    font-size: var(--h1-font-size);
  }

  h2 {
    font-size: var(--h2-font-size);
    font-weight: 100;
  }

  h3 {
    font-size: var(--h3-font-size);
    font-weight: 100;
    margin-bottom: 0;
  }

  h4 {
    color: var(--gray-color);
    font-family: var(--base-font-family);
    font-size: var(--p-font-size);
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  p {
    color: var(--p-color);
    font-size: var(--p-font-size);
    line-height: 1.5em;
  }


  /*  BLOCKQUOTES */
  .quote {
    position: relative;
    margin: 0;
  }

  .quote::after {
    content: "“";
    position: absolute;
    bottom: -80px;
    left: 20px;
    font-family: times;
    color: var(--gray-color);
    font-weight: var(--font-weight-bold);
    font-size: 14em;
    line-height: 0;
    opacity: 0.10;
  }

  blockquote {
    border-left: 5px solid rgba(0,0,0,0.05);
    display: block;
    margin: 42px 0;
    padding: 14px 22px;
    color: rgba(0,0,0,0.5);
  }


  /* BUTTON */
  .custom-btn {
    background: transparent;
    border: 2px solid var(--dark-color);
    border-radius: var(--border-radius-large);
    padding: 12px 26px 14px 26px;
    color: var(--dark-color);
    font-family: var(--title-font-family);
    font-size: var(--p-font-size);
    white-space: nowrap;
  }

  .custom-btn.btn-bg {
    background: var(--white-color);
    color: var(--primary-color);
    border-color: transparent;
	transition: all .3s ease;
  }
  
  .custom-btn:hover,
  .custom-btn:focus {
    background: var(--dark-color);
    color: var(--white-color);
    border-color: transparent;
  }


  /*---------------------------------------
     GENERAL               
  -----------------------------------------*/

  * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  *::before,
  *::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  a {
    color: var(--link-color);
    font-weight: normal;
    text-decoration: none;
  }

  a:hover, 
  a:active, 
  a:focus {
    color: var(--secondary-color);
    outline: none;
    text-decoration: none;
  }

  ::selection {
    background: var(--secondary-color);
    color: var(--white-color);
  }

  .section-padding {
    padding: 8em 0;
  }
  .section-padding-half {
    padding: 4em 0;
  }

  .google-map iframe {
    display: block;
    width: 100%;
  }



  /*---------------------------------------
    MENU             
  -----------------------------------------*/

  .navbar {
    /* background: var(--menu-bg); */
    z-index: 2;
    top: 0;
    right: 0;
    left: 0;
    /* padding: 1.5em; */
  }

  .navbar-brand {
    color: var(--white-color);
    font-size: var(--h2-font-size);
  }

  .nav-link {
    color: var(--white-color);
    /* color: var(--third-color); */
    font-size: var(--menu-font-size);
    letter-spacing: 0.2px;
    /* letter-spacing: 3.4px; */
    /* margin: 0 1.6em; */
    padding: 0.6em;
    /* margin: 0 0.2em; */
    margin: 0 1.0em;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
  }
  .nav-link-style {
    margin: 0 !important;
    color: #009471 !important;
  }

  .nav-item-style>a:hover {
      color: #009471 !important;
  }

  /*code to change background color*/
  .nav-item-style>.active>a {
      background-color: #C0C0C0 !important;
      color: #009471 !important;
  }

  .nav-link-color
  {
    /* color: var(--third-color);  */
    color: #fff;
  }
  .nav-link.active,
  .nav-link:hover {
    /* color: var(--secondary-color); */
    /* border-bottom: 3px solid var(--fourth-color); */
    border-bottom: 3px solid #fff;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
  }

  .navbar-expand-lg .navbar-nav .nav-link.contact {
    /* border: 2px solid var( --white-color);
    border-radius: var(--border-radius-large);
    color: var( --white-color); */
    border: 2px solid var( --fourth-color);
    border-radius: var(--border-radius-large);
    color: var( --third-color);
    font-family: var(--font-bold-family);
    padding: 0.6em 2em 0.8em 2em;
  }

  .navbar-expand-lg .navbar-nav .nav-link.contact:hover,
  .navbar-expand-lg .navbar-nav .nav-link.contact.active {
    background: var(--secondary-color);
    color: var(--white-color);
  }

  .navbar-nav .navbar-toggler-icon {
    background: none;
  }

  .navbar-toggler {
    border: 0;
    padding: 0;
    cursor: pointer;
    margin: 0 10px 0 0;
    width: 30px;
    height: 35px;
    outline: none;
  }

  .navbar-toggler:focus {
    outline: none;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
    top: 0;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
  }

  .navbar-toggler .navbar-toggler-icon {
    background: var(--white-color);
    /* background: var(--third-color); */
    transition: background 10ms 300ms ease;
    display: block;
    width: 30px;
    height: 2px;
    position: relative;
  }

  .navbar-toggler .navbar-toggler-icon::before,
  .navbar-toggler .navbar-toggler-icon::after {
    transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
    position: absolute;
    right: 0;
    left: 0;
    background: var(--white-color);
    /* background: var(--third-color); */
    width: 30px;
    height: 2px;
    content: '';
  }

  .navbar-toggler .navbar-toggler-icon::before {
    top: -8px;
  }

  .navbar-toggler .navbar-toggler-icon::after {
    top: 8px;
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    text-align: left;
    list-style: none;
    background-color: #00695C;
    background-clip: padding-box;
    border: 1px solid #e3e6f0;
    border-radius: 0.35rem;
    
    font-size: var(--menu-font-size);
    letter-spacing: 0.2px;
    padding: 0.6em;
    margin: 0 1.0em;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
  }

.dropdown-item {
  color: var(--white-color);
}

.dropdown-item:hover, .dropdown-item:focus {
  color: #2e2f37;
  text-decoration: none;
  /* background-color: #f8f9fc; */
}

.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  /* background-color: #4e73df; */
}

.dropdown-item.disabled, .dropdown-item:disabled {
  color: #858796;
  pointer-events: none;
  background-color: transparent;
}
/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* Fixes spacing issue */
}

  /*---------------------------------------
     HERO              
  -----------------------------------------*/

  .hero {
    position: relative;
    padding: 4em 0;
    overflow: hidden;
  }

  .hero-bg {
    background: linear-gradient(170deg, var(--primary-color) 64%, var(--white-color) 30%);
  }

  .hero-image {
    position: relative;
    top: 2em;
  }



  /*---------------------------------------
     PROJECT              
  -----------------------------------------*/

  .project {
    background: var(--project-bg);
  }

  .project-wrapper {
    position: relative;
  }

  .project-wrapper img {
    border-radius: var(--border-radius-small);
  }

  .project-info {
    background: var(--white-color);
    border-radius: var(--border-radius-small);
    position: absolute;
    bottom: 32px;
    right: 32px;
    left: 32px;
    width: 90%;
    padding: 32px;
  }

  .project-info small {
    font-family: Plain-Bold;
    color: var(--gray-color);
    position: relative;
    top: 2px;
  }

  .project-info a {
    color: var(--primary-color);
  }

  .project-info .project-icon {
    background: var(--primary-color);
  }

  .project-icon {
    position: absolute;
    right: 30px;
    top: 40px;
    background: var(--dark-color);
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-size: var(--h2-font-size);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding-left: 5px;
  }

  .owl-theme .owl-dots .owl-dot {
    outline: none;
  }

  .owl-theme .owl-dots .owl-dot span {
    background: var(--gray-color);
    width: 50px;
    height: 3px;
    margin:  35px 5px;
  }

  .owl-theme .owl-dots .owl-dot.active span, 
  .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--secondary-color);
  }

  .list-detail {
    margin-left: 1em;
    padding-left: 1em;
    position: relative;
  }

  .list-detail li {
    display: block;
    list-style: none;
    margin: 0.6em 0 0 0.8em;
  }

  .list-detail li::before {
    content: "";
    width: 0;
    height: 0;
    border-width: 0 16px 16px 0;
    border-color: transparent var(--secondary-color) transparent transparent;
    border-style: solid;
    position: absolute;
    left: 0;
  }

  .list-detail span {
    position: relative;
    bottom: 5px;
  }

  .client-info img {
    width: 100px;
    margin-right: 1em;
  }



  /*---------------------------------------
      ABOUT            
  -----------------------------------------*/

  .about {
    position: relative;
    overflow: hidden;
  }

  .about-image img {
    display: block;
    margin: 0 auto;
  }



  /*---------------------------------------
      BLOG            
  -----------------------------------------*/

  .blog-header {
    border-radius: var(--border-radius-small);
    position: relative;
    overflow: hidden;
  }

  .blog-header img {
    border-radius: var(--border-radius-small);
    display: block;
  }

  .blog-header-info {
    background: linear-gradient(transparent,rgba(0,0,0,0.95));
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 2em;
  }

  .blog-header-info h3 {
    max-width: 80%;
  }

  .blog-header-info a {
    color: var(--white-color);
  }

  .blog-header-info a:hover {
    color: var(--secondary-color);
  }

  .blog-sidebar img {
    border-radius: var(--border-radius-small);
    width: 159px;
    margin-right: 22px;
  }

  .blog-sidebar h3 {
    font-size: 18px;
  }



  /*---------------------------------------
     CONTACT              
  -----------------------------------------*/

  .newsletter-form .form-control,
  .contact-form .form-control {
    box-shadow: none;
    background: var(--project-bg);
    border: 0;
    padding: 1.7em 1.3em;
    margin: 14px 0;
  }

  .newsletter-form button,
  .contact-form #submit-button {
    background: var(--primary-color);
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    cursor: pointer;
    font-size: var(--p-font-size);
    line-height: 0px;
    padding: 1.5em 1.3em;
  }

  .newsletter-form button {
    background: var(--secondary-color);
  }



  /*---------------------------------------
     FOOTER              
  -----------------------------------------*/

  .site-footer {
    background: var(--dark-color);
    padding: 7em 0 6em 0;
  }

  .site-footer a {
    color: var(--p-color);
  }

  .site-footer a:hover,
  .footer-icon {
    color: var(--secondary-color);
  }

  .footer-link li {
    display: inline-block;
    list-style: none;
    margin: 0 10px;
  }

  .copyright-text,
  .footer-link,
  .site-footer .social-icon {
    margin-top: 6em;
  }

  .copyright-text {
    margin-top: 5.3em;
  }



  /*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

  .social-icon {
    position: relative;
    padding: 0;
    margin: 4em 0 0 0;
  }

  .social-icon li {
    display: inline-block;
    list-style: none;
  }

  .social-icon li a {
    text-decoration: none;
    display: inline-block;
    font-size: var(--base-font-size);
    margin: 10px;
    text-align: center;
  }



  /*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

  @media screen and (min-width: 1200px) {

    .about-info h2 {
      max-width: 70%;
    }
  }

  @media screen and (min-width: 991px) {

    .project h2 {
      max-width: 32%;
      margin: 0 auto;
    }
    .menu-icons-big
    {
      display: block;
    }
    .menu-icons-small
    {
      display: none;
    }
  }

  @media screen and (max-width: 991px) {

    /* .hero {
      padding-top: 14em;
    } */

    .hero-text {
      bottom: 2em;
    }

    /* .navbar {
      padding: 1em;
      padding: 0em;
    }
    .nav
    {
      padding-top: 0px;
    }
    .navbar-collapse {
      text-align: center;
      padding: 2.5em 0;
    } */

    /* .nav-link {
      display: inline-block;
    } */

    /* .navbar-expand-lg .navbar-nav .nav-link.contact {
      margin: 1em 0;
    } */

    .copyright-text, 
    .footer-link, 
    .site-footer .social-icon {
      margin-top: 3em;
      padding: 0;
      text-align: left;
    }
    .small-device-text
    {
      color:#000000;
    }
    /* .navbar-collapse {
      padding: 0px;
      text-align: left;
      line-height: 15px;
       background-color: #004d40;
    } */
    .menu-icons-big
    {
      display: none;
    }
    .menu-icons-small
    {
      display: block;
    }
    /* .nav
    {
      padding-top: 0px !important;
    } */
    /* .nav-margin-top {
      margin-top: 30px !important;
    }
    .navbar-brand
    {
      padding-top: 0.12rem !important;
    } */
  }

  @media screen and (max-width: 767px) {

    /* h1 {
      font-size: 36px;
    } */

    /* h2 {
      font-size: 28px;
    } */

    h3 {
      font-size: 22px;
    }

    .project-info {
      right: 0;
      left: 0;
      margin: 0 auto;
    }

    .footer-link, 
    .site-footer .social-icon {
      margin-top: 1em;
    }

    .copyright-text {
      margin: 2.5em 0 1em 0;
    }

    .footer-link li {
      margin-left: 0;
    }
    .small-device-text
    {
      color:#000000;
    }
    
    .title-bar-icon
    {
      font-size: 15px !important;
    }
    .title-bar-text
    {
      font-weight: 400 !important;
      font-size: 13px !important;
    }
    .header-follow-us
    {
      display: none !important;
    }
    .title-follow-us
    { 
      display: inline-block !important;
      
    }
    /* .nav
    {
      padding-top: 0px !important;
    }
    .nav-margin-top {
      margin-top: 30px !important;
    }
    .navbar-brand
    {
      padding-top: 0.12rem !important;
    } */
  }
  @media screen and (max-width: 520px) {
    .small-device-text
    {
      color:#000000;
    }
    /* .nav
    {
      padding-top: 0px !important;
    }
    .nav-margin-top {
      margin-top: 30px !important;
    }
    .navbar-brand
    {
      padding-top: 0.12rem !important;
    } */
  }

  /*--------------- Place order ------------ STARTS ---------*/
.side-panel {
  /* background-color: #f3f3f3; */
  background-color: #e6f1fc;
  height: auto;
  width: 100%;
  padding: 0;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  overflow: hidden;
  /* border: 1px solid #ccc; */
  border: 1px solid #e6f1fc;
}
.menu-content{
padding-top:24px;
}

.side-panel h6 {
  margin: 0;
  font-weight: normal;
  padding: 12px 30px 5px 25px;
  width: 100%;
  height: 40px;
  background: #d9d9d9;
  font-size: 16px !important;
}

.side-panel h6:after {
  font-family: 'FontAwesome';
}
.toggle-main-title:after{
display: block;
position: absolute;
top: 15px;
right: 25px;
font-size: 14px;
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
color: #ff0008;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\f078";
}

.side-panel .sd-panel-heading2 {
  padding: 0 25px 0px 25px;
  position: relative;
}

.cart-name{
color:#ff0008;
font-size:20px;
font-weight:bold;
}
.phonecart a{
color: #000000 !important;
cursor: pointer;
}
.phonecart a h4{
font-size:18px;
font-weight:bold;
}
.phonecart a h4:hover{
color:#ff0008;
}
.nav-tabs-border{
    border-bottom: 3px solid #ff0008;
}
.nav-link-text-style
{
  margin: 0 1.0em !important;
}

.side-panel .sd-panel-heading2 h5:after {
  display: block;
  position: absolute;
  top: 25px;
  right: 27px;
  font-size: 14px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  color: #ff0008;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f078";
}

.side-panel .sd-panel-heading2 h5.active:after {
  content: "\f077";
  color: #ff0008;
}

.side-panel .sd-panel-heading2 .checkout {
  margin: 0 0 20px 0;
  padding: 0;
  text-align: center;
}

.side-panel .sd-panel-heading2 ul {
  margin: 0;
  padding: 0;
}

.side-panel .sd-panel-heading2 ul li {
  width: 100%;
  height: auto;
  padding: 7px 0;
  /* border-top: 1px solid #ccc; */
  border-top: 1px solid #6188af;
  position: relative;
  line-height: 5px;
  color: #323430;
  font-size:13px;
}
.side-panel .sd-panel-heading2 ul li:first-child { border-top:0 !important; }
.side-panel .sd-panel-heading2 ul li p .icon-link .fa {
  margin-left: 22px;
  color: #ff0008;
  cursor: pointer;
}

.side-panel .sd-panel-heading2 ul li p .icon-link {
  float:right;
}

.side-panel .sd-panel-heading2 ul li .price { color: #ff0008; }

.side-panel .sd-panel-heading2 ul li .price-total {
  color: #ff0008;
  font-weight: bold;
  float:right;
}

input.txt-fld {
    height: 30px;
    width: 80px;
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

p.error, i.error, h3.error, h4.error, b.error {
    color: #ff0008;
}

.all-menu-details textarea.error { border:red 1px solid !important; }
.pickupbtn > button.btn-default2 { border:1px solid #999; width: 100px; margin-bottom:8px; }
.pickupbtn > button.btn-default2:hover { background:#be2c41; color:#fff; border:red 1px solid; }
.pickupbtn > button:disabled,
.pickupbtn > button[disabled]{ opacity: 0.65; background:#be2c41; color:#fff; border:red 1px solid; cursor:not-allowed; }

.btn:hover, .btn:focus { text-decoration: none; }
.btn:focus { outline: 0; }
.btn:active, .btn.active { outline: 0; }
input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block {
  width: 100%;
}

/*--------------- Place order ------------ ENDS ---------*/

.modal-header {
  padding:9px 15px;
  /* background-color: #009471; */
  background-color: #00796b;
   color:var(--white-color);
}

.checkout-bottom {
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  /* width: 45px;
  height: 45px; */
  padding: 10px;
  border-radius: 35px;
  background: var(--third-color);
  border: 1px solid var(--secondary-color);
  display: none;
  outline: none;
  z-index: 2;
  text-align: center;
  line-height: 38px;
  color: #fff;
  text-decoration: none;
}

.checkout-bottom:hover {
  background: var(--secondary-color);
  border: 1px solid var(--primary-color);
  color:var(--white-color)
}
.thumbnail-bg
{
  padding: 3px;
}

.div_content_home_info {
  position: relative;
  /* width: 30%; */
  padding: 0em 1.5em;
  margin: 0.1em auto;
  color: #fff;
  background: #024295;
  overflow: hidden;
}

.div_content_home_info:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-width: 0 16px 16px 0;
  border-style: solid;
  border-color: #fff #fff #658E15 #658E15;
  background: #8c8e15;
  -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
  box-shadow: 0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
  /* Firefox 3.0 damage limitation */
  display: block; width: 0;
}

.div_content_home_info.rounded {
  -moz-border-radius: 5px 0 5px 5px;
  border-radius: 5px 0 5px 5px;
}

.div_content_home_info.rounded:before {
  border-width: 8px;
  border-color: #fff #fff transparent transparent;
  -moz-border-radius: 0 0 0 5px;
  border-radius: 0 0 0 5px;
}

.div_content_info {
  position: relative;
  /* width: 30%; */
  padding: 0em 1.5em;
  margin: 0.1em auto;
  color: #fff;
  background: #f4e434;
  overflow: hidden;
}

.div_content_info:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-width: 0 16px 16px 0;
  border-style: solid;
  border-color: #fff #fff #658E15 #658E15;
  background: #8c8e15;
  -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
  box-shadow: 0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
  /* Firefox 3.0 damage limitation */
  display: block; width: 0;
}

.div_content_info.rounded {
  -moz-border-radius: 5px 0 5px 5px;
  border-radius: 5px 0 5px 5px;
}

.div_content_info.rounded:before {
  border-width: 8px;
  border-color: #fff #fff transparent transparent;
  -moz-border-radius: 0 0 0 5px;
  border-radius: 0 0 0 5px;
}

.div_content_reg {
  position: relative;
  /* width: 30%; */
  padding: 0em 1.5em;
  margin: 2em auto;
  color: #fff;
  background: #ffffff;
  overflow: hidden;
}

.div_content_reg:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-width: 0 16px 16px 0;
  border-style: solid;
  border-color: #fff #fff #658E15 #658E15;
  background: #8c8e15;
  -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
  box-shadow: 0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
  /* Firefox 3.0 damage limitation */
  display: block; width: 0;
}

.div_content_reg.rounded {
  -moz-border-radius: 5px 0 5px 5px;
  border-radius: 5px 0 5px 5px;
}

.div_content_reg.rounded:before {
  border-width: 8px;
  border-color: #fff #fff transparent transparent;
  -moz-border-radius: 0 0 0 5px;
  border-radius: 0 0 0 5px;
}

/* .radio-button {
  margin-left: 15px;
  margin-top: 1px;
} */
/* .radio-button input[type="radio"] {
  opacity: 0;
  position: fixed;
  width: 0;
} */
.radio-button label {
  display: inline-block;
  padding: 7px 6px;
  font-family: sans-serif, Arial;
  font-size: 12px;
  font-weight: 600;
  border-radius: 9px;
  cursor: pointer;
  margin-bottom:0px;
}
/* .radio-button label:hover {
  background-color: #b5eaa3;
} */
/* .radio-button input[type="radio"]:checked + label {
  background-color: #447733;
  border-color: #447733;
  color: #fff;
} */

.checkbox-button input[type="radio"] {
  opacity: 0;
  position: fixed;
  width: 0;
}
.checkbox-button label {
  display: inline-block;
  padding: 7px 6px;
  font-family: sans-serif, Arial;
  font-size: 14px;
  cursor: pointer;
}

.radio-button-underline {
  margin-left: 15px;
  margin-top: 1px;
}
.radio-button-underline input[type="radio"] {
  opacity: 0;
  position: fixed;
  width: 0;
}
.radio-button-underline label {
  display: inline-block;
  padding: 7px 6px;
  font-family: sans-serif, Arial;
  font-size: 14px;
  cursor: pointer;
  
}
.radio-button-underline input[type="radio"]:checked + label {
  text-decoration: underline;
}
.numberCircle {
  display: inline-block;
  line-height: 0px;
  border-radius: 50%;
  font-size: 20px;
  background-color: #fff;    
  width: 135px;
  height: 136px;
}

.numberCircle span {
  display: inline-block;
  padding-top: 50%;
  padding-bottom: 50%;
  margin-left: 8px;
  margin-right: 8px;
}
.card-bg-color
{
  background-color: #a67230
}
.cart-style
{
  color:var(--third-color);
}
.pricing-header {
  max-width: 700px;
}
.card-clickable:hover
{
  cursor: pointer;
  background-color: #d3fff5;
  color:#fff;
}
.card-deck .card {
  min-width: 220px;
}
.pricing-card-title
{
  font-size: 1rem;
}
.display-4
{
  font-size: 1.2rem;
}
.pricing-card-highlight
{
  font-size: 1.2rem;
  color: #b55404;
  padding-left: 10px;
}
.category-style
{
  font-size: 1.3rem;
  text-shadow: 1px 2px 0px rgb(120, 55, 2);
}
.category-head-style
{
  font-size: 1.7rem;
  text-shadow: 1px 2px 0px rgb(120, 55, 2);
}
.body-bg {
  /* The image used */
  background-image: url(../Images/body-bg.jpg);

  /* Half height */
  height: 50%;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* .container-bg
{
  background-color: #faf7f7;
} */

.copyright-text-white
{
  color:#fff;
  font-size: 1.2rem;
  font-style: italic;
  text-decoration:underline;
}
.text-header-phone
{
  color:#007406;
  padding-right: 30px;
}

/* .home {
  width: 100%;
  height: 100vh;
  background-image: url(https://images.unsplash.com/photo-1498550744921-75f79806b8a7?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=b0f6908fa5e81286213c7211276e6b3d&auto=format&fit=crop&w=1500&q=80);
  background-position: center top;
  background-size:cover;
} */

.home {
  width: 100%;
  height: 100vh;
  background-image: url("../Images/Shopping/img4.jpg");
  background-position: center top;
  background-size:cover;
}

.nav-style {
  width: 100% !important;
  height: 47px !important;
  position: relative !important;
  text-align: center !important;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  -webkit-transition: all 0.4s ease !important;
  transition: all 0.4s ease !important;
  background-color: #fff !important;
}
.nav {
  width: 100%;
  height: 65px;
  position: fixed;
  /* line-height: 65px; */
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: #00695C;
  /* background-color: #009471; */
}

.nav-margin-top
{
  margin-top: 30px;
}


.affix {
  padding: 0;
  background-color: #ffffff;
}


/* Services Section
--------------------------------*/
#services {
  padding: 10px 0 40px 0;
}

#services .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center;
  height: 100%;
}

#services .box:hover {
  transform: scale(1.1);
}

#services .icon {
  margin: 0 auto 15px auto;
  padding-top: 12px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

#services .icon i {
  font-size: 36px;
  line-height: 0;
}

#services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#services .title a {
  color: #111;
}

#services .box:hover .title a {
  color: #1bb1dc;
}

#services .description {
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 0;
  text-align: left;
}
.categories li {
  display: block;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f8f9fa;
}
.categories li a span {
  position: absolute;
  right: 0;
  font-size: 12px;
  color: #ccc;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.categories li a {
  color: #000000;
  display: block;
  position: relative;
}
.menu-icons .btn-custom-search {
  font-size: 16px;
  color: #000000;
  margin-right: 20px;
}

/*Cart*/
.cart-badge {
  padding-left: 9px;
  padding-right: 9px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  border-radius: 9px;
}

.label-warning[href],
.cart-badge-warning[href] {
  background-color: #c67605;
}
#spn_cart_number {
    font-size: 12px;
    background: #000000;
    color: #fff;
    padding: 0 5px;
    vertical-align: top;
    margin-left: -7px; 
}
#owl-demo .item img{
  display: block;
  width: 100%;
  height: auto;
}
.home1 {
  width: 100%;
  height: 100vh;
  background-image: url("../Images/Shopping/img4.jpg");
  background-position: center top;
  background-size:cover;
}

.home2 {
  width: 100%;
  height: 100vh;
  background-image: url("../Images/Shopping/img5.jpg");
  background-position: center top;
  background-size:cover;
}

.home3 {
  width: 100%;
  height: 100vh;
  background-image: url("../Images/Shopping/img6.jpg");
  background-position: center top;
  background-size:cover;
}

/*New Slider -starts*/

.d-table {width: 100%;height: 100vh;display: table;}
.d-tablecell {display: table-cell;vertical-align: middle;}
.custom-btn1 {background-color: #ff3547;color: #fff;border: 1px solid #ff3547;display: inline-block;padding: 12px 30px;text-transform: uppercase;border-radius: 30px;text-decoration: none;}
.custom-btn1:hover {background-color: #7d000a;text-decoration: none;color: #fff;}

.custom-btn2 {background-color: #ff3547;color: #fff;border: 1px solid #ff3547;display: inline-block;padding: 8px 20px;text-transform: uppercase;border-radius: 10px;text-decoration: none;}
.custom-btn2:hover {background-color: transparent;text-decoration: none;color: #ff3547;}

.custom-btn3 {background-color: transparent;color: #ff3547;border: 1px solid #ff3547;display: inline-block;padding: 2px 2px;text-transform: uppercase;border-radius: 8px;text-decoration: none;}
.custom-btn3:hover {background-color: #ff3547;text-decoration: none;color: #fff;}

/*
Hero slider style
==========================*/
.hero-slider {position: relative;}
.single-hs-item {width: 100%;height: 100vh;background-size: cover;background-position: center top;position: relative;}
.single-hs-item:before {content: '';position: absolute;width: 100%;height: 100vh;left: 0;top: 0;background-color: #000;opacity: .1;}
.item-bg1 {
background-image: url(../Images/Shopping/img4.jpg);
}
.item-bg2 {
background-image: url(../Images/Shopping/img5.jpg);
}
.item-bg3 {
background-image: url(../Images/Shopping/img6.jpg);
}
.hero-text {padding: 0 15px;text-align: center;max-width: 1140px;margin-left: auto;margin-right: auto;position: relative;}
.hero-text h1 {color: #fff;font-size: 50px;text-transform: capitalize;font-weight: 600;margin: 0;}
.hero-text p {color: #fff;font-size: 17px;max-width: 600px;margin-left: auto;margin-right: auto;line-height: 30px;margin-top: 20px;margin-bottom: 35px;}
.hero-slider .owl-item.active h1 {-animation: 1s .3s fadeInUp both;}
.hero-slider .owl-item.active p {-webkit-animation: 1s .3s fadeInUp both;animation: 1s .3s fadeInUp both;}
.hero-slider .owl-item.active .slider-btn {-webkit-animation: 1s .3s fadeInUp both;animation: 1s .3s fadeInUp both;}
.owl-carousel .owl-nav button.owl-prev 
{
  /* background-color: #ffa726; */
  color: #fff;font-size: 65px;border-radius: 0;height: 95px;width: 47px;margin-left: -5px;
}
.owl-carousel .owl-nav button.owl-next 
{
  /* background-color: #ffa726; */
  color: #fff;font-size: 65px;border-radius: 0;height: 95px;width: 47px;margin-right: -5px;
}
.owl-theme .owl-nav {margin-top: 0;}
.owl-dots {position: absolute;left: 0;right: 0; bottom: 20px;}
.owl-theme .owl-dots .owl-dot span {width: 11px;height: 20px;}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {background: #ff3547;}

.owl-prev, .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* background: rgba(255, 175, 15, 0.5) !important;  */
  color: #fff !important;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Position the left arrow */
.owl-prev {
  left: -25px; /* Adjust as needed */
}

/* Position the right arrow */
.owl-next {
  right: -25px; /* Adjust as needed */
}

/* Optional: Hover effect */
.owl-prev:hover, .owl-next:hover {
  /* background: rgba(255, 175, 15, 0.8) !important; */
  background:rgba(255, 255, 255, 0.8);
}

@media only screen and (max-width: 600px) {
    .single-hs-item {
      height: 100vh;
    }
    .hero-text h1 {
        font-size: 30px;
    }
    .hero-text p {
        font-size: 15px;
        margin-bottom: 25px;
    }
    /* .owl-carousel .owl-nav button.owl-next {
        top: auto;
        margin: 0;
        bottom: 0px;
    }
    .owl-carousel .owl-nav button.owl-prev {
        top: auto;
        margin: 0;
        bottom: 0px;
    }
    .owl-dots {
        bottom: 10px;
        left: 50px;
        right: 50px;
    } */
}

/*new slider- ends */
.title-bar
{
  background-color: #212121;
  height: 30px;
  color: #fff;
  font-weight: 600;
}
.title-bar-icon
{
  font-size: 20px;
}
.title-bar-text
{
  color: #fff;
  font-weight: 600;
  font-size: 17px;
}
.header-follow-us
{
  float:left;
  display: block;
}
.title-follow-us
{
  display: none;
  white-space: nowrap;
  padding-left:20px
}
.border {
  border: 1px solid #eed3d3!important;
}
.td-padding-less
{
  padding: 0.2rem !important;
}
.input-no-border
{
  border:none;
}

/*Cricket Starts*/
.div-overs {
  /* position: relative; */
  /* padding: 1rem; */
  margin-bottom:0px;
  /* border: solid #f7f7f9; */
  /* border-width: .2rem 0 0; */
}
.bd-example {
  position: relative;
  padding: 1rem;
  margin: 1rem -15px 0;
  border: solid #f7f7f9;
  border-width: .2rem 0 0;
}
.bd-example-row .row>[class^=col-] {
  padding-top: .75rem;
  padding-bottom: .75rem;
  /* background-color: rgba(86, 61, 124, .15); */
  border: 1px solid rgba(86, 61, 124, .2);
}
.circle-style-scoreboard {
  height: 35px;
  width: 35px;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  border-radius: 50%;
  background: #585858;
  font-size:14px;
  color:#fff;
  font-weight: bold;
  
}
.circle-four-scoreboard {
  height: 35px;
  width: 35px;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  border-radius: 50%;
  background: rgb(0 102 192);
  font-size:14px;
  color:#fff;
  font-weight: bold;
}

.circle-six-scoreboard {
  height: 35px;
  width: 35px;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  border-radius: 50%;
  background: rgb(221 0 240);
  font-size:14px;
  color:#fff;
  font-weight: bold;
}

.circle-wicket-scoreboard {
  height: 35px;
  width: 35px;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  border-radius: 50%;
  background: rgb(253 0 0);
  font-size:14px;
  color:#fff;
  font-weight: bold;
}
.circle-style {
  height: 35px;
  width: 35px;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  border-radius: 50%;
  background: #585858;
  font-size:14px;
  color:#fff;
  font-weight: bold;
  
}
.circle-four {
  height: 30px;
  width: 30px;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  border-radius: 50%;
  background: rgb(0 102 192);
  font-size:9px;
  color:#fff;
  font-weight: bold;
}

.circle-six {
  height: 30px;
  width: 30px;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  border-radius: 50%;
  background: rgb(221 0 240);
  font-size:9px;
  color:#fff;
  font-weight: bold;
}

.circle-wicket {
  height: 30px;
  width: 30px;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  border-radius: 50%;
  background: rgb(253 0 0);
  font-size:9px;
  color:#fff;
  font-weight: bold;
}
.balls-style
{
  text-decoration: none;
}
.balls-style li
{
  display: inline;
  list-style-type: none;
  padding-right: 20px;
  float: left;
  padding-top: 8px;
  padding-left: 4px;
}
/* .href-style
{
  text-decoration:underline;
  color:#00568f;
} */

/* .href-style-team
{
  text-decoration:underline;
  color:#00568f;
  font-size: 1.2rem;
  font-weight: bold;
} */

.team-name-style
{
  color:#000;
  font-size: 1rem;
  font-weight: bold;
}
.dotted-line {
  border-bottom: 1px dotted #909090;
}
.width-fit-content {
  width: 30px;
}
.p-style-small
{
  margin-bottom:0;
  font-size:0.90rem
}
.p-style-red
{
  margin-bottom:0;
  font-size:0.90rem;
  color:#f05800;
}
.p-style-orange
{
  margin-bottom:0;
  font-size:0.90rem;
  color:#d29300;
}
.ul-commandary-style
{
  list-style:none;
  margin:0;
  padding:0;
}
.li-commandary-style
{
  border-bottom: 1px dotted #909090;
  margin:0;
  padding:0;
  padding-top:5px;
  padding-bottom:5px;
}
/*
.btn-common-cric {background-color: #28a745;color: #fff;border: 1px solid #ffffff;display: inline-block;padding: 12px 30px;text-transform: uppercase;border-radius: 30px;text-decoration: none;}
.btn-common-cric:hover {background-color: #218838;color: #fff;text-decoration: none;color: #fff;}

.btn-common-scorepad {background-color: #28a745;color: #fff;border: 1px solid #ffffff;display: inline-block;padding: 7px 19px;text-transform: uppercase;border-radius: 10px;text-decoration: none;}
.btn-common-scorepad:hover {background-color: #218838;color: #fff;text-decoration: none;color: #fff;}

.btn-common-print {background-color: #28a745;color: #fff;border: 1px solid #ffffff;display: inline-block;padding: 3px 13px;border-radius: 10px;text-decoration: none;margin-right:4px}
.btn-common-print:hover {background-color: #218838;color: #fff;text-decoration: none;color: #fff;}
*/
.btn-common-cric {
  background-color: #d37d00; /* Vibrant orange */
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-common-cric:hover {
  background-color: #fb8c00; /* Darker orange */
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-common-scorepad {
  background-color: #d37d00; /* Vibrant orange */
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.circle-scoreboard-text-small{
  font-size:12px;
}
.circle-scoreboard-text-reg{
  font-size:16px;
}
.btn-common-scorepad:hover {
  background-color: #fb8c00; /* Darker orange */
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-common-print {
  background-color: #ffa726; /* Vibrant orange */
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-common-print:hover {
  background-color: #fb8c00; /* Darker orange */
  transform: translateY(-2px);
  text-decoration: none;
}

.table-margin-0
{
  margin: 0px !important;
}


/* CSS for Hero Section */
/* .hero {
  background-image: url('../Images/backgrounds/cricket-image.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh; 
  justify-content: center;
  align-items: center;
  color: white; 
  text-align: center;
} */

.hero {
    background-color: #f5f5f5; /* Light gray background as placeholder */
    background-size: cover;
    background-position: center;
    height: 100vh;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    transition: background-image 1s ease-in-out; /* Smooth transition */
}

.hero.loaded {
    background-image: url("../Images/backgrounds/cricket-image.jpg");
}
.hero-content h1 {
  font-size: 3em;
  margin: 0 0 20px;
}

.hero-content p {
  font-size: 1.5em;
  margin-bottom: 30px;
}

/*.cta-button {
  background-color: #28a745;
  color: white;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #218838;
}*/

.cta-button {
  background-color: #28a745; /* Vibrant orange */
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #218838; /* Darker orange */
  transform: translateY(-2px);
  text-decoration: none;
}

/* Scoreboard Section */
.scoreboard-section {
  padding: 40px 0;
  text-align: center;
  background-color: #f8f9fa; /* Light background to differentiate the section */
}

.scoreboard-section h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.scoreboard-image {
  max-width: 90%; /* Adjust image size */
  border: 2px solid #ddd; /* Optional border for styling */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Optional shadow */
}

/*homecarousel -- Starts*/
.homecarousel-section {
  text-align: center;
  padding: 40px 0;
  background-color: #f9f9f9; /* Light background */
}

.homecarousel-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

/* .homecarousel-item {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align:left;
} */
.homecarousel-item {
  position: relative;
  width: 100%;
  /* height: 400px;  */
  background-size: cover;
  background-position: center;
  border-radius: 12px; 
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}
.carousel-inner {
  transition: transform 0.8s ease-in-out;
}
.homecarousel-item:hover {
  transform: scale(1.02); /* Slight zoom on hover */
}

.homepage-cardbody
{
  padding: 0 0 0 10px !important;
  background-color: #fefefe;
  text-align: left;
}

.homecarousel-item p {
  font-size: 0.8em;
  /* font-style: italic; */
  margin-bottom: 0px !important;
}

.homecarousel-item h4 {
  margin-top: 15px;
  font-size: 1.1em;
  font-weight: bold;
}
/*homecarousel -- Ends*/


.testimonials-section {
  text-align: center;
  padding: 40px 0;
  background-color: #f9f9f9; /* Light background */
}

.testimonials-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.testimonial-item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 10px;
}

.testimonial-item p {
  font-size: 1.2em;
  font-style: italic;
}

.testimonial-item h4 {
  margin-top: 15px;
  font-size: 1.1em;
  font-weight: bold;
}
/* Feature Section Styles */
.features-section {
  padding: 60px 20px;
  background-color: #f9f9f9; /* Light gray background */
  text-align: center;
}

.features-section h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #333; /* Dark text color */
}

.features-container {
  display: flex;
  justify-content: center;
  gap: 30px; /* Space between feature items */
  flex-wrap: wrap; /* Allow items to wrap on smaller screens */
}

.feature-item {
  background: #fff; /* White background for each feature item */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  padding: 20px;
  width: 300px; /* Fixed width for feature items */
  transition: transform 0.3s; /* Animation for hover effect */
}

.feature-item:hover {
  transform: translateY(-5px); /* Slight lift on hover */
}

.feature-item h3 {
  font-size: 1.8em;
  margin: 15px 0 10px;
  color: #007bff; /* Primary color for headings */
}

.feature-item p {
  font-size: 1em;
  color: #666; /* Dark gray for text */
}
.feature-icon {
  font-size: 50px; /* Icon size */
  color: #007bff;  /* Primary color for icons */
  margin-bottom: 15px; /* Space between icon and text */
}

.list-search-event {
  list-style-type: none; /* Removes the default bullets */
  padding-left:10px; 
  padding-right:10px;
  padding-bottom:10px;
  margin: 0; /* Removes margin from the list */
}

/* Footer Section */
.footer-section {
  background-color: #343a40; /* Dark background */
  color: #fff; /* White text */
  padding: 40px 0;
  text-align: center;
}

.footer-section h4 {
  font-size: 1.5em;
  margin-bottom: 20px;
  color: #ffffff; /* Accent color */
}

.footer-section p {
  font-size: 1em;
  line-height: 1.6;
}

.footer-links {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: #ffffff;
  text-decoration: none;
}

.footer-links li a:hover {
  color: #fff;
  text-decoration: underline;
}

.social-icons a {
  color: #ffffff;
  margin-right: 15px;
  font-size: 1.5em;
  text-decoration: none;
}

.social-icons a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid #555;
  padding-top: 20px;
  font-size: 0.9em;
}
.quick-scoring-container {
  max-width: 500px;
  margin: 0 auto;
  padding: 30px;
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.quick-scoring-container h2 {
  color: #007bff;
  margin-bottom: 20px;
}
.info-message {
  font-size: 1em;
  color: #6c757d;
  margin-bottom: 20px;
  font-style: italic;
}
.quick-scoring-form input {
  width: 100%;
  padding: 15px;
  margin: 15px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1.1em;
  text-align: center; /* Center the text */
}

.quick-scoring-form input:focus {
  border-color: #007bff;
  outline: none;
}

/*.start-match-btn {
  background-color: #28a745;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  cursor: pointer;
  width: 100%;
}

.start-match-btn:hover {
  background-color: #218838;
}*/
.start-match-btn {
  background-color: #d37d00; /* Vibrant orange */
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.start-match-btn:hover {
  background-color: #fb8c00; /* Darker orange */
  transform: translateY(-2px);
  text-decoration: none;
}
.team-score {
  font-size: 1.2em;
  color: #000000;
  margin: 10px 0;
  text-align: center;
  font-weight: bold;
}

.team-score strong {
  color: #28a745; /* Highlight score */
}

.team-score .over {
  font-size: 0.9em;
  color: #6c757d; /* Lighter color for overs */
}
.swap-icon {
  /* font-size: 1.5em; */
  color: #007bff;
  /* padding: 5px; */
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

.swap-icon:hover {
  color: #0056b3;  /* Darken on hover */
  transform: rotate(90deg);  /* Rotate to emphasize swapping */
}
.match-info {
  display: flex;
  align-items: center; /* Vertically align text and icon */
}

.match-info .bi-share {
  margin-left: 10px; /* Space between text and icon */
  color: #007bff; /* Icon color */
}
.team-header-section {
  background-color: #009471;
  color: #fff;
  font-weight:bold;
  height: 50px;
  align-content: center;
}
.header-report
{
  font-size:1.2rem;
  font-weight:bold;
  color: #004c9d;
}
.powered-by-style
{
  color:#fff;
  text-decoration: underline;
}
.p-style-timeline
{
  margin-bottom:0;
  font-size:1rem;
  color:#00366f;
  letter-spacing: 1px;
}
/*----------Please Wait Starts---------------*/
.pleasewait {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  /* background-color: #000; */
  /* filter: alpha(opacity=50); */
  /* -moz-opacity: 0.5; */
  /* opacity: 0.5; */
}

.pleasewait span {
    position:relative;
    top:50%;
}
.txt-please-wait
{
    font-size: 16px;
    color:red;
    font-weight: bold;
}
.scoring-access-section {
  margin-top: 20px;
  border-top: 1px solid #ccc;
  padding-top: 15px;
}

.email-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.email-list li {
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 400px;
  margin: 0 auto;
}

.email-list i {
  margin-right: 8px;
  color: #007bff;
}

.delete-btn {
  background-color: red;
  color: white;
  border: none;
  border-radius: 3px;
  padding: 5px 10px;
  cursor: pointer;
}

.add-email {
  margin-top: 15px;
}

.add-email input {
  padding: 10px;
  width: 60%;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-right: 10px;
}

.add-btn {
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
}
/*----------Please Wait Ends---------------*/


/* Main Search Content Area */
.search-container {
  max-width: 600px;
  margin: 0 auto;
}

.search-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.search-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.search-input {
  width: 80%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.search-button {
  width: 50%;
  font-size: 1rem;
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
}

.custom-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px;
}

.custom-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.clickable-box {
  width: 150px;
  height: 100px;
  background-color: #009471; /* Bootstrap primary blue */
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 100px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.clickable-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.centered-input
{
  text-align: center;
}
.label-sm-text
{
    font-size: 0.8rem !important;
}
.label-margin-zero
{
    margin: 0rem !important;
}
.quick-scoring-text {
  font-size: 1.2em; /* Larger font to make it look like a heading */
  font-weight: 700; /* Make it bold */
}

.enable-href-link {
  color: #007bff;
  text-decoration: none; 
  display: inline-block;
}
.enable-href-ulink {
  color: #007bff;
  text-decoration: underline !important; 
  display: inline-block;
}
.enable-href-link:hover {
  color: #0056b3; /* Darker blue on hover */
  text-decoration: underline !important; /* Underline on hover */
}
.disable-href-link {
  text-decoration: none; /* Remove underline */
  cursor: default; /* Disable pointer */
  color: #000000;
}
.disable-href-link:hover {
  color: #000000;
}

.href-style-team {
  font-size: 0.8rem;
  font-weight: bold;
}
.href-style {
  font-weight: bolder;
  border-bottom: 2px solid transparent;
}
.list-manage
{
  font-family: 'Montserrat', arial, sans-serif;
  font-weight: bold;
  padding: 0.3em;
  letter-spacing: 0.2px;
  font-size: 1em;
}
.list-result-container-bg
{
  /* background-color:#dcdcdc; */
  background-color:#ffffff;
}
.list-header-text
{
  font-family: 'Montserrat', arial, sans-serif;
  font-weight: bold;
  font-size: 1.2em;
}
.top-sub-header
{
  margin-top:65px;
  background-color:#003a2d;
}
.top-sub-header-text
{
  font-family: 'Montserrat', arial, sans-serif;
  font-weight: bold;
  padding: 0.1em;
  letter-spacing: 0.2px;
  font-size: 0.8em;
  color: #fff;
}
.update-email-text
{
  /* font-size: 0.7em; */
  color: #007bff;
  text-decoration: underline;
}
.form-control:disabled {
  background-color: #e9ecef; /* Light grey for disabled input */
  color: #6c757d; /* Grey text */
  cursor: not-allowed;
  opacity: 0.8; /* Slightly faded */
}

/*.card-fixture-header {
  background-color: #004d40;
  background-color: #004d40; 
  color: #ffffff;
  font-size: 1.1rem; 
  padding: 12px 15px; 
}

.card-fixture-footer {
  background-color: #e0f2f1; 
  color: #004d40; 
  padding: 10px 15px; 
  border-top: 1px solid #b2dfdb; 
}

.card-fixture-footer a {
  color: #004d40; 
  text-decoration: none; 
  transition: color 0.3s ease;
  padding: 0.3em;
}

.card-fixture-footer a:hover {
  color: #00251a; 
  text-decoration: underline !important; 
}*/

.card-fixture-header {
  background-color: #00796b; /* Lighter teal */
  color: #ffffff; /* White text for readability */
  font-size: 1.1rem; /* Slightly larger text */
  font-weight: 500; /* Medium weight for a clean look */
  padding: 12px 15px; /* Uniform spacing */
}

.card-fixture-footer {
  background-color: #e0f2f1; /* Light teal */
  color: #004d40; /* Text matches theme */
  padding: 10px 15px;
  border-top: 1px solid #b2dfdb; /* Subtle border for separation */
}

.card-fixture-footer a {
  color: #004d40; /* Theme-matching link */
  text-decoration: none;
  font-weight: 500; /* Slightly bold for emphasis */
  transition: color 0.3s ease;
  padding: 0.3em;
}

.card-fixture-footer a:hover {
  color: #00251a; /* Darker teal on hover */
  text-decoration: underline !important;
}
.card-footer .separator {
  color: #004d40; /* Matches link color */
  margin: 0 5px; /* Space around separator */
  font-weight: 400; /* Lighter than links */
  opacity: 0.7; /* Subtle appearance */
}
.horizontal-center {
  text-align: center;
  margin-top: 20px;
  position: relative; /* This makes the dropdown align relative to this container */
}

.auto-textbox {
  width: 300px;
}

.auto-dropdown {
  max-height: 200px;
  overflow-y: auto;
  background-color: #fff;
  color: #000;
  text-align: left;
  position: absolute;
  top: 100%; /* Position the dropdown directly below the textbox */
  left: 0; /* Align dropdown with the textbox */
  width: 100%; /* Match the width of the textbox */
  z-index: 1000;
  display: none;
  border: 1px solid #ccc;
  border-top: none;
}
.flex-align-center
{
  display: flex;
  flex-direction: row;
  /* align-items: flex-end; */
  /* align-content: flex-end; */
  justify-content: center;
}
.btn-common-login {
  background-color: #f7e910;
  padding: 6px 35px;
  border-radius: 0;
  transform: skew(-40deg);
}
.login-btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .25rem;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-common-login:hover {
  text-decoration: none !important;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -o-transition: all .3s;
}
.btn-common-login > span {
  display: inline-block;
  padding: 0px 24px;
  font-size: 0.875em;
  font-weight: bold;
  color: #000;
  transform: skew(40deg);
}
.no-margin-bottom
{
  margin-bottom: 0 !important;
}
.scoring-small-text {
  font-size: 14px;
  line-height: 1.2;
}
.scoring-small-text-active{
  font-size: 1.2rem;
  font-weight: bold;
}
.scoring-overs-wickets {
  font-size: 0.8rem;
  /* font-style: italic; */
}
.scoring-card-body {
    padding: 0.7rem !important;
}
.scoring-card-title {
  margin: 0; /* Remove margin */
  font-size: 16px; /* Adjust font size if needed */
}
.scoring-card-text {
  margin-bottom: 2px; /* Reduce spacing below text */
}
.scoring-btn-sm {
  margin-bottom: 0; /* Remove extra bottom margin */
  padding: 2px 8px; /* Adjust button padding */
}
.scoring-card-header {
  background-color: #00796b;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 8px; /* Reduce spacing */
  border-bottom: none; /* Remove border if needed */
}
.card-fixture-header-home {
  background-color: #ffffff; /* Lighter teal */
  color: #424242; /* White text for readability */
  font-size: 0.8rem; /* Slightly larger text */
  font-weight: 500; /* Medium weight for a clean look */
  padding: 12px 15px; /* Uniform spacing */
}
.card-fixture-footer-home {
  background-color: #e0f2f1; /* Light teal */
  color: #004d40; /* Text matches theme */
  padding: 10px 15px;
  border-top: 1px solid #b2dfdb; /* Subtle border for separation */
  font-size: 0.8rem;
}

.card-fixture-footer-home a {
  color: #004d40; /* Theme-matching link */
  text-decoration: none;
  font-weight: 500; /* Slightly bold for emphasis */
  transition: color 0.3s ease;
  padding: 0.3em;
}

.card-fixture-footer-home a:hover {
  color: #00251a; /* Darker teal on hover */
  text-decoration: underline !important;
}
.team-name-style-home
{
  color:#000;
  font-size: 1rem;
  font-weight: bold;
  font-size: 0.8rem;
}
.text-primary-home
{
  color:#4e4f4e;
}

/* General Button Styling */
.cricstatz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  gap: 8px; /* Space between icon and text */
}

/* Quick Scoring - Green (Cricket Theme) */
.quick-scoring-btn {
  background: linear-gradient(135deg, #28a745, #1d7832);
  color: white;
}

.quick-scoring-btn:hover {
  background: linear-gradient(135deg, #1d7832, #155d26);
  transform: translateY(-3px);
}

/* Create League - Royal Blue (Professional Theme) */
.create-league-btn {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
}

.create-league-btn:hover {
  background: linear-gradient(135deg, #0056b3, #003e7e);
  transform: translateY(-3px);
}

/* Bootstrap Icon Style Inside Button */
.cricstatz-btn i {
  font-size: 1.2rem;
}
.small-text-fade {
  color: #333;
  font-size:0.75rem;
  margin-bottom:0;
}
.btn-share-icon-style
{
  color:#d37d00;
  font-weight:bold;
  padding-right:5px
}
.font-weight-bolder
{
  font-weight: bolder;
}
.skeleton {
  background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
  /* display: inline-block; */
  border-radius: 4px;
  min-height: 16px;
  width: 100px;
  color:#7e7e7e;
}

.skeleton-text {
  min-height: 20px;
  width: 60%;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.font-style-scoring-popup
{
  font-weight: bold;
  color: #003063;
}
.card-fixture-footer-home-scoring {
  background-color: #e0f2f1;
  color: #004d40;
  padding: 0px 7px;
  border-top: 1px solid #b2dfdb;
  font-size: 0.9rem;
}

.btn-common-scorepad-red {
  background-color: #d30000; /* Vibrant orange */
  color: white;
  border: none;
  padding: 10px 4px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-common-scorepad-red:hover {
  background-color: #fb0000; /* Darker orange */
  transform: translateY(-2px);
  text-decoration: none;
}
.btn-common-scorepad-caret-down {
  background-color: #d37d00; /* Vibrant orange */
  color: white;
  border: none;
  padding: 10px 7px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-common-scorepad-caret-down:hover {
  background-color: #fb8c00; /* Darker orange */
  transform: translateY(-2px);
  text-decoration: none;
}
.btn-common-scorepad-secondary {
    color: #d37d00;
    border: 1px solid #d37d00;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
}
.btn-common-scorepad-secondary:hover {
  background-color: #909090; /* Darker orange */
  transform: translateY(-2px);
  text-decoration: none;
}
.hide-top-sub-header
{
  display: none !important;
}
.thead-scoring-font-size
{
  font-size: 0.75rem;
}

.score-keypad {
  max-width: 380px;
  margin: auto;
  background: #f8f9fa;
  padding: 7px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.keypad-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 8px;
  justify-items: center;
}
.keypad-grid-1-col
{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 8px;
  justify-items: center;
}
.keypad-grid-2-col
{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 8px;
  justify-items: center;
}
.keypad-btn-4x {
  width: 175px;
  height: 61px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
  transition: 0.2s;
  padding: 0;
}

.keypad-btn-4x:hover {
  background-color: #e2e6ea;
}
.keypad-btn-2x {
  width: 88px;
  height: 33px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
  transition: 0.2s;
  padding: 0;
}

.keypad-btn-2x:hover {
  background-color: #e2e6ea;
}
.keypad-btn {
  width: 60px;
  height: 50px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
  transition: 0.2s;
  padding: 0;
}

.keypad-btn:hover {
  background-color: #e2e6ea;
}

.keypad-btn.special i {
  font-size: 12px;
  margin-left: 4px;
}

.form-check-label {
  font-size: 13px;
}

.modal .close {
  color: #fff;           /* Makes the X white */
  opacity: 1 !important; /* Removes the dim look */
}
.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 12px 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #007bff;
  cursor: pointer;
  text-decoration: none;
}
.faq-toggle-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}
.faq-answer {
  padding-top: 8px;
}
.rotate {
  transform: rotate(180deg);
}
.error-fields
{
    color: red;
}
.control-error
{
    border-color: red;
}
.success-fields
{
    font-size: 1.0rem;
    font-weight: bold;
    color: #049e11;
}
.order-success{
  font-size: 1.5rem;
  font-weight: bold;
  color: #049e11;
}
.order-failed{
  font-size: 1.5rem;
  font-weight: bold;
  color: red;
}
#profilePreview {
  object-fit: cover;
}
.fa-camera {
  font-size: 18px;
  color: #333;
  background: #fff;
  padding: 5px;
}
/* Cricket Ends */