html {
  font-size: 16px; /* Sets the base font size to 16px */
}

body {
  font: 400 15px Lato, sans-serif;
  line-height: 1.8;
  color: #2b2b2b;
}

h2 {
  font-size: 24px;
  text-transform: uppercase;
  color: #303030;
  font-weight: 600;
  margin-bottom: 30px;
}

h4 {
  font-size: 19px;
  line-height: 1.375em;
  color: #303030;
  font-weight: 400;
  margin-bottom: 30px;
}

.jumbotron {
  background-color: #f4511e;
  color: #fff;
  padding: 100px 25px;
  font-family: Montserrat, sans-serif;
}

.container-fluid {
  padding: 60px 50px;
}

.bg-grey {
  background-color: #f6f6f6;
}

.logo-small {
  color: #f4511e;
  font-size: 50px;
}

.logo {
  color: #f4511e;
  font-size: 200px;
}

.thumbnail {
  padding: 0 0 15px 0;
  border: none;
  border-radius: 0;
}

.thumbnail img {
  width: 25rem;
  height: 18.75rem;
  margin-bottom: 10px;
  border-radius: 2rem;
}

.carousel-control.right,
.carousel-control.left {
  background-image: none;
  color: #f4511e;
}

.carousel-indicators li {
  border-color: #f4511e;
}

.carousel-indicators li.active {
  background-color: #f4511e;
}

.item h4 {
  font-size: 19px;
  line-height: 1.375em;
  font-weight: 400;
  font-style: italic;
  margin: 70px 0;
}

.item span {
  font-style: normal;
}

.panel {
  border: 1px solid #f4511e;
  border-radius: 0 !important;
  transition: box-shadow 0.5s;
}

.panel:hover {
  box-shadow: 5px 0px 40px rgba(0, 0, 0, .2);
}

.panel-footer .btn:hover {
  border: 1px solid #f4511e;
  background-color: #fff !important;
  color: #f4511e;
}

.panel-heading {
  color: #fff !important;
  background-color: #f4511e !important;
  padding: 25px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.panel-footer {
  background-color: white !important;
}

.panel-footer h3 {
  font-size: 32px;
}

.panel-footer h4 {
  color: #aaa;
  font-size: 14px;
}

.panel-footer .btn {
  margin: 15px 0;
  background-color: #f4511e;
  color: #fff;
}


/* .navbar {
  margin-bottom: 0;
  background-color: #f4511e;
  z-index: 9999;
  border: 0;
  font-size: 12px !important;
  line-height: 1.42857143 !important;
  letter-spacing: 4px;
  border-radius: 0;
  font-family: Montserrat, sans-serif;
}

.navbar li a,
.navbar .navbar-brand {
  color: #fff !important;
}

.navbar-nav li a:hover,
.navbar-nav li.active a {
  color: #f4511e !important;
  background-color: #fff !important;
}

.navbar-default .navbar-toggle {
  border-color: transparent;
  color: #fff !important;
} */

/* ==== navigation bar code START ===== */

header {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 0.5rem 1.25rem;
  background: #111;
  position: fixed;
  /* border-bottom: 1px solid #aaa; */
}

header .logo {
  color: #fff;
  font-weight: bold;
  font-size: 2.5em;
  text-decoration: none;
}

header ul {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  gap: 60px;
  list-style: none;
}

header .navigation li a {
  text-decoration: none;
  color: #fff;
}

header .navigation li a:hover {
  border-bottom: 1px solid #fff;
}

header .hamburger {
  display: none;
  color: #fff;
  cursor: pointer;
}

.alert {
  position: fixed;
  top: 5%;
  right: 2%;
  background: #111;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  padding: 20px;
  width: 300px;
  height: 100vh;
  border-radius: 10px;
  transform: translateX(150%);
  transition: transform 0.3s ease-in-out;
}

.alert .navigation1 {
  display: flex;
  flex-direction: column;
  list-style: none;
  text-align: center;
}

.alert .navigation1 li a {
  text-decoration: none;
  color: #fff;
}

.alert .navigation li a {
  text-decoration: none;
  color: #fff;
}

.alert p {
  margin: 30px;
  letter-spacing: 1px;
}

.alert i {
  display: flex;
  justify-content: flex-end;
  font-size: 30px;
  cursor: pointer;
  color: #fff;
}

/* ==== navigation bar code end ===== */

footer .glyphicon {
  font-size: 20px;
  margin-bottom: 20px;
  color: #f4511e;
}

.slideanim {
  visibility: hidden;
}

.slide {
  animation-name: slide;
  -webkit-animation-name: slide;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  visibility: visible;
}

@keyframes slide {
  0% {
    opacity: 0;
    transform: translateY(70%);
  }

  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

@-webkit-keyframes slide {
  0% {
    opacity: 0;
    -webkit-transform: translateY(70%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
  }
}

@media screen and (max-width: 768px) {
  .col-sm-4 {
    text-align: center;
    margin: 25px 0;
  }

  .btn-lg {
    width: 100%;
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 480px) {
  .logo {
    font-size: 150px;
  }
}

@media(max-width:991px) {
  header .navigation {
      display: none;
  }


  header .hamburger {
      display: block;
  }
}

/* =============================================================================== 
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400;700&display=swap");

.slider-page {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Jost", sans-serif;
}
.slider-container{
  width: 100%;
  height: 100vh;
  background-image: url('assets/images/bg-img.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-images{
  display: flex;
  align-items: center;
  gap: 1.3125rem;
}
.slider-images img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.slider-img{
  width: 6.25rem;
  border-radius: 0.375rem;
  cursor: pointer;
  position: relative;
  transition: 0.7s ease;
}
.slider-images .slider-img:first-child, .slider-images .slider-img:last-child{
  height: 30rem;
}
.slider-images .slider-img:nth-child(2), .slider-images .slider-img:nth-child(6){
  height: 35rem;
}
.slider-images .slider-img:nth-child(3), .slider-images .slider-img:nth-child(4), .slider-images .slider-img:nth-child(5){
  height: 41.56rem;
}
.slider-page h1{
  font-family: "Jost", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  color: #fff;
  position: absolute;
  top: 50%;
  left: -10%;
  transform: rotate(270deg);
  transition: 0.7s ease;
}
.details{
  position: absolute;
  bottom: 2.68rem;
  left: 2.68rem;
}
.details h2{
  font-family: "Jost", sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  text-align: left;
  line-height: 2.75rem;
  text-align: left;
  color: #fff;
  text-transform: uppercase;
  transition: 0.7s ease;
  display: none;
}
.details p{
  font-family: "Jost", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: left;
  line-height: 2.06rem;
  text-align: left;
  color: #fff;
  text-transform: uppercase;
  transition: 0.7s ease;
  display: none;
}
.slider-img.active{
  width: 47.87rem !important;
  height: 46.875rem !important;
}
.slider-img.active h1{
   display: none;
}
.slider-img.active .details p, .slider-img.active .details h2{
  display: block;
}
 =============================================================================== */


/* Ensure the logo container can scale responsively */
.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  /* Optional: add some padding around the logo */
}

/* Make the image round and responsive */
.round-logo {
  width: 100%;
  max-width: 100px;
  /* Adjust the max-width as needed */
  height: auto;
  /* Maintain aspect ratio */
  border-radius: 50%;
  /* Make the image round */
  display: block;
}

@font-face {
  font-family: 'Lavineta-pye';
  src: url('fonts/brandfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

.brandname {
  font-family: 'Lavineta-pye', cursive;
  /* Apply Lavineta font */
  font-size: 5.5em;
  margin-bottom: 10px;
}

.brandfont {
  font-family: 'Lavineta-pye', cursive;
}


.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.content {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

/* START Fonts */

.kaushan-script-regular {
  font-family: "Kaushan Script", cursive;
  font-weight: 400;
  font-style: normal;
}

.color-pye-yellow {
  color: #ffd230;
}

.bitter-600 {
  font-family: "Bitter", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.bitter-900 {
  font-family: "Bitter", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

.habibi-regular {
  font-family: "Habibi", serif;
  font-weight: 400;
  font-style: normal;
}

.nunito-500 {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.yeseva-one-regular {
  font-family: "Yeseva One", serif;
  font-weight: 400;
  font-style: normal;
}

/* END Fonts */


.table-cell {
  padding: 10px;
  /* border: 1px solid #ccc; */
}

.nested-grid {
  display: grid;
  grid-template-rows: 1fr 2fr;
  /* Two rows inside the second column's cell */
  gap: 1px;
}

.nested-cell-top {
  /* padding: 2px; */
  /* border: 1px solid #ccc; */
  height: 2rem;
}

.nested-cell-bottom {
  /* padding: 2px; */
  /* border: 1px solid #ccc; */
  height: 7rem;
}

.page-heading-font {
  font-size: 4em;
  color: white;
  padding-top: 2.2em;
}