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

:root {
  --primaryColor: #256e96;
  --secondaryColor: #a6056f;
  --secondaryTextColor: rgb(141, 141, 141);
}

body {
  font-family: myFont10;
}

/* 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;
}
@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: myFont10;
}

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

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: myFont10;
}

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

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

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

.evMtho {
  display: none !important;
}

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

.contactForm {
  position: fixed;
  z-index: 160;
  width: 500px;
  background: white;
  padding: 40px;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  display: none;
}
@media (max-width: 500px) {
  .contactForm {
    width: 95%;
    padding: 20px;
  }
}
.contactForm h2 {
  font-size: 2em;
  font-family: myFont2;
}
@media (max-width: 480px) {
  .contactForm h2 {
    font-size: 25px;
  }
}
.contactForm form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
  max-height: 75vh;
  overflow-y: auto;
}
.contactForm form .formGroup {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.contactForm form .formGroup label {
  font-size: 14px;
  color: var(--secondaryTextColor);
}
.contactForm form .formGroup input {
  width: 100%;
  height: 40px;
  border: 1px solid #aaa;
  outline: none;
  border-radius: 5px;
  padding: 0px 15px;
  font-size: 16px;
  margin-top: 2px;
  background: white;
}
.contactForm form .formGroup input:focus {
  border: 1px solid #000;
}
.contactForm form .formGroup textarea {
  width: 100%;
  height: 100px;
  border: 1px solid #aaa;
  outline: none;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 16px;
  margin-top: 2px;
  background: white;
}
.contactForm form .formGroup textarea:focus {
  border: 1px solid #000;
}
.contactForm form .formBtnArea {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contactForm form .formBtnArea .closeContactForm {
  flex: 0 0 48%;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #eee;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}
.contactForm form .formBtnArea .closeContactForm:hover {
  transition: 0.3s;
  opacity: 0.7;
}
.contactForm form .formBtnArea .submitContactForm {
  flex: 0 0 48%;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primaryColor);
  color: white;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  border: none;
  outline: none;
}
.contactForm form .formBtnArea .submitContactForm:hover {
  transition: 0.3s;
  background: var(--secondaryColor);
}

.sidemenu {
  position: fixed;
  z-index: 200;
  width: 400px;
  right: -100%;
  transition: 0.3s;
  top: 0;
  height: 100vh;
  background: white;
}
@media (max-width: 480px) {
  .sidemenu {
    width: 90%;
  }
}
.sidemenu .closeSidemenu {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 30px;
}
.sidemenu .sidemenuLink {
  width: 100%;
  margin-top: 100px;
}
.sidemenu .sidemenuLink ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidemenu .sidemenuLink ul li {
  list-style: none;
}
.sidemenu .sidemenuLink ul li a {
  text-decoration: none;
  font-size: 30px;
  color: black;
  display: flex;
  padding: 10px 20px;
  font-family: MyFont7;
}
.sidemenu .sidemenuLink ul li .sidemenuLinkActive {
  color: var(--primaryColor);
}

.sidemenuActive {
  right: 0;
  transition: 0.3s;
}

.navStrip {
  width: 100%;
  background: #f9f8f8;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
}
@media (max-width: 480px) {
  .navStrip {
    bottom: 0;
    left: 0;
    top: inherit;
  }
}
.navStrip .navStripMain {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.navStrip .navStripMain .navStripBox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 768px) {
  .navStrip .navStripMain .navStripBox {
    width: 100%;
  }
  .navStrip .navStripMain .navStripBox:nth-of-type(1) {
    display: none;
  }
}
.navStrip .navStripMain .navStripBox .navStripBookBtn {
  text-decoration: none;
  padding: 0px 20px;
  background: var(--secondaryColor);
  color: white;
  font-size: 14px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: 0.3s;
}
@media (max-width: 480px) {
  .navStrip .navStripMain .navStripBox .navStripBookBtn {
    width: 100%;
  }
}
.navStrip .navStripMain .navStripBox .navStripBookBtn:hover {
  background: var(--primaryColor);
  transition: 0.3s;
}
.navStrip .navStripMain .navStripBox ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
.navStrip .navStripMain .navStripBox ul li {
  list-style: none;
}
.navStrip .navStripMain .navStripBox ul li a {
  text-decoration: none;
  font-size: 14px;
  color: black;
  display: flex;
  align-items: center;
}
.navStrip .navStripMain .navStripBox ul li a:hover {
  text-decoration: underline;
  color: var(--primaryColor);
}
.navStrip .navStripMain .navStripBox ul li a i {
  margin-right: 5px;
}

nav {
  width: 100%;
  position: fixed;
  top: 50px;
  left: 0;
  z-index: 49;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.0509803922);
}
@media (max-width: 480px) {
  nav {
    top: 0;
  }
}
nav .navMain {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav .navMain .navLogo {
  height: 100%;
  width: 180px;
}
nav .navMain .navLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
nav .navMain .navLink {
  height: 100%;
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media (max-width: 835px) {
  nav .navMain .navLink {
    display: none;
  }
}
nav .navMain .navLink ul {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
}
@media(max-width: 1150px){
	nav .navMain .navLink ul{
		gap :40px;
	}
}
nav .navMain .navLink ul li {
  list-style: none;
}
nav .navMain .navLink ul li a {
  text-decoration: none;
  color: black;
  font-size: 14px;
  border-bottom: 2px solid white;
  transition: 0.3s;
}
nav .navMain .navLink ul li a:hover {
  transition: 0.3s;
  border-bottom: 2px solid var(--primaryColor);
}
nav .navMain .navLink ul li .navLinkActive {
  border-bottom: 2px solid var(--primaryColor);
}
nav .navMain .navContact {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 100px;
}
@media(max-width: 1150px){
	nav .navMain .navContact{
  		margin-left: 50px;
	}
}
@media (max-width: 835px) {
  nav .navMain .navContact {
    margin-left: auto;
  }
}
@media (max-width: 480px) {
  nav .navMain .navContact {
    display: none;
  }
}
nav .navMain .navContact a {
  text-decoration: none;
  background: var(--primaryColor);
  color: white;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  border-radius: 5px;
  font-size: 16px;
  padding: 0px 30px;
}
@media(max-width: 1150px){
	nav .navMain .navContact a{
		padding: 0px 25px;
	}
}
@media(max-width: 1120px){
	nav .navMain .navContact a{
		padding: 0px 20px;
  		font-size: 14px;
	}
}
nav .navMain .navBar {
  display: none;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-left: 50px;
}
@media (max-width: 835px) {
  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: black;
}

.slideUp {
  transform: translateY(-80px);
  transition: 0.5s ease-out;
}

.slideDown {
  transform: translateY(0px);
  transition: 0.5s ease-out;
}

#banner {
  width: 100%;
  height: calc(100vh - 110px);
  margin-top: 110px;
  position: relative;
  z-index: 0;
}
@media (max-width: 480px) {
  #banner {
    margin-top: 60px;
    height: calc(100vh - 60px);
  }
}
#banner .bannerSlider {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#banner .bannerSlider .bannerSliderBox {
  width: 100%;
  height: calc(100vh - 110px);
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}
@media (max-width: 480px) {
  #banner .bannerSlider .bannerSliderBox {
    height: calc(100vh - 60px);
  }
}
#banner .bannerSlider .bannerSliderBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#banner .bannerSlider .owl-nav, #banner .bannerSlider .owl-dots {
  display: none;
}
#banner .bannerDetails {
  width: 100%;
  background: rgba(0, 0, 0, 0.158);
}
#banner .bannerDetails .bannerMain {
  width: 100%;
  height: calc(100vh - 110px);
  padding: 50px 0px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
@media (max-width: 480px) {
  #banner .bannerDetails .bannerMain {
    height: calc(100vh - 60px);
  }
}
#banner .bannerDetails .bannerMain h1 {
  font-size: 4em;
  color: white;
  font-family: myFont7;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.1176470588);
  width: 70%;
}
@media (max-width: 1800px) {
  #banner .bannerDetails .bannerMain h1 {
    width: 95%;
  }
}
@media (max-width: 1024px) {
  #banner .bannerDetails .bannerMain h1 {
    width: 100%;
    font-size: 3.5em;
  }
}
@media (max-width: 768px) {
  #banner .bannerDetails .bannerMain h1 {
    font-size: 3em;
  }
}
@media (max-width: 480px) {
  #banner .bannerDetails .bannerMain h1 {
    width: 100%;
    font-size: 2em;
  }
}
#banner .bannerDetails .bannerMain a {
  text-decoration: none;
  background: var(--primaryColor);
  color: white;
  font-size: 16px;
  padding: 14px 40px;
  border-radius: 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 30px;
  transition: 0.3s;
}
@media (max-width: 480px) {
  #banner .bannerDetails .bannerMain a {
    padding: 10px 30px;
  }
}
#banner .bannerDetails .bannerMain a:hover {
  transition: 0.3s;
  background: var(--secondaryColor);
}

#about {
  width: 100%;
  padding: 100px 0px;
  background: white;
}
@media (max-width: 480px) {
  #about {
    padding: 80px 0px;
  }
}
#about .aboutMain {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#about .aboutMain h6 {
  font-size: 20px;
  border-left: 5px double var(--secondaryColor);
  padding: 2px 20px;
  color: var(--secondaryColor);
  text-transform: uppercase;
  letter-spacing: 5px;
  background: #f9f8f8;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0px 50px 50px 0px;
}
@media (max-width: 480px) {
  #about .aboutMain h6 {
    font-size: 18px;
  }
}
#about .aboutMain h2 {
  font-size: 5em;
  font-family: myFont7;
  line-height: 1.5;
  margin-top: 20px;
  color: var(--primaryColor);
}
@media (max-width: 1800px) {
  #about .aboutMain h2 {
    font-size: 3.5em;
  }
}
@media (max-width: 1024px) {
  #about .aboutMain h2 {
    font-size: 3em;
  }
}
@media (max-width: 768px) {
  #about .aboutMain h2 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #about .aboutMain h2 {
    font-size: 2em;
  }
}
#about .aboutMain p {
  font-size: 18px;
  margin-top: 50px;
  line-height: 2;
  font-family: myFont11;
}
@media (max-width: 1800px) {
  #about .aboutMain p {
    font-size: 16px;
  }
}
#about .aboutMain a {
  text-decoration: none;
  background: var(--primaryColor);
  color: white;
  font-size: 16px;
  padding: 14px 40px;
  border-radius: 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 30px;
  transition: 0.3s;
}
@media (max-width: 480px) {
  #about .aboutMain a {
    padding: 10px 30px;
  }
}
#about .aboutMain a:hover {
  transition: 0.3s;
  background: var(--secondaryColor);
}
#about .aboutMain .aboutList {
  width: 100%;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 40px;
}
#about .aboutMain .aboutList .aboutListBox {
  flex: 0 0 32%;
  background: rgb(193, 236, 255);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 5px double white;
}
@media (max-width: 768px) {
  #about .aboutMain .aboutList .aboutListBox {
    flex: 0 0 48%;
  }
}
@media (max-width: 480px) {
  #about .aboutMain .aboutList .aboutListBox {
    flex: 100%;
  }
}
#about .aboutMain .aboutList .aboutListBox h3 {
  font-size: 3em;
  font-family: myFont1;
  color: var(--secondaryColor);
}
@media (max-width: 1800px) {
  #about .aboutMain .aboutList .aboutListBox h3 {
    font-size: 2.5em;
  }
}
#about .aboutMain .aboutList .aboutListBox span {
  font-size: 18px;
  margin-top: 10px;
}
@media (max-width: 1800px) {
  #about .aboutMain .aboutList .aboutListBox span {
    font-size: 16px;
  }
}

#videoParallax {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  display: none;
}
#videoParallax video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#videoParallaxContent {
  width: 100%;
  padding: 100px 0px;
  position: relative;
  z-index: 0;
}
@media (max-width: 480px) {
  #videoParallaxContent {
    padding: 80px 0px;
  }
}
#videoParallaxContent::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(0, 0, 0, 0.158);
  top: 0;
  left: 0;
}
#videoParallaxContent .videoParallaxContentMain {
  width: 100%;
  height: 60vh;
     background: #00000026;
    border-radius: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
#videoParallaxContent .videoParallaxContentMain h2 {
  font-size: 5em;
  font-family: myFont7;
  line-height: 1.5;
  color: white;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.1176470588);
	text-align: center;
}
@media (max-width: 1800px) {
  #videoParallaxContent .videoParallaxContentMain h2 {
    font-size: 3.5em;
  }
}
@media (max-width: 1024px) {
  #videoParallaxContent .videoParallaxContentMain h2 {
    font-size: 3em;
  }
}
@media (max-width: 768px) {
  #videoParallaxContent .videoParallaxContentMain h2 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #videoParallaxContent .videoParallaxContentMain h2 {
    font-size: 2em;
  }
}
#videoParallaxContent .videoParallaxContentMain h3 {
  font-size: 10em;
  font-family: myFont7;
  line-height: 1.5;
  color: white;
  /*text-shadow: 0 0 10px rgba(0, 0, 0, 0.1176470588);*/
	text-align: center;
	background: -webkit-linear-gradient(#00ff9f, #81daff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1800px) {
  #videoParallaxContent .videoParallaxContentMain h3 {
    font-size: 7em;
  }
}
@media (max-width: 1024px) {
  #videoParallaxContent .videoParallaxContentMain h3 {
    font-size: 6em;
  }
}
@media (max-width: 768px) {
  #videoParallaxContent .videoParallaxContentMain h3 {
    font-size: 5em;
  }
}
@media (max-width: 480px) {
  #videoParallaxContent .videoParallaxContentMain h3 {
    font-size: 4em;
    line-height: 1.1;
    margin-top: 20px;
  }
}

#services {
  width: 100%;
  padding: 100px 0px;
  background: white;
}
@media (max-width: 480px) {
  #services {
    padding: 80px 0px;
  }
}
#services .servicesTitle {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#services .servicesTitle h6 {
  font-size: 20px;
  border-left: 5px double var(--secondaryColor);
  padding: 2px 20px;
  color: var(--secondaryColor);
  text-transform: uppercase;
  letter-spacing: 5px;
  background: #f9f8f8;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0px 50px 50px 0px;
}
@media (max-width: 480px) {
  #services .servicesTitle h6 {
    font-size: 18px;
  }
}
#services .servicesTitle h2 {
  font-size: 5em;
  font-family: myFont7;
  line-height: 1.5;
  margin-top: 20px;
  color: var(--primaryColor);
}
@media (max-width: 1800px) {
  #services .servicesTitle h2 {
    font-size: 3.5em;
  }
}
@media (max-width: 1024px) {
  #services .servicesTitle h2 {
    font-size: 3em;
  }
}
@media (max-width: 768px) {
  #services .servicesTitle h2 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #services .servicesTitle h2 {
    font-size: 2em;
  }
}
#services .servicesMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 80px;
  margin-top: 50px;
}
#services .servicesMain .servicesBox {
  flex: 0 0 32%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  #services .servicesMain .servicesBox {
    flex: 0 0 48%;
  }
}
@media (max-width: 480px) {
  #services .servicesMain .servicesBox {
    flex: 100%;
  }
}
#services .servicesMain .servicesBox .servicesBoxThumbnail {
  width: 100%;
  height: 280px;
  background: #eee;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 1800px) {
  #services .servicesMain .servicesBox .servicesBoxThumbnail {
    height: 220px;
  }
}
@media (max-width: 1024px) {
  #services .servicesMain .servicesBox .servicesBoxThumbnail {
    height: 250px;
  }
}
@media (max-width: 768px) {
  #services .servicesMain .servicesBox .servicesBoxThumbnail {
    height: 220px;
  }
}
#services .servicesMain .servicesBox .servicesBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#services .servicesMain .servicesBox .servicesBoxDetails {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
#services .servicesMain .servicesBox .servicesBoxDetails h3 {
  font-size: 22px;
  font-family: myFont6;
}
#services .servicesMain .servicesBox .servicesBoxDetails p {
  font-size: 14px;
  line-height: 1.5;
  font-family: myFont11;
  margin-top: 10px;
  color: var(--secondaryTextColor);
}

#champions{
  width: 100%;
  padding: 100px 0px;
  background: #192028;
}
@media (max-width: 480px) {
  #champions {
    padding: 80px 0px;
  }
}
#champions .championsHead {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#champions .championsHead h6 {
  font-size: 20px;
  border-left: 5px double var(--secondaryColor);
  padding: 2px 20px;
  color: var(--secondaryColor);
  text-transform: uppercase;
  letter-spacing: 5px;
  background: #f9f8f8;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0px 50px 50px 0px;
}
@media (max-width: 480px) {
  #champions .championsHead h6 {
    font-size: 18px;
  }
}
#champions .championsHead h2 {
  font-size: 5em;
  font-family: myFont7;
  line-height: 1.5;
  margin-top: 20px;
  color: white;
}
@media (max-width: 1800px) {
  #champions .championsHead h2 {
    font-size: 3.5em;
  }
}
@media (max-width: 1024px) {
  #champions .championsHead h2 {
    font-size: 3em;
  }
}
@media (max-width: 768px) {
  #champions .championsHead h2 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #champions .championsHead h2 {
    font-size: 2em;
  }
}
#champions .championsMain{
	width: 100%;
	margin-top: 60px;
}
#champions .championsMain .championsBox{
	width: 100%;
	display: flex;
	flex-direction: column;
}
#champions .championsMain .championsBox .championsBoxThumbnail{
	width: 100%;
	height: 250px;
  background: rgba(82, 82, 82, 0.34);
	border-radius :10px;
	overflow: hidden;
	position: relative;
}
@media(max-width:1024px){
	#champions .championsMain .championsBox .championsBoxThumbnail{
		height: 220px;
	}
}
#champions .championsMain .championsBox .championsBoxThumbnail::after{
	position: absolute;
	content: '';
	width: 100%;
	height :100%;
	top: 0;
	left: 0;
	z-index: 2;
	background: url(../images/testimonial/champions.webp);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
#champions .championsMain .championsBox .championsBoxThumbnail img{
	width :100%;
	height: 100%;
	object-fit: contain;
	transform: scale(.9);
}
#champions .championsMain .championsBox .championsBoxDetails{
	width: 100%;
	margin-top: 10px;
	display :flex;
	flex-direction: column;
  background: rgba(82, 82, 82, 0.34);
	border-radius :10px;
	overflow: hidden;
	padding: 15px;
}
#champions .championsMain .championsBox .championsBoxDetails h4{
	font-size: 18px;
	color: white;
	text-align: center;
}
#champions .championsMain .championsBox .championsBoxDetails p{
	font-size: 14px;
	color: white;
	text-align: center;
}


#testimonials {
  width: 100%;
  padding: 100px 0px;
  background: var(--secondaryColor);
	display:none;
}
@media (max-width: 480px) {
  #testimonials {
    padding: 80px 0px;
  }
}
#testimonials .testimonialsHead {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#testimonials .testimonialsHead h6 {
  font-size: 20px;
  border-left: 5px double var(--secondaryColor);
  padding: 2px 20px;
  color: var(--secondaryColor);
  text-transform: uppercase;
  letter-spacing: 5px;
  background: #f9f8f8;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0px 50px 50px 0px;
}
@media (max-width: 480px) {
  #testimonials .testimonialsHead h6 {
    font-size: 18px;
  }
}
#testimonials .testimonialsHead h2 {
  font-size: 5em;
  font-family: myFont7;
  line-height: 1.5;
  margin-top: 20px;
  color: white;
}
@media (max-width: 1800px) {
  #testimonials .testimonialsHead h2 {
    font-size: 3.5em;
  }
}
@media (max-width: 1024px) {
  #testimonials .testimonialsHead h2 {
    font-size: 3em;
  }
}
@media (max-width: 768px) {
  #testimonials .testimonialsHead h2 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #testimonials .testimonialsHead h2 {
    font-size: 2em;
  }
}
#testimonials .testimonialsMain {
  width: 100%;
  margin-top: 50px;
}
#testimonials .testimonialsMain .testimonialsBox {
  width: 100%;
  border-radius: 20px;
  padding: 30px;
  background: rgba(82, 82, 82, 0.34);
  display: flex;
  flex-direction: column;
}
#testimonials .testimonialsMain .testimonialsBox .icon1 {
  transform: rotate(180deg);
  text-align: left;
  margin-right: auto;
  color: white;
  font-size: 30px;
  opacity: 0.5;
}
#testimonials .testimonialsMain .testimonialsBox p {
  font-size: 16px;
  color: white;
  margin-top: 20px;
  font-family: myFont11;
  opacity: 0.7;
  line-height: 1.7;
}
#testimonials .testimonialsMain .testimonialsBox .icon2 {
  text-align: right;
  color: white;
  font-size: 30px;
  margin-top: 20px;
  opacity: 0.5;
}
#testimonials .testimonialsMain .testimonialsBox .testimonialsBoxProfile {
  width: 100%;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}
#testimonials .testimonialsMain .testimonialsBox .testimonialsBoxProfile .testimonialsBoxProfileThumbnail {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2078431373);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
#testimonials .testimonialsMain .testimonialsBox .testimonialsBoxProfile .testimonialsBoxProfileThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#testimonials .testimonialsMain .testimonialsBox .testimonialsBoxProfile h3 {
  font-size: 25px;
  color: white;
  font-family: myFont11;
  margin-top: 10px;
}
@media (max-width: 1800px) {
  #testimonials .testimonialsMain .testimonialsBox .testimonialsBoxProfile h3 {
    font-size: 20px;
  }
}
#testimonials .testimonialsMain .testimonialsBox .testimonialsBoxProfile h6 {
  font-size: 14px;
  color: white;
  margin-top: 0px;
  opacity: 0.7;
}

#gallery {
  width: 100%;
  padding: 20px 20px 10px 20px;
  background: white;
}
#gallery .galleryListMain {
  width: 100%;
  line-height: 0;
  -webkit-column-count: 3;
  -webkit-column-gap: 10px;
  -moz-column-count: 3;
  -moz-column-gap: 10px;
  column-count: 3;
  column-gap: 10px;
}
@media (max-width: 768px) {
  #gallery .galleryListMain {
    -webkit-column-count: 2;
    -webkit-column-gap: 10px;
    -moz-column-count: 2;
    -moz-column-gap: 10px;
    column-count: 2;
    column-gap: 10px;
  }
}
@media (max-width: 480px) {
  #gallery .galleryListMain {
    -moz-column-gap: 10px;
    column-gap: 10px;
    -moz-column-count: 2;
    column-count: 2;
  }
}
#gallery .galleryListMain .galleryListBox {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
@media (max-width: 480px) {
  #gallery .galleryListMain .galleryListBox {
    margin-top: 10px;
  }
}
#gallery .galleryListMain .galleryListBox:hover img {
  transition: 0.2s;
  transform: scale(0.95);
}
#gallery .galleryListMain .galleryListBox:nth-child(1) {
  margin-top: 0;
}
#gallery .galleryListMain .galleryListBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.2s;
  border-radius: 10px;
  overflow: hidden;
}

#contact {
  width: 100%;
  padding: 100px 0px;
  background: rgb(10, 0, 29);
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media (max-width: 480px) {
  #contact {
    padding: 80px 0px;
  }
}
#contact .contactMain {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#contact .contactMain h2 {
  font-size: 4em;
  font-family: myFont7;
  line-height: 1.5;
  margin-top: 20px;
  color: white;
  text-align: center;
  width: 60%;
}
@media (max-width: 1800px) {
  #contact .contactMain h2 {
    font-size: 3.2em;
  }
}
@media (max-width: 1024px) {
  #contact .contactMain h2 {
    width: 80%;
    font-size: 3em;
  }
}
@media (max-width: 768px) {
  #contact .contactMain h2 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #contact .contactMain h2 {
    font-size: 2em;
    width: 100%;
  }
}
#contact .contactMain h2 span {
  color: rgb(255, 225, 77);
  font-family: myFont7;
}
#contact .contactMain .contactBtnArea {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
}
#contact .contactMain .contactBtnArea a {
  text-decoration: none;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-size: 18px;
  padding: 12px 45px;
  border: 1px solid rgb(255, 225, 77);
  transition: 0.3s;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  #contact .contactMain .contactBtnArea a {
    font-size: 14px;
  }
}
#contact .contactMain .contactBtnArea .contactBtn {
  background: rgb(255, 225, 77);
  color: black;
}
#contact .contactMain .contactBtnArea .contactBtn:hover {
  background: var(--secondaryColor);
  border-color: var(--secondaryColor);
  transition: 0.3s;
  color: white;
}
#contact .contactMain .contactBtnArea .serviceBtn:hover {
  background: var(--secondaryColor);
  border-color: var(--secondaryColor);
  transition: 0.3s;
}
#contact .line1 {
  position: absolute;
  right: -10px;
  top: -10px;
  width: 200px;
  z-index: -1;
}
#contact .line1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#contact .line2 {
  position: absolute;
  left: -20px;
  bottom: -20px;
  width: 200px;
  z-index: -1;
}
#contact .line2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

footer {
  width: 100%;
  padding: 100px 0px 50px 0px;
}
@media (max-width: 480px) {
  footer {
    padding: 80px 0px 50px 0px;
  }
}
footer .footerMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  footer .footerMain {
    row-gap: 50px;
  }
}
footer .footerMain .footerCol1 {
  width: 400px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1800px) {
  footer .footerMain .footerCol1 {
    width: 25%;
  }
}
@media (max-width: 1024px) {
  footer .footerMain .footerCol1 {
    width: 100%;
  }
}
footer .footerMain .footerCol1 .footerLogo {
  width: 100%;
}
@media (max-width: 1024px) {
  footer .footerMain .footerCol1 .footerLogo {
    width: 300px;
  }
}
@media (max-width: 480px) {
  footer .footerMain .footerCol1 .footerLogo {
    width: 100%;
  }
}
footer .footerMain .footerCol1 .footerLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .footerMain .footerCol1 .footerSocialLinks {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .footerMain .footerCol1 .footerSocialLinks a {
  text-decoration: none;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f9f8f8;
  border-radius: 10px;
  color: black;
  font-size: 18px;
  transition: 0.3s;
}
footer .footerMain .footerCol1 .footerSocialLinks a:hover {
  transition: 0.3s;
  background: var(--primaryColor);
  color: white;
}
footer .footerMain .footerLinks {
  width: 400px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1800px) {
  footer .footerMain .footerLinks {
    width: 20%;
  }
}
@media (max-width: 1024px) {
  footer .footerMain .footerLinks {
    width: 48%;
  }
}
@media (max-width: 480px) {
  footer .footerMain .footerLinks {
    width: 100%;
  }
}
footer .footerMain .footerLinks h2 {
  font-size: 20px;
  font-family: myFont1;
  border-left: 5px double var(--secondaryColor);
  padding: 4px 20px;
  color: var(--secondaryColor);
  text-transform: uppercase;
  background: #f9f8f8;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0px 50px 50px 0px;
}
@media (max-width: 1800px) {
  footer .footerMain .footerLinks h2 {
    font-size: 16px;
  }
}
footer .footerMain .footerLinks ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
  margin-top: 30px;
}
footer .footerMain .footerLinks ul li {
  list-style: none;
  flex: 0 0 48%;
}
@media (max-width: 1800px) {
  footer .footerMain .footerLinks ul li {
    flex: 100%;
  }
}
footer .footerMain .footerLinks ul li a {
  text-decoration: none;
  display: flex;
  color: black;
  font-size: 16px;
}
footer .footerMain .footerLinks ul li a:hover {
  text-decoration: underline;
  color: var(--primaryColor);
}
footer .footerMain .footerContacts {
  max-width: 400px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1800px) {
  footer .footerMain .footerContacts {
    width: 30%;
  }
}
@media (max-width: 1024px) {
  footer .footerMain .footerContacts {
    width: 48%;
  }
}
@media (max-width: 480px) {
  footer .footerMain .footerContacts {
    width: 100%;
  }
}
footer .footerMain .footerContacts h2 {
  font-size: 20px;
  font-family: myFont1;
  border-left: 5px double var(--secondaryColor);
  padding: 4px 20px;
  color: var(--secondaryColor);
  text-transform: uppercase;
  background: #f9f8f8;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0px 50px 50px 0px;
}
@media (max-width: 1800px) {
  footer .footerMain .footerContacts h2 {
    font-size: 16px;
  }
}
footer .footerMain .footerContacts span {
  margin-top: 30px;
  font-size: 12px;
  color: var(--secondaryTextColor);
}
footer .footerMain .footerContacts p {
  font-size: 16px;
  margin-top: 5px;
  line-height: 1.5;
}
footer .footerMain .footerContacts a {
  text-decoration: none;
  color: black;
  font-size: 16px;
  margin-top: 5px;
  line-height: 1.5;
}
footer .footerMain .footerContacts a:hover {
  text-decoration: underline;
}
footer .footerStrip {
  width: 100%;
  margin-top: 50px;
  border-top: 1px solid #eee;
  padding-top: 50px;
}
footer .footerStrip .footerStripMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
footer .footerStrip p {
  font-size: 12px;
  color: var(--secondaryTextColor);
}
footer .footerStrip .desined {
  font-size: 12px;
  display: flex;
  align-items: center;
  color: var(--secondaryTextColor);
}
footer .footerStrip .desined i {
  color: var(--primaryColor);
  margin: 0px 10px;
  font-size: 16px;
}
footer .footerStrip .desined a {
  text-decoration: none;
}
footer .footerStrip .desined a .footerStripLogo {
  width: 60px;
}
footer .footerStrip .desined a .footerStripLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  filter: grayscale(1);
}

#aboutBanner {
  width: 100%;
  margin-top: 110px;
  background: #170055;
  padding: 200px 0px;
}
@media (max-width: 1800px) {
  #aboutBanner {
    padding: 100px 0px;
  }
}
@media (max-width: 480px) {
  #aboutBanner {
    margin-top: 60px;
    padding-bottom: 80px;
  }
}
#aboutBanner .aboutBannerMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
#aboutBanner .aboutBannerMain .aboutBannerDetails {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  #aboutBanner .aboutBannerMain .aboutBannerDetails {
    flex: 100%;
    margin-top: 50px;
    order: 2;
  }
}
#aboutBanner .aboutBannerMain .aboutBannerDetails h6 {
  font-size: 20px;
  border-left: 5px double var(--secondaryColor);
  padding: 2px 20px;
  color: var(--secondaryColor);
  text-transform: uppercase;
  letter-spacing: 5px;
  background: #f9f8f8;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0px 50px 50px 0px;
}
@media (max-width: 1800px) {
  #aboutBanner .aboutBannerMain .aboutBannerDetails h6 {
    font-size: 18px;
  }
}
#aboutBanner .aboutBannerMain .aboutBannerDetails h1 {
  font-size: 5em;
  color: white;
  margin-top: 30px;
  font-family: myFont7;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.1176470588);
}
@media (max-width: 1800px) {
  #aboutBanner .aboutBannerMain .aboutBannerDetails h1 {
    font-size: 3.5em;
  }
}
@media (max-width: 1024px) {
  #aboutBanner .aboutBannerMain .aboutBannerDetails h1 {
    font-size: 3.5em;
  }
}
@media (max-width: 768px) {
  #aboutBanner .aboutBannerMain .aboutBannerDetails h1 {
    font-size: 3em;
  }
}
@media (max-width: 480px) {
  #aboutBanner .aboutBannerMain .aboutBannerDetails h1 {
    font-size: 2em;
  }
}
#aboutBanner .aboutBannerMain .aboutBannerDetails p {
  font-size: 14px;
  margin-top: 40px;
  line-height: 2;
  font-family: myFont11;
  color: white;
}
#aboutBanner .aboutBannerMain .aboutBannerThumbnail {
  flex: 0 0 45%;
  position: relative;
  z-index: 0;
}
@media (max-width: 1024px) {
  #aboutBanner .aboutBannerMain .aboutBannerThumbnail {
    flex: 100%;
    order: 1;
  }
}
#aboutBanner .aboutBannerMain .aboutBannerThumbnail::after {
  position: absolute;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  /*background: rgb(255, 225, 77);*/
	background: url(../images/about2.jpeg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
  top: 0;
  left: 0;
  transform: rotate(10deg);
  border-radius: 20px;
  border: 2px solid rgb(255, 225, 77);
}
#aboutBanner .aboutBannerMain .aboutBannerThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgb(255, 225, 77);
}

#innerAbout {
  width: 100%;
  padding: 100px 0px;
}
@media (max-width: 480px) {
  #innerAbout {
    padding-bottom: 80px 0px;
  }
}
#innerAbout .innerAboutMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  #innerAbout .innerAboutMain {
    flex-wrap: wrap;
  }
}
#innerAbout .innerAboutMain .innerAboutThumbnail {
  flex: 0 0 40%;
  position: sticky;
  top: 100px;
}
@media (max-width: 1024px) {
  #innerAbout .innerAboutMain .innerAboutThumbnail {
    flex: 100%;
    position: inherit;
  }
}
#innerAbout .innerAboutMain .innerAboutThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 20px;
  overflow: hidden;
}
#innerAbout .innerAboutMain .innerAboutDetails {
  flex: 0 0 55%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 1024px) {
  #innerAbout .innerAboutMain .innerAboutDetails {
    flex: 100%;
    margin-top: 40px;
  }
}
#innerAbout .innerAboutMain .innerAboutDetails p {
  font-size: 16px;
  line-height: 2;
  font-family: myFont11;
}
@media (max-width: 1024px) {
  #innerAbout .innerAboutMain .innerAboutDetails p {
    font-size: 14px;
  }
}
#innerAbout .innerAboutMain .innerAboutDetails .innerAboutDetailsMsg {
  padding: 30px;
  border-radius: 20px;
  background: var(--secondaryColor);
}
@media (max-width: 480px) {
  #innerAbout .innerAboutMain .innerAboutDetails .innerAboutDetailsMsg {
    padding: 20px;
  }
}
#innerAbout .innerAboutMain .innerAboutDetails .innerAboutDetailsMsg p {
  font-size: 25px;
  font-family: myFont6;
  color: white;
}
@media (max-width: 1800px) {
  #innerAbout .innerAboutMain .innerAboutDetails .innerAboutDetailsMsg p {
    font-size: 22px;
  }
}
@media (max-width: 1024px) {
  #innerAbout .innerAboutMain .innerAboutDetails .innerAboutDetailsMsg p {
    font-size: 20px;
  }
}
#innerAbout .aboutList {
  width: 100%;
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 40px;
}
@media (max-width: 480px) {
  #innerAbout .aboutList {
    margin-top: 50px;
  }
}
#innerAbout .aboutList .aboutListBox {
  flex: 0 0 32%;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #eee;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0.796192px 2.38858px -0.625px, rgba(0, 0, 0, 0.05) 0px 2.41451px 7.24352px -1.25px, rgba(0, 0, 0, 0.05) 0px 6.38265px 19.148px -1.875px, rgba(0, 0, 0, 0.05) 0px 20px 60px -2.5px;
}
@media (max-width: 768px) {
  #innerAbout .aboutList .aboutListBox {
    flex: 0 0 48%;
  }
}
@media (max-width: 480px) {
  #innerAbout .aboutList .aboutListBox {
    flex: 100%;
  }
}
#innerAbout .aboutList .aboutListBox h3 {
  font-size: 3em;
  font-family: myFont1;
  color: var(--secondaryColor);
}
@media (max-width: 1800px) {
  #innerAbout .aboutList .aboutListBox h3 {
    font-size: 2.5em;
  }
}
#innerAbout .aboutList .aboutListBox span {
  font-size: 18px;
  margin-top: 10px;
}
@media (max-width: 1800px) {
  #innerAbout .aboutList .aboutListBox span {
    font-size: 16px;
  }
}

#missionVision {
  width: 100%;
  padding: 100px 0px;
}
@media (max-width: 1800px) {
  #missionVision {
    padding: 0px 0px 100px 0px;
  }
}
@media (max-width: 480px) {
  #missionVision {
    padding: 0px 0px 80px 0px;
  }
}
#missionVision .missionVisionMain {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#missionVision .missionVisionMain .missionVisionBox {
  width: 100%;
  border: 1px solid #eee;
  padding: 100px 10%;
  display: flex;
	flex-direction :column;
	margin-top :40px;
}
@media (max-width: 1024px) {
  #missionVision .missionVisionMain .missionVisionBox {
    padding: 100px 5%;
  }
}
@media (max-width: 768px) {
  #missionVision .missionVisionMain .missionVisionBox {
    padding: 50px 2.5%;
  }
}
#missionVision .missionVisionMain .missionVisionBox:nth-of-type(1){
	margin-top: 0;
}
#missionVision .missionVisionMain .missionVisionBox .missionVisionBoxHead {
  width :100%;
}
#missionVision .missionVisionMain .missionVisionBox .missionVisionBoxHead h2 {
  font-size: 3.5em;
  line-height: 1.2;
}
@media (max-width: 1800px) {
  #missionVision .missionVisionMain .missionVisionBox .missionVisionBoxHead h2 {
    font-size: 3.5em;
  }
}
@media (max-width: 1024px) {
  #missionVision .missionVisionMain .missionVisionBox .missionVisionBoxHead h2 {
    font-size: 3em;
  }
}
@media (max-width: 768px) {
  #missionVision .missionVisionMain .missionVisionBox .missionVisionBoxHead h2 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #missionVision .missionVisionMain .missionVisionBox .missionVisionBoxHead h2 {
    font-size: 2em;
  }
}
#missionVision .missionVisionMain .missionVisionBox .missionVisionBoxDetails {
  width :100%;
	margin-top: 40px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  #missionVision .missionVisionMain .missionVisionBox .missionVisionBoxDetails {
    margin-top: 20px;
  }
}
#missionVision .missionVisionMain .missionVisionBox .missionVisionBoxDetails p {
  font-size: 18px;
  line-height: 2;
  font-family: myFont11;
}
@media (max-width: 1024px) {
  #missionVision .missionVisionMain .missionVisionBox .missionVisionBoxDetails p {
    font-size: 16px;
  }
}

#servicesPage {
  width: 100%;
  margin-top: 110px;
  padding: 100px 0px;
}
@media (max-width: 480px) {
  #servicesPage {
    margin-top: 60px;
    padding: 80px 0px 0px 0px;
  }
}
#servicesPage .servicesPageTitle {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#servicesPage .servicesPageTitle h6 {
  font-size: 20px;
  border-left: 5px double var(--secondaryColor);
  padding: 2px 20px;
  color: var(--secondaryColor);
  text-transform: uppercase;
  letter-spacing: 5px;
  background: #f9f8f8;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0px 50px 50px 0px;
}
@media (max-width: 480px) {
  #servicesPage .servicesPageTitle h6 {
    font-size: 18px;
  }
}
#servicesPage .servicesPageTitle h2 {
  font-size: 5em;
  font-family: myFont7;
  line-height: 1.5;
  margin-top: 20px;
  color: var(--primaryColor);
}
@media (max-width: 1800px) {
  #servicesPage .servicesPageTitle h2 {
    font-size: 3.5em;
  }
}
@media (max-width: 1024px) {
  #servicesPage .servicesPageTitle h2 {
    font-size: 3em;
  }
}
@media (max-width: 768px) {
  #servicesPage .servicesPageTitle h2 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #servicesPage .servicesPageTitle h2 {
    font-size: 2em;
  }
}
#servicesPage .servicesPageMain {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}
@media (max-width: 480px) {
  #servicesPage .servicesPageMain {
    margin-top: 0px;
  }
}
#servicesPage .servicesPageMain .servicesPageBox {
  padding: 100px 0px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 480px) {
  #servicesPage .servicesPageMain .servicesPageBox {
    padding: 80px 0px;
  }
}
#servicesPage .servicesPageMain .servicesPageBox:nth-of-type(1) {
  border-top: none;
}
#servicesPage .servicesPageMain .servicesPageBox .servicesPageBoxThumbnail {
  flex: 0 0 40%;
  position: relative;
  z-index: 0;
}
@media (max-width: 1800px) {
  #servicesPage .servicesPageMain .servicesPageBox .servicesPageBoxThumbnail {
    flex: 0 0 45%;
  }
}
@media (max-width: 768px) {
  #servicesPage .servicesPageMain .servicesPageBox .servicesPageBoxThumbnail {
    flex: 100%;
    order: 1;
  }
}
#servicesPage .servicesPageMain .servicesPageBox .servicesPageBoxThumbnail::after {
  position: absolute;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(255, 225, 77);
  top: 0;
  left: 0;
  transform: rotate(5deg);
  border-radius: 20px;
}
#servicesPage .servicesPageMain .servicesPageBox .servicesPageBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgb(255, 225, 77);
}
#servicesPage .servicesPageMain .servicesPageBox .servicesPageBoxDetails {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  #servicesPage .servicesPageMain .servicesPageBox .servicesPageBoxDetails {
    flex: 100%;
    order: 2;
    margin-top: 40px;
  }
}
#servicesPage .servicesPageMain .servicesPageBox .servicesPageBoxDetails h3 {
  font-size: 3em;
  font-family: myFont7;
  line-height: 1.5;
}
@media (max-width: 1800px) {
  #servicesPage .servicesPageMain .servicesPageBox .servicesPageBoxDetails h3 {
    font-size: 2.8em;
  }
}
@media (max-width: 1024px) {
  #servicesPage .servicesPageMain .servicesPageBox .servicesPageBoxDetails h3 {
    font-size: 2.5em;
  }
}
@media (max-width: 768px) {
  #servicesPage .servicesPageMain .servicesPageBox .servicesPageBoxDetails h3 {
    font-size: 2.3em;
  }
}
@media (max-width: 480px) {
  #servicesPage .servicesPageMain .servicesPageBox .servicesPageBoxDetails h3 {
    font-size: 2em;
  }
}
#servicesPage .servicesPageMain .servicesPageBox .servicesPageBoxDetails p {
  font-size: 18px;
  margin-top: 20px;
  line-height: 2;
  font-family: myFont11;
  color: var(--secondaryTextColor);
}
@media (max-width: 1800px) {
  #servicesPage .servicesPageMain .servicesPageBox .servicesPageBoxDetails p {
    font-size: 16px;
  }
}
#servicesPage .servicesPageMain .servicesPageBox .servicesPageBoxDetails .enqBtn {
  text-decoration: none;
  background: var(--primaryColor);
  color: white;
  font-size: 16px;
  padding: 14px 40px;
  border-radius: 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 30px;
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 480px) {
  #servicesPage .servicesPageMain .servicesPageBox .servicesPageBoxDetails .enqBtn {
    padding: 10px 30px;
  }
}
#servicesPage .servicesPageMain .servicesPageBox .servicesPageBoxDetails .enqBtn:hover {
  transition: 0.3s;
  background: var(--secondaryColor);
}

#galleryBanner {
  width: 100%;
  margin-top: 110px;
  position: relative;
  z-index: 0;
  background: url(../images/gallery/img2.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 480px) {
  #galleryBanner {
    margin-top: 60px;
  }
}
#galleryBanner .galleryBannerMain {
  width: 100%;
  padding: 150px 0px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1800px) {
  #galleryBanner .galleryBannerMain {
    padding: 100px 0px;
  }
}
@media (max-width: 480px) {
  #galleryBanner .galleryBannerMain {
    padding: 80px 0px;
  }
}
#galleryBanner .galleryBannerMain h6 {
  font-size: 20px;
  border-left: 5px double var(--secondaryColor);
  padding: 2px 20px;
  color: var(--secondaryColor);
  text-transform: uppercase;
  letter-spacing: 5px;
  background: #f9f8f8;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0px 50px 50px 0px;
}
@media (max-width: 1800px) {
  #galleryBanner .galleryBannerMain h6 {
    font-size: 18px;
  }
}
#galleryBanner .galleryBannerMain h1 {
  font-size: 5em;
  color: white;
  margin-top: 30px;
  font-family: myFont7;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.1176470588);
}
@media (max-width: 1800px) {
  #galleryBanner .galleryBannerMain h1 {
    font-size: 3.5em;
  }
}
@media (max-width: 1024px) {
  #galleryBanner .galleryBannerMain h1 {
    font-size: 3.5em;
  }
}
@media (max-width: 768px) {
  #galleryBanner .galleryBannerMain h1 {
    font-size: 3em;
  }
}
@media (max-width: 480px) {
  #galleryBanner .galleryBannerMain h1 {
    font-size: 2em;
  }
}
#galleryBanner video {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  left: 0;
}

#innerGallery {
  width: 100%;
  padding: 20px 20px 10px 20px;
  background: white;
}
#innerGallery .innerGalleryListMain {
  width: 100%;
  line-height: 0;
  -webkit-column-count: 3;
  -webkit-column-gap: 10px;
  -moz-column-count: 3;
  -moz-column-gap: 10px;
  column-count: 3;
  column-gap: 10px;
}
@media (max-width: 1024px) {
  #innerGallery .innerGalleryListMain {
    -webkit-column-count: 2;
    -webkit-column-gap: 10px;
    -moz-column-count: 2;
    -moz-column-gap: 10px;
    column-count: 2;
    column-gap: 10px;
  }
}
@media (max-width: 480px) {
  #innerGallery .innerGalleryListMain {
    -moz-column-gap: 10px;
    column-gap: 10px;
    -moz-column-count: 2;
    column-count: 2;
  }
}
#innerGallery .innerGalleryListMain .innerGalleryListBox {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
@media (max-width: 480px) {
  #innerGallery .innerGalleryListMain .innerGalleryListBox {
    margin-top: 10px;
  }
}
#innerGallery .innerGalleryListMain .innerGalleryListBox:hover img {
  transition: 0.2s;
  transform: scale(0.95);
}
#innerGallery .innerGalleryListMain .innerGalleryListBox:nth-child(1) {
  margin-top: 0;
}
#innerGallery .innerGalleryListMain .innerGalleryListBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.2s;
  border-radius: 10px;
  overflow: hidden;
}

#blogBanner {
  width: 100%;
  margin-top: 110px;
  padding: 100px 0px;
}
@media (max-width: 768px) {
  #blogBanner {
    padding: 100px 0px 50px 0px;
  }
}
@media (max-width: 480px) {
  #blogBanner {
    padding: 50px 0px;
    margin-top: 60px;
  }
}
#blogBanner .blogBannerMain {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#blogBanner .blogBannerMain h6 {
  font-size: 20px;
  border-left: 5px double var(--secondaryColor);
  padding: 2px 20px;
  color: var(--secondaryColor);
  text-transform: uppercase;
  letter-spacing: 5px;
  background: #f9f8f8;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0px 50px 50px 0px;
}
@media (max-width: 1800px) {
  #blogBanner .blogBannerMain h6 {
    font-size: 18px;
  }
}
#blogBanner .blogBannerMain h1 {
  font-size: 5em;
  margin-top: 30px;
  font-family: myFont7;
  line-height: 1.2;
}
@media (max-width: 1800px) {
  #blogBanner .blogBannerMain h1 {
    font-size: 3.5em;
  }
}
@media (max-width: 1024px) {
  #blogBanner .blogBannerMain h1 {
    font-size: 3.2em;
  }
}
@media (max-width: 768px) {
  #blogBanner .blogBannerMain h1 {
    font-size: 3em;
  }
}
@media (max-width: 480px) {
  #blogBanner .blogBannerMain h1 {
    font-size: 2em;
  }
}

#blogList {
  width: 100%;
  padding-bottom: 100px;
}
#blogList .blogListMain {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0px 15%;
  gap: 50px;
}
@media (max-width: 1800px) {
  #blogList .blogListMain {
    padding: 0px 10%;
  }
}
@media (max-width: 1024px) {
  #blogList .blogListMain {
    padding: 0px 5%;
  }
}
@media (max-width: 768px) {
  #blogList .blogListMain {
    padding: 0px;
    gap: 30px;
  }
}
#blogList .blogListMain .blogListBox {
  width: 100%;
  border: 1px solid #eee;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: hidden;
}
#blogList .blogListMain .blogListBox:nth-of-type(odd) .blogListBoxThumbnail {
  background: #ee78b9;
}
#blogList .blogListMain .blogListBox:nth-of-type(even) .blogListBoxThumbnail {
  background: #fee444;
}
#blogList .blogListMain .blogListBox .blogListBoxDetails {
  width: 50%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 480px) {
  #blogList .blogListMain .blogListBox .blogListBoxDetails {
    width: 100%;
    padding: 20px;
    order: 2;
  }
}
#blogList .blogListMain .blogListBox .blogListBoxDetails h2 {
  font-size: 30px;
  font-family: myFont6;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 75px;
}
#blogList .blogListMain .blogListBox .blogListBoxDetails p {
  font-size: 14px;
  line-height: 1.5;
  font-family: myFont11;
  margin-top: 20px;
  color: var(--secondaryTextColor);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 45px;
}
#blogList .blogListMain .blogListBox .blogListBoxDetails a {
  text-decoration: none;
  font-size: 14px;
  padding: 10px 30px;
  background: var(--primaryColor);
  color: white;
  border-radius: 10px;
  margin-top: 30px;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.3s;
}
#blogList .blogListMain .blogListBox .blogListBoxDetails a:hover {
  transition: 0.3s;
  background: var(--secondaryColor);
}
#blogList .blogListMain .blogListBox .blogListBoxThumbnail {
  width: 50%;
  background: #eee;
  overflow: hidden;
  padding: 20px 20px 0px 20px;
}
@media (max-width: 480px) {
  #blogList .blogListMain .blogListBox .blogListBoxThumbnail {
    width: 100%;
    order: 1;
  }
}
#blogList .blogListMain .blogListBox .blogListBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 20px 0px 0px;
}

#innerBlog {
  width: 100%;
  margin-top: 110px;
  padding: 50px 0px 100px 0px;
}
@media (max-width: 480px) {
  #innerBlog {
    margin-top: 60px;
    padding: 50px 0px 80px 0px;
  }
}
#innerBlog .innerBlogMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
#innerBlog .innerBlogMain .innerBlogMainCol1 {
  flex: 0 0 75%;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 100px;
}
@media (max-width: 1800px) {
  #innerBlog .innerBlogMain .innerBlogMainCol1 {
    flex: 0 0 70%;
  }
}
@media (max-width: 1024px) {
  #innerBlog .innerBlogMain .innerBlogMainCol1 {
    flex: 100%;
  }
}
#innerBlog .innerBlogMain .innerBlogMainCol1 .innerBlogThumbnail {
  width: 100%;
}
#innerBlog .innerBlogMain .innerBlogMainCol1 .innerBlogThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgb(255, 225, 77);
}
#innerBlog .innerBlogMain .innerBlogMainCol1 .innerBlogDetails {
  width: 100%;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}
#innerBlog .innerBlogMain .innerBlogMainCol1 .innerBlogDetails h1 {
  font-size: 3em;
  font-family: myFont7;
  line-height: 1.3;
}
@media (max-width: 1800px) {
  #innerBlog .innerBlogMain .innerBlogMainCol1 .innerBlogDetails h1 {
    font-size: 2.5em;
  }
}
@media (max-width: 768px) {
  #innerBlog .innerBlogMain .innerBlogMainCol1 .innerBlogDetails h1 {
    font-size: 2.3em;
  }
}
@media (max-width: 480px) {
  #innerBlog .innerBlogMain .innerBlogMainCol1 .innerBlogDetails h1 {
    font-size: 2em;
  }
}
#innerBlog .innerBlogMain .innerBlogMainCol1 .innerBlogDetails p {
  font-size: 16px;
  line-height: 2;
  font-family: myFont11 !important;
  margin-top: 30px;
}
@media (max-width: 1024px) {
  #innerBlog .innerBlogMain .innerBlogMainCol1 .innerBlogDetails p {
    font-size: 14px;
  }
}
#innerBlog .innerBlogMain .innerBlogMainCol2 {
  flex: 0 0 20%;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 100px;
}
@media (max-width: 1800px) {
  #innerBlog .innerBlogMain .innerBlogMainCol2 {
    flex: 0 0 25%;
  }
}
@media (max-width: 1024px) {
  #innerBlog .innerBlogMain .innerBlogMainCol2 {
    display: none;
  }
}
#innerBlog .innerBlogMain .innerBlogMainCol2 h3 {
  font-size: 20px;
}
#innerBlog .innerBlogMain .innerBlogMainCol2 ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
#innerBlog .innerBlogMain .innerBlogMainCol2 ul li {
  list-style: none;
}
#innerBlog .innerBlogMain .innerBlogMainCol2 ul li .innerBlogMoreBox {
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  align-items: center;
  transition: 0.3s;
}
#innerBlog .innerBlogMain .innerBlogMainCol2 ul li .innerBlogMoreBox:hover {
  transition: 0.3s;
  border: 1px solid var(--primaryColor);
}
#innerBlog .innerBlogMain .innerBlogMainCol2 ul li .innerBlogMoreBox .innerBlogMoreBoxThumbnail {
  width: 110px;
  height: 75px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
}
#innerBlog .innerBlogMain .innerBlogMainCol2 ul li .innerBlogMoreBox .innerBlogMoreBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#innerBlog .innerBlogMain .innerBlogMainCol2 ul li .innerBlogMoreBox .innerBlogMoreBoxDetails {
  width: calc(100% - 110px);
  display: flex;
  flex-direction: column;
  padding: 10px;
}
#innerBlog .innerBlogMain .innerBlogMainCol2 ul li .innerBlogMoreBox .innerBlogMoreBoxDetails h2 {
  font-size: 16px;
  font-family: myFont6;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  height: 20px;
  color: black;
}
#innerBlog .innerBlogMain .innerBlogMainCol2 ul li .innerBlogMoreBox .innerBlogMoreBoxDetails p {
  font-size: 10px;
  line-height: 1.5;
  font-family: myFont11;
  margin-top: 2px;
  color: var(--secondaryTextColor);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 30px;
}

#contactBanner {
  width: 100%;
  margin-top: 110px;
  padding: 100px 0px;
  background: rgb(249, 249, 252);
}
@media (max-width: 768px) {
  #contactBanner {
    padding: 50px 0px 100px 0px;
  }
}
@media (max-width: 480px) {
  #contactBanner {
    margin-top: 60px;
    padding: 50px 0px 80px 0px;
  }
}
#contactBanner .contactBannerMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#contactBanner .contactBannerMain .contactBannerForm {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  #contactBanner .contactBannerMain .contactBannerForm {
    flex: 100%;
    order: 2;
    margin-top: 40px;
  }
}
#contactBanner .contactBannerMain .contactBannerForm h6 {
  font-size: 20px;
  border-left: 5px double var(--secondaryColor);
  padding: 2px 20px;
  color: var(--secondaryColor);
  text-transform: uppercase;
  letter-spacing: 5px;
  background: #f9f8f8;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0px 50px 50px 0px;
}
@media (max-width: 480px) {
  #contactBanner .contactBannerMain .contactBannerForm h6 {
    font-size: 18px;
  }
}
#contactBanner .contactBannerMain .contactBannerForm h1 {
  font-size: 5em;
  font-family: myFont7;
  line-height: 1.5;
  margin-top: 20px;
}
@media (max-width: 1800px) {
  #contactBanner .contactBannerMain .contactBannerForm h1 {
    font-size: 3.5em;
  }
}
@media (max-width: 1024px) {
  #contactBanner .contactBannerMain .contactBannerForm h1 {
    font-size: 3em;
  }
}
@media (max-width: 768px) {
  #contactBanner .contactBannerMain .contactBannerForm h1 {
    font-size: 2.5em;
  }
}
@media (max-width: 480px) {
  #contactBanner .contactBannerMain .contactBannerForm h1 {
    font-size: 2em;
  }
}
#contactBanner .contactBannerMain .contactBannerForm p {
  font-size: 18px;
  margin-top: 10px;
  line-height: 2;
  font-family: myFont11;
}
@media (max-width: 1800px) {
  #contactBanner .contactBannerMain .contactBannerForm p {
    font-size: 16px;
  }
}
#contactBanner .contactBannerMain .contactBannerForm form {
  width: 100%;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#contactBanner .contactBannerMain .contactBannerForm form .formGroup {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#contactBanner .contactBannerMain .contactBannerForm form .formGroup:nth-of-type(2), #contactBanner .contactBannerMain .contactBannerForm form .formGroup:nth-of-type(3) {
  width: calc(50% - 10px);
}
@media (max-width: 480px) {
  #contactBanner .contactBannerMain .contactBannerForm form .formGroup:nth-of-type(2), #contactBanner .contactBannerMain .contactBannerForm form .formGroup:nth-of-type(3) {
    width: 100%;
  }
}
#contactBanner .contactBannerMain .contactBannerForm form .formGroup input {
  width: 100%;
  height: 40px;
  border: none;
  outline: none;
  padding: 0px 20px;
  font-size: 18px;
  background: #eee;
  border-radius: 5px;
  border: 1px solid #eee;
}
#contactBanner .contactBannerMain .contactBannerForm form .formGroup input:focus {
  border: 1px solid var(--primaryColor);
}
#contactBanner .contactBannerMain .contactBannerForm form .formGroup textarea {
  width: 100%;
  height: 100px;
  border: none;
  outline: none;
  padding: 10px 20px;
  font-size: 18px;
  background: #eee;
  border-radius: 5px;
  border: 1px solid #eee;
}
#contactBanner .contactBannerMain .contactBannerForm form .formBtnArea {
  width: 100%;
}
#contactBanner .contactBannerMain .contactBannerForm form .formBtnArea button {
  width: 100%;
  height: 50px;
  background: var(--primaryColor);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 20px;
  transition: 0.3s;
}
#contactBanner .contactBannerMain .contactBannerForm form .formBtnArea button:hover {
  transition: 0.3s;
  background: var(--secondaryColor);
}
#contactBanner .contactBannerMain .contactBannerThumbnail {
  flex: 0 0 40%;
}
@media (max-width: 1024px) {
  #contactBanner .contactBannerMain .contactBannerThumbnail {
    flex: 0 0 45%;
  }
}
@media (max-width: 768px) {
  #contactBanner .contactBannerMain .contactBannerThumbnail {
    flex: 100%;
    order: 1;
  }
}
#contactBanner .contactBannerMain .contactBannerThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
}

#innerContact {
  width: 100%;
  padding: 100px 0px;
}
@media (max-width: 480px) {
  #innerContact {
    padding: 80px 0px;
  }
}
#innerContact .innerContactMain {
  display: flex;
  flex-direction: column;
}
#innerContact .innerContactMain .innerContactHead {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#innerContact .innerContactMain .innerContactHead h2 {
  font-size: 3em;
  font-family: myFont7;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 1024px) {
  #innerContact .innerContactMain .innerContactHead h2 {
    font-size: 2.5em;
  }
}
@media (max-width: 768px) {
  #innerContact .innerContactMain .innerContactHead h2 {
    font-size: 2.3em;
  }
}
@media (max-width: 480px) {
  #innerContact .innerContactMain .innerContactHead h2 {
    font-size: 2em;
  }
}
#innerContact .innerContactMain .innerContactDetails {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 40px;
  margin-top: 60px;
}
@media (max-width: 768px) {
  #innerContact .innerContactMain .innerContactDetails {
    row-gap: 20px;
    margin-top: 40px;
  }
}
#innerContact .innerContactMain .innerContactDetails .innerContactDetailsBox {
  flex: 0 0 31%;
  border: 1px solid #eee;
  padding: 40px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1800px) {
  #innerContact .innerContactMain .innerContactDetails .innerContactDetailsBox {
    padding: 30px;
  }
}
@media (max-width: 1024px) {
  #innerContact .innerContactMain .innerContactDetails .innerContactDetailsBox {
    flex: 0 0 48%;
  }
}
@media (max-width: 768px) {
  #innerContact .innerContactMain .innerContactDetails .innerContactDetailsBox {
    flex: 0 0 48.5%;
  }
  #innerContact .innerContactMain .innerContactDetails .innerContactDetailsBox:nth-of-type(3) {
    flex: 100%;
  }
}
@media (max-width: 480px) {
  #innerContact .innerContactMain .innerContactDetails .innerContactDetailsBox {
    flex: 100%;
    padding: 20px;
  }
}
#innerContact .innerContactMain .innerContactDetails .innerContactDetailsBox .innerContactDetailsBoxIcon {
  width: 70px;
  height: 70px;
  background: var(--secondaryColor);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: white;
}
@media (max-width: 1800px) {
  #innerContact .innerContactMain .innerContactDetails .innerContactDetailsBox .innerContactDetailsBoxIcon {
    width: 50px;
    height: 50px;
  }
}
#innerContact .innerContactMain .innerContactDetails .innerContactDetailsBox .innerContactDetailsBoxIcon span {
  font-size: 30px;
}
@media (max-width: 1800px) {
  #innerContact .innerContactMain .innerContactDetails .innerContactDetailsBox .innerContactDetailsBoxIcon span {
    font-size: 25px;
  }
}
#innerContact .innerContactMain .innerContactDetails .innerContactDetailsBox h4 {
  font-size: 26px;
  margin-top: 20px;
  font-family: myFont3;
}
@media (max-width: 1800px) {
  #innerContact .innerContactMain .innerContactDetails .innerContactDetailsBox h4 {
    font-size: 22px;
  }
}
#innerContact .innerContactMain .innerContactDetails .innerContactDetailsBox p {
  font-size: 16px;
  color: var(--secondaryTextColor);
  margin-top: 10px;
}
#innerContact .innerContactMain .innerContactDetails .innerContactDetailsBox a {
  color: black;
  margin-top: 20px;
  font-size: 20px;
  font-family: myFont11;
}
@media (max-width: 1800px) {
  #innerContact .innerContactMain .innerContactDetails .innerContactDetailsBox a {
    font-size: 18px;
  }
}
#innerContact .innerContactMain .innerContactDetails .innerContactDetailsBox a:hover {
  color: var(--primaryColor);
}
#innerContact .innerContactMain .innerContactDetails .innerContactDetailsBox h5 {
  color: black;
  margin-top: 20px;
  font-size: 20px;
  font-family: myFont11;
  font-weight: 400;
}
@media (max-width: 1800px) {
  #innerContact .innerContactMain .innerContactDetails .innerContactDetailsBox h5 {
    font-size: 18px;
  }
}
#innerContact .innerContactMain .innerContactMap {
  width: 100%;
  height: 400px;
  background: #eee;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 80px;
}
@media (max-width: 480px) {
  #innerContact .innerContactMain .innerContactMap {
    margin-top: 50px;
    height: 280px;
  }
}
#innerContact .innerContactMain .innerContactMap iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}


.emptyPage{
	width :100%;
	display :flex;
	justify-content :center;
	align-items :center;
	flex-direction: column;
}
.emptyPage i{
	font-size :10em;
	text-align: center;
	color: coral;
	line-height: 1;
}
.emptyPage h3{
	font-size :2em;
	text-align: center;
	font-family: myFont2;
	color: coral;
	margin-top :30px;
}
.emptyPage p{
	font-size :16px;
	text-align: center;
}

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