@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");
:root {
  --font-family-titillium: "Titillium Web", sans-serif;
  --font-family-raleway: "Raleway", sans-serif;
   --font-family-josefin: "Josefin Sans", sans-serif;;
  --color-white: #ffffff;
  --color-black: #000000;
  --bg-gray-color: #A3A3A357;
  --e-global-color-d0bdcd6: #A3A3A357;
  --bs-link-underline-opacity: 0;
}

body {
  font-family: var(--font-family-titillium);
  background-color: #000000;
}

.raleway-font-family {
  font-family: var(--font-family-raleway) !important;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 200;
}
.raleway-font-custom {
  font-family: var(--font-family-raleway) !important;
  font-optical-sizing: auto;
  font-style: normal;
}
.josefin-font-custom {
  font-family: var(--font-family-josefin) !important;
  font-optical-sizing: auto;
  font-style: normal;
}
.link-white {
color:#fff;
text-decoration:none;
}
.link-white:hover {
color:#C4C4C4;
}
.color-1{color:#C4C4C4;}

.line-ht-1{line-height:25px;}

.row-flex {
  display: flex;
  flex-wrap: wrap;
}

.fixed-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
    background: #000000;
}
a.nav-link:after {
    position: relative;
    bottom: -22px;
    left: 50%;
    opacity: 0;
    margin-left: -5px;
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent; /* Half of the desired width */
    border-right: 4px solid transparent; /* Half of the desired width */
    border-bottom: 8px solid #fff; /* Desired height and color */
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
}
a.nav-link:hover::after {opacity:1;}
@media only screen and (max-width: 768px) {
	a.nav-link:hover::after {opacity:0;}
}


.image-container {
    height: 350px; 
    overflow: hidden; 
}

.image-container img {
    height: 100%; 
    width: 100%; 
    object-fit: cover; 
	transition: filter 0.3s ease;
}
.image-container:hover img {
    filter: brightness(0.5); /* Darken the image on hover */
}
.zoom-in {
    animation: zoomIn 0.5s forwards; /* Apply zoom-in animation */
}

@keyframes zoomIn {
    0% {
        transform: scale(0); /* Start at original size */
    }
    100% {
        transform: scale(1); /* End at 10% larger */
    }
}

.gray {
  background-color: var(--bg-gray-color) !important;
}

.btn-all {
  color: var(--color-white) !important;
  background-color: #1A1A1A !important;
  border: 0px !important;
  border-radius: 0px !important;
  font-weight: bold !important;
  text-transform: uppercase;
  font-size: 13px;
  padding: 8px;
}
.hover-underline {
  position: relative;
  display: inline-block;
}
.hover-underline::after,
.hover-underline::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #EDD38F, #CDA868);
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-out;
}

.hover-underline::before {
  top: -5px;
  transform-origin: left;
}

.hover-underline:hover::after,
.hover-underline:hover::before {
  transform: scaleX(1);
}

label.error {
    color: red;
    background: #ffffffab;
    padding: 5px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
}

.reveal, .revel-slide, .revel-tab {
  visibility: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  /*max-width: 500px;*/
  overflow: hidden;
}

/* HTML: <div class="loader"></div> */
.preloader {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    position: absolute;
}
.loader {
  width:100px;
  aspect-ratio: 1;
  display: grid;
}
.loader:before,
.loader:after {
  content: "";
  grid-area: 1/1;
  --c:#0000 calc(100%/3),#fff 0 calc(2*100%/3),#0000 0;
  --c1:linear-gradient(90deg,var(--c));
  --c2:linear-gradient( 0deg,var(--c));
  background: var(--c1),var(--c2),var(--c1),var(--c2);
  background-size: 300% 4px,4px 300%;
  background-repeat: no-repeat;
  animation: l11 1s infinite linear;
}
.loader:after {
  margin: 10px;
  transform: scaleX(-1);
  animation-delay: -.25s;
}
@keyframes l11 {
  0%   {background-position: 50%  0,100% 100%,0    100%,0 0}
  25%  {background-position: 0    0,100% 50% ,0    100%,0 0}
  50%  {background-position: 0    0,100% 0   ,50%  100%,0 0}
  75%  {background-position: 0    0,100% 0   ,100% 100%,0 50%}
 75.01%{background-position: 100% 0,100% 0   ,100% 100%,0 50%}
  100% {background-position: 50%  0,100% 0   ,100% 100%,0 100%}
}

.btn-white {
  color: #000000 !important;
  background-color: var(--color-white) !important;
  border: 0px !important;
  border-radius: 0px !important;
  font-weight: bold !important;
  text-transform: uppercase;
  font-size: 13px;
  padding: 8px;
}

.w-33 {
  width: 33% !important;
}

.logo {
  display: flex;
  text-decoration: var(--bs-link-underline-opacity) !important;
  justify-content: center;
}
.logo img {
  width: 20%;
}
@media (min-width: 992px) and (max-width: 1199px) {
 .logo img {
  width: 30%;
}
}
.new-bg {background: #ada8a8;}
.logo p {
  font-size: 2rem;
  color: var(--color-white);
}
@media only screen and (max-width: 990px) {
.logo p { padding-left:10px; margin-bottom:0 ;}
}
@media only screen and (max-width: 768px) {
.logo p { font-size: 1.5rem ; padding-left:10px; margin-bottom:0 ;}
}
@media only screen and (max-width: 375px) {
.logo p { font-size: 1.25rem ; padding-left:10px; margin-bottom:0;}
}
.homeSlider .carousel-caption {
  top: 25%;
}
.homeSlider .carousel-caption h5 {
  font-size: 7rem;
  font-weight: 100;
}
.homeSlider .carousel-caption p {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 16px;
  text-shadow: rgba(0, 0, 0, 0.25);
  letter-spacing: 6.4px;
}
.homeSlider .swiper-button-prev {
  width: 5%;
  height: 12%;
  background-color: #000000;
  top: 45%;
  color:#fff;
}
.homeSlider .swiper-button-next {
  width: 5%;
  height: 12%;
  background-color: #000000;
  top: 45%;
  color:#fff;
}

footer {
  padding: 25px 0 0 0;
}
footer .card img {
  width: 70%;
}
footer .card .card-body .card-text {
  font-family: var(--font-family-raleway) !important;
  color: #A3A3A3;
  font-size: 16px;
  word-spacing: 4%;
}
footer .contact .list-group li:nth-child(1) {
  font-size: 20px;
}
footer .contact .list-group .list-group-item {
  border: 0px;
  float: right;
}
footer .contact .list-group .list-group-item img {
  width: 28px;
  color: #ffffff;
  padding-right: 10px;
}
footer .copyright {
  padding: 20px 0;
  border-top: 1px solid #313131 !important;
  background: #1A1A1A;
}
footer .copyright p {
  color: #ffffff;
  width: 100%;
  margin: 0px;
  text-align: center;
}

.nav-tabs .nav-item .nav-link {
  padding: 18px 20px;
  color: #A3A3A3 !important;
  font-weight: bold;
}
.nav-tabs .nav-item .active {
  color: var(--color-white) !important;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0) !important;
  border-bottom: 1px solid #000;
}

.portfolio {
  background-image: url(./../../image/bg1-home2.jpg) !important;
}
.portfolio h1::after {
  content: "";
  position: absolute;
  bottom: 1px;
  width: 66px;
  height: 2px;
  border-bottom: 2px dotted #1a1a1a;
}

.form {
  background-image: url(./../../image/bg2-home2.jpg) !important;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.contactHead .list-group li:nth-child(1) {
  font-size: 16px;
}
.contactHead .list-group .list-group-item {
  border: 0px;
}
.contactHead .list-group .list-group-item img {
  width: 28px;
  color: #ffffff;
  padding-right: 10px;
}

.aboutus .card .card-body .card-title {
  display: inline-block;
  position: relative;
}
.aboutus .card .card-body .card-title::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  transition: transform 0.25s ease-out;
}
.aboutus .card .card-body .card-title:hover::after {
  transform: scaleX(1);
}
.aboutus .card .card-body .card-title.left::after {
  transform-origin: bottom right;
}
.aboutus .card .card-body .card-title.left:hover::after {
  transform-origin: bottom left;
}

@media (min-width: 990px) {
  .displayNoneLogo {
    display: none !important;
  }
}
@media (max-width: 990px) {
  .displayNone {
    display: none !important;
  }
  footer .card img {
    width: 25%;
  }
}
html {
  scroll-behavior: smooth;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #9f9e9e;
  border-radius: 0rem;
  padding: 0.5rem;
  text-decoration: none;
  transition: 0.2s ease-out;
}
.back-to-top span {
  color: #fff;
  font-size: 1.5rem;
  transition: 0.2s ease-out;
}
.back-to-top span:hover span {
  transform: translateY(-4px);
}