/*------------------------------------------------------------------
Project:  Pato
Version:  
Last change:  
Assigned to:  Kevin Nguyen
Primary use:  Company
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[LAYOUT]

* body
  + Header / header
  + Page Content / .page-content .name-page
        + Section Layouts / section .name-section
        ...
  + Footer / footer

-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[COLOR CODES]

# Text Color      :  
# Primary Color 01:  
# Primary Color 02:   
# Primary Color 03:  

------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TYPOGRAPHY]

Body            : 16px/1.6 '', Arial, sans-serif;
Title           : 18px/1.6 '', Arial, sans-serif;
Paragrap        : 18px/1.6 '', Arial, sans-serif;
Input, textarea : 14px/1.6 '', Arial, sans-serif;
-------------------------------------------------------------------*/



/*[ FONT ]
///////////////////////////////////////////////////////////
*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');

@import url('https://fonts.googleapis.com/css?family=Courgette');

@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,700');

@import url('https://fonts.googleapis.com/css?family=Noto+Sans');

@font-face {
  font-family: Montserrat-Regular;
  src: url('../fonts/montserrat/Montserrat-Regular.ttf');
}

@font-face {
  font-family: Montserrat-Bold;
  src: url('../fonts/montserrat/Montserrat-Bold.ttf');
}

@font-face {
  font-family: Courgette-Regular;
  src: url('../fonts/courgette/Courgette-Regular.ttf');
}

@font-face {
  font-family: Poppins-Regular;
  src: url('../fonts/poppins/Poppins-Regular.ttf');
}

@font-face {
  font-family: Poppins-Medium;
  src: url('../fonts/poppins/Poppins-Medium.ttf');
}

@font-face {
  font-family: Poppins-Bold;
  src: url('../fonts/poppins/Poppins-Bold.ttf');
}

@font-face {
  font-family: Poppins-Light;
  src: url('../fonts/poppins/Poppins-Light.ttf');
}

@font-face {
  font-family: NotoSans-Regular;
  src: url('../fonts/notosans/NotoSans-Regular.ttf');
}



/*[ RESTYLE TAG ]
///////////////////////////////////////////////////////////
*/
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

/* ------------------------------------ */
a {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: #666666;
  margin: 0px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
  outline: none !important;
}

a:hover {
  text-decoration: none;
  color: #ec1d25;
}

/* ------------------------------------ */
h2,
h3,
h4 {
  margin: 0px;
}

p {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: #666666;
  margin: 0px;
}

ul,
li {
  margin: 0px;
  list-style-type: none;
}


/* ------------------------------------ */
input {
  outline: none;
  border: none !important;
}

textarea {
  outline: none;
}

textarea:focus,
input:focus {
  border-color: transparent !important;
  box-shadow: 0 0 0px 2px #ec1d25;
  -moz-box-shadow: 0 0 0px 2px #ec1d25;
  -webkit-box-shadow: 0 0 0px 2px #ec1d25;
  -o-box-shadow: 0 0 0px 2px #ec1d25;
  -ms-box-shadow: 0 0 0px 2px #ec1d25;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder {
  color: transparent;
}

textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

textarea:focus:-moz-placeholder {
  color: transparent;
}

textarea:focus::-moz-placeholder {
  color: transparent;
}

textarea:focus:-ms-input-placeholder {
  color: transparent;
}

input::-webkit-input-placeholder {
  color: #aaaaaa;
}

input:-moz-placeholder {
  color: #aaaaaa;
}

input::-moz-placeholder {
  color: #aaaaaa;
}

input:-ms-input-placeholder {
  color: #aaaaaa;
}

textarea::-webkit-input-placeholder {
  color: #aaaaaa;
}

textarea:-moz-placeholder {
  color: #aaaaaa;
}

textarea::-moz-placeholder {
  color: #aaaaaa;
}

textarea:-ms-input-placeholder {
  color: #aaaaaa;
}

/* ------------------------------------ */
button {
  outline: none !important;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

iframe {
  border: none !important;
}


/* ------------------------------------ */
.container {
  /* max-width: 1200px; */
  max-width: 1400px;
}

/*[ LOADDING ]
///////////////////////////////////////////////////////////
*/

.animsition-loading-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.cp-spinner {
  width: 40px;
  height: 40px;
  display: inline-block;
  box-sizing: border-box;
  position: relative
}

.cp-meter {
  border-radius: 50%;
  border-top: solid 6px #ec1d25;
  border-right: solid 6px #ec1d25;
  border-bottom: solid 6px #ec1d25;
  border-left: solid 6px #ec1d25;
  width: 48px;
  height: 48px;
  display: inline-block;
  box-sizing: border-box
}

.cp-meter:before {
  border-radius: 3px;
  content: " ";
  width: 6px;
  height: 12px;
  display: inline-block;
  box-sizing: border-box;
  background-color: #ec1d25;
  position: absolute;
  top: 5px;
  left: 16px;
  transform-origin: center bottom;
  animation: cp-meter-animate-before 1s linear infinite
}

@keyframes cp-meter-animate-before {
  0% {
    transform: rotate(-45deg)
  }

  100% {
    transform: rotate(315deg)
  }
}

/*[ BACK TO TOP ]
///////////////////////////////////////////////////////////
*/
.btn-back-to-top {
  display: none;
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 40px;
  right: 40px;
  background-color: black;
  opacity: 0.5;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  border-radius: 4px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

.symbol-btn-back-to-top {
  font-size: 22px;
  color: white;
  line-height: 1em;
}

.btn-back-to-top:hover {
  opacity: 1;
  cursor: pointer;
}

@media (max-width: 576px) {
  .btn-back-to-top {
    bottom: 15px;
    right: 15px;
  }
}


/*[ Calendar ]
///////////////////////////////////////////////////////////
*/

input[type="date" i] {
  padding: 14px;
}

.daterangepicker {
  width: 339px;
  box-shadow: 0px 3px 25px rgba(0, 0, 0, 0.1);
  border: none;
  margin-top: 10px;
}



/*[ Select2 ]
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

/*[ width select ]
===========================================================*/

/*[ Select ]
===========================================================*/


/*[ in select ]
===========================================================*/


/*[ dropdown option ]
===========================================================*/



/*[ Header ]
///////////////////////////////////////////////////////////
*/

.wrap-menu-header {
  position: absolute;
  width: 100%;
  height: 120px;
  top: 0;
  left: 0;
  z-index: 100;
  border-top: 5px solid #ec1d25;
}

.wrap_header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  background-color: transparent;
  justify-content: space-between;
  align-items: center;
}

.header-fixed .wrap-menu-header {
  position: fixed;
  height: 100px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

/*[ Logo ]
-----------------------------------------------------------
*/
.logo {
  height: 50px;
}

.logo>a {
  display: block;
  height: 100%;
}

.logo>a>img {
  width: auto;
  max-height: 100%;
  vertical-align: middle;
}


/*[ Menu ]
-----------------------------------------------------------
*/
.wrap_menu {
  height: 100%;
}

.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.main_menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main_menu li {
  display: block;
  position: relative;
}

.main_menu>li {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;
}

.main_menu>li>a {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  color: white;
  padding: 15px;
}

.header-fixed .main_menu>li>a {
  color: #222222;
}

.main_menu>li:hover>a {
  color: #ec1d25;
  text-decoration: none;
}

/* ------------------------------------ */


/*[ Social ]
-----------------------------------------------------------
*/
.social a {
  font-size: 15px;
  color: white;
}

.header-fixed .social a {
  color: #222222;
}

.social a:hover {
  color: #ec1d25;
}

.btn-show-sidebar {
  width: 26px;
  height: 15px;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
}

.header-fixed .btn-show-sidebar {
  border-top: 2px solid #222222;
  border-bottom: 2px solid #222222;
}

.btn-show-sidebar:hover {
  border-top: 2px solid #ec1d25;
  border-bottom: 2px solid #ec1d25;
}

@media (max-width: 1200px) {
  .main_menu>li {
    margin-left: 4px;
    margin-right: 4px;
  }

  .social {
    padding-right: 0px;
  }

  .logo {
    height: 45px;
  }
}

@media (max-width: 992px) {
  .wrap_menu {
    display: none;
  }

  .wrap_header {
    height: 100px;
  }
}




/*[ Sidebar ]
///////////////////////////////////////////////////////////
*/
.sidebar {
  position: fixed;
  z-index: 1200;
  width: 390px;
  height: 100%;
  overflow: auto;
  background-color: white;
  top: 0;
  right: -390px;
}

@media (max-width: 576px) {
  .sidebar {
    width: 300px;
  }
}

.show-sidebar {
  right: 0px;
}

.btn-hide-sidebar {
  position: absolute;
  font-size: 20px;
  color: #111111;
  padding: 10px;
  top: 20px;
  right: 20px;
}

.overlay-sidebar {
  position: fixed;
  z-index: 1150;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  visibility: hidden;
}

.show-overlay-sidebar {
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.65);
}

/* ------------------------------------ */
.item-gallery-sidebar {
  display: block;
  position: relative;
  width: calc((100% - 30px) / 3);
  margin: 5px;
}

.item-gallery-sidebar::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.item-gallery-sidebar:hover:after {
  background-color: rgba(236, 29, 37, 0.7);
}

@media (max-width: 576px) {
  .wrap_header {
    height: 80px;
  }

  .gallery-sidebar {
    padding-left: 20px;
    padding-right: 20px;
  }
}



/*[ Slide1 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick1 ]
-----------------------------------------------------------
*/
.wrap-slick1,
.wrap-slick2,
.wrap-slick3 {
  position: relative;
}

.item-slick1,
.item-slick2,
.item-slick3 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.item-slick1 {
  height: 100vh;
}

.arrow-slick1,
.arrow-slick2,
.arrow-slick3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-size: 18px;
  color: white;
  position: absolute;
  background-color: black;
  opacity: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  z-index: 200;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.wrap-slick1:hover .arrow-slick1,
.wrap-slick2:hover .arrow-slick2,
.wrap-slick3:hover .arrow-slick3 {
  opacity: 0.5;
}

.arrow-slick1:hover,
.arrow-slick2:hover,
.arrow-slick3:hover {
  background-color: #ec1d25;
}

.next-slick1,
.next-slick2,
.next-slick3 {
  right: 50px;
  left: auto;
}

.prev-slick1,
.prev-slick2,
.prev-slick3 {
  left: 50px;
  right: auto;
}

@media (max-width: 576px) {
  .next-slick1 {
    right: 15px;
  }

  .prev-slick1 {
    left: 15px;
  }
}

/* ------------------------------------ */
.wrap-slick1-dots {
  position: absolute;
  width: 100%;
  height: 65px;
  left: 0;
  bottom: 0;
}

.slick1-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.slick1-dots li {
  padding-left: 3px;
  padding-right: 3px;
}

.slick1-dots li button {
  display: block;
  color: transparent;
  background-color: #958e88;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid transparent;
  background-clip: padding-box;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}


.slick1-dots li button:hover {
  border: 3px solid white;
  background-color: #d41b22;
}

/*[ Caption ]
-----------------------------------------------------------
*/
@media (max-width: 768px) {
  .wrap-content-slide1 .tit1 {
    font-size: 70px;
  }

  .wrap-content-slide1 .txt1 {
    font-size: 60px;
  }
}

@media (max-width: 576px) {
  .wrap-content-slide1 .tit1 {
    font-size: 60px;
  }

  .wrap-content-slide1 .txt1 {
    font-size: 50px;
  }
}


/*[ Button1 ]
///////////////////////////////////////////////////////////
*/
.btn1 {
  background: white;
  border-radius: 10px;
}

.btn1:hover {
  background-color: #ec1d25;
  color: white;
}

/*[ Button3 ]
///////////////////////////////////////////////////////////
*/
.btn3 {
  background: #111111;
  border-radius: 10px;
}

.btn3:hover {
  background-color: #ec1d25;
  color: white;
}


/*[ Button2 ]
///////////////////////////////////////////////////////////
*/
.btn2 {
  background-color: white;
  border-radius: 10px;
  opacity: 0.9;
}

.btn2:hover {
  background-color: #ec1d25;
  color: white;
}




/*[ Intro ]
///////////////////////////////////////////////////////////
*/
.header-intro {
  background-attachment: fixed;
  background-position: center 0;
  background-repeat: no-repeat;
  background-size: cover;
}



/*[ Slide2 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick2 ]
-----------------------------------------------------------
*/

.arrow-slick2 {
  top: 53%;
}


@media (max-width: 576px) {
  .next-slick2 {
    right: 15px;
  }

  .prev-slick2 {
    left: 15px;
  }
}

/* ------------------------------------ */
.wrap-slick2-dots {
  position: absolute;
  width: 100%;
  height: 128px;
  left: 0;
  bottom: 0;
}

.slick2-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.slick2-dots li {
  padding-left: 5px;
  padding-right: 5px;
}

.slick2-dots li button {
  display: block;
  color: transparent;
  background-color: #cccccc;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid transparent;
  background-clip: padding-box;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}


.slick2-dots li button:hover {
  border: 1px solid #d41b22;
  background-color: #d41b22;
}


/*[ Slide3 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick3 ]
-----------------------------------------------------------
*/


.arrow-slick3 {
  top: 40%;
}


@media (max-width: 576px) {
  .next-slick3 {
    right: 15px;
  }

  .prev-slick3 {
    left: 15px;
  }
}

/* ------------------------------------ */
.wrap-slick3-dots {
  width: 100%;
  height: 128px;
}

.slick3-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.slick3-dots li {
  padding-left: 5px;
  padding-right: 5px;
}

.slick3-dots li button {
  display: block;
  color: transparent;
  background-color: #cccccc;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid transparent;
  background-clip: padding-box;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}


.slick3-dots li button:hover {
  border: 1px solid #d41b22;
  background-color: #d41b22;
}





/*[ Block2 ]
///////////////////////////////////////////////////////////
*/
.blo2 {
  border-radius: 10px;
  overflow: hidden;
}

.wrap-pic-blo2 {
  display: block;
  width: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.wrap-text-blo2 {
  background-color: white;
  width: 50%;
  min-height: 390px;
}

/* ------------------------------------ */
.effect1 {
  background-color: #cf2227;
  opacity: 0.9;
  position: relative;
}

.effect1 .txt-effect1 {
  width: 390px;
  height: 50px;
  transform-origin: center center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotateZ(90deg);
  -moz-transform: translate(-50%, -50%) rotateZ(90deg);
  -ms-transform: translate(-50%, -50%) rotateZ(90deg);
  -o-transform: translate(-50%, -50%) rotateZ(90deg);
  transform: translate(-50%, -50%) rotateZ(90deg);
}

@media (max-width: 992px) {
  .blo2 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .wrap-pic-blo2 {
    width: 100%;
    height: 390px;
  }

  .wrap-text-blo2 {
    width: 100%;
    min-height: 390px;
  }

  .time-event {
    width: 100%;
    height: auto;
  }

  .effect1 .txt-effect1 {
    width: 100%;
    height: 50px;
    padding: 10px;
    transform-origin: center center;
    position: unset;
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
}

@media (max-width: 576px) {
  .blo2 {
    width: 100%;
  }

  .wrap-pic-blo2 {
    width: 100%;
    height: 364px;
  }

}


/*[ Video ]
///////////////////////////////////////////////////////////
*/
.section-video {
  background-attachment: fixed;
  background-position: center 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.content-video {
  background-color: rgba(0, 0, 0, 0.5);
}

/*[ Modal video 01 ]
-----------------------------------------------------------
*/
body {
  padding-right: 0px !important;
}

.modal {
  padding: 0px !important;
  z-index: 1160;
  overflow-x: hidden;
  overflow-y: auto !important;
}

/* ------------------------------------ */

#modal-video-01 {
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1250;

}

#modal-video-01 .modal-dialog {
  max-width: 100% !important;
  height: 100% !important;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
}

.wrap-video-mo-01 {
  width: 854px;
  height: auto;
  position: relative;
  margin: 15px;
}

.video-mo-01 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 2s;
  -o-transition: all 2s;
  -moz-transition: all 2s;
  transition: all 2s;
}

.video-mo-01 iframe {
  width: 100%;
  height: 100%;
}

.close-mo-video-01 {
  font-size: 50px;
  color: white;
  opacity: 0.6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1250;
  width: 60px;
  height: 60px;
  top: 0;
  right: 0;
}

.close-mo-video-01:hover {
  cursor: pointer;
  opacity: 1;
}



/*[ Blog ]
///////////////////////////////////////////////////////////
*/
.time-blog {
  position: absolute;
  left: 14px;
  bottom: 11px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 3px 15px;

  font-family: Montserrat;
  font-weight: 400;
  font-size: 12px;
  color: white;
  border-radius: 4px;

}




/*[ BG Title Page ]
///////////////////////////////////////////////////////////
*/
.bg-title-page {
  width: 100%;
  /* min-height: 545px; */
  min-height: 300px;
  padding-left: 15px;
  padding-right: 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.bg-title-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Black with 50% transparency */
  z-index: 2;
}

@media (max-width: 576px) {
  .bg-title-page .tit6 {
    font-size: 30px;
  }
}



/*[ Item mainmenu ]
///////////////////////////////////////////////////////////
*/

.line-item-mainmenu {
  flex-grow: 1;
  height: 2px;
  margin-bottom: 5px;
  margin-right: 10px;
  margin-left: 10px;
}

@media (max-width: 576px) {
  .line-item-mainmenu {
    display: none;
  }

  .price-item-mainmenu {
    padding-top: 5px;
  }

  .name-item-mainmenu {
    width: 100%;
  }
}


/*[ Block3 ]
///////////////////////////////////////////////////////////
*/

@media (max-width: 576px) {
  .text-blo3 {
    width: 100%;
  }
}



/*[ Gallery ]
///////////////////////////////////////////////////////////
*/

.label-gallery {
  border-radius: 10px;
  padding: 2px 11px;
  margin: 5px 0;
}

.label-gallery:hover {
  background-color: #111111;
  color: white;
}

.is-actived {
  background-color: #111111;
  color: white;
}



/* ============================================================= */

.menu-icon {
  width: 80px;
  /* adjust size */
  height: 80px;
  /* adjust size */
  margin-bottom: 15px;
}

.item-ourmenu h4 {
  font-size: 18px;
  font-weight: 600;
}

.section-ourmenu {
  background: #f5f2ec;
}

.p-l-15 {
  padding-left: 100px;
}

.p-r-15 {
  padding-right: 100px;
}

.bg-title-page h2 {
  position: relative;
  z-index: 3;
  /* text overlay ke upar dikhne ke liye */
  color: #fff;
  /* text white rakho for contrast */
}

.wrap-inputname,
.wrap-inputphone,
.wrap-inputemail,
.wrap-inputdate,
.wrap-inputtime,
.wrap-inputpeople {
  position: relative;
}

.header-intro h3 {
  color: #000;
}

.footer-menu ul li a {
  color: #999999;
  padding: 10px;
}

footer a {
  color: #999999;
}

.contact-icons {
  height: 40px;
  max-width: 100%;
}


/* faq page */
/* --- Banner Section --- */
.faq-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.faq-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-banner-content {
  text-align: center;
  z-index: 2;
}

.faq-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.faq-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* --- FAQ Section --- */
.faq-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
}

.faq-item {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  background: #fff;
}

.faq-item:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding: 0 20px 15px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}


/* =============== Gallery Section ======================== */
.gallery-collab {
  font-family: "Segoe UI", Arial, sans-serif;
  /* background: linear-gradient(135deg, #f5f2ec, #eaeef5); */
  color: #fff;
}

.photo-slider-section {
  background: linear-gradient(135deg, #f5f2ec, #eaeef5);
}

.section-title {
  font-family: Poppins;
  font-weight: 700;
  font-size: 50px;
  line-height: 1.2;
  color: #222222;
  text-transform: uppercase;
  word-spacing: 8px;
}

.swiper {
  width: 100%;
  padding: 40px 0 !important;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  display: block;
  object-fit: cover;
}

/* Optional: style navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #333;
}

.swiper-pagination-bullet {
  background: #333;
}


/* ================ Awards =============== */

.wrap-awards-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.item-award-footer img {
  width: 160px;
  /* adjust size as needed */
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

footer ul {
  margin-left: 0;
}

/* ========== blog ============== */

.blog-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  /* ensures bottom gap */
}

.blog-card+.blog-card {
  margin-top: 30px;
  /* ensures top gap between rows if needed */
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}


.blog-card .card-img-top {
  width: 100%;
  height: 220px;
  /* fixed height for all images */
  object-fit: cover;
  /* crops image to fill the area */
  object-position: center;
  /* centers the image */
}

.card-footer {
  font-size: 0.85rem;
  background: #fff;
  border-top: 1px solid #eee;
}

.pagination-modern ul {
  display: inline-flex;
  list-style: none;
  padding: 0;
  gap: 8px;
}

.pagination-modern ul li a {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

.pagination-modern ul li a:hover,
.pagination-modern ul li .current {
  background: #f15a24;
  color: #fff;
  border-color: #f15a24;
}

.mt-4 {
  margin-top: 4rem;
  ;
}

/* ============ single blog ================= */
.single-post-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
}

.single-post-meta {
  font-size: 0.9rem;
  color: #555;
}

.single-post-meta span {
  margin-right: 10px;
}

.single-post-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
}

.single-post-content img {
  max-width: 100%;
  height: auto;
  margin: 15px 0;
  border-radius: 8px;
}

.single-post-navigation a {
  color: #f15a24;
  font-weight: 500;
  text-decoration: none;
}

.single-post-navigation a:hover {
  text-decoration: underline;
}

.comment-reply-title {
  margin-bottom: 1rem;
}











/* ---------------------------
       SECTION: WHAT WE OFFER
       --------------------------- */
section {
  padding: 64px 0
}

.section-title {
  text-align: center;
  margin-bottom: 28px
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.card {
  background: white;
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: none;
}

.card .thumb {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  /* border-radius: 12px; */
}

.card .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}


.card h3 {
  margin: 0;
  font-size: 25px;
  padding: 10px;
}

.card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0
}

@media (max-width:900px) {
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .hero {
    min-height: 420px;
    padding: 18px 0
  }

  .hero h1 {
    font-size: 26px
  }
}

/* ---------------------------
       SOCIAL FEED
       --------------------------- */
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px
}

.social-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px
}

@media (max-width:900px) {
  .social-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

.card h3 {
  align-items: center;
}

.reveal-btn {
  margin-top: 15px;
  background: black;
  /* color: white; */
  border-radius: 30px;
  padding: 10px 20px;
  width: 150px;
}

.reveal-btn a {
  color: white !important;
}

.reveal-btn a:hover {
  color: white;
}

.reveal-btn:hover {
  background-color: #5ca844;
  /* hover color */
  color: #fff;
  transform: scale(1.1);
}

.social-icons-grid {
  text-align: center;
  margin-top: 30px;
}

.social-icons-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: 0 10px;
  background-color: #000;
  color: #fff !important;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons-grid a:hover {
  color: #fff;
  transform: scale(1.1);
}


/* // get quote section */
/* Gray background for this section */
.quote-bg {
  background-color: #f5f5f5;
  /* Light gray background */
  padding: 60px 0;
}

.quote-section {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 0 40px;
}

/* LEFT SIDE */
.quote-left h2 {
  font-size: 28px;
  font-weight: 500;
  text-align: left;
  margin-bottom: 10px;
}

.quote-left p.desc {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 30px;
}

.quote-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote-images img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
}

/* RIGHT SIDE (FORM BOX) */
.quote-form {
  padding: 40px;
  border-radius: 10px;
}

.quote-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote-form label {
  font-size: 12px;
  color: #333;
  display: block;
  margin-bottom: 3px;
}

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="date"],
.quote-form input[type="number"],
.quote-form textarea {
  width: 100%;
  border: none !important;
  border-bottom: 1px solid #000 !important;
  padding: 6px 0;
  font-size: 14px;
  background: transparent;
  outline: none;
}

.quote-form textarea {
  resize: vertical;
  min-height: 80px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row div {
  flex: 1;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.checkbox-group label {
  background: #f5f5f5;
  border: 1px solid #ccc;
  padding: 4px 10px;
  border-radius: 2px;
  font-size: 12px;
  cursor: pointer;
}

.checkbox-group input {
  margin-right: 5px;
}

.send-btn {
  width: 90px;
  padding: 8px 0;
  border: none;
  border-radius: 30px;
  background: #000;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.send-btn:hover {
  background: #333;
}

.note {
  font-size: 12px;
  color: #333;
  line-height: 1.4;
}

.note a {
  color: #000;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .quote-section {
    grid-template-columns: 1fr;
  }

  .quote-images img {
    height: 200px;
  }

  .quote-form {
    padding: 25px;
  }
}



/* ======================================= */
.videos-section {
  padding: 50px 0;
  background-color: #f9f9f9;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.video-item {
  position: relative;
  width: 100%;
  height: 400px;
  background-color: #000;
  /* border-radius: 8px; */
  overflow: hidden;
  cursor: pointer;
}

.video-item .video-thumbnail {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.video-item .video-thumbnail img {
  width: 60px;
  height: 60px;
  /* opacity: 0.8; */
}

/* Make the entire item clickable */
.video-item a.video-lightbox-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.lightbox video {
  max-width: 90%;
  max-height: 80%;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

.video-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-video {
  position: relative;
  width: 100%;
  height: 100vh;
  /* height of banner */
  overflow: hidden;
}

.banner-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.banner-content {
  position: absolute;
  bottom: 50px;
  /* distance from bottom */
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.15);
  /* light transparent black */
  padding: 20px 40px;
  border-radius: 8px;
  width: 90%;
}

.banner-content h1 {
  color: #fff;
  font-size: 48px;
  margin: 0;
}

@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 32px;
  }
}


.size30 {
  width: 160px;
  height: 160px;
}




/* ======================== Footer CSS ============================================= */

.footer-container {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.footer-right {
  text-align: right;
}

.footer-center {
  text-align: center;
}

.footer-info {
  text-align: left;
}

.footer-right .google-ratings img,
.footer-right .award img {
  display: block;
  margin-bottom: 15px;
  max-width: 150px;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer-copy {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.footer-copy p {
  color: white;
  z-index: 2;
}

.footer-info p {
  margin: 5px 0;
  color: #fff;
}

.footer-info img {
  margin-top: 10px;
  max-width: 200px;
}

.footer-section {
  background-size: cover;
  background-position: center;
  padding: 50px 20px;
  color: #fff;
  position: relative;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

footer {
  background-color: black;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-right,
  .footer-info {
    text-align: center;
  }
}

/* ========================== free tasting section =================================== */
.booking-section {
  position: relative;
  width: 100%;
  height: 95vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background-color: hsl(0deg 0% 96.08%);
}

/* ⬇️ Added left side gap for image */
.image-container {
  width: 60%;
  /* was 70% before */
  height: 95%;
  padding-left: 4%;
  /* left spacing for image */
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* border-radius: 20px; */
}

/* ⬇️ Card made wider and adjusted overlap */
.info-card {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  /* increased from 40% */
  background: #fff;
  padding: 3rem;
  /* border-radius: 20px 0 0 20px; */
  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); */

  /* Overlap adjustment */
  margin-left: -18%;
}

.card-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #222;
}

.card-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Booking Button */
.booking-btn {
  position: absolute;
  left: 50%;
  bottom: -25px;
  /* half outside */
  transform: translateX(-50%);
  background: #000;
  color: #fff !important;
  border: none;
  padding: 1.4rem 2.2rem;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.booking-btn:hover {
  /* background: #ff4c1a; */
  transform: translateX(-50%) scale(1.05);
}

.card-content span {
  color: hsl(0deg 0% 47.45%);
}


/* ==============  service detailed page css ==================================== */
/* ===== Service Banner ===== */
.service-banner {
  position: relative;
  width: 100%;
  height: 70vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.service-banner-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.service-banner-content h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
}

/* ===== Service Content ===== */
.service-content {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 1rem;
  line-height: 1.8;
  color: #333;
  font-size: 1.1rem;
}

/* ===== Back Button ===== */
.service-cta {
  text-align: center;
  margin-bottom: 4rem;
}

.service-cta .pill {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-cta .pill:hover {
  background: #ff4c2b;
}


/* Tooltip container */
.error-tooltip {
  position: relative;
  display: inline-block;
  color: red;
}

/* Tooltip text */
.error-tooltip .tooltip-text {
  visibility: hidden;
  width: 180px;
  background-color: #f44336;
  /* red background */
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 5px 10px;
  position: absolute;
  z-index: 1000;
  bottom: 125%;
  /* above the input */
  left: 50%;
  margin-left: -90px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 12px;
}

/* Tooltip arrow */
.error-tooltip .tooltip-text::after {
  content: '';
  position: absolute;
  top: 100%;
  /* bottom of tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #f44336 transparent transparent transparent;
}

/* Show tooltip on hover */
.error-tooltip.show .tooltip-text {
  visibility: visible;
  opacity: 1;
}

