@font-face {
  font-family: myFont1;
  src: url(../font/sora/Sora-Bold.ttf);
}
@font-face {
  font-family: myFont2;
  src: url(../font/sora/Sora-ExtraBold.ttf);
}
@font-face {
  font-family: myFont3;
  src: url(../font/sora/Sora-ExtraLight.ttf);
}
@font-face {
  font-family: myFont4;
  src: url(../font/sora/Sora-Light.ttf);
}
@font-face {
  font-family: myFont5;
  src: url(../font/sora/Sora-Medium.ttf);
}
@font-face {
  font-family: myFont6;
  src: url(../font/sora/Sora-Regular.ttf);
}
@font-face {
  font-family: myFont7;
  src: url(../font/sora/Sora-SemiBold.ttf);
}
@font-face {
  font-family: myFont8;
  src: url(../font/sora/Sora-Thin.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primaryColor: #950006;
  --secondaryColor: #fdbf3a;
  --secondaryTextColor: rgb(141, 141, 141);
  --mask-opacity: 0.5;
}

body {
  font-family: myFont6;
}

/* width */
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.048);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(117, 117, 117);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primaryColor);
}

.container {
  width: 80%;
  margin: 0 auto;
  border-inline: 1px solid #ddd;
}
@media (max-width: 1024px) {
  .container {
    width: 90%;
  }
}
@media (max-width: 480px) {
  .container {
    width: 95%;
  }
}

a,
article,
button,
div,
span,
i,
b,
h1,
h2,
h3,
h4,
h5,
h6,
p,
input,
ul,
li,
select,
label,
textarea {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  font-family: myFont6;
}

input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  font-family: myFont6;
}

input {
  -webkit-tap-highlight-color: transparent;
}

::-webkit-datetime-edit-year-field:not([aria-valuenow]),
::-webkit-datetime-edit-month-field:not([aria-valuenow]),
::-webkit-datetime-edit-day-field:not([aria-valuenow]) {
  color: transparent;
}

video::-internal-media-controls-overlay-cast-button {
  display: none;
}

textarea {
  resize: none;
  font-family: myFont6;
}

::-moz-selection {
  color: white;
  background: #1d1d1d;
}

::selection {
  color: white;
  background: #1d1d1d;
}


.evMtho{
    display: none !important;
}

main {
  display: flex;
  flex-direction: column;
}

.shimmer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 105;
  background: rgba(0, 0, 0, 0.486);
  display: none;
}

.pageIntro {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: white;
  top: 0;
  left: 0;
  z-index: 300;
  display: flex;
  justify-content: center;
  align-items: center;
	display:none;
}
.pageIntro .pageIntroLine1 {
  position: absolute;
  width: 1px;
  height: 0%;
  background: #ddd;
  left: 10%;
  top: 0;
}
@media (max-width: 768px) {
  .pageIntro .pageIntroLine1 {
    left: 5%;
  }
}
@media (max-width: 480px) {
  .pageIntro .pageIntroLine1 {
    left: 2.5%;
  }
}
.pageIntro .pageIntroLine2 {
  position: absolute;
  width: 1px;
  height: 0%;
  background: #ddd;
  right: 10%;
  top: 0;
}
@media (max-width: 768px) {
  .pageIntro .pageIntroLine2 {
    right: 5%;
  }
}
@media (max-width: 480px) {
  .pageIntro .pageIntroLine2 {
    right: 2.5%;
  }
}
.pageIntro .pageIntroLogo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pageIntro .pageIntroLogo h2 {
  font-size: 8em;
  font-family: myFont8;
  animation: textAnim 2s infinite linear;
}
@media (max-width: 1800px) {
  .pageIntro .pageIntroLogo h2 {
    font-size: 5em;
  }
}
@media (max-width: 768px) {
  .pageIntro .pageIntroLogo h2 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  .pageIntro .pageIntroLogo h2 {
    font-size: 2.2em;
  }
}
@keyframes textAnim {
  0% {
    color: black;
  }
  50% {
    color: rgb(174, 174, 174);
  }
  100% {
    color: black;
  }
}

.pageIntroActive .pageIntroLine1 {
  height: 100vh;
  transition: 1s;
}
.pageIntroActive .pageIntroLine2 {
  height: 100vh;
  transition: 1s;
}

.popupForm{
  position: fixed;
  width: 500px;
  background: white;
  padding: 50px;
  z-index: 200;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
	display: none;
}
@media (max-width: 768px) {
  .popupForm {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .popupForm {
    padding: 20px;
    width: 95%;
  }
}
.popupForm h2{
	font-size: 2em;
}
.popupForm form{
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 40px;
}
.popupForm form .formGroup{
	width: 100%;
	display: flex;
	flex-direction: column;
}
.popupForm form .formGroup label{
	font-size: 14px;
	font-family: myFont4;
}
.popupForm form .formGroup Input{
	font-size: 20px;
	width: 100%;
	background: white;
	height: 60px;
	outline: none;
	border: 1px solid #ddd;
	margin-top: 5px;
	padding: 0px 20px;
}
.popupForm form .formBtnArea{
	width: 100%;
	display :flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
}
.popupForm form .formBtnArea button{
	padding: 12px 40px;
	background: var(--primaryColor);
	color: white;
	font-size: 18px;
	cursor: pointer;
	outline: none;
	border: none;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.popupForm form .formBtnArea button:hover::after {
  transition: 0.3s;
  top: 0px;
  opacity: 1;
}
.popupForm form .formBtnArea button::after {
  position: absolute;
  content: "";
  transition: 0.3s;
  width: 100%;
  height: 5px;
  background: var(--secondaryColor);
  z-index: -1;
  top: -5px;
  left: 0;
  opacity: 0;
}
.popupForm form .formBtnArea .closePopupForm{
	padding: 12px 40px;
	background: #eee;
	color: black;
	font-size: 18px;
	cursor: pointer;
	outline: none;
	border: none;
	transition: .3s;
}
.popupForm form .formBtnArea .closePopupForm:hover{
	transition: .3s;
	opacity: .7;
}






.popupEnqForm{
  position: fixed;
  width: 500px;
  background: white;
  padding: 50px;
  z-index: 200;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
	display: none;
}
@media (max-width: 768px) {
  .popupEnqForm {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .popupEnqForm {
    padding: 20px;
    width: 95%;
  }
}
.popupEnqForm h2{
	font-size: 2em;
}
.popupEnqForm form{
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 40px;
}
.popupEnqForm form .formGroup{
	width: 100%;
	display: flex;
	flex-direction: column;
}
.popupEnqForm form .formGroup label{
	font-size: 14px;
	font-family: myFont4;
}
.popupEnqForm form .formGroup Input{
	font-size: 20px;
	width: 100%;
	background: white;
	height: 60px;
	outline: none;
	border: 1px solid #ddd;
	margin-top: 5px;
	padding: 0px 20px;
}
.popupEnqForm form .formBtnArea{
	width: 100%;
	display :flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
}
.popupEnqForm form .formBtnArea button{
	padding: 12px 40px;
	background: var(--primaryColor);
	color: white;
	font-size: 18px;
	cursor: pointer;
	outline: none;
	border: none;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.popupEnqForm form .formBtnArea button:hover::after {
  transition: 0.3s;
  top: 0px;
  opacity: 1;
}
.popupEnqForm form .formBtnArea button::after {
  position: absolute;
  content: "";
  transition: 0.3s;
  width: 100%;
  height: 5px;
  background: var(--secondaryColor);
  z-index: -1;
  top: -5px;
  left: 0;
  opacity: 0;
}
.popupEnqForm form .formBtnArea .closeEnqPopupForm{
	padding: 12px 40px;
	background: #eee;
	color: black;
	font-size: 18px;
	cursor: pointer;
	outline: none;
	border: none;
	transition: .3s;
}
.popupEnqForm form .formBtnArea .closeEnqPopupForm:hover{
	transition: .3s;
	opacity: .7;
}




.planPopup{
  position: fixed;
  width: 70%;
  background: white;
  padding: 50px;
  z-index: 200;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
	display: none;
}
@media (max-width: 1024px) {
  .planPopup {
  	width: 80%;
  }
}
@media (max-width: 768px) {
  .planPopup {
  	width: 90%;
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .planPopup {
    padding: 20px;
    width: 95%;
  }
}
.closePlanPopup{
	position :absolute;
	top: 20px;
	right: 40px;
	font-size: 30px;
	cursor: pointer;
	color: var(--secondaryTextColor);
	transition: .3s;
}
@media (max-width: 768px) {
  .planPopup .closePlanPopup{
	right: 20px;
  }
}
@media (max-width: 480px) {
  .planPopup .closePlanPopup{
	font-size: 25px;
  }
}
.closePlanPopup:hover{
	transition: .3s;
	color: black;
}
.planPopup .planPopupThumbnail{
	width: 100%;
	height: 65vh;
	background: #eeeeee69;
	overflow: hidden;
	margin-top: 20px;
}
@media (max-width: 480px) {
.planPopup .planPopupThumbnail{
	height: 100%;
	max-height: 65vh;
  }
}
.planPopup .planPopupThumbnail img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.planPopup .planPopupDetails{
	width: 100%;
	display: flex;
	flex-direction :column;
}
.planPopup .planPopupDetails h2{
	font-size: 2em;
}
@media (max-width: 768px) {
.planPopup .planPopupDetails h2{
	font-size: 25px;
  }
}
.planPopup .planPopupDetails p{
	font-size: 18px;
	margin-top :15px;
}
@media (max-width: 768px) {
.planPopup .planPopupDetails p{
	font-size: 16px;
  }
}

.disclaimer {
  position: fixed;
  width: 60%;
  background: white;
  padding: 50px;
  z-index: 200;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  display: none;
}
@media (max-width: 1800px) {
  .disclaimer {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .disclaimer {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .disclaimer {
    padding: 20px;
    width: 90%;
  }
}
.disclaimer .disclaimerMain {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.disclaimer .disclaimerMain h2 {
  font-size: 2em;
  color: var(--primaryColor);
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}
@media (max-width: 480px) {
  .disclaimer .disclaimerMain h2 {
    font-size: 25px;
  }
}
.disclaimer .disclaimerMain .disclaimerMainBody {
  display: flex;
  flex-direction: column;
  max-height: 65vh;
  overflow-y: auto;
}
.disclaimer .disclaimerMain .disclaimerMainBody p {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 20px;
  font-family: myFont4;
}
@media (max-width: 480px) {
  .disclaimer .disclaimerMain .disclaimerMainBody p {
    font-size: 14px;
  }
}
.disclaimer .disclaimerMain .agreeBtn {
  background: var(--primaryColor);
  color: white;
  font-size: 18px;
  padding: 12px 40px;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 50px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .disclaimer .disclaimerMain .agreeBtn {
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  .disclaimer .disclaimerMain .agreeBtn {
    margin-top: 20px;
  }
}
.disclaimer .disclaimerMain .agreeBtn:hover::after {
  transition: 0.3s;
  top: 0px;
  opacity: 1;
}
.disclaimer .disclaimerMain .agreeBtn::after {
  position: absolute;
  content: "";
  transition: 0.3s;
  width: 100%;
  height: 5px;
  background: var(--secondaryColor);
  z-index: -1;
  top: -5px;
  left: 0;
  opacity: 0;
}

.sidemenu {
  position: fixed;
  z-index: 220;
  width: 100%;
  top: -110%;
  left: 0;
  background: white;
  padding: 40px;
  transition: 0.3s ease-in;
}
.sidemenu .closeSidemenu {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 30px;
}
.sidemenu ul {
  width: 100%;
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
}
.sidemenu ul li {
  list-style: none;
  flex: 0 0 45%;
}
.sidemenu ul li a {
  text-decoration: none;
  width: 100%;
  display: flex;
  padding: 20px 0px;
  font-family: myFont4;
  color: black;
  font-size: 2em;
}
@media (max-width: 480px) {
  .sidemenu ul li a {
    font-size: 1.6em;
  }
}
.sidemenu ul li .SidemenuLinkActive {
  color: #ed3237;
}

.sidemenuActive {
  transition: 0.3s ease-in;
  top: 0;
}

nav {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 50;
  transition: 0.3s;
}
nav .navMain {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  nav .navMain {
    height: 70px;
  }
}
nav .navMain .navLogo {
	width: 100px;
  height: 100px;
	display: block;
}
@media (max-width: 768px) {
  nav .navMain .navLogo {
    height: 80px;
	  width: 80px;
  }
}
nav .navMain .navLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
nav .navMain .navLink {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
}
@media (max-width: 1024px) {
  nav .navMain .navLink {
    display: none;
  }
}
nav .navMain .navLink ul {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (max-width: 1800px) {
  nav .navMain .navLink ul {
    gap: 60px;
  }
}
nav .navMain .navLink ul li {
  list-style: none;
}
nav .navMain .navLink ul li a {
  text-decoration: none;
  font-size: 16px;
  color: white;
  position: relative;
}
@media (max-width: 1800px) {
  nav .navMain .navLink ul li a {
    font-size: 14px;
  }
}
nav .navMain .navLink ul li a:hover::after {
  width: 100%;
  opacity: 1;
  transition: 0.3s;
}
nav .navMain .navLink ul li a::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 3px;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondaryColor);
  opacity: 0;
  transition: 0.3s;
}
nav .navMain .navLink ul li .navLinkActive::after {
  width: 100%;
  opacity: 1;
}
nav .navMain .navContact {
  margin-left: 100px;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 1024px) {
  nav .navMain .navContact {
    margin-left: auto;
  }
}
@media (max-width: 480px) {
  nav .navMain .navContact {
    display: none;
  }
}
nav .navMain .navContact a {
  background: var(--primaryColor);
  text-decoration: none;
  display: flex;
  text-align: center;
  color: white;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  padding: 12px 30px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
@media (max-width: 1800px) {
  nav .navMain .navContact a {
    font-size: 14px;
  }
}
nav .navMain .navContact a:hover::after {
  transition: 0.3s;
  top: 0px;
  opacity: 1;
}
nav .navMain .navContact a::after {
  position: absolute;
  content: "";
  transition: 0.3s;
  width: 100%;
  height: 5px;
  background: var(--secondaryColor);
  z-index: -1;
  top: -5px;
  left: 0;
  opacity: 0;
}
nav .navMain .navBar {
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  margin-left: 50px;
}
@media (max-width: 1024px) {
  nav .navMain .navBar {
    display: flex;
  }
}
nav .navMain .navBar .navBarBox {
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}
nav .navMain .navBar .navBarBox span {
  width: 100%;
  height: 2px;
  background: white;
}

.navActive {
  background: white !important;
  transition: 0.3s;
}
.navActive .navMain .navLink ul li a {
  color: black;
  transition: 0.3s;
}
.navActive .navMain .navBar .navBarBox span {
  background: black;
}

.slideUp {
  transform: translateY(-100px);
}

.slideDown {
  transform: translateY(0);
}

#banner {
  width: 100%;
  position: relative;
  height: 100vh;
	z-index: 0;
	overflow: hidden;
}
#banner::after{
  width: 100%;
  position: absolute;
  height: 25%;
	z-index: 1;
	content: '';
	top:0;
	left: 0;
	background: linear-gradient(#00000091, transparent);
}
#banner::before{
  width: 100%;
  position: absolute;
  height: 25%;
	z-index: 2;
	content: '';
	bottom:0;
	left: 0;
	background: linear-gradient(transparent, #00000059);
}
#banner .bannerSlider {
  position: absolute;
  width: 100%;
}
#banner .bannerSlider .bannerSliderBox {
  width: 100%;
  height: 100vh;
}
#banner .bannerSlider .bannerSliderBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#banner .bannerSlider .owl-item {
  animation: scaleUpFadeOut 2s forwards ease;
}
#banner .bannerSlider .active {
  animation: scaleDownFadeIn 2s forwards ease;
}
@keyframes scaleUpFadeOut {
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  75% {
    transform: scale(1.02);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes scaleDownFadeIn {
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
#banner .bannerSlider .owl-nav, #banner .bannerSlider .owl-dots {
  display: none;
}
#banner .bannerDetails {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
#banner .bannerDetails .container {
  border-inline: 1px solid rgba(255, 255, 255, 0.392);
}
#banner .bannerDetails .bannerDetailsMain {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
#banner .bannerDetails .bannerDetailsMain .bannerDetailsBox {
  /*background: rgba(0, 0, 0, 0.2901960784);*/
  padding: 20px 50px;
	/*background:linear-gradient(transparent, #00000059);*/
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  #banner .bannerDetails .bannerDetailsMain .bannerDetailsBox {
    padding: 20px 10px;
  }
}
#banner .bannerDetails .bannerDetailsMain .bannerDetailsBox h1 {
  font-size: 5em;
  color: white;
  font-family: myFont4;
}
@media (max-width: 1800px) {
  #banner .bannerDetails .bannerDetailsMain .bannerDetailsBox h1 {
    font-size: 3em;
    width: 80%;
  }
}
@media (max-width: 1024px) {
  #banner .bannerDetails .bannerDetailsMain .bannerDetailsBox h1 {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #banner .bannerDetails .bannerDetailsMain .bannerDetailsBox h1 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #banner .bannerDetails .bannerDetailsMain .bannerDetailsBox h1 {
    font-size: 1.7em;
  }
}
#banner .bannerDetails .bannerDetailsMain .bannerDetailsBox p {
  color: white;
  font-size: 16px;
  line-height: 1.8;
  margin-top: 20px;
  font-family: myFont3;
	display: none;
}

#banner .bannerDetails .bannerDetailsMain .bannerDetailsBox a {
  text-align: center;
  position: relative;
  display: inline-block;
  color: #fff; /* or your desired text color */
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Pseudo-element for hover effect */
#banner .bannerDetails .bannerDetailsMain .bannerDetailsBox a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background: var(--secondaryColor, #fff); /* fallback color if --secondaryColor is undefined */
  top: -5px;
  left: 0;
  opacity: 0;
  transition: 0.3s ease;
  z-index: -1;
}

/* On hover: reveal the underline */
#banner .bannerDetails .bannerDetailsMain .bannerDetailsBox a:hover::after {
  top: 0px;
  opacity: 1;
}

@media (max-width: 1800px) {
  #banner .bannerDetails .bannerDetailsMain .bannerDetailsBox p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  #banner .bannerDetails .bannerDetailsMain .bannerDetailsBox p {
    font-size: 12px;
    margin-top: 10px;
  }
}
#banner .bannerDetails .bannerDetailsMain .bannerDetailsBox a {
  text-decoration: none;
  /*background: white;*/
  color: black;
	width: 350px;
  /*padding: 20px 50px;*/
  /*margin-top: 40px;*/
  /*width: -moz-fit-content;
  width: fit-content;*/
  position: relative;
  overflow: hidden;
  z-index: 0;
}
@media (max-width: 1800px) {
  #banner .bannerDetails .bannerDetailsMain .bannerDetailsBox a {
    font-size: 16px;
    color: white;
    /*padding: 16px 40px;*/
  }
}
@media (max-width: 480px) {
  #banner .bannerDetails .bannerDetailsMain .bannerDetailsBox a {
	width: 100%;
  }
}
/*#banner .bannerDetails .bannerDetailsMain .bannerDetailsBox a:hover::after {
  transition: 0.3s;
  top: 0px;
  opacity: 1;
}*/
#banner .bannerDetails .bannerDetailsMain .bannerDetailsBox a::after {
  position: absolute;
  content: "";
  transition: 0.3s;
  width: 100%;
  height: 5px;
  background: var(--secondaryColor);
  z-index: -1;
  top: -5px;
  left: 0;
  opacity: 0;
}
#banner .bannerDetails .bannerDetailsMain .bannerDetailsBox a img{
	width :100%;
	height: 100%;
	object-fit: contain;
}
#banner .credaiLogo{
	position: absolute;
	z-index: 2;
	width: 120px;
	bottom: 20px;
	right: 10%;
}
@media(max-width:768px){
	#banner .credaiLogo{
		width: 80px;
		right: 15%;
	}
}
@media(max-width:480px){
	#banner .credaiLogo{
		bottom: 150px;
		right: 5%;
	}
}
#banner .credaiLogo img{
	width :100%;
	height :100%;
	object-fit :contain;
}

#about {
  width: 100%;
  background: #f6f8f8;
}
#about .container {
  border-color: #ddd;
}
#about .aboutMain {
  width: 100%;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  #about .aboutMain {
    padding-top: 50px;
  }
}
#about .aboutMain .aboutCol1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 50px;
  padding-top: 0;
}
@media (max-width: 768px) {
  #about .aboutMain .aboutCol1 {
    padding: 20px 10px;
    padding-top: 0;
  }
}
#about .aboutMain .aboutCol1 h2 {
  font-size: 4em;
  line-height: 1.5;
  font-family: myFont4;
}
@media (max-width: 1800px) {
  #about .aboutMain .aboutCol1 h2 {
    font-size: 3em;
  }
}
@media (max-width: 1024px) {
  #about .aboutMain .aboutCol1 h2 {
    font-size: 2.5em;
  }
}
@media (max-width: 768px) {
  #about .aboutMain .aboutCol1 h2 {
    font-size: 2.2em;
  }
}
@media (max-width: 480px) {
  #about .aboutMain .aboutCol1 h2 {
    font-size: 2em;
  }
}
#about .aboutMain .aboutCol1 p {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 20px;
}
@media (max-width: 768px) {
  #about .aboutMain .aboutCol1 p {
    font-size: 14px;
  }
}
#about .aboutMain .aboutCol1 a {
  text-decoration: none;
  background: white;
  color: black;
  padding: 20px 50px;
  margin-top: 40px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
@media (max-width: 1024px) {
  #about .aboutMain .aboutCol1 a {
    font-size: 16px;
    padding: 14px 30px;
  }
}
#about .aboutMain .aboutCol1 a:hover::after {
  transition: 0.3s;
  top: 0px;
  opacity: 1;
}
#about .aboutMain .aboutCol1 a::after {
  position: absolute;
  content: "";
  transition: 0.3s;
  width: 100%;
  height: 5px;
  background: var(--secondaryColor);
  z-index: -1;
  top: -5px;
  left: 0;
  opacity: 0;
}
#about .aboutMain .aboutCol2 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #ddd;
  margin-top: 50px;
}
#about .aboutMain .aboutCol2 .aboutCoreBox {
  width: 33.3333333333%;
  padding: 50px;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  #about .aboutMain .aboutCol2 .aboutCoreBox {
    width: 50%;
  }
}
@media (max-width: 768px) {
  #about .aboutMain .aboutCol2 .aboutCoreBox {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  #about .aboutMain .aboutCol2 .aboutCoreBox {
    width: 100%;
	  padding: 20px 10px;
  }
}
#about .aboutMain .aboutCol2 .aboutCoreBox:nth-of-type(2) {
  border-inline: 1px solid #ddd;
}
@media (max-width: 1024px) {
  #about .aboutMain .aboutCol2 .aboutCoreBox:nth-of-type(2) {
    border-right: 0;
  }
}
@media (max-width: 480px) {
  #about .aboutMain .aboutCol2 .aboutCoreBox:nth-of-type(2) {
    border-left: 0;
  }
}
#about .aboutMain .aboutCol2 .aboutCoreBox:nth-of-type(4) {
  border-bottom: 0;
}
@media (max-width: 1024px) {
  #about .aboutMain .aboutCol2 .aboutCoreBox:nth-of-type(4) {
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
}
@media (max-width: 480px) {
  #about .aboutMain .aboutCol2 .aboutCoreBox:nth-of-type(4) {
    border-left: 0;
  }
}
#about .aboutMain .aboutCol2 .aboutCoreBox:nth-of-type(5) {
  border-inline: 1px solid #ddd;
  border-bottom: 0;
}
@media (max-width: 1024px) {
  #about .aboutMain .aboutCol2 .aboutCoreBox:nth-of-type(5) {
    border-inline: 0;
  }
}
@media (max-width: 480px) {
  #about .aboutMain .aboutCol2 .aboutCoreBox:nth-of-type(5) {
    border-bottom: 1px solid #ddd;
  }
}
#about .aboutMain .aboutCol2 .aboutCoreBox:nth-of-type(6) {
  border-bottom: 0;
}
@media (max-width: 1024px) {
  #about .aboutMain .aboutCol2 .aboutCoreBox:nth-of-type(6) {
    border-left: 1px solid #ddd;
  }
}
@media (max-width: 480px) {
  #about .aboutMain .aboutCol2 .aboutCoreBox:nth-of-type(6) {
    border-left: 0;
  }
}
#about .aboutMain .aboutCol2 .aboutCoreBox .aboutCoreBoxIcon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#about .aboutMain .aboutCol2 .aboutCoreBox .aboutCoreBoxIcon img {
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
}
#about .aboutMain .aboutCol2 .aboutCoreBox .aboutCoreBoxDetails {
  width: calc(100% - 80px);
  display: flex;
  flex-direction: column;
}
#about .aboutMain .aboutCol2 .aboutCoreBox .aboutCoreBoxDetails h3 {
  font-size: 22px;
}
@media (max-width: 1800px) {
  #about .aboutMain .aboutCol2 .aboutCoreBox .aboutCoreBoxDetails h3 {
    font-size: 20px;
  }
}
#about .aboutMain .aboutCol2 .aboutCoreBox .aboutCoreBoxDetails p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 15px;
  color: #5a727c;
}
@media (max-width: 1800px) {
  #about .aboutMain .aboutCol2 .aboutCoreBox .aboutCoreBoxDetails p {
    font-size: 12px;
  }
}

#projectHead {
  width: 100%;
}
#projectHead .container {
  border-color: #ddd;
}
#projectHead .projectHeadMain {
  width: 100%;
  padding: 100px 50px;
}
@media (max-width: 768px) {
  #projectHead .projectHeadMain {
    padding: 50px 10px;
  }
}
#projectHead .projectHeadMain h2 {
  font-size: 4em;
  line-height: 1.5;
  font-family: myFont4;
}
@media (max-width: 1800px) {
  #projectHead .projectHeadMain h2 {
    font-size: 3em;
  }
}
@media (max-width: 1024px) {
  #projectHead .projectHeadMain h2 {
    font-size: 2.5em;
  }
}
@media (max-width: 768px) {
  #projectHead .projectHeadMain h2 {
    font-size: 2.2em;
  }
}
@media (max-width: 480px) {
  #projectHead .projectHeadMain h2 {
    font-size: 2em;
  }
}

#projects {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#projects .projectsBox {
  width: 100%;
}
#projects .projectsBox .container {
  border-inline: 1px solid rgba(255, 255, 255, 0.392);
}
#projects .projectsBox:nth-of-type(odd) .projectsBoxMain .projectsBoxDetails {
  padding: 0px 5% 5% 0px;
}
@media (max-width: 768px) {
  #projects .projectsBox:nth-of-type(odd) .projectsBoxMain .projectsBoxDetails {
    padding: 50px 10px;
  }
}
#projects .projectsBox:nth-of-type(even) .projectsBoxMain .projectsBoxDetails {
  padding: 0px 0px 5% 5%;
}
@media (max-width: 768px) {
  #projects .projectsBox:nth-of-type(even) .projectsBoxMain .projectsBoxDetails {
    padding: 50px 10px;
  }
}
#projects .projectsBox .projectsBoxMain {
  width: 100%;
  padding-top: 100px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  #projects .projectsBox .projectsBoxMain {
    padding-top: 50px;
  }
}
#projects .projectsBox .projectsBoxMain .projectsBoxThumbnial {
  flex: 0 0 50%;
  height: 70vh;
}
@media (max-width: 1800px) {
  #projects .projectsBox .projectsBoxMain .projectsBoxThumbnial {
    height: 80vh;
  }
}
@media (max-width: 768px) {
  #projects .projectsBox .projectsBoxMain .projectsBoxThumbnial {
    flex: 100%;
    height: 400px;
    order: 1;
  }
}
@media (max-width: 480px) {
  #projects .projectsBox .projectsBoxMain .projectsBoxThumbnial {
    height: 250px;
  }
}
#projects .projectsBox .projectsBoxMain .projectsBoxThumbnial img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#projects .projectsBox .projectsBoxMain .projectsBoxDetails {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  #projects .projectsBox .projectsBoxMain .projectsBoxDetails {
    flex: 100%;
    order: 2;
  }
}
#projects .projectsBox .projectsBoxMain .projectsBoxDetails .projectsBoxDetailsLogo {
  width: 400px;
}
@media (max-width: 1800px) {
  #projects .projectsBox .projectsBoxMain .projectsBoxDetails .projectsBoxDetailsLogo {
    width: 300px;
  }
}
@media (max-width: 1024px) {
  #projects .projectsBox .projectsBoxMain .projectsBoxDetails .projectsBoxDetailsLogo {
    width: 250px;
  }
}
@media (max-width: 480px) {
  #projects .projectsBox .projectsBoxMain .projectsBoxDetails .projectsBoxDetailsLogo {
    width: 100%;
  }
}
#projects .projectsBox .projectsBoxMain .projectsBoxDetails .projectsBoxDetailsLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#projects .projectsBox .projectsBoxMain .projectsBoxDetails h2 {
  font-size: 4em;
  line-height: 1.5;
  font-family: myFont4;
  color: white;
  width: 90%;
  margin-top: 20px;
}
@media (max-width: 1800px) {
  #projects .projectsBox .projectsBoxMain .projectsBoxDetails h2 {
    font-size: 3em;
  }
}
@media (max-width: 1024px) {
  #projects .projectsBox .projectsBoxMain .projectsBoxDetails h2 {
    font-size: 2.5em;
  }
}
@media (max-width: 768px) {
  #projects .projectsBox .projectsBoxMain .projectsBoxDetails h2 {
    font-size: 2.2em;
    width: 100%;
  }
}
@media (max-width: 480px) {
  #projects .projectsBox .projectsBoxMain .projectsBoxDetails h2 {
    font-size: 2em;
  }
}
#projects .projectsBox .projectsBoxMain .projectsBoxDetails p {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 30px;
  color: white;
  font-family: myFont3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  max-height: 175px;
}
@media (max-width: 1800px) {
  #projects .projectsBox .projectsBoxMain .projectsBoxDetails p {
    font-size: 14px;
  max-height: 150px;
  }
}
#projects .projectsBox .projectsBoxMain .projectsBoxDetails a {
  text-decoration: none;
  background: white;
  color: black;
  padding: 16px 50px;
  margin-top: 40px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
#projects .projectsBox .projectsBoxMain .projectsBoxDetails a:hover::after {
  transition: 0.3s;
  top: 0px;
  opacity: 1;
}
#projects .projectsBox .projectsBoxMain .projectsBoxDetails a::after {
  position: absolute;
  content: "";
  transition: 0.3s;
  width: 100%;
  height: 5px;
  background: var(--secondaryColor);
  z-index: -1;
  top: -5px;
  left: 0;
  opacity: 0;
}

#projectList {
  width: 100%;
}
#projectList .container {
  border-color: #ddd;
}
#projectList .projectListHead {
  width: 100%;
  padding: 100px 50px 0px 50px;
}
@media (max-width: 768px) {
  #projectList .projectListHead {
    padding: 50px 10px 0px 10px;
  }
}
#projectList .projectListHead h2 {
  font-size: 4em;
  line-height: 1.5;
  font-family: myFont4;
  text-align: center;
}
@media (max-width: 1800px) {
  #projectList .projectListHead h2 {
    font-size: 3em;
  }
}
@media (max-width: 1024px) {
  #projectList .projectListHead h2 {
    font-size: 2.5em;
  }
}
@media (max-width: 768px) {
  #projectList .projectListHead h2 {
    font-size: 2.2em;
  }
}
@media (max-width: 480px) {
  #projectList .projectListHead h2 {
    font-size: 2em;
  }
}
#projectList .projectListBody {
  width: 100%;
  padding: 50px 0px 100px 0px;
  position: relative;
}
@media (max-width: 768px) {
  #projectList .projectListBody {
    padding-bottom: 50px;
  }
}
#projectList .projectListBody .projectListMain {
  width: 100%;
}
#projectList .projectListBody .projectListMain .projectListBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
#projectList .projectListBody .projectListMain .projectListBox:hover .projectListBoxThumbnail img {
  transform: scale(1.05);
  transition: 0.3s;
}
#projectList .projectListBody .projectListMain .projectListBox .projectListBoxThumbnail {
  width: 100%;
  height: 400px;
  background: #eee;
  overflow: hidden;
}
@media (max-width: 1800px) {
  #projectList .projectListBody .projectListMain .projectListBox .projectListBoxThumbnail {
    height: 300px;
  }
}
#projectList .projectListBody .projectListMain .projectListBox .projectListBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
#projectList .projectListBody .projectListMain .projectListBox .projectListBoxDetails {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
@media (max-width: 480px) {
  #projectList .projectListBody .projectListMain .projectListBox .projectListBoxDetails {
    padding: 0px 10px;
  }
}
#projectList .projectListBody .projectListMain .projectListBox .projectListBoxDetails h3 {
  font-size: 22px;
  font-family: myFont4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  max-height: 30px;
  color: black;
}
#projectList .projectListBody .projectListMain .projectListBox .projectListBoxDetails span {
  font-size: 16px;
  margin-top: 10px;
  opacity: 0.5;
  color: black;
}
#projectList .projectListBody .owl-nav, #projectList .projectListBody .owl-dots {
  display: none;
}
#projectList .projectListBody .projectListControls {
  position: absolute;
  width: 100%;
  top: 40%;
  left: 0;
}
#projectList .projectListBody .projectListControls .custom-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#projectList .projectListBody .projectListControls .custom-nav button {
  z-index: 2;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  border: none;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.0862745098);
  transition: 0.3s;
}
#projectList .projectListBody .projectListControls .custom-nav button:hover {
  background: var(--secondaryColor);
  transition: 0.3s;
  color: white;
}
@media (max-width: 480px) {
  #projectList .projectListBody .projectListControls .custom-nav button {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

#testimonials {
  width: 100%;
}
#testimonials .testimonialsMain {
  width: 100%;
  padding-top: 100px;
  border-top: 1px solid #ddd;
}
@media (max-width: 768px) {
  #testimonials .testimonialsMain {
    padding-top: 50px;
  }
}
#testimonials .testimonialsMain .testimonialsHead {
  border-bottom: 1px solid #ddd;
  padding: 0px 50px 50px 50px;
}
@media (max-width: 768px) {
  #testimonials .testimonialsMain .testimonialsHead {
    padding: 0px 20px 50px 20px;
  }
}
@media (max-width: 480px) {
  #testimonials .testimonialsMain .testimonialsHead {
    padding: 0px 10px 50px 10px;
  }
}
#testimonials .testimonialsMain .testimonialsHead h2 {
  font-size: 4em;
  line-height: 1.5;
  font-family: myFont4;
}
@media (max-width: 1800px) {
  #testimonials .testimonialsMain .testimonialsHead h2 {
    font-size: 3em;
  }
}
@media (max-width: 1024px) {
  #testimonials .testimonialsMain .testimonialsHead h2 {
    font-size: 2.5em;
  }
}
@media (max-width: 768px) {
  #testimonials .testimonialsMain .testimonialsHead h2 {
    font-size: 2.2em;
  }
}
@media (max-width: 480px) {
  #testimonials .testimonialsMain .testimonialsHead h2 {
    font-size: 2em;
  }
}
#testimonials .testimonialsMain .testimonialsList {
  width: 100%;
	position: relative;
}
#testimonials .testimonialsMain .testimonialsList::after{
	position: absolute;
	width:1px;
	height:100%;
	content: '';
	background: #ddd;
	top: 0;
	left: calc(100% / 3);
	z-index: 2;
}
@media(max-width:1000px){
	#testimonials .testimonialsMain .testimonialsList::after{
		left: calc(100% / 4);
	}
}
@media(max-width:600px){
	#testimonials .testimonialsMain .testimonialsList::after{
		display:none;
	}
}
#testimonials .testimonialsMain .testimonialsList::before{
	position: absolute;
	width:1px;
	height:100%;
	content: '';
	background: #ddd;
	top: 0;
	right: calc(100% / 3);
	z-index: 2;
}
@media(max-width:1000px){
	#testimonials .testimonialsMain .testimonialsList::before{
		right: calc(100% / 4);
	}
}
@media(max-width:600px){
	#testimonials .testimonialsMain .testimonialsList::before{
		display:none;
	}
}
#testimonials .testimonialsMain .testimonialsList .testimonialsListBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-left: none;
  padding: 50px;
}
@media (max-width: 1024px) {
  #testimonials .testimonialsMain .testimonialsList .testimonialsListBox {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  #testimonials .testimonialsMain .testimonialsList .testimonialsListBox {
    padding: 20px 10px;
  }
}
#testimonials .testimonialsMain .testimonialsList .testimonialsListBox .quoght1 {
  width: 100%;
}
#testimonials .testimonialsMain .testimonialsList .testimonialsListBox .quoght1 span {
  transform: rotate(180deg);
  font-size: 30px;
  color: rgb(152, 203, 213);
}
#testimonials .testimonialsMain .testimonialsList .testimonialsListBox p {
  font-size: 20px;
  font-family: myFont3;
  line-height: 1.7;
}
@media (max-width: 1800px) {
  #testimonials .testimonialsMain .testimonialsList .testimonialsListBox p {
    font-size: 16px;
  }
}
#testimonials .testimonialsMain .testimonialsList .testimonialsListBox .quoght2 {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
#testimonials .testimonialsMain .testimonialsList .testimonialsListBox .quoght2 span {
  font-size: 30px;
  color: rgb(152, 203, 213);
}
#testimonials .testimonialsMain .testimonialsList .testimonialsListBox .testimonialsProfile {
  width: 100%;
  display: flex;
  margin-top: 20px;
  flex-direction: column;
}
#testimonials .testimonialsMain .testimonialsList .testimonialsListBox .testimonialsProfile .testimonialsProfileThumbnail {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(45deg, #F8FFDB, #B9FFF8, #72FFFF);
  display: flex;
  justify-content: center;
  align-items: center;
	overflow: hidden;
}
#testimonials .testimonialsMain .testimonialsList .testimonialsListBox .testimonialsProfile .testimonialsProfileThumbnail span {
  font-size: 35px;
  color: rgb(2, 126, 184);
}
#testimonials .testimonialsMain .testimonialsList .testimonialsListBox .testimonialsProfile .testimonialsProfileThumbnail img {
  width: 100%;
	height: 100%;
	object-fit: cover;
}
#testimonials .testimonialsMain .testimonialsList .testimonialsListBox .testimonialsProfile h4 {
  font-size: 18px;
  margin-top: 30px;
  font-family: myFont4;
}
@media (max-width: 1800px) {
  #testimonials .testimonialsMain .testimonialsList .testimonialsListBox .testimonialsProfile h4 {
    font-size: 16px;
  }
}
#testimonials .testimonialsMain .testimonialsList .testimonialsListBox .testimonialsProfile h6 {
  font-size: 16px;
  margin-top: 10px;
  opacity: 0.5;
  color: black;
  font-family: myFont3;
	display: none;
}
@media (max-width: 1800px) {
  #testimonials .testimonialsMain .testimonialsList .testimonialsListBox .testimonialsProfile h6 {
    font-size: 12px;
  }
}
/*#testimonials .testimonialsMain .testimonialsList .center .testimonialsListBox {
  border-inline: 1px solid #ddd;
}
@media(max-width: 480px){
	#testimonials .testimonialsMain .testimonialsList .center .testimonialsListBox{
		border-inline: none;
	}
}*/

#awards {
  width: 100%;
  /*background: black;*/
  position: relative;
  z-index: 0;
}
#awards::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/awardBG.webp);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5;
  z-index: -1;
	display:none;
}
#awards .awardsThumbnail{
	width:100%;
}
#awards .awardsThumbnail img{
	width:100%;
	height: 100%;
	object-fit: contain;
}
#awards .container {
	position: absolute;
    height: 100%;
    top: 0;
    width: 80%;
    z-index: 10;
    left: 10%;
    border-inline: 1px solid #ddd;
}
@media (max-width: 1024px) {
  #awards .container {
    width: 90%;
    left: 5%;
  }
}
@media (max-width: 480px) {
  #awards .container {
    width: 95%;
    left: 2.5%;
  }
}
#awards .awardsMain {
  width: 100%;
  padding: 100px 0px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  #awards .awardsMain {
    padding: 50px 0px;
  }
}
#awards .awardsMain h2 {
  font-size: 4em;
  line-height: 1.5;
  font-family: myFont4;
  text-align: center;
  color: white;
  padding: 0px 50px;
}
@media (max-width: 1800px) {
  #awards .awardsMain h2 {
    font-size: 3em;
  }
}
@media (max-width: 1024px) {
  #awards .awardsMain h2 {
    font-size: 2.5em;
  }
}
@media (max-width: 768px) {
  #awards .awardsMain h2 {
    font-size: 2.2em;
    padding: 0px 20px;
  }
}
@media (max-width: 480px) {
  #awards .awardsMain h2 {
    font-size: 2em;
  }
}
#awards .awardsMain .awardsList {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.392);
  padding-top: 100px;
}
@media (max-width: 1024px) {
  #awards .awardsMain .awardsList {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  #awards .awardsMain .awardsList {
    justify-content: space-between;
    gap: inherit;
    row-gap: 20px;
    padding: 0px 20px;
    padding-top: 50px;
  }
}
@media (max-width: 480px) {
  #awards .awardsMain .awardsList {
    padding: 0px 10px;
    padding-top: 50px;
  }
}
#awards .awardsMain .awardsList .awardsBox {
  width: 250px;
  background: white;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
@media (max-width: 768px) {
  #awards .awardsMain .awardsList .awardsBox {
    width: inherit;
    flex: 0 0 48%;
  }
}
@media (max-width: 480px) {
  #awards .awardsMain .awardsList .awardsBox {
    flex: 100%;
  }
}
#awards .awardsMain .awardsList .awardsBox .awardsBoxThumbnail {
  width: 100%;
  height: 200px;
  background: #eee;
}
@media (max-width: 768px) {
  #awards .awardsMain .awardsList .awardsBox .awardsBoxThumbnail {
    height: 250px;
  }
}
#awards .awardsMain .awardsList .awardsBox .awardsBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#awards .awardsMain .awardsList .awardsBox .awardsBoxDetails {
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#awards .awardsMain .awardsList .awardsBox .awardsBoxDetails h3 {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  font-family: myFont3;
}

#blogs {
  width: 100%;
}
#blogs .blogsMain {
  width: 100%;
  padding: 100px 0px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  #blogs .blogsMain {
    padding: 50px 0px;
  }
}
#blogs .blogsMain .blogsHead {
  padding: 0px 50px 50px 50px;
}
@media (max-width: 768px) {
  #blogs .blogsMain .blogsHead {
    padding: 0px 20px 50px 20px;
  }
}
@media (max-width: 480px) {
  #blogs .blogsMain .blogsHead {
    padding: 0px 10px 50px 10px;
  }
}
#blogs .blogsMain .blogsHead h2 {
  font-size: 4em;
  line-height: 1.5;
  font-family: myFont4;
}
@media (max-width: 1800px) {
  #blogs .blogsMain .blogsHead h2 {
    font-size: 3em;
  }
}
@media (max-width: 1024px) {
  #blogs .blogsMain .blogsHead h2 {
    font-size: 2.5em;
  }
}
@media (max-width: 768px) {
  #blogs .blogsMain .blogsHead h2 {
    font-size: 2.2em;
  }
}
@media (max-width: 480px) {
  #blogs .blogsMain .blogsHead h2 {
    font-size: 2em;
  }
}
#blogs .blogsMain .blogsList {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#blogs .blogsMain .blogsList .blogsBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  border-top: 1px solid #ddd;
  padding: 50px;
}
@media (max-width: 768px) {
  #blogs .blogsMain .blogsList .blogsBox {
    padding: 50px 10px;
  }
}
#blogs .blogsMain .blogsList .blogsBox .blogsBoxThumbnail {
  width: 500px;
  height: 300px;
  background: #eee;
}
@media (max-width: 1800px) {
  #blogs .blogsMain .blogsList .blogsBox .blogsBoxThumbnail {
    width: 350px;
    height: 250px;
  }
}
@media (max-width: 1024px) {
  #blogs .blogsMain .blogsList .blogsBox .blogsBoxThumbnail {
    width: 300px;
  }
}
@media (max-width: 768px) {
  #blogs .blogsMain .blogsList .blogsBox .blogsBoxThumbnail {
    width: 100%;
  }
}
@media (max-width: 480px) {
  #blogs .blogsMain .blogsList .blogsBox .blogsBoxThumbnail {
    height: 220px;
  }
}
#blogs .blogsMain .blogsList .blogsBox .blogsBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#blogs .blogsMain .blogsList .blogsBox .blogsBoxDetails {
  width: calc(100% - 600px);
  display: flex;
  flex-direction: column;
}
@media (max-width: 1800px) {
  #blogs .blogsMain .blogsList .blogsBox .blogsBoxDetails {
    width: calc(100% - 450px);
  }
}
@media (max-width: 1024px) {
  #blogs .blogsMain .blogsList .blogsBox .blogsBoxDetails {
    width: calc(100% - 350px);
  }
}
@media (max-width: 768px) {
  #blogs .blogsMain .blogsList .blogsBox .blogsBoxDetails {
    width: 100%;
    margin-top: 20px;
  }
}
#blogs .blogsMain .blogsList .blogsBox .blogsBoxDetails h3 {
  font-size: 30px;
  line-height: 1.5;
  font-family: myFont4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 90px;
}
@media (max-width: 1800px) {
  #blogs .blogsMain .blogsList .blogsBox .blogsBoxDetails h3 {
    font-size: 25px;
    max-height: 75px;
  }
}
#blogs .blogsMain .blogsList .blogsBox .blogsBoxDetails p {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 60px;
}
@media (max-width: 1800px) {
  #blogs .blogsMain .blogsList .blogsBox .blogsBoxDetails p {
    font-size: 14px;
    max-height: 50px;
  }
}
#blogs .blogsMain .blogsList .blogsBox .blogsBoxDetails span {
  color: var(--secondaryTextColor);
  margin-top: 30px;
  opacity: 0.7;
}
@media (max-width: 1800px) {
  #blogs .blogsMain .blogsList .blogsBox .blogsBoxDetails span {
    font-size: 14px;
  }
}
#blogs .blogsMain .blogsList .blogsBox .blogsBoxDetails a {
  text-decoration: none;
  border: 1px solid black;
  color: black;
  padding: 10px 50px;
  margin-top: 40px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  overflow: hidden;
  font-size: 16px;
  z-index: 0;
}
@media (max-width: 1800px) {
  #blogs .blogsMain .blogsList .blogsBox .blogsBoxDetails a {
    font-size: 14px;
  }
}
#blogs .blogsMain .blogsList .blogsBox .blogsBoxDetails a:hover::after {
  transition: 0.3s;
  top: 0px;
  opacity: 1;
}
#blogs .blogsMain .blogsList .blogsBox .blogsBoxDetails a::after {
  position: absolute;
  content: "";
  transition: 0.3s;
  width: 100%;
  height: 5px;
  background: var(--secondaryColor);
  z-index: -1;
  top: -5px;
  left: 0;
  opacity: 0;
}
#blogs .blogsMain .blogBtnArea {
  border-top: 1px solid #ddd;
  padding-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  #blogs .blogsMain .blogBtnArea {
    padding-top: 0px;
  }
}
#blogs .blogsMain .blogBtnArea a {
  text-decoration: none;
  background: black;
  color: white;
  padding: 20px 50px;
  margin-top: 40px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
#blogs .blogsMain .blogBtnArea a:hover::after {
  transition: 0.3s;
  top: 0px;
  opacity: 1;
}
#blogs .blogsMain .blogBtnArea a::after {
  position: absolute;
  content: "";
  transition: 0.3s;
  width: 100%;
  height: 5px;
  background: var(--secondaryColor);
  z-index: -1;
  top: -5px;
  left: 0;
  opacity: 0;
}

#gallery {
  width: 100%;
  position: relative;
  z-index: 0;
}
#gallery .galleryContainer {
  position: absolute;
  height: 100%;
  top: 0;
  width: 100%;
  left: 0%;
  z-index: 10;
}
#gallery .galleryContainer .container {
  height: 100%;
  border-inline: 1px solid rgba(255, 255, 255, 0.392);
}
#gallery .galleryList {
  width: 100%;
}
#gallery .galleryList .galleryBox {
  width: 100%;
  height: 65vh;
  background: #eee;
  overflow: hidden;
}
@media (max-width: 1024px) {
  #gallery .galleryList .galleryBox {
    height: 300px;
  }
}
#gallery .galleryList .galleryBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#gallery .galleryList .owl-nav, #gallery .galleryList .owl-dots {
  display: none;
}

footer {
  width: 100%;
  background: black;
}
footer .container {
  border-inline: 1px solid rgba(255, 255, 255, 0.392);
}
footer .footerMain {
  width: 100%;
  padding: 100px 0px 50px 0px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  footer .footerMain {
    padding: 50px 0px 50px 0px;
  }
}
footer .footerMain .footerBody {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 0px 50px 50px 50px;
}
@media (max-width: 768px) {
  footer .footerMain .footerBody {
    padding: 0px 20px 50px 20px;
  }
}
@media (max-width: 480px) {
  footer .footerMain .footerBody {
    padding: 0px 10px 50px 10px;
  }
}
footer .footerMain .footerBody .footerBodyCol1 {
  flex: 0 0 65%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  footer .footerMain .footerBody .footerBodyCol1 {
    flex: 100%;
  }
}
footer .footerMain .footerBody .footerBodyCol1 h2 {
  color: white;
  font-size: 5em;
  font-family: myFont4;
}
@media (max-width: 1800px) {
  footer .footerMain .footerBody .footerBodyCol1 h2 {
    font-size: 3em;
  }
}
@media (max-width: 1024px) {
  footer .footerMain .footerBody .footerBodyCol1 h2 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  footer .footerMain .footerBody .footerBodyCol1 h2 {
    font-size: 2em;
  }
}
footer .footerMain .footerBody .footerBodyCol1 p {
  color: white;
  font-family: myFont3;
  margin-top: 20px;
  line-height: 1.8;
  width: 80%;
  font-size: 14px;
  opacity: 0.7;
}
@media (max-width: 1800px) {
  footer .footerMain .footerBody .footerBodyCol1 p {
    font-size: 12px;
    width: 100%;
  }
}
footer .footerMain .footerBody .footerBodyCol1 .footerSocialLinks {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}
footer .footerMain .footerBody .footerBodyCol1 .footerSocialLinks span {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.519);
}
@media (max-width: 1800px) {
  footer .footerMain .footerBody .footerBodyCol1 .footerSocialLinks span {
    font-size: 14px;
  }
}
footer .footerMain .footerBody .footerBodyCol1 .footerSocialLinks .footerSocialLinksList {
  width: 100%;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 480px) {
  footer .footerMain .footerBody .footerBodyCol1 .footerSocialLinks .footerSocialLinksList {
    gap: 10px;
  }
}
footer .footerMain .footerBody .footerBodyCol1 .footerSocialLinks .footerSocialLinksList a {
  text-decoration: none;
  color: white;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border: 1px solid #8e8d8d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
footer .footerMain .footerBody .footerBodyCol1 .footerSocialLinks .footerSocialLinksList a:hover {
  transition: 0.3s;
  border-color: var(--secondaryColor);
}
footer .footerMain .footerBody .footerBodyCol2 {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 1024px) {
  footer .footerMain .footerBody .footerBodyCol2 {
    flex: 100%;
    margin-top: 50px;
  }
}
footer .footerMain .footerBody .footerBodyCol2 .footeerAddressBox {
  width: 100%;
  display: flex;
  flex-direction: column;
}
footer .footerMain .footerBody .footerBodyCol2 .footeerAddressBox span {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.519);
}
@media (max-width: 1800px) {
  footer .footerMain .footerBody .footerBodyCol2 .footeerAddressBox span {
    font-size: 14px;
  }
}
footer .footerMain .footerBody .footerBodyCol2 .footeerAddressBox p {
  color: white;
  margin-top: 10px;
  line-height: 1.7;
  font-size: 22px;
}
@media (max-width: 1800px) {
  footer .footerMain .footerBody .footerBodyCol2 .footeerAddressBox p {
    font-size: 18px;
  }
}
footer .footerMain .footerBody .footerBodyCol2 .footeerAddressBox a {
  text-decoration: none;
  color: white;
  margin-top: 10px;
  line-height: 1.7;
  font-size: 22px;
  transition: 0.3s;
}
@media (max-width: 1800px) {
  footer .footerMain .footerBody .footerBodyCol2 .footeerAddressBox a {
    font-size: 18px;
  }
}
footer .footerMain .footerBody .footerBodyCol2 .footeerAddressBox a:hover {
  transition: 0.3s;
  color: var(--secondaryColor);
}
footer .footerMain .footerLink {
  border-top: 1px solid rgba(255, 255, 255, 0.392);
  width: 100%;
  padding-top: 50px;
}
footer .footerMain .footerLink ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 480px) {
  footer .footerMain .footerLink ul {
    gap: 0;
  }
}
footer .footerMain .footerLink ul li {
  list-style: none;
}
@media (max-width: 768px) {
  footer .footerMain .footerLink ul li {
    flex: 0 0 30%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 480px) {
  footer .footerMain .footerLink ul li {
    flex: 0 0 48%;
  }
}
footer .footerMain .footerLink ul li a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  padding: 14px 30px;
  display: flex;
  transition: 0.3s;
  font-family: myFont3;
}
footer .footerMain .footerLink ul li a:hover {
  transition: 0.3s;
  background: #272727;
}
footer .footerMain .footerStrip {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.392);
  padding: 50px 50px 0px 50px;
}
@media (max-width: 768px) {
  footer .footerMain .footerStrip {
    padding: 50px 10px 0px 10px;
  }
}
@media (max-width: 480px) {
  footer .footerMain .footerStrip {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
footer .footerMain .footerStrip p {
  font-size: 16px;
  color: white;
  font-family: myFont3;
}
@media (max-width: 1800px) {
  footer .footerMain .footerStrip p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  footer .footerMain .footerStrip p {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  footer .footerMain .footerStrip p {
    text-align: left;
    line-height: 1.5;
  }
}
footer .footerMain .footerStrip .desined {
  font-size: 16px;
  display: flex;
  align-items: center;
  color: white;
  font-family: myFont3;
}
@media (max-width: 1800px) {
  footer .footerMain .footerStrip .desined {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  footer .footerMain .footerStrip .desined {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  footer .footerMain .footerStrip .desined {
    margin-top: 10px;
    justify-content: flex-start;
  }
}
footer .footerMain .footerStrip .desined i {
  color: white;
  margin: 0px 10px;
  font-size: 16px;
}
footer .footerMain .footerStrip .desined a {
  text-decoration: none;
}
footer .footerMain .footerStrip .desined a .footerStripLogo {
  width: 60px;
}
footer .footerMain .footerStrip .desined a .footerStripLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(1);
}

#aboutBanner {
  width: 100%;
  background: url(../images/aboutBannerElement.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
  position: relative;
  z-index: 0;
}
#aboutBanner::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: rgba(205, 69, 69, 0.9);
}
#aboutBanner .container {
  border-inline: 1px solid rgba(255, 255, 255, 0.392);
}
#aboutBanner .aboutBannerMain {
  width: 100%;
  padding: 200px 50px 100px 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  #aboutBanner .aboutBannerMain {
    padding: 150px 20px 50px 20px;
  }
}
@media (max-width: 480px) {
  #aboutBanner .aboutBannerMain {
    padding: 150px 10px 50px 10px;
  }
}
#aboutBanner .aboutBannerMain .aboutBannerDetails {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#aboutBanner .aboutBannerMain .aboutBannerDetails h1 {
  font-size: 5em;
  color: white;
  font-family: myFont4;
}
@media (max-width: 1800px) {
  #aboutBanner .aboutBannerMain .aboutBannerDetails h1 {
    font-size: 3em;
  }
}
@media (max-width: 768px) {
  #aboutBanner .aboutBannerMain .aboutBannerDetails h1 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #aboutBanner .aboutBannerMain .aboutBannerDetails h1 {
    font-size: 1.7em;
  }
}
#aboutBanner .aboutBannerMain .aboutBannerDetails p {
  color: white;
  font-family: myFont3;
  line-height: 1.8;
  margin-top: 30px;
  font-size: 18px;
}
@media (max-width: 1800px) {
  #aboutBanner .aboutBannerMain .aboutBannerDetails p {
    font-size: 16px;
  }
}
#aboutBanner .aboutBannerMain .aboutBannerCore {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 80px;
  row-gap: 40px;
}
#aboutBanner .aboutBannerMain .aboutBannerCore .aboutBannerCoreBox {
  flex: 0 0 32%;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex-direction: column;
  position: relative;
  z-index: 0;
}
@media (max-width: 1024px) {
  #aboutBanner .aboutBannerMain .aboutBannerCore .aboutBannerCoreBox {
    flex: 0 0 48%;
  }
}
@media (max-width: 480px) {
  #aboutBanner .aboutBannerMain .aboutBannerCore .aboutBannerCoreBox {
    flex: 100%;
  }
}
#aboutBanner .aboutBannerMain .aboutBannerCore .aboutBannerCoreBox::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.05);
  z-index: -1;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
#aboutBanner .aboutBannerMain .aboutBannerCore .aboutBannerCoreBox .aboutBannerCoreBoxIcon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 10px;
  padding: 10px;
}
#aboutBanner .aboutBannerMain .aboutBannerCore .aboutBannerCoreBox .aboutBannerCoreBoxIcon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#aboutBanner .aboutBannerMain .aboutBannerCore .aboutBannerCoreBox .aboutBannerCoreBoxDetails {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
#aboutBanner .aboutBannerMain .aboutBannerCore .aboutBannerCoreBox .aboutBannerCoreBoxDetails h3 {
  font-size: 22px;
  color: white;
  font-family: myFont5;
}
@media (max-width: 1800px) {
  #aboutBanner .aboutBannerMain .aboutBannerCore .aboutBannerCoreBox .aboutBannerCoreBoxDetails h3 {
    font-size: 20px;
  }
}
#aboutBanner .aboutBannerMain .aboutBannerCore .aboutBannerCoreBox .aboutBannerCoreBoxDetails p {
  color: white;
  font-family: myFont3;
  line-height: 1.8;
  margin-top: 20px;
  font-size: 14px;
}

#logoTrasmision{
	width: 100%;
	background: #ff000008;
}
#logoTrasmision .logoTrasmisionMain{
  width: 100%;
  padding: 100px 50px;
  display: flex;
	flex-direction: column;
}
@media(max-width:768px){
	#logoTrasmision .logoTrasmisionMain{
  		padding: 50px 20px;
	}
}
@media(max-width:480px){
	#logoTrasmision .logoTrasmisionMain{
  		padding: 50px 10px;
	}
}
#logoTrasmision .logoTrasmisionMain h4 {
  font-size: 5em;
	text-align: center;
  font-family: myFont4;
}
@media (max-width: 1800px) {
#logoTrasmision .logoTrasmisionMain h4 {
    font-size: 3em;
  }
}
@media (max-width: 768px) {
#logoTrasmision .logoTrasmisionMain h4 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
#logoTrasmision .logoTrasmisionMain h4 {
    font-size: 1.7em;
  }
}
#logoTrasmision .logoTrasmisionMain .logoTrasmisionMainList{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 50px;
	margin-top: 50px;
}
@media(max-width:480px){
	#logoTrasmision .logoTrasmisionMain .logoTrasmisionMainList {
		flex-wrap: wrap;
	}
}
#logoTrasmision .logoTrasmisionMain .logoTrasmisionMainList .logoTrasmisionMainListBox{
	width: 200px;
	display :flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
@media(max-width:768px){
	#logoTrasmision .logoTrasmisionMain .logoTrasmisionMainList .logoTrasmisionMainListBox{
		width: 150px;
	}
}
@media(max-width:480px){
	#logoTrasmision .logoTrasmisionMain .logoTrasmisionMainList .logoTrasmisionMainListBox{
		width: 100%;
		flex-direction: column;
	}
}
#logoTrasmision .logoTrasmisionMain .logoTrasmisionMainList .logoTrasmisionMainListBox img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
#logoTrasmision .logoTrasmisionMain .logoTrasmisionMainList .logoTrasmisionMainListBox .line1{
	width: 20px;
	height: 20px;
	border-top: 2px solid #95000633;
	border-right: 2px solid #95000633;
	transform: rotate(45deg);
}
@media(max-width:768px){
	#logoTrasmision .logoTrasmisionMain .logoTrasmisionMainList .logoTrasmisionMainListBox .line1{
		width: 10px;
		height: 10px;
	}
}
@media(max-width:480px){
	#logoTrasmision .logoTrasmisionMain .logoTrasmisionMainList .logoTrasmisionMainListBox .line1{
		border-top: none;
		border-right: 2px solid #95000633;
		border-bottom: 2px solid #95000633;
	}
}
#logoTrasmision .logoTrasmisionMain .logoTrasmisionMainList .logoTrasmisionMainListBox .line2{
	width: 30px;
	height: 30px;
	border-top: 3px solid #95000666;
	border-right: 3px solid #95000666;
	transform: rotate(45deg);
}
@media(max-width:768px){
	#logoTrasmision .logoTrasmisionMain .logoTrasmisionMainList .logoTrasmisionMainListBox .line2{
		width: 20px;
		height: 20px;
	}
}
@media(max-width:480px){
	#logoTrasmision .logoTrasmisionMain .logoTrasmisionMainList .logoTrasmisionMainListBox .line2{
		border-top: none;
		border-right: 2px solid #95000666;
		border-bottom: 2px solid #95000666;
	}
}
#logoTrasmision .logoTrasmisionMain .logoTrasmisionMainList .logoTrasmisionMainListBox .line3{
	width: 40px;
	height: 40px;
	border-top: 4px solid #950006b5;
	border-right: 4px solid #950006b5;
	transform: rotate(45deg);
}
@media(max-width:768px){
	#logoTrasmision .logoTrasmisionMain .logoTrasmisionMainList .logoTrasmisionMainListBox .line3{
		width: 30px;
		height: 30px;
	}
}
@media(max-width:480px){
	#logoTrasmision .logoTrasmisionMain .logoTrasmisionMainList .logoTrasmisionMainListBox .line3{
		border-top: none;
		border-right: 2px solid #950006b5;
		border-bottom: 2px solid #950006b5;
	}
}
#logoTrasmision .logoTrasmisionMain .logoTrasmisionMainList .logoTrasmisionMainListBox .line4{
	width: 50px;
	height: 50px;
	border-top: 5px solid var(--primaryColor);
	border-right: 5px solid var(--primaryColor);
	transform: rotate(45deg);
}
@media(max-width:768px){
	#logoTrasmision .logoTrasmisionMain .logoTrasmisionMainList .logoTrasmisionMainListBox .line4{
		width: 40px;
		height: 40px;
	}
}
@media(max-width:480px){
	#logoTrasmision .logoTrasmisionMain .logoTrasmisionMainList .logoTrasmisionMainListBox .line4{
		border-top: none;
		border-right: 2px solid var(--primaryColor);
		border-bottom: 2px solid var(--primaryColor);
	}
}

#visionMission {
  width: 100%;
}
#visionMission .visionMissionMain {
  width: 100%;
  padding: 100px 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  #visionMission .visionMissionMain {
    padding: 50px 10px;
  }
}
#visionMission .visionMissionMain .visionMissionDetails {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  padding: 150px 0px;
}
@media (max-width: 1800px) {
  #visionMission .visionMissionMain .visionMissionDetails {
    padding: 100px 0px;
  }
}
@media (max-width: 768px) {
  #visionMission .visionMissionMain .visionMissionDetails {
    flex: 100%;
    order: 2;
    padding: 0;
    margin-top: 30px;
  }
}
#visionMission .visionMissionMain .visionMissionDetails h3 {
  font-size: 18px;
  color: var(--primaryColor);
  font-family: myFont3;
}
#visionMission .visionMissionMain .visionMissionDetails h2 {
  font-size: 2em;
  line-height: 1.5;
  font-family: myFont4;
  margin-top: 10px;
}
@media (max-width: 1800px) {
  #visionMission .visionMissionMain .visionMissionDetails h2 {
    font-size: 28px;
  }
}
#visionMission .visionMissionMain .visionMissionDetails p {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 20px;
  color: var(--secondaryTextColor);
}
#visionMission .visionMissionMain .visionMissionThumbnail {
  flex: 0 0 45%;
  background: #eee;
  overflow: hidden;
}
@media (max-width: 768px) {
  #visionMission .visionMissionMain .visionMissionThumbnail {
    flex: 100%;
    order: 1;
  }
}
#visionMission .visionMissionMain .visionMissionThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#mdMessage {
  width: 100%;
  border-top: 1px solid #ddd;
}
#mdMessage .mdMessageMain {
  width: 100%;
  padding: 100px 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 100px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  #mdMessage .mdMessageMain {
    padding: 50px 10px;
  }
}
@media (max-width: 1024px) {
  #mdMessage .mdMessageMain {
    gap: inherit;
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  #mdMessage .mdMessageMain {
    align-items: center;
    justify-content: center;
  }
}
#mdMessage .mdMessageMain .mdMessageThumbnail {
  width: 300px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  #mdMessage .mdMessageMain .mdMessageThumbnail {
    width: 250px;
  }
}
#mdMessage .mdMessageMain .mdMessageThumbnail .mdMessageMDThumbnail {
  width: 100%;
  height: 340px;
  position: relative;
  z-index: 0;
}
@media (max-width: 1024px) {
  #mdMessage .mdMessageMain .mdMessageThumbnail .mdMessageMDThumbnail {
    height: 300px;
  }
}
#mdMessage .mdMessageMain .mdMessageThumbnail .mdMessageMDThumbnail::after {
  position: absolute;
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  top: 0;
  left: 0;
  border: 10px solid rgba(255, 255, 255, 0.3490196078);
}
#mdMessage .mdMessageMain .mdMessageThumbnail .mdMessageMDThumbnail .quoght {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: absolute;
  z-index: 1;
  top: -50px;
  right: -50px;
}
#mdMessage .mdMessageMain .mdMessageThumbnail .mdMessageMDThumbnail .quoght span {
  font-size: 100px;
  color: var(--secondaryColor);
}
#mdMessage .mdMessageMain .mdMessageThumbnail .mdMessageMDThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#mdMessage .mdMessageMain .mdMessageThumbnail h2 {
  font-size: 1.7em;
  margin-top: 20px;
  text-align: center;
}
@media (max-width: 1800px) {
  #mdMessage .mdMessageMain .mdMessageThumbnail h2 {
    font-size: 22px;
  }
}
#mdMessage .mdMessageMain .mdMessageThumbnail h6 {
  font-size: 16px;
  margin-top: 10px;
  font-family: myFont3;
  text-align: center;
  color: var(--secondaryTextColor);
}
#mdMessage .mdMessageMain .mdMessageDetails {
  width: 50%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1800px) {
  #mdMessage .mdMessageMain .mdMessageDetails {
    width: 55%;
  }
}
@media (max-width: 1024px) {
  #mdMessage .mdMessageMain .mdMessageDetails {
    width: calc(100% - 300px);
  }
}
@media (max-width: 768px) {
  #mdMessage .mdMessageMain .mdMessageDetails {
    width: 100%;
    margin-top: 50px;
	  justify-content: center;
	  align-items: center;
  }
}
#mdMessage .mdMessageMain .mdMessageDetails h3 {
  font-size: 2em;
  line-height: 1.5;
  font-family: myFont4;
}
@media (max-width: 1800px) {
  #mdMessage .mdMessageMain .mdMessageDetails h3 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  #mdMessage .mdMessageMain .mdMessageDetails h3 {
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  #mdMessage .mdMessageMain .mdMessageDetails h3 {
    text-align: center;
  }
}
@media (max-width: 480px) {
  #mdMessage .mdMessageMain .mdMessageDetails h3 {
    font-size: 22px;
	  width: 90%;
  }
}
#mdMessage .mdMessageMain .mdMessageDetails p {
  font-size: 18px;
  line-height: 1.8;
  margin-top: 20px;
  font-family: myFont3;
  color: var(--secondaryTextColor);
}
@media (max-width: 1800px) {
  #mdMessage .mdMessageMain .mdMessageDetails p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #mdMessage .mdMessageMain .mdMessageDetails p {
    text-align: center;
  }
}

#teamMembers {
  width: 100%;
  border-top: 1px solid #ddd;
}
#teamMembers .teamMembersHead {
  width: 100%;
  padding: 100px 50px 0px 50px;
}
@media (max-width: 768px) {
  #teamMembers .teamMembersHead {
    padding: 50px 10px;
  }
}
#teamMembers .teamMembersHead h2 {
  font-size: 4em;
  line-height: 1.5;
  font-family: myFont4;
  text-align: center;
}
@media (max-width: 1800px) {
  #teamMembers .teamMembersHead h2 {
    font-size: 3em;
  }
}
@media (max-width: 768px) {
  #teamMembers .teamMembersHead h2 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #teamMembers .teamMembersHead h2 {
    font-size: 1.7em;
  }
}
#teamMembers .teamMembersMain {
  width: 100%;
  border-top: 1px solid #ddd;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  #teamMembers .teamMembersMain {
    margin-top: 0;
  }
}
#teamMembers .teamMembersMain .teamMembersBox {
  width: 25%;
  display: flex;
  flex-direction: column;
  padding: 50px;
  border-left: 1px solid #ddd;
}
#teamMembers .teamMembersMain .teamMembersBox:nth-of-type(1) {
  border-left: 0;
}
@media (max-width: 1800px) {
  #teamMembers .teamMembersMain .teamMembersBox {
    padding: 30px;
  }
}
@media (max-width: 1024px) {
  #teamMembers .teamMembersMain .teamMembersBox {
    width: 50%;
    padding: 50px;
  }
  #teamMembers .teamMembersMain .teamMembersBox:nth-of-type(3) {
    border-left: none;
    border-top: 1px solid #ddd;
  }
  #teamMembers .teamMembersMain .teamMembersBox:nth-of-type(4) {
    border-top: 1px solid #ddd;
  }
}
@media (max-width: 768px) {
  #teamMembers .teamMembersMain .teamMembersBox {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  #teamMembers .teamMembersMain .teamMembersBox {
    width: 100%;
  }
  #teamMembers .teamMembersMain .teamMembersBox:nth-of-type(2) {
    border-left: none;
    border-top: 1px solid #ddd;
  }
  #teamMembers .teamMembersMain .teamMembersBox:nth-of-type(4) {
    border-left: none;
  }
}
#teamMembers .teamMembersMain .teamMembersBox .teamMembersBoxThumbnail {
  width: 100%;
  height: 350px;
  background: #eee;
}
@media (max-width: 1800px) {
  #teamMembers .teamMembersMain .teamMembersBox .teamMembersBoxThumbnail {
    height: 250px;
  }
}
@media (max-width: 1024px) {
  #teamMembers .teamMembersMain .teamMembersBox .teamMembersBoxThumbnail {
    height: 350px;
  }
}
#teamMembers .teamMembersMain .teamMembersBox .teamMembersBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#teamMembers .teamMembersMain .teamMembersBox .teamMembersBoxDetails {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
#teamMembers .teamMembersMain .teamMembersBox .teamMembersBoxDetails h3 {
  font-size: 20px;
  text-align: center;
}
#teamMembers .teamMembersMain .teamMembersBox .teamMembersBoxDetails p {
  text-align: center;
  font-size: 16px;
  margin-top: 10px;
  color: var(--secondaryTextColor);
  font-family: myFont4;
}
@media (max-width: 1800px) {
  #teamMembers .teamMembersMain .teamMembersBox .teamMembersBoxDetails p {
    font-size: 14px;
  }
}

#rera {
  width: 100%;
}
#rera .reraMain {
  width: 100%;
  padding: 100px 100px 100px 100px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1800px) {
  #rera .reraMain {
    padding: 100px 50px;
  }
}
@media (max-width: 768px) {
  #rera .reraMain {
    padding: 50px 10px;
  }
}
#rera .reraMain .reraLogo {
  width: 250px;
  margin-left: auto;
}
@media (max-width: 1800px) {
  #rera .reraMain .reraLogo {
    width: 220px;
  }
}
@media (max-width: 768px) {
  #rera .reraMain .reraLogo {
    width: 200px;
  }
}
#rera .reraMain .reraLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#rera .reraMain h2 {
  font-size: 4em;
  line-height: 1.5;
  font-family: myFont4;
}
@media (max-width: 1800px) {
  #rera .reraMain h2 {
    font-size: 3em;
  }
}
@media (max-width: 768px) {
  #rera .reraMain h2 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #rera .reraMain h2 {
    font-size: 1.7em;
  }
}
#rera .reraMain h5{
	font-size: 20px;
	margin-top :20px;
  	font-family: myFont4;
	color :#aaa;
}
#rera .reraMain p {
  font-size: 18px;
  line-height: 1.8;
  margin-top: 20px;
  font-family: myFont3;
  color: var(--secondaryTextColor);
}
#rera .reraMain p:nth-of-type(1) {
  margin-top: 50px;
}
@media (max-width: 1800px) {
  #rera .reraMain p {
    font-size: 16px;
  }
}

#projectPageHead {
  width: 100%;
  background: url(../images/aboutBannerElement.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
  position: relative;
  z-index: 0;
}
#projectPageHead::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.72);
}
#projectPageHead .container {
  border-inline: 1px solid rgba(255, 255, 255, 0.392);
}
#projectPageHead .projectPageHeadMain {
  width: 100%;
  padding: 200px 50px 100px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  #projectPageHead .projectPageHeadMain {
    padding: 150px 20px 50px 20px;
  }
}
#projectPageHead .projectPageHeadMain h1 {
  font-size: 5em;
  text-align: center;
  color: white;
  font-family: myFont4;
}
@media (max-width: 1800px) {
  #projectPageHead .projectPageHeadMain h1 {
    font-size: 3em;
  }
}
@media (max-width: 768px) {
  #projectPageHead .projectPageHeadMain h1 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #projectPageHead .projectPageHeadMain h1 {
    font-size: 1.7em;
  }
}

#projectPagelist {
  width: 100%;
}
#projectPagelist .projectPagelistMain {
  width: 100%;
  padding: 100px 50px;
}
@media (max-width: 1024px) {
  #projectPagelist .projectPagelistMain {
    padding-bottom: 50px;
  }
}
@media (max-width: 768px) {
  #projectPagelist .projectPagelistMain {
    padding: 50px 10px 0px 10px;
  }
}
#projectPagelist .projectPagelistMain .projectTab {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 480px) {
  #projectPagelist .projectPagelistMain .projectTab {
    justify-content: space-between;
    gap: 0;
  }
}
#projectPagelist .projectPagelistMain .projectTab .projectTabBtn {
  padding: 18px 50px;
  border: 1px solid #ddd;
  font-size: 28px;
  font-family: myFont4;
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 1800px) {
  #projectPagelist .projectPagelistMain .projectTab .projectTabBtn {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  #projectPagelist .projectPagelistMain .projectTab .projectTabBtn {
    flex: 0 0 48%;
    padding: 10px;
    font-size: 16px;
    text-align: center;
  }
}
#projectPagelist .projectPagelistMain .projectTab .projectTabBtn:hover {
  transition: 0.3s;
  background: var(--secondaryColor);
  border: 1px solid var(--secondaryColor);
  color: white;
}
#projectPagelist .projectPagelistMain .projectTab .projectTabBtnActive {
  color: white;
  background: var(--primaryColor);
  border: 1px solid var(--primaryColor);
}
#projectPagelist .projectPagelistMain .projectWorkList {
  width: 100%;
  border-top: 1px solid #ddd;
  margin-top: 50px;
}
#projectPagelist .projectPagelistMain .projectWorkList .projectWorkBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 50px;
  margin-top: 50px;
  position: relative;
}
#projectPagelist .projectPagelistMain .projectWorkList .projectWorkBox::after {
  content: "";
  height: 0;
  width: 32%;
}
#projectPagelist .projectPagelistMain .projectWorkList .projectWorkBox .projetListBox {
  flex: 0 0 32%;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  #projectPagelist .projectPagelistMain .projectWorkList .projectWorkBox .projetListBox {
    flex: 0 0 48%;
  }
}
@media (max-width: 480px) {
  #projectPagelist .projectPagelistMain .projectWorkList .projectWorkBox .projetListBox {
    flex: 100%;
  }
}
#projectPagelist .projectPagelistMain .projectWorkList .projectWorkBox .projetListBox:hover .projetListBoxThumbnail img {
  transform: scale(1.05);
  transition: 0.5s ease;
}
#projectPagelist .projectPagelistMain .projectWorkList .projectWorkBox .projetListBox .projetListBoxThumbnail {
  width: 100%;
  height: 400px;
  background: #eee;
  overflow: hidden;
}
@media (max-width: 1800px) {
  #projectPagelist .projectPagelistMain .projectWorkList .projectWorkBox .projetListBox .projetListBoxThumbnail {
    height: 300px;
  }
}
@media (max-width: 768px) {
  #projectPagelist .projectPagelistMain .projectWorkList .projectWorkBox .projetListBox .projetListBoxThumbnail {
    height: 250px;
  }
}
#projectPagelist .projectPagelistMain .projectWorkList .projectWorkBox .projetListBox .projetListBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
#projectPagelist .projectPagelistMain .projectWorkList .projectWorkBox .projetListBox .projetListBoxDetails {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
@media (max-width: 480px) {
  #projectPagelist .projectPagelistMain .projectWorkList .projectWorkBox .projetListBox .projetListBoxDetails {
    padding: 0px 20px;
  }
}
#projectPagelist .projectPagelistMain .projectWorkList .projectWorkBox .projetListBox .projetListBoxDetails h3 {
  font-size: 22px;
  font-family: myFont4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  max-height: 30px;
  color: black;
}
#projectPagelist .projectPagelistMain .projectWorkList .projectWorkBox .projetListBox .projetListBoxDetails span {
  font-size: 16px;
  margin-top: 10px;
  opacity: 0.5;
  color: black;
}

#innerProjectBanner {
  width: 100%;
}
#innerProjectBanner .innerProjectBannerMain {
  width: 100%;
  padding: 200px 50px 100px 50px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1800px) {
  #innerProjectBanner .innerProjectBannerMain {
    padding-bottom: 50px;
  }
}
@media (max-width: 768px) {
  #innerProjectBanner .innerProjectBannerMain {
    padding: 150px 20px 50px 20px;
  }
}
@media (max-width: 480px) {
  #innerProjectBanner .innerProjectBannerMain {
    padding: 150px 10px 50px 10px;
  }
}
#innerProjectBanner .innerProjectBannerMain h1 {
  font-size: 5em;
  text-align: center;
  font-family: myFont4;
	display: none;
}
@media (max-width: 1800px) {
  #innerProjectBanner .innerProjectBannerMain h1 {
    font-size: 3em;
  }
}
@media (max-width: 768px) {
  #innerProjectBanner .innerProjectBannerMain h1 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #innerProjectBanner .innerProjectBannerMain h1 {
    font-size: 1.7em;
  }
}
#innerProjectBanner .innerProjectBannerMain .innerProjectBannerLogo{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
#innerProjectBanner .innerProjectBannerMain .innerProjectBannerLogo .innerProjectBannerLogoBox{
	width: 300px;
}
#innerProjectBanner .innerProjectBannerMain .innerProjectBannerLogo .innerProjectBannerLogoBox img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

#innerProjectDetails {
  width: 100%;
}
#innerProjectDetails .innerProjectDetailsMain {
  padding: 0px 50px 100px 50px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  #innerProjectDetails .innerProjectDetailsMain {
    padding: 0px 20px 50px 20px;
  }
}
@media (max-width: 480px) {
  #innerProjectDetails .innerProjectDetailsMain {
    padding: 0px 10px 50px 10px;
  }
}
#innerProjectDetails .innerProjectDetailsMain .innerProjetHeadSec{
	width: 100%;
	display :flex;
	flex-wrap: wrap;
	gap :20px;
	align-items :center;
}
@media (max-width: 480px) {
	#innerProjectDetails .innerProjectDetailsMain .innerProjetHeadSec {
		gap :10px;
	}	
}
#innerProjectDetails .innerProjectDetailsMain .innerProjetHeadSec .enqBtn{
	margin-left: auto;
}
@media (max-width: 480px) {
	#innerProjectDetails .innerProjectDetailsMain .innerProjetHeadSec .enqBtn{
		width :100%;
	}	
}
#innerProjectDetails .innerProjectDetailsMain .innerProjetHeadSec .enqBtn a{
  background: var(--primaryColor);
  text-decoration: none;
  display: flex;
  text-align: center;
  color: white;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  padding: 12px 30px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
@media (max-width: 1800px) {
	#innerProjectDetails .innerProjectDetailsMain .innerProjetHeadSec .enqBtn a {
		font-size: 14px;
	}
}
#innerProjectDetails .innerProjectDetailsMain .innerProjetHeadSec .enqBtn a:hover::after {
  transition: 0.3s;
  top: 0px;
  opacity: 1;
}
#innerProjectDetails .innerProjectDetailsMain .innerProjetHeadSec .enqBtn a::after {
  position: absolute;
  content: "";
  transition: 0.3s;
  width: 100%;
  height: 5px;
  background: var(--secondaryColor);
  z-index: -1;
  top: -5px;
  left: 0;
  opacity: 0;
}
#innerProjectDetails .innerProjectDetailsMain .innerProjetHeadSec .reraQrSection{
	width: 150px;
}
@media (max-width: 480px) {
	#innerProjectDetails .innerProjectDetailsMain .innerProjetHeadSec .reraQrSection {
		width: 75px;
	}	
}
#innerProjectDetails .innerProjectDetailsMain .innerProjetHeadSec .reraQrSection img{
	width: 100%;
	height :100%;
	object-fit: contain;
}
#innerProjectDetails .innerProjectDetailsMain .reraSection{
	display :flex;
	flex-direction :column;
	justify-content: center;
}
#innerProjectDetails .innerProjectDetailsMain .reraSection h6{
	font-size :18px;
}
#innerProjectDetails .innerProjectDetailsMain .reraSection h5{
	font-size: 16px;
	font-family: myFont3;
	margin-top :10px;
}
#innerProjectDetails .innerProjectDetailsMain .reraSection a{
	font-size: 13px;
	text-decoration: none;
	color: black;
	margin-top :5px;
}
#innerProjectDetails .innerProjectDetailsMain .innerProjectDetailsThumbnailBody{
	position: relative;
	width :100%;
	margin-top :20px;
}
#innerProjectDetails .innerProjectDetailsMain .innerProjectDetailsThumbnailBody .innerProjectDetailsThumbnail {
  width: 100%;
}
#innerProjectDetails .innerProjectDetailsMain .innerProjectDetailsThumbnailBody .innerProjectDetailsThumbnail .innerProjectDetailsThumbnailBox{
  height: 700px;
  background: #eee;
  overflow: hidden;
  width: 100%;
	display :flex;
}
@media (max-width: 1800px) {
  #innerProjectDetails .innerProjectDetailsMain .innerProjectDetailsThumbnailBody .innerProjectDetailsThumbnail .innerProjectDetailsThumbnailBox {
    height: 500px;
  }
}
@media (max-width: 1024px) {
  #innerProjectDetails .innerProjectDetailsMain .innerProjectDetailsThumbnailBody .innerProjectDetailsThumbnail .innerProjectDetailsThumbnailBox {
    height: 450px;
  }
}
@media (max-width: 768px) {
  #innerProjectDetails .innerProjectDetailsMain .innerProjectDetailsThumbnailBody .innerProjectDetailsThumbnail .innerProjectDetailsThumbnailBox {
    height: 400px;
  }
}
@media (max-width: 480px) {
  #innerProjectDetails .innerProjectDetailsMain .innerProjectDetailsThumbnailBody .innerProjectDetailsThumbnail .innerProjectDetailsThumbnailBox {
    height: 250px;
  }
}
  #innerProjectDetails .innerProjectDetailsMain .innerProjectDetailsThumbnailBody .innerProjectDetailsThumbnail .innerProjectDetailsThumbnailBox img{
	width: 100%;
	  height: 100%;
	  object-fit: cover;
}

  #innerProjectDetails .innerProjectDetailsMain .innerProjectDetailsThumbnailBody  .owl-dots {
  display: none;
}
  #innerProjectDetails .innerProjectDetailsMain .innerProjectDetailsThumbnailBody .innerProjectDetailsThumbnailControls {
  position: absolute;
  width: 100%;
  top: 40%;
  left: 0;
}
@media(max-width: 480px){
  #innerProjectDetails .innerProjectDetailsMain .innerProjectDetailsThumbnailBody .innerProjectDetailsThumbnailControls {
		top: 50%;
	}
}
  #innerProjectDetails .innerProjectDetailsMain .innerProjectDetailsThumbnailBody .innerProjectDetailsThumbnailControls .custom-nav3 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
  #innerProjectDetails .innerProjectDetailsMain .innerProjectDetailsThumbnailBody .innerProjectDetailsThumbnailControls .custom-nav3 button {
  z-index: 2;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  border: none;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.0862745098);
  transition: 0.3s;
}
  #innerProjectDetails .innerProjectDetailsMain .innerProjectDetailsThumbnailBody .innerProjectDetailsThumbnailControls .custom-nav3 button:hover {
  background: var(--secondaryColor);
  transition: 0.3s;
  color: white;
}
@media (max-width: 480px) {
  #innerProjectDetails .innerProjectDetailsMain .innerProjectDetailsThumbnailBody .innerProjectDetailsThumbnailControls .custom-nav3 button {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}




#innerProjectDetails .innerProjectDetailsMain .innerProjectDetailsList {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}
@media (max-width: 1800px) {
  #innerProjectDetails .innerProjectDetailsMain .innerProjectDetailsList {
    margin-top: 30px;
  }
}
#innerProjectDetails .innerProjectDetailsMain .innerProjectDetailsList p {
  font-family: myFont3 !important;
  line-height: 1.8;
  margin-top: 30px;
  font-size: 18px;
}
@media (max-width: 1800px) {
  #innerProjectDetails .innerProjectDetailsMain .innerProjectDetailsList p {
    font-size: 16px;
  }
}
#innerProjectDetails .innerProjectDetailsMain .innerProjectDetailsList p span{
  font-family: myFont3 !important;
}
#innerProjectDetails .innerProjectDetailsMain .broucherDownload{
	width: 100%;
	margin-top: 20px;
	display: flex;
}
#innerProjectDetails .innerProjectDetailsMain .broucherDownload .broucherDownloadBtn{
	text-decoration: none;
	display: flex;
	align-items: center;
	color: black;
	border: 1px solid var(--secondaryColor);
	padding: 8px 20px;
	font-family: myFont4;
	transition:.3s;
	font-size: 14px;
}
#innerProjectDetails .innerProjectDetailsMain .broucherDownload .broucherDownloadBtn:hover{
	border: 1px solid var(--primaryColor);
	transition:.3s;
	color: var(--primaryColor);
}
#innerProjectDetails .innerProjectDetailsMain .broucherDownload .broucherDownloadBtn i{
	font-size: 25px;
	color: var(--primaryColor);
	margin-right: 10px;
}
#innerProjectDetails .innerProjectDetailsMain .innerProjectDetailsVideos {
  width: 100%;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 50px;
}
@media (max-width: 768px) {
  #innerProjectDetails .innerProjectDetailsMain .innerProjectDetailsVideos {
    row-gap: 20px;
  }
}
#innerProjectDetails .innerProjectDetailsMain .innerProjectDetailsVideos .innerProjectDetailsVideosBox {
  flex: 100%;
  height: 600px;
  background: #eee;
  overflow: hidden;
}
@media (max-width: 1800px) {
  #innerProjectDetails .innerProjectDetailsMain .innerProjectDetailsVideos .innerProjectDetailsVideosBox {
    height: 500px;
  }
}
@media (max-width: 1024px) {
  #innerProjectDetails .innerProjectDetailsMain .innerProjectDetailsVideos .innerProjectDetailsVideosBox {
    height: 400px;
  }
}
@media (max-width: 768px) {
  #innerProjectDetails .innerProjectDetailsMain .innerProjectDetailsVideos .innerProjectDetailsVideosBox {
    height: 300px;
  }
}
@media (max-width: 480px) {
  #innerProjectDetails .innerProjectDetailsMain .innerProjectDetailsVideos .innerProjectDetailsVideosBox {
    height: 220px;
  }
}
#innerProjectDetails .innerProjectDetailsMain .innerProjectDetailsVideos .innerProjectDetailsVideosBox iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#innerProjectDetails .floorPlans{
	width: 100%;
	border-top: 1px solid #ddd;
	padding: 100px 50px;
	display: flex;
	flex-direction: column;
}
@media (max-width: 768px) {
#innerProjectDetails .floorPlans {
    padding: 50px 20px;
  }
}
@media (max-width: 480px) {
#innerProjectDetails .floorPlans {
    padding: 50px 10px;
  }
}
#innerProjectDetails .floorPlans h2{
	font-size: 3em;
	font-family: myFont4;
	color: black;
}
@media(max-width:768px){
	#innerProjectDetails .floorPlans h2{
		font-size: 2.5em;
	}
}
@media(max-width:480px){
	#innerProjectDetails .floorPlans h2{
		font-size: 2em;
	}
}
#innerProjectDetails .floorPlans .floorPlansTabs{
	width: 100%;
	display: flex;
	align-items: center;
	overflow-x: auto;
	margin-top: 50px;
	gap: 50px;
}
#innerProjectDetails .floorPlans .floorPlansTabs .floorPlansTabBox{
	white-space: pre;
	font-size: 25px;
	font-family: myFont5;
	color: #aaa;
	cursor: pointer;
	padding: 10px 0px;
	transition: .3s;
}
@media(max-width:480px){
	#innerProjectDetails .floorPlans .floorPlansTabs .floorPlansTabBox{
		font-size: 20px;
	}
}
#innerProjectDetails .floorPlans .floorPlansTabs .floorPlansTabBox:hover{
	transition: .3s;
	color: var(--secondaryColor);
}
#innerProjectDetails .floorPlans .floorPlansTabs .floorPlansTabBoxActive{
	color: var(--primaryColor);
}
#innerProjectDetails .floorPlans .floorPlansList{
	width: 100%;
	display: none;
	justify-content: space-between;
	flex-wrap: wrap;
	row-gap: 20px;
	margin-top :20px;
}
#innerProjectDetails .floorPlans .floorPlansList .dummyDiv{
	height: 0;
	flex:0 0 24%;
}
@media(max-width:1024px){
	#innerProjectDetails .floorPlans .floorPlansList .dummyDiv{
		flex: 0 0 32%;
	}
}
@media(max-width:768px){
	#innerProjectDetails .floorPlans .floorPlansList .dummyDiv{
		flex: 0 0 48%;
	}
}
#innerProjectDetails .floorPlans .floorPlansList .floorPlansListBox{
	flex:0 0 24%;
	background: white;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 30px;
	border: 1px solid #ddd;
	justify-content: space-between;
}
@media(max-width:1024){
	#innerProjectDetails .floorPlans .floorPlansList .floorPlansListBox{
		flex: 0 0 32%;
	}
}
@media(max-width:768px){
	#innerProjectDetails .floorPlans .floorPlansList .floorPlansListBox{
		flex: 0 0 48%;
	}
}
@media(max-width:480px){
	#innerProjectDetails .floorPlans .floorPlansList .floorPlansListBox{
		flex: 100%;
	}
}
#innerProjectDetails .floorPlans .floorPlansList .floorPlansListBox .floorPlansListBoxCol1{
	width: 100%;
	display: flex;
	flex-direction: column;
}
#innerProjectDetails .floorPlans .floorPlansList .floorPlansListBox .floorPlansListBoxCol1 span{
	font-size: 14px;
}
#innerProjectDetails .floorPlans .floorPlansList .floorPlansListBox .floorPlansListBoxCol1 h3{
	font-size: 30px;
	margin-top: 10px;
}
#innerProjectDetails .floorPlans .floorPlansList .floorPlansListBox .floorPlansListBoxViewBtn{
	color: var(--secondaryColor);
	font-size: 14px;
	background: #eeeeee40;
	border: 1px solid #eeeeee40;
	padding: 10px;
	text-align: center;
	cursor: pointer;
	transition: .3s;
	text-decoration:none;
}
#innerProjectDetails .floorPlans .floorPlansList .floorPlansListBox .floorPlansListBoxViewBtn:hover{
	border: 1px solid var(--secondaryColor);
	transition: .3s;
}


#innerProjectDetails .currentStatus{
	width: 100%;
	padding: 100px 50px;
	display: flex;
	flex-direction: column;
	background: #eeeeee78;
}
@media (max-width: 768px) {
#innerProjectDetails .currentStatus {
    padding: 50px 20px;
  }
}
@media (max-width: 480px) {
#innerProjectDetails .currentStatus {
    padding: 50px 10px;
  }
}
#innerProjectDetails .currentStatus h2{
	font-size: 3em;
	font-family: myFont4;
}
@media(max-width:768px){
#innerProjectDetails .currentStatus h2{
		font-size: 2.5em;
	}
}
@media(max-width:480px){
#innerProjectDetails .currentStatus h2{
		font-size: 2em;
	}
}
#innerProjectDetails .currentStatus .currentStatusMainBody{
	width: 100%;
	position :relative;
}
#innerProjectDetails .currentStatus .currentStatusMainBody .currentStatusMain{
	width :100%;
	margin-top:40px;
}
#innerProjectDetails .currentStatus .currentStatusMainBody .currentStatusMain .currentStatusBox{
	width :100%;
	height: 250px;
	background :#eee;
	text-decoration: none;
	display :flex;
	overflow: hidden;
}
@media(max-width: 480px){
	#innerProjectDetails .currentStatus .currentStatusMainBody .currentStatusMain .currentStatusBox{
		height: 200px;
	}
}
#innerProjectDetails .currentStatus .currentStatusMainBody .currentStatusMain .currentStatusBox img{
	width :100%;
	height: 100%;
	object-fit: cover;
}
#innerProjectDetails .currentStatus .currentStatusMainBody  .owl-dots {
  display: none;
}
#innerProjectDetails .currentStatus .currentStatusMainBody  .currentStatusControls {
  position: absolute;
  width: 100%;
  top: 40%;
  left: 0;
}
@media(max-width: 480px){
	#innerProjectDetails .currentStatus .currentStatusMainBody  .currentStatusControls {
		top: 50%;
	}
}
#innerProjectDetails .currentStatus .currentStatusMainBody  .currentStatusControls .custom-nav2 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#innerProjectDetails .currentStatus .currentStatusMainBody  .currentStatusControls .custom-nav2 button {
  z-index: 2;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  border: none;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.0862745098);
  transition: 0.3s;
}
#innerProjectDetails .currentStatus .currentStatusMainBody  .currentStatusControls .custom-nav2 button:hover {
  background: var(--secondaryColor);
  transition: 0.3s;
  color: white;
}
@media (max-width: 480px) {
#innerProjectDetails .currentStatus .currentStatusMainBody .currentStatusControls .custom-nav2 button {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}



#innerProjectDetails .location{
	width: 100%;
	padding: 100px 50px;
	display: flex;
	flex-direction: column;
}
@media (max-width: 768px) {
#innerProjectDetails .location {
    padding: 50px 20px;
  }
}
@media (max-width: 480px) {
#innerProjectDetails .location {
    padding: 50px 10px;
  }
}
#innerProjectDetails .location h2{
	font-size: 3em;
	font-family: myFont4;
}
@media(max-width:768px){
#innerProjectDetails .location h2{
		font-size: 2.5em;
	}
}
@media(max-width:480px){
#innerProjectDetails .location h2{
		font-size: 2em;
	}
}
#innerProjectDetails .location .locationMap{
	width: 100%;
	height: 500px;
	margin-top: 40px;
	background: #eee;
}
@media(max-width:1024px){
	#innerProjectDetails .location .locationMap{
		width: 100%;
		height: 400px;
	}
}
@media(max-width:768px){
	#innerProjectDetails .location .locationMap{
		width: 100%;
		height: 300px;
	}
}
@media(max-width:480px){
	#innerProjectDetails .location .locationMap{
		width: 100%;
		height: 220px;
	}
}
#innerProjectDetails .location .locationMap iframe{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#innerProjectDetails .otherProjects{
	width :100%;
	padding: 100px 50px;
	display: flex;
	flex-direction: column;
	border-top: 1px solid #ddd;
}
@media (max-width: 768px) {
#innerProjectDetails .otherProjects{
    padding: 50px 20px;
  }
}
@media (max-width: 480px) {
#innerProjectDetails .otherProjects {
    padding: 50px 10px;
  }
}
#innerProjectDetails .otherProjects h2{
	font-size: 3em;
	font-family: myFont4;
}
@media(max-width:768px){
#innerProjectDetails .otherProjects h2{
		font-size: 2.5em;
	}
}
@media(max-width:480px){
#innerProjectDetails .otherProjects h2{
		font-size: 2em;
	}
}
#innerProjectDetails .otherProjects .otherProjectsBody{
	width: 100%;
	position: relative;
	margin-top: 40px;
}
#innerProjectDetails .otherProjects .otherProjectsBody .otherProjectsMain{
	width: 100%;
}
#innerProjectDetails .otherProjects .otherProjectsBody .otherProjectsMain .otherProjectsBox{
	width :100%;
	display: flex;
	flex-direction: column;
	text-decoration: none;
}
#innerProjectDetails .otherProjects .otherProjectsBody .otherProjectsMain .otherProjectsBox .otherProjectsBoxThumbnail{
	width: 100%;
	height: 250px;
	background: #eee;
	overflow: hidden;
}
#innerProjectDetails .otherProjects .otherProjectsBody .otherProjectsMain .otherProjectsBox .otherProjectsBoxThumbnail img{
	width :100%;
	height: 100%;
	object-fit: cover;
}
#innerProjectDetails .otherProjects .otherProjectsBody .otherProjectsMain .otherProjectsBox .otherProjectsBoxDetails {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
@media (max-width: 480px) {
#innerProjectDetails .otherProjects .otherProjectsBody .otherProjectsMain .otherProjectsBox .otherProjectsBoxDetails {
    padding: 0px 10px;
  }
}
#innerProjectDetails .otherProjects .otherProjectsBody .otherProjectsMain .otherProjectsBox .otherProjectsBoxDetails h3 {
  font-size: 22px;
  font-family: myFont4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  max-height: 30px;
  color: black;
}
#innerProjectDetails .otherProjects .otherProjectsBody .otherProjectsMain .otherProjectsBox .otherProjectsBoxDetails span {
  font-size: 16px;
  margin-top: 10px;
  opacity: 0.5;
  color: black;
}
#innerProjectDetails .otherProjects .otherProjectsBody .owl-dots {
  display: none;
}
#innerProjectDetails .otherProjects .otherProjectsBody .otherProjectListControls {
  position: absolute;
  width: 100%;
  top: 40%;
  left: 0;
}
#innerProjectDetails .otherProjects .otherProjectsBody .otherProjectListControls .custom-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#innerProjectDetails .otherProjects .otherProjectsBody .otherProjectListControls .custom-nav button {
  z-index: 2;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  border: none;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.0862745098);
  transition: 0.3s;
}
#innerProjectDetails .otherProjects .otherProjectsBody .otherProjectListControls .custom-nav button:hover {
  background: var(--secondaryColor);
  transition: 0.3s;
  color: white;
}
@media (max-width: 480px) {
#innerProjectDetails .otherProjects .otherProjectsBody .otherProjectListControls .custom-nav button {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

#blogPageBanner {
  width: 100%;
}
#blogPageBanner .blogPageBannerMain {
  width: 100%;
  padding: 200px 50px 100px 50px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  #blogPageBanner .blogPageBannerMain {
    padding: 150px 20px 50px 20px;
  }
}
#blogPageBanner .blogPageBannerMain h1 {
  font-size: 5em;
  text-align: center;
  font-family: myFont4;
}
@media (max-width: 1800px) {
  #blogPageBanner .blogPageBannerMain h1 {
    font-size: 3em;
  }
}
@media (max-width: 768px) {
  #blogPageBanner .blogPageBannerMain h1 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #blogPageBanner .blogPageBannerMain h1 {
    font-size: 1.7em;
  }
}

#blogPageList {
  width: 100%;
}
#blogPageList .blogPageListMain {
  width: 100%;
  padding: 0px 50px 100px 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  row-gap: 80px;
}
@media (max-width: 1024px) {
  #blogPageList .blogPageListMain {
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
  #blogPageList .blogPageListMain {
    padding: 0px 20px;
  }
}
@media (max-width: 480px) {
  #blogPageList .blogPageListMain {
    padding: 0px 10px;
  }
}
#blogPageList .blogPageListMain::after {
  content: "";
  height: 0;
  width: 32%;
}
#blogPageList .blogPageListMain .blogPageListBox {
  flex: 0 0 32%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1800px) {
  #blogPageList .blogPageListMain .blogPageListBox {
    flex: 0 0 48%;
  }
}
@media (max-width: 768px) {
  #blogPageList .blogPageListMain .blogPageListBox {
    flex: 100%;
  }
}
#blogPageList .blogPageListMain .blogPageListBox .blogPageListBoxThumbnail {
  width: 100%;
  height: 250px;
  background: #eee;
  overflow: hidden;
}
@media (max-width: 1800px) {
  #blogPageList .blogPageListMain .blogPageListBox .blogPageListBoxThumbnail {
    height: 280px;
  }
}
@media (max-width: 768px) {
  #blogPageList .blogPageListMain .blogPageListBox .blogPageListBoxThumbnail {
    height: 320px;
  }
}
@media (max-width: 480px) {
  #blogPageList .blogPageListMain .blogPageListBox .blogPageListBoxThumbnail {
    height: 250px;
  }
}
#blogPageList .blogPageListMain .blogPageListBox .blogPageListBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#blogPageList .blogPageListMain .blogPageListBox .blogPageListBoxDetails {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
#blogPageList .blogPageListMain .blogPageListBox .blogPageListBoxDetails h3 {
  font-size: 22px;
  line-height: 1.5;
  font-family: myFont4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 65px;
}
#blogPageList .blogPageListMain .blogPageListBox .blogPageListBoxDetails p {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 50px;
  font-family: myFont3;
}
#blogPageList .blogPageListMain .blogPageListBox .blogPageListBoxDetails span {
  color: var(--secondaryTextColor);
  margin-top: 20px;
  opacity: 0.7;
  font-size: 14px;
}
#blogPageList .blogPageListMain .blogPageListBox .blogPageListBoxDetails a {
  text-decoration: none;
  border: 1px solid black;
  color: black;
  padding: 10px 50px;
  margin-top: 30px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  overflow: hidden;
  font-size: 16px;
  z-index: 0;
}
@media (max-width: 1800px) {
  #blogPageList .blogPageListMain .blogPageListBox .blogPageListBoxDetails a {
    font-size: 14px;
  }
}
#blogPageList .blogPageListMain .blogPageListBox .blogPageListBoxDetails a:hover::after {
  transition: 0.3s;
  top: 0px;
  opacity: 1;
}
#blogPageList .blogPageListMain .blogPageListBox .blogPageListBoxDetails a::after {
  position: absolute;
  content: "";
  transition: 0.3s;
  width: 100%;
  height: 5px;
  background: var(--secondaryColor);
  z-index: -1;
  top: -5px;
  left: 0;
  opacity: 0;
}

#innerBlog {
  width: 100%;
}
#innerBlog .innerBlogMain {
  width: 100%;
  padding: 200px 50px 100px 50px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  #innerBlog .innerBlogMain {
    padding: 150px 20px 50px 20px;
  }
}
@media (max-width: 480px) {
  #innerBlog .innerBlogMain {
    padding: 150px 10px 50px 10px;
  }
}
#innerBlog .innerBlogMain .innerBlogThumbnail {
  width: 100%;
}
#innerBlog .innerBlogMain .innerBlogThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#innerBlog .innerBlogMain .innerBlogDetails {
  width: 100%;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
}
#innerBlog .innerBlogMain .innerBlogDetails h1 {
  font-size: 4em;
  line-height: 1.5;
  font-family: myFont4;
}
@media (max-width: 1800px) {
  #innerBlog .innerBlogMain .innerBlogDetails h1 {
    font-size: 3em;
  }
}
@media (max-width: 1024px) {
  #innerBlog .innerBlogMain .innerBlogDetails h1 {
    font-size: 2.5em;
  }
}
@media (max-width: 768px) {
  #innerBlog .innerBlogMain .innerBlogDetails h1 {
    font-size: 2.2em;
  }
}
@media (max-width: 480px) {
  #innerBlog .innerBlogMain .innerBlogDetails h1 {
    font-size: 1.7em;
  }
}
#innerBlog .innerBlogMain .innerBlogDetails p {
  font-family: myFont3;
  line-height: 1.8;
  margin-top: 30px;
  font-size: 18px;
}
@media (max-width: 1800px) {
  #innerBlog .innerBlogMain .innerBlogDetails p {
    font-size: 16px;
  }
}

#galleryBanner {
  width: 100%;
  background: url(../images/banner/img2.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 0;
}
#galleryBanner::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.528);
}
#galleryBanner .container {
  border-inline: 1px solid rgba(255, 255, 255, 0.392);
}
#galleryBanner .galleryBannerMain {
  width: 100%;
  padding: 200px 50px 100px 50px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-direction: column;
}
@media (max-width: 768px) {
  #galleryBanner .galleryBannerMain {
    padding: 150px 20px 50px 20px;
  }
}
@media (max-width: 480px) {
  #galleryBanner .galleryBannerMain {
    padding: 150px 10px 50px 10px;
  }
}
#galleryBanner .galleryBannerMain h1 {
  font-size: 5em;
  color: white;
  font-family: myFont4;
  text-align: center;
}
@media (max-width: 1800px) {
  #galleryBanner .galleryBannerMain h1 {
    font-size: 3em;
  }
}
@media (max-width: 768px) {
  #galleryBanner .galleryBannerMain h1 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #galleryBanner .galleryBannerMain h1 {
    font-size: 1.7em;
  }
}

#galleryPage {
  width: 100%;
}
#galleryPage .galleryPageMian {
  width: 100%;
  padding: 100px 50px;
  /*line-height: 0;
  -webkit-column-count: 3;
  -webkit-column-gap: 20px;
  -moz-column-count: 3;
  -moz-column-gap: 20px;
  column-count: 3;
  column-gap: 20px;*/
	display :flex;
	justify-content: space-between;
	flex-wrap :wrap;
	row-gap :20px;
}
@media (max-width: 768px) {
  #galleryPage .galleryPageMian {
    /*-moz-column-count: 2;
    column-count: 2;*/
    padding: 50px 10px;
  }
}
/*@media (max-width: 480px) {
  #galleryPage .galleryPageMian {
    -moz-column-count: 2;
    column-count: 2;
  }
}*/
#galleryPage .galleryPageMian .galleryPageBox {
	flex: 0 0 32%;
	height: 250px;
	background: #eee;
	overflow: hidden;
  display: flex;
  transition: 0.3s;
}
@media(max-width: 1024px){
	#galleryPage .galleryPageMian .galleryPageBox {
		flex: 0 0 48%;
	}
}
@media(max-width: 480px){
	#galleryPage .galleryPageMian .galleryPageBox {
		height :120px;
	}
}
#galleryPage .galleryPageMian .galleryPageBox:hover {
  transform: scale(1.03);
  transition: 0.3s;
}
/*#galleryPage .galleryPageMian .galleryPageBox:nth-child(1) {
  margin-top: 0;
}*/
#galleryPage .galleryPageMian .galleryPageBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.2s;
}

#contactPage {
  width: 100%;
  position: relative;
  z-index: 0;
}
#contactPage::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100vh;
  background: url(../images/aboutBannerElement.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
  top: 0;
  left: 0;
  z-index: -2;
}
@media (max-width: 480px) {
  #contactPage::after {
    height: 70%;
  }
}
#contactPage::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
  background: rgba(205, 69, 69, 0.9);
}
@media (max-width: 480px) {
  #contactPage::before {
    height: 70%;
  }
}
#contactPage .contactPageMain {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 200px 50px 100px 50px;
  min-height: 100vh;
}
@media (max-width: 768px) {
  #contactPage .contactPageMain {
    padding: 150px 20px 50px 20px;
  }
}
@media (max-width: 480px) {
  #contactPage .contactPageMain {
    padding: 150px 10px 50px 10px;
  }
}
#contactPage .contactPageMain h1 {
  font-size: 5em;
  color: white;
  font-family: myFont4;
  text-align: center;
}
@media (max-width: 1800px) {
  #contactPage .contactPageMain h1 {
    font-size: 3em;
  }
}
@media (max-width: 768px) {
  #contactPage .contactPageMain h1 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #contactPage .contactPageMain h1 {
    font-size: 1.7em;
  }
}
#contactPage .contactPageMain p {
  color: white;
  font-family: myFont3;
  line-height: 1.8;
  margin-top: 30px;
  font-size: 14px;
  text-align: center;
  width: 60%;
}
@media (max-width: 1800px) {
  #contactPage .contactPageMain p {
    width: 90%;
  }
}
@media (max-width: 1024px) {
  #contactPage .contactPageMain p {
    width: 100%;
  }
}
#contactPage .contactPageMain .contactPageDetails {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 50px;
  row-gap: 30px;
}
#contactPage .contactPageMain .contactPageDetails .contactPageDetailsBox {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 0;
  padding: 20px;
  overflow: hidden;
}
@media (max-width: 1800px) {
  #contactPage .contactPageMain .contactPageDetails .contactPageDetailsBox {
    flex: 0 0 32%;
  }
}
@media (max-width: 768px) {
  #contactPage .contactPageMain .contactPageDetails .contactPageDetailsBox {
    flex: 0 0 48%;
  }
}
@media (max-width: 480px) {
  #contactPage .contactPageMain .contactPageDetails .contactPageDetailsBox {
    flex: 100%;
  }
}
#contactPage .contactPageMain .contactPageDetails .contactPageDetailsBox::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.05);
  z-index: -1;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
#contactPage .contactPageMain .contactPageDetails .contactPageDetailsBox span {
  font-size: 14px;
  color: white;
  margin-top: 30px;
  opacity: 0.7;
}
#contactPage .contactPageMain .contactPageDetails .contactPageDetailsBox span:nth-of-type(1) {
  margin-top: 0;
}
#contactPage .contactPageMain .contactPageDetails .contactPageDetailsBox h3 {
  color: white;
  margin-top: 10px;
  font-size: 20px;
  font-family: myFont4;
  line-height: 1.5;
}
@media (max-width: 1800px) {
  #contactPage .contactPageMain .contactPageDetails .contactPageDetailsBox h3 {
    font-size: 18px;
  }
}
#contactPage .contactPageMain .contactPageDetails .contactPageDetailsBox a {
  text-decoration: none;
  color: white;
  margin-top: 10px;
  font-size: 20px;
  font-family: myFont4;
  line-height: 1.5;
}
@media (max-width: 1800px) {
  #contactPage .contactPageMain .contactPageDetails .contactPageDetailsBox a {
    font-size: 18px;
  }
}
#contactPage .contactPageMain .contactPageDetails .contactPageDetailsBox a:hover {
  text-decoration: underline;
}
#contactPage .contactPageMain .contactPageDetails .contactPageDetailsBox .contactSocialLinks {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
#contactPage .contactPageMain .contactPageDetails .contactPageDetailsBox .contactSocialLinks a {
  flex: 0 0 48%;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  #contactPage .contactPageMain .contactPageDetails .contactPageDetailsBox .contactSocialLinks a {
    flex: 100%;
  }
}
@media (max-width: 768px) {
  #contactPage .contactPageMain .contactPageDetails .contactPageDetailsBox .contactSocialLinks a {
    flex: 0 0 48%;
  }
}
#contactPage .contactPageMain .contactPageDetails .contactPageDetailsBox .contactSocialLinks a h6 {
  margin-left: 15px;
  font-size: 14px;
  font-family: myFont3;
}
#contactPage .contactPageMain .contactPageForm {
  width: 100%;
  margin-top: 50px;
  background: white;
  padding: 50px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.0666666667);
}
@media (max-width: 480px) {
  #contactPage .contactPageMain .contactPageForm {
    padding: 20px;
  }
}
#contactPage .contactPageMain .contactPageForm h2 {
  font-size: 3em;
  font-family: myFont4;
  text-align: center;
}
@media (max-width: 1800px) {
  #contactPage .contactPageMain .contactPageForm h2 {
    font-size: 2em;
  }
}
#contactPage .contactPageMain .contactPageForm form {
  width: 100%;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 30px;
}
#contactPage .contactPageMain .contactPageForm form .formGroup {
  flex: 0 0 48%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  #contactPage .contactPageMain .contactPageForm form .formGroup {
    flex: 100%;
  }
}
#contactPage .contactPageMain .contactPageForm form .formGroup label {
  font-size: 20px;
  font-family: myFont3;
}
@media (max-width: 1800px) {
  #contactPage .contactPageMain .contactPageForm form .formGroup label {
    font-size: 16px;
  }
}
#contactPage .contactPageMain .contactPageForm form .formGroup input {
  width: 100%;
  height: 60px;
  border: none;
  outline: none;
  background: #f2f2f2;
  margin-top: 10px;
  padding: 0px 20px;
  font-size: 20px;
  border: 1px solid #f2f2f2;
}
@media (max-width: 1800px) {
  #contactPage .contactPageMain .contactPageForm form .formGroup input {
    height: 50px;
    font-size: 18px;
  }
}
#contactPage .contactPageMain .contactPageForm form .formGroup input:focus {
  border: 1px solid var(--primaryColor);
}
#contactPage .contactPageMain .contactPageForm form .formGroupTextArea {
  flex: 100%;
  display: flex;
  flex-direction: column;
}
#contactPage .contactPageMain .contactPageForm form .formGroupTextArea label {
  font-size: 20px;
  font-family: myFont3;
}
@media (max-width: 1800px) {
  #contactPage .contactPageMain .contactPageForm form .formGroupTextArea label {
    font-size: 16px;
  }
}
#contactPage .contactPageMain .contactPageForm form .formGroupTextArea textarea {
  width: 100%;
  height: 150px;
  border: none;
  outline: none;
  background: #f2f2f2;
  margin-top: 10px;
  padding: 20px 20px;
  font-size: 20px;
  border: 1px solid #f2f2f2;
}
@media (max-width: 1800px) {
  #contactPage .contactPageMain .contactPageForm form .formGroupTextArea textarea {
    font-size: 18px;
    height: 120px;
  }
}
#contactPage .contactPageMain .contactPageForm form .formGroupTextArea textarea:focus {
  border: 1px solid var(--primaryColor);
}
#contactPage .contactPageMain .contactPageForm form .formGroupBtnArea {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
#contactPage .contactPageMain .contactPageForm form .formGroupBtnArea button {
  cursor: pointer;
  border: none;
  outline: none;
  background: var(--primaryColor);
  color: white;
  padding: 20px 50px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  overflow: hidden;
  z-index: 0;
  font-size: 20px;
}
@media (max-width: 1800px) {
  #contactPage .contactPageMain .contactPageForm form .formGroupBtnArea button {
    font-size: 14px;
    padding: 16px 40px;
  }
}
@media (max-width: 480px) {
  #contactPage .contactPageMain .contactPageForm form .formGroupBtnArea button {
    margin-top: 20px;
  }
}
#contactPage .contactPageMain .contactPageForm form .formGroupBtnArea button:hover::after {
  transition: 0.3s;
  top: 0px;
  opacity: 1;
}
#contactPage .contactPageMain .contactPageForm form .formGroupBtnArea button::after {
  position: absolute;
  content: "";
  transition: 0.3s;
  width: 100%;
  height: 5px;
  background: var(--secondaryColor);
  z-index: -1;
  top: -5px;
  left: 0;
  opacity: 0;
}
#contactPage .contactPageMain .contactPageMap {
  width: 100%;
  height: 500px;
  background: #eee;
  margin-top: 100px;
}
@media (max-width: 1024px) {
  #contactPage .contactPageMain .contactPageMap {
    height: 400px;
  }
}
@media (max-width: 480px) {
  #contactPage .contactPageMain .contactPageMap {
    height: 300px;
  }
}
#contactPage .contactPageMain .contactPageMap iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#noPage{
	width: 100%;
}
#noPage .noPageMain{
	width: 100%;
	height: 100vh;
	padding: 100px 50px;
	display :flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
#noPage .noPageMain .noPageThumbnail{
	width: 400px;
}
@media(max-width: 480px){
	#noPage .noPageMain .noPageThumbnail{
		width: 100%;
	}
}
#noPage .noPageMain .noPageThumbnail img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
#noPage .noPageMain .noPageDetails{
	width: 100%;
	display :flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin-top: 30px;
}
#noPage .noPageMain .noPageDetails h2{
  font-size: 4em;
  line-height: 1.5;
  font-family: myFont4;
  text-align: center;
}
@media (max-width: 1800px) {
#noPage .noPageMain .noPageDetails h2{
    font-size: 3em;
  }
}
@media (max-width: 1024px) {
#noPage .noPageMain .noPageDetails h2{
    font-size: 2.5em;
  }
}
@media (max-width: 768px) {
#noPage .noPageMain .noPageDetails h2{
    font-size: 2.2em;
  }
}
@media (max-width: 480px) {
#noPage .noPageMain .noPageDetails h2{
    font-size: 2em;
  }
}

#noPage .noPageMain .noPageDetails a {
  background: var(--primaryColor);
  text-decoration: none;
  display: flex;
  text-align: center;
  color: white;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  padding: 12px 30px;
  position: relative;
  overflow: hidden;
  z-index: 0;
	margin-top: 30px;
}
@media (max-width: 1800px) {
#noPage .noPageMain .noPageDetails a {
    font-size: 14px;
  }
}
#noPage .noPageMain .noPageDetails a:hover::after {
  transition: 0.3s;
  top: 0px;
  opacity: 1;
}
#noPage .noPageMain .noPageDetails a::after {
  position: absolute;
  content: "";
  transition: 0.3s;
  width: 100%;
  height: 5px;
  background: var(--secondaryColor);
  z-index: -1;
  top: -5px;
  left: 0;
  opacity: 0;
}

/*# sourceMappingURL=style.css.map */



.enquire-btn-wrapper {
  margin-top: 20px;
}

.enquire-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #950006; /* Deep blue */
  /* color: #fff; */
  text-decoration: none;

  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
}


/* .enquire-btn:hover {
  background-color: white;
  color: red;
  transform: translateY(-2px);
} */


/* floating button  */

.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow: hidden;
}

.floating-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

/* .floating-buttons a:hover {
  transform: scale(1);
} */

.whatsapp-btn {
  background-color: #25D366;
}

.call-btn {
  background-color: #007BFF;
}