:root {
    --accent-color: #e0b674;
    --primary-color: #003050;
    --primary-color-50: #e5f5ff;
    --light: #faf8f5;
    --WhatsAppGreen: #25D366;
    --Playfair: 'Playfair Display', serif;
}
html {
    scroll-behavior: smooth;
    font-size: 87.5%;
}
body {
    font: 400 1rem "Roboto", sans-serif;
    overflow-x: hidden;
}
svg:not([fill]) {
    fill: currentColor;
    stroke: currentColor;
}
hr {
    border-top-color: var(--primary-color);
}
p {
    line-height: 1.5;
}
.pt-6 {
    padding-top: 6rem;
}
.pb-6 {
    padding-bottom: 6rem;
}
.mt-6 {
    margin-top: 6rem;
}
.mb-6 {
    margin-bottom: 6rem;
}
/* modal */
.modal-header {
    background: none;
    border: none;
}

.modal-content{
    background-color: var(--light);
}

.form-control {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgb(0 0 0 / 16%);
    outline: none;
    padding-left: 0;
    padding-top: 0;
    line-height: 2.3;
    background: transparent;
}


.modal-content button.close {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0;
    margin: 0;
    width: 30px;
    height: 30px;
    z-index: 1;
    text-shadow: none;
    color: #fff;
    border-radius: 6px;
    outline: none;
    border: none;
    background-color: var(--primary-color);
    opacity: 1;
}

.modal-body h4{
    font-weight: 600;
    font-family: var(--Playfair);
    color: var(--primary-color);
}
/* modal */


ul {
    padding-left: 0;
    margin-bottom: 0;
}
a,
a:hover {
    text-decoration: none;
}
a {
    color: inherit;
    line-height: inherit;
    outline: 0;
    transition: color .25s;
}
a:hover {
    color: var(--accent-color);
}
p a {
    font-style: italic;
    font-weight: 300;
    text-decoration: underline;
}
.has-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgb(0 0 0 / 50%);
    pointer-events: none;
}
.bg-primary a {
    color: #fff;
}
.bg-primary a:hover {
    color: var(--light-color);
}
img,
video,
iframe {
    width: 100%;
    display: block;
}
.object-cover {
    object-fit: cover;
}
.container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
}
.rounded {
    border-radius: 5px !important;
}
.filter-white {
    -ms-filter: brightness(70);
    filter: brightness(70);
}
.filter-dark {
    -ms-filter: grayscale(1) brightness(0);
    filter: grayscale(1) brightness(0);
}
header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
    transition: all 300ms ease-in-out;
}
header.fixed {
    background-color: var(--primary-color);
    box-shadow: 0 8px 20px rgb(0 0 0 / 30%);
}
header .d-flex {
    justify-content: space-between;
    align-items: center;
}
.brand_logo {
    min-height: 1px;
    transition: all 300ms ease-in-out;
    z-index: 2;
}
.brand_logo a {
    display: block;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 200;
    overflow: hidden;
    padding: 5px 0;
    width: 237px;
    transition: all 300ms ease-in-out;
    display: flex;
    color: #fff;
    align-items: center;
}
.brand_logo img
{
    width: 75px;
    filter: brightness(100);
}
.brand_logo a h4 {
    margin: 0;
}
header.fixed .brand_logo img  {
    filter: brightness(100);
}
header nav {
    column-gap: 20px;
}
.topLinks,
.menu {
    display: flex;
    align-items: center;
    position: relative;
}
.topLinks {
    column-gap: .5rem;
    height: 100%;
}
.topLinks li.topIcons:has(.fa-whatsapp) {
    position: relative;
    z-index: 1;
}
.topLinks li.topIcons:has(.fa-whatsapp) i {
    /* box-shadow: 0 0 0 100px var(--WhatsAppGreen) inset; */
    color:ar(--WhatsAppGreen);
    /* animation: blink 2s cubic-bezier(.55, .76, .27, 1.29) infinite; */
}
/* @keyframes blink {
    50% {
        box-shadow: 0 0 0 1px rgba(61, 127, 251, .45), 0 0 0 0 rgb(11 107 235 / 63%), 1rem 1rem 2rem rgb(0 0 0 / 25%);
        color: var(--primary-color)
    }
} */
header .menu {
    gap: 1rem;
}
header .menu a {
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
}
header .menu a:hover {
    color: var(--accent-color);
    text-decoration: underline;
    text-underline-offset: 5px;
}
header .menuBtn {
    width: 40px;
    height: 40px;
    padding: .5rem;
    border-radius: 50%;
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    transition: all 300ms ease-in-out;
    position: relative;
    cursor: pointer;
    color: var(--light);
    background-color: transparent;
    box-shadow: 0 0 0 0 var(--primary-color) inset;
    border: 0;
    overflow: hidden;
}
.menuBtn .menuDots {
    width: 100%;
    display: flex;
    justify-content: space-around;
    position: relative;
    transition: all .3s linear;
}
.menuBtn .menuDots::before,
.menuBtn .menuDots::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    transform-origin: center center;
    transition: all .6s cubic-bezier(.785, .135, .15, .86);
}
.menuBtn:hover .menuDots::before,
.menuBtn:hover .menuDots::after {
    background-color: var(--accent-color);
}
.menuBtn.closeMenuBtn {
    gap: 2px;
    box-shadow: 0 0 0 50px var(--accent-color) inset;
}
.menuBtn.closeMenuBtn .menuDots::before,
.menuBtn.closeMenuBtn .menuDots::after {
    height: 20px;
    width: 2px;
    border-radius: 0;
    background-color: var(--primary-color);
}
.menuBtn.closeMenuBtn .menuDots::before {
    transform: translate(6px, 1px) rotate(45deg);
}
.menuBtn.closeMenuBtn .menuDots::after {
    transform: translate(-6px, 1px) rotate(-45deg);
}
.menuBtn.closeMenuBtn .menuDots#menuDot2 {
    display: none;
}
.mobile_menu {
    position: fixed;
    inset: 0;
    z-index: 996;
    background-color: rgba(0, 75, 49, .13);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    display: none;
}
.mobile_menu .mobile_menu_wrapper {
    position: relative;
    isolation: isolate;
    margin: 0 0 0 auto;
    padding: 120px 2rem 30px;
    width: 100%;
    max-width: 420px;
    overflow-y: auto;
    background-color: var(--primary-color);
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 16%);
    transition: all 300ms ease-in-out;
}
.mobile_menu .mobile_menu_wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../images/logo-stroke-icon.svg) center bottom / 100% no-repeat;
    opacity: .125;
    z-index: -1;
}
header.fixed+.mobile_menu .mobile_menu_wrapper {
    padding-top: calc(1.5rem + 51px);
}
.mobile_menu .mobile_navigation a {
    color: #fff;
    transition: all 300ms ease-in-out;
}
.mobile_menu_wrapper .mobile_navigation li:not(:last-child) a {
    border-bottom: 1px solid rgb(255 255 255 / 15%);
}
.mobile_menu_wrapper .mobile_navigation a {
    padding: 1.3rem 0;
    letter-spacing: 1px;
    font-weight: 300;
    font-size: 1rem;
    display: block;
    position: relative;
}
.mobile_menu_wrapper .mobile_navigation li:hover>a {
    padding: 10px;
    background-color: #fff;
    color: var(--primary-color);
}
.cta {
    width: 100%;
    margin-top: 2rem;
}
.cta.d-flex {
    gap: 10px 1rem;
}
.cta .button {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    text-transform: uppercase;
    font-size: .875rem;
    border-radius: 100px;
    padding: .875rem 1.25rem;
    text-align: center;
    color: #fff;
    background-color: var(--primary-color);
    transition: all ease-in-out .3s;
    overflow: hidden;
}
.cta .button:has(i) {
    padding: 0 1.25rem 0 0;
}
.cta .button i {
    width: 2.75rem;
    height: 2.75rem;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 1px solid white;
    box-shadow: 0 0 0 50px var(--primary-color) inset;
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease-in;
}
.cta .button:hover i {
    color: var(--primary-color);
    box-shadow: 0 0 0 1px var(--primary-color) inset;
}


.cta button {
    border: 0;
}
.cta .button::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: var(--accent-color);
    transform: translate(-100%,-100%);
    transition: all ease-in-out .5s;
    z-index: -1;
}
.cta .button.active::after,.cta .button:hover::after {
    transform: translate(-20%,-30%);
}
.cta .button.reverse,.bg-primary .cta .button {
    color: var(--primary-color);
    background-color: var(--light);
}
.cta .button:hover {
    color: var(--primary-color);
}
.cta .button.mw-auto {
    min-width: 1px;
    padding: 1rem;
}
.cta .button.text-white {
    border-color: #fff;
    color: #fff;
}
.cta .button.text-white:hover {
    color: var(--body-color)!important;
    background-color: #fff;
    border-color: transparent;
}
.cta .button.accent {
    color: var(--primary-color);
    background-color: var(--accent-color);
}
.cta .button.accent::after {
    background-color: var(--light)!important;
}
.bounce {
    animation: bounce 2s ease infinite;
}
/* @keyframes bounce {
    70% {
        transform: translateY(0%)
    }
    80% {
        transform: translateY(-15%)
    }
    90% {
        transform: translateY(0%)
    }
    95% {
        transform: translateY(-7%)
    }
    97% {
        transform: translateY(0%)
    }
    99% {
        transform: translateY(-3%)
    }
    100% {
        transform: translateY(0)
    }
} */
#hero
{
    height: 100vh;
}

#hero .carousel-item::before{
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), transparent, rgba(0, 0, 0, 0.75));
    pointer-events: none;
}
#hero img
{
    height:100%;
    object-fit: cover;
}
.carousel-caption
 {
   /* left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); */
    bottom: 0;
    color: #fff;
    min-width: 700px;
        display: flex;
    justify-content: center;
}
.carousel-caption h5
{
    font-family: var(--Playfair);
    color: #fff;
    font-size: 3rem;
}
.carousel-caption p
{
    font-size: 1.3rem;
}
.padding
{
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.heading {
    margin-bottom:2rem;
}
.heading h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(--Playfair);
}

.text-accent{
    color: var(--accent-color) !important;
}

.text-primary{
    color: var(--primary-color) !important;
}
/* ------------------------------------------------ 
overview
------------------------------------------------ */
.overview {
    position: relative;
    z-index: 1;
}
.overview::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../images/bg.png) no-repeat center;
    background-size: 100% 100%;
    opacity: 0.1;
    z-index: -1;
}
.overview .overImg img {
    width: 100%;
}
/* overContent */
.overview .overContent article{
    padding-left: 2rem;
    border-left: 1px solid var(--accent-color);
}
.overContent .list {
    margin-top: 1rem;
}
.overContent .list li {
    list-style: circle;
    margin-left: 0px;
}
/* overSpecification */
.overSpecification {
    margin-top: 1rem;
    padding: 2rem;
}
.overSpecification .box {
    padding: 2rem;
    text-align: center;
    background-color: var(--white);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.overSpecification .box:not(:last-child) {
    border-right: 1px solid var(--primary-color);
}
.overSpecification .box span {
    font-weight: 400;
    font-size: 1rem;
    font-family: var(--Playfair);
    text-transform: uppercase;
}
.overSpecification .box p {
    margin-top: 0.4rem;
    font-size: 0.8rem;
}


/* specs */
.location--box .inner {
    padding: 6rem;
}

.location-img .img-fluid{
    height: 370px;
    position: relative;
}

.location-img .img-fluid::before{
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(transparent, #00000095);
}

.location--box .inner .fs-5{
    padding-left: 10px;
    border-left: 2px solid;
}

.specsContainer
{
    display: flex;
}
.specsBox{
	width:33.33%;
}
.specsBox a{
	display:block;
	position:relative;
	padding:0 30px;
	height:70vh;
	background:center no-repeat #005CB1;
	background-size:cover;
	color:#fff;
}
.specsBox a::before{
	content:'';
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	background:linear-gradient(transparent,rgba(0,0,0,0.75));
	transition:all 400ms ease-in-out;
}
.specsBox a:hover::before{
	background:rgba(0,0,0,0.7);
}
.specsBox a#featuresBg{
	background-image:url(../images/banquet.webp);
}
.specsBox a#layoutBg{
	background-image:url(../images/office.webp);
}
.specsBox a#fpBg{
	background-image:url(../images/strategic.webp);
}
.specsBox a section{
	position:absolute;
	padding-top:60px;
	left:30px;
	/* bottom:20%; */
	display: flex;
	flex-direction: column;
	justify-content: end;
	flex-wrap: wrap;
	height: 100%;
    right: 30px;
}
.specsBox a section span{
	position:absolute;
	font-size:4.5rem;
	opacity:0.2;
	top:0;
}
.specsBox a section h3{
	font:400 1.75rem var(--Playfair);
	display:block;
	padding:20px 0;
    padding-bottom: 0;
}
.specsBox a section .triangle{
	width:30px;
	display:block;
}
.specsBox a section .triangle svg{
	transform:rotate(90deg);
	margin-left:-10px;
}
.specsBox a section .triangle polygon{
	fill:none;
	stroke:#fff;
	stroke-width:10;
	stroke-linejoin:miter;
	stroke-miterlimit:1;
	stroke-dasharray:1200;
	stroke-dashoffset:0;
	opacity:0;
}
.specsBox a section .triangle polygon.animeTriangle{
	opacity:1;
	-webkit-animation:triangle 2s linear forwards;
	animation:triangle 4s linear forwards;
}
@keyframes triangle{
	0%{stroke-dashoffset:1200;}
	55%{stroke-dashoffset:0;}
	100%{fill:#fff;}
}
/* Contact */
.gap-row {
    row-gap: 30px;
}
.contactBox .inner {
  background: linear-gradient(to bottom right,#f8fcff, #dbefff);
  height: 100%;
  padding: 2.5rem;
  border-radius: 5px;
}
@media only screen and (min-width: 1920px) {
  .contactBox .inner {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media only screen and (max-width: 360px) {
  .contactBox .inner {
    padding: 20px 10px;
  }
}
.contactBox h4 {
  margin-bottom: 1rem;
  font-weight: 700;
}
.contactBox ul li{
  font-size: 14px;
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.contactBox ul li:last-child{margin-bottom: 0;}
.contactBox ul li i{
    color: #000000;
    margin: 0;
    padding: 0;
    line-height: 1;
    display: flex;
    align-items: center;
}
.contactBox ul li a{
  color: var(--body-color);
}
.contactBox ul li a:hover{
  text-decoration: underline;
}
.form-group {
  margin-bottom: 20px;
}
.form-group>div {
  margin-top: 15px;
}
.form-group label {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 500;
}
.form-control {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgb(0 0 0 / 16%);
  outline: none;
  padding-left: 0;
  padding-top: 0;
}
.form-control[readonly] {
  background: none;
}
.form-control.form-control-dark{
  border-bottom-color: rgb(255 255 255 / 15%);
  color: #fff;
}
select.form-control.form-control-dark{
  background-color: var(--primary-color);
}
.form-control.form-control-dark::placeholder{
  color: #8f8f8f;
}
.form-control:focus {
  box-shadow: none;
  border-bottom-color: var(--primary-color);
  background: none;
}
/* Contact us */
.readmore {
  width: 100%;
  margin-top: 2rem;
}
.readmore .button {
  position: relative;
  z-index: 1;
  display: table;
  padding: 13px 20px 10px;
  min-width: 130px;
  border-radius: 40px;
  color: var(--primary-color);
  background-color: transparent;
  border: 1px solid var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  transition: all ease-in-out 0.3s;
}
.readmore button {
  width: 100%;
  background: none;
}
.readmore .button:hover {
  color: #fff;
  background: var(--primary-color);
  border-color: transparent;
}
.readmore .button.text-white{
  color: var(--light) !important;
  border-color: var(--light);
}
.readmore .button.text-white:hover {
  color: var(--primary-color) !important;
  background: var(--light);
  border-color: transparent;
}
.readmore .button.solid.white:hover,
.readmore .button.solid {
  background-color: var(--primary-color);
  color: var(--light);
  border: none;
}
.readmore .button.solid.white,
.readmore .button.solid:hover {
  background-color: var(--light-gray);
  color: var(--primary-color);
  border: none;
}
.bg-light{
    background-color: var(--light) !important;
}
.bg-primary-half::before {
    background-color: var(--primary-color);
}
.bg-primary-half
{
    z-index: 1;
}
.bg-primary-half::before, .bg-primary-half::after {
   content: "";
    position: absolute;
    inset: 50% 0 0;
    z-index: -1;
}
.contact-card:not(:last-child){
    border-right: 1px solid rgb(255 255 255 / 15%);
}

.contact-card .inner {
    padding: 0 1.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.875rem;
}
.contact-card .inner > i {
    max-width: 50px;
    flex: 0 0 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid;
}
.contact-card .card-title {
    margin-bottom: 10px;
    font-size: 1.125rem;
}
.contact-card ul li:not(:last-child) {
    margin-bottom: 7px;
}
.contact-form .inner {
    padding: 2rem;
    background-color: var(--body-bg);
}
.anotherForm .flip-x {
    transform: rotateY(180deg);
}

.anotherForm .form-group>div {
    margin-top: 15px;
}

.anotherForm .form-group label {
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 500;
}

.anotherForm .form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.anotherForm .form-group p{
    display: flex;
	margin-bottom:0px;
}

.anotherForm .form-group p i{
    max-width: 60px;
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    background-color: #fff;
}

.anotherForm .form-group>i {
    max-width: 60px;
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    background-color: #fff;
}

.anotherForm .form-control {
    border-radius: 0;
    padding: 10px;
    border: 0;
    border-bottom: 1px solid transparent;
}

.anotherForm .form-control:focus {
    box-shadow: none;
    background-color: color-mix(in srgb, var(--accent-color), var(--light) 75%);
    border-bottom-color: var(--accent-color);
}

.anotherForm .form-control.lg {
    padding: 1.25rem 2.5rem;
}

.anotherForm button:disabled {
    opacity: .7;
    cursor: not-allowed;
}

.anotherForm .modal-backdrop.show {
    opacity: 1;
    background: rgba(0,2,12,.894);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.anotherForm button.close {
    position: absolute;
    right: -20px;
    top: -20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #fff;
    border: 0;
    color: #000;
    opacity: 1;
    text-shadow: none;
}

.anotherForm .close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover {
    opacity: 1;
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.anotherForm .modal-content {
    background-color: var(--secondary-color);
    border-radius: 0;
    border: none;
}

.anotherForm .modal-content::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .35;
    pointer-events: none;
}

.anotherForm .modal-content .modal-header {
    padding: 0;
    border: none;
}

.anotherForm .modal-content button.close {
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 0;
    margin: 0;
    width: 40px;
    height: 40px;
    z-index: 1;
    text-shadow: none;
    background-color: var(--primary-color);
    opacity: 1;
    z-index: 2;
}

.anotherForm .modal-header .close {
    color: #fff;
}

.anotherForm .modal-header {
    background: none;
    border: none;
}

.anotherForm .modal-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.anotherForm .modal-logo img {
    max-width: 180px;
    margin: 0 auto;
}

.anotherForm .modal-icons {
    display: flex;
    padding: 2rem;
    text-transform: uppercase;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.anotherForm .modal-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.anotherForm .modal-icon .img-fluid {
    max-width: 35px;
    flex: 0 0 35px;
    color: var(--secondary-color);
}

.anotherForm .modal-icon span {
    display: block;
    font-size: 12px;
    font-weight: 500;
}
.bg-sec
 {
    background: #faf8f5;
}
.footer
{
    text-align: center;
    padding: 1rem;
    background-color: var(--primary-color);
    border-top: 1px solid rgb(255 255 255 / 15%);
    color: #fff;
}