@import url("https://fonts.googleapis.com/css2?family=Epilogue:wght@400;500;700&display=swap");

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

:root {
  --theme-light-color: #fafafa;
  --theme-dark-color: #141414;
  --text-gray-color: rgb(0, 0, 0);
}

body {
  background-color: var(--theme-light-color);
  line-height: 1;
}

.Baskerville{
  font-family: "Libre Baskerville", serif;
}

.Gabarito{
  font-family: "Gabarito", sans-serif;
}

.cabin{
  font-family: "Cabin", sans-serif;
}

.roboto{
  font-family: "Roboto Mono", monospace;
}

.playFair{
  font-family: "Playfair Display", serif;
}
/* ------------------------------------- Navigation ------------------------------------- */

img {
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
}

ol,
ul {
  list-style: none;
}






@media screen and (max-width: 1024px) {
  .navbar__menu {
    position: absolute;
    top: 100%;
    right: -100%;
    width: 280px;
    min-height: calc(100vh - 78px);
    background-color: var(--theme-light-color);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2rem;
    padding: 2rem 1rem;
    transition: all 0.5s ease;
  }

  .navbar__menu.right-open {
    right: 0;
  }
}

.navbar__list {
  display: flex;
  justify-content: center;
  flex-grow: 1;
  gap: 2rem;
}

@media screen and (max-width: 1024px) {
  .navbar__list {
    flex-direction: column;
    flex-grow: 0;
  }
}

.navbar__list li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  transition: all 0.5s ease;
  color: white;
}

.navbar__list li a:hover {
  color: var(--theme-dark-color);
}

.navbar__list li .arrow {
  transition: 0.3s ease;
}

.navbar__list li .arrow.up {
  transform: rotate(180deg);
}

.navbar__list-drop {
  display: inline-block;
  position: relative;
}

.navbar__list-drop-menu {
  display: none;
  position: absolute;
  margin-top: 1rem;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--theme-light-color);
  border-radius: 1rem;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.122);
  z-index: 999;
}

@media screen and (max-width: 1024px) {
  .navbar__list-drop-menu {
    position: inherit;
    background-color: transparent;
    box-shadow: none;
    padding: 0.5rem 1rem;
  }
}

.navbar__list-drop-menu.open {
  display: flex;
}

.navbar__list-drop-menu.features {
  right: 0;
}

.navbar__list-drop-menu.company {
  left: 0;
  width: max-content;
}

.navbar__buttons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

@media screen and (max-width: 1024px) {
  .navbar__buttons {
    width: 100%;
    flex-direction: column;
  }
}

.navbar__buttons a {
  color: white;
  font-weight: 500;
  transition: 0.3s ease;
}

.navbar__buttons a:hover {
  color: var(--theme-dark-color);
}

.navbar__buttons-register {
  width: 100%;
  font-weight: 500;
  color: white;
  padding: 0.8rem 1.5rem;
  background-color: rgba(225, 0, 255, 0);
  border: 2px solid #ffd400;
  border-radius: 1rem;
  transition: 0.3s ease;
}

.navbar__buttons-register:hover {
  border: 2px solid var(--theme-dark-color);
  color: var(--theme-dark-color);
}

.navbar .menu {
  display: none;
  float: left;
  transition: all 275ms ease;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .navbar .menu {
    display: block;
  }
}

.navbar .menu span {
  display: block;
  width: 22px;
  height: 4px;
  background: #000000;
  margin-bottom: 2px;
  border-radius: 1px;
  transition: all 275ms ease;
}

.navbar .menu.active {
  transform: rotate(-45deg);
}

.navbar .menu.active .bar1 {
  transform: rotate(0deg) translateY(6px);
}

.navbar .menu.active .bar2 {
  opacity: 0;
}

.navbar .menu.active .bar3 {
  transform: rotate(-90deg) translateX(5px);
}

.transparentBar {
  background-color: rgba(255, 0, 0, 0);
  transition: all 0.5s;
}

.BgColour {
  color: rgb(0, 0, 0);
  transition: all 0.5s;
  background-color: #ffd400;
}



/* ------------------------------------- Video Container ------------------------------------- */

#myVideo {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  overflow: hidden;
}

.hero-heading {
  font-size: 5em;
  font-weight: 900;
  color: white;
}

.hero-para {
  font-size: 1.5em;
  line-height: 40px
}

.meetButton {
  font-size: 20px;
}

/* ------------------------------------- Sub Hero Section ------------------------------------- */


#about-section {
  margin-top: -50px;
}


h2 {
  font-size: 40px;
  font-weight: 700;
}

h6 {
  font-size: 16px;
}

p {
  font-size: 16px;
  line-height: 26px;
  font-weight: normal;
}

a {
  color: #ffde00;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover,
a:focus,
a:visited {
  text-decoration: none;
  outline: none;
  outline-offset: 0;
}

a:hover {
  color: #fabf15;
}

i {
  vertical-align: middle;
}

ul {
  padding: 0 !important;
}

li {
  list-style: none;
}

.color-base {
  color: #fabf15;
}

.bg-one-dark {
  background: #000000 !important;
}

.p-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.mt-50 {
  margin-top: 50px;
}



#about-section img {
  position: relative;
  z-index: 1;
}

.bullet-check li {
  position: relative;
  padding-left: 30px;
  padding-bottom: 10px;
  color: #000000;
}

.bullet-check li:last-child {
  padding-bottom: 0;
}

.bullet-check li:before {
  position: absolute;
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 15px;
  left: 0;
}

/*! responsive */



/* media query */

/* Media Query for Mobile Devices */
@media (max-width: 480px) {
  #about-section {
    margin-top: 0px;
  }
}






@media (max-width: 767px) {
  h2 {
    font-size: 32px;
  }

  .wrap-button img {
    margin-top: 20px;
  }


}

@media (min-width: 768px) and (max-width: 991px) {
  h2 {
    font-size: 30px;
  }

  .wrap-button img {
    margin-top: 20px;
  }

  .about-bullet {
    max-width: 100%;
    flex: 100%;
  }

}

@media (min-width: 992px) and (max-width: 1199px) {
  .about-bullet {
    max-width: 100%;
    flex: 100%;
  }
}


.startColor {
  background-color: rgb(254, 254, 254);
}

.transparentBar {
  background-color: rgb(255, 255, 255);
}


.BgColour {
  background-color: #FFC107;
}

/* ---------------------------------- Card Slider ----------------------------------------- */

.quoteBtn {
  margin-top: -5px;
}

/* Responsive */
/* Media Query for Mobile Devices */
@media (max-width: 480px) {
  .hero-heading {
    font-size: 2.2em;
  }

  .hero-para {
    font-size: 1em;
    line-height: 25px
  }

  .meetButton {
    font-size: 16px;
  }

  .quoteBtn {
    margin-top: 10px;
  }

}


/* Blog Page */

.showcase {
  margin-top: 70px;
  height: 150px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.showcase-news {
  background: url("https://img.freepik.com/free-photo/global-environmental-sustainability-background-green-technology_53876-124628.jpg?w=1380&t=st=1688616487~exp=1688617087~hmac=4f2f5d901622b5deb0b9c84012d9419333838402fbd2f3904996a5f4cc7eecb1") no-repeat center center/cover;
}

.showcase-products {
  background-color:#e499ff;
  background-image:
  radial-gradient(at 30% 46%, hsla(265,85%,75%,1) 0px, transparent 50%),
  radial-gradient(at 30% 11%, hsla(228,60%,77%,1) 0px, transparent 50%),
  radial-gradient(at 10% 82%, hsla(226,61%,69%,1) 0px, transparent 50%),
  radial-gradient(at 65% 59%, hsla(241,76%,78%,1) 0px, transparent 50%),
  radial-gradient(at 40% 67%, hsla(264,88%,61%,1) 0px, transparent 50%),
  radial-gradient(at 33% 22%, hsla(239,76%,67%,1) 0px, transparent 50%),
  radial-gradient(at 79% 20%, hsla(239,95%,64%,1) 0px, transparent 50%);
}

.showcase-projects {
  background: url("https://img.freepik.com/free-photo/sustainable-energy-campaign-tree-light-bulb-media-remix_53876-104090.jpg?w=1060&t=st=1688614075~exp=1688614675~hmac=7bb689f174d78c66d1b9c4db6c399f65e9bd67024d27b409c1482b45fbfe9098") no-repeat center center/cover;
}

.showcase-dis {
  background: url("https://img.freepik.com/free-photo/water-splash_1387-480.jpg?w=1060&t=st=1688616652~exp=1688617252~hmac=09a5517ec83e2fb358ef9356201bf01b104f11173fe3307eb071054ce51e0ad2") no-repeat center center/cover;
}

.showcase-about {
  background: url("http://www.s-lon.lk/storage/app/uploads/public/5f4/638/27c/5f463827c0b14199028532.png") no-repeat center center/cover;
}

.showcase-call {
  background: url("https://images.unsplash.com/photo-1489710437720-ebb67ec84dd2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80") no-repeat center center/cover;
}



.showcase h2,
.showcase p {
  margin-bottom: 10px;
}

.showcase .btn {
  margin-top: 20px;
}

.home-cards img {
  width: 100%;
  margin-bottom: 20px;
}

.home-cards h3 {
  margin-bottom: 5px;
}

.home-cards a {
  display: inline-block;
  padding-top: 10px;
  color: #fabf15;
  text-transform: uppercase;
  font-weight: bold;
}

.home-cards a:hover i {
  margin-left: 10px;
}

.newsCard {
  border-radius: 20px;
}

/* Xbox */
.xbox {
  border-radius: 20px;
  width: 100%;
  height: 350px;
  background: url("../images/banner.jpg") no-repeat center center/cover;
  margin-bottom: 20px;
}

.xbox .xcontent {
  width: 40%;
  padding: 50px 0 0 30px;
}

.xbox p,
.carbon p {
  margin: 10px 0 20px;
}



/* Map With Blinking effect */

.world-map {
  width: 100%;
  position: relative;
  background: hsla(209, 100%, 47%, 0.1);
  background-image: radial-gradient(hsla(209, 100%, 47%, 1.00) 5%, transparent 0);
  background-size: 30px 30px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
}

.world-map img {
  width: 50%;
  height: 50%;
  object-fit: contain;
}

.pin {
  background: #fabf15;
  position: absolute;
  width: 0.7em;
  height: 0.7em;
  border-radius: 50%;
}

.pin::before {
  content: '';
  background: #fabf15;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: pulse 1.3s ease-in-out infinite;
}

.pin span {
  display: inline-block;
  white-space: nowrap;
  position: absolute;
  left: 1.5em;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 3em;
  padding: 0.3em 0.6em;
  font-size: 0.9em;
}

.Jaffna {
  top: 5%;
  left: 42%;
}

.Jaffna-2 {
  top: 5%;
  left: 35%;
}

.kandy {
  top: 60%;
  left: 50%;
}

.kandy-2 {
  top: 60%;
  left: 50%;
}

.galle {
  top: 90%;
  left: 42%;
}

.galle-2 {
  top: 90%;
  left: 35%;
}



@keyframes pulse {
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.5);
  }
}

@media screen and (max-width:600px) {
  .world-map {
    font-size: 13px;
  }
}

/* map mobile */

.world-map-2 {
  width: 100%;
  position: relative;
  background: hsla(209, 100%, 47%, 0.1);
  background-image: radial-gradient(hsla(209, 100%, 47%, 1.00) 5%, transparent 0);
  background-size: 30px 30px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
}

.world-map-2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pin-2 {
  background: #fabf15;
  position: absolute;
  width: 0.7em;
  height: 0.7em;
  border-radius: 50%;
}

.pin-2::before {
  content: '';
  background: #fabf15;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: pulse 1.3s ease-in-out infinite;
}

.pin-2 span {
  display: inline-block;
  white-space: nowrap;
  position: absolute;
  left: 1.5em;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 3em;
  padding: 0.3em 0.6em;
  font-size: 0.9em;
}

.usa-2 {
  top: 50%;
  left: 40%;
}




@keyframes pulse {
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.5);
  }
}

@media screen and (max-width:600px) {
  .world-map {
    font-size: 13px;
  }
}
















/* Logo SLider */


.Logoimg {
  width: 100px;
  height: 100px;
  animation: scroll 60s linear infinite;
}


.slide-track {
  width: 100%;
  display: flex;
  gap: 3em;
  overflow: hidden;
}


@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translatex(-1000%)
  }
}








/* ---------- Products ---------- */

/* Products */


:root {
  --d: 700ms;
  --e: cubic-bezier(0.19, 1, 0.22, 1);
  --font-sans: "Rubik", sans-serif;
  --font-serif: "Cardo", serif;
}



.page-content {
  display: grid;
  grid-gap: 1rem;
  padding: 1rem;
  max-width: 1024px;
  margin: 0 auto;
  font-family: var(--font-sans);
}

@media (min-width: 600px) {
  .page-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 800px) {
  .page-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pCard {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 1rem;
  width: 100%;
  text-align: center;
  color: whitesmoke;
  background-color: whitesmoke;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
}

@media (min-width: 600px) {
  .pCard {
    height: 350px;
  }
}

.pCard:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-size: cover;
  background-position: 0 0;
  transition: transform calc(var(--d) * 1.5) var(--e);
  pointer-events: none;
}

.pCard:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  pointer-events: none;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.009) 11.7%, rgba(0, 0, 0, 0.034) 22.1%, rgba(0, 0, 0, 0.072) 31.2%, rgba(0, 0, 0, 0.123) 39.4%, rgba(0, 0, 0, 0.182) 46.6%, rgba(0, 0, 0, 0.249) 53.1%, rgba(0, 0, 0, 0.32) 58.9%, rgba(0, 0, 0, 0.394) 64.3%, rgba(0, 0, 0, 0.468) 69.3%, rgba(0, 0, 0, 0.54) 74.1%, rgba(0, 0, 0, 0.607) 78.8%, rgba(0, 0, 0, 0.668) 83.6%, rgba(0, 0, 0, 0.721) 88.7%, rgba(0, 0, 0, 0.762) 94.1%, rgba(0, 0, 0, 0.79) 100%);
  transform: translateY(-50%);
  transition: transform calc(var(--d) * 2) var(--e);
}

.pCard:nth-child(1):before {
  background-image: url(https://images.unsplash.com/photo-1611776575292-bec10cc1a906?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1887&q=80);
}

.pCard:nth-child(2):before {
  background-image: url(https://images.unsplash.com/photo-1542274368-443d694d79aa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=465&q=80);
}

.pCard:nth-child(3):before {
  background-image: url(https://images.unsplash.com/photo-1596394723269-b2cbca4e6313?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=387&q=80);
}

.pCard:nth-child(4):before {
  background-image: url(https://images.unsplash.com/photo-1605600659873-d808a13e4d2a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=435&q=80);
}

.content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1rem;
  transition: transform var(--d) var(--e);
  z-index: 1;
}

.content>*+* {
  margin-top: 1rem;
}

.title {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.2;
}

.copy {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.35;
}

.cardBtn {
  cursor: pointer;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 0.025rem;
  text-transform: uppercase;
  color: white;
  background-color: black;
  border: none;
}

.cardBtn:hover {
  background-color: #0d0d0d;
}

.cardBtn:focus {
  outline: 1px dashed yellow;
  outline-offset: 3px;
}

@media (hover: hover) and (min-width: 600px) {
  .pCard:after {
    transform: translateY(0);
  }

  .content {
    transform: translateY(calc(100% - 4.5rem));
  }

  .content>*:not(.title) {
    opacity: 0;
    transform: translateY(1rem);
    transition: transform var(--d) var(--e), opacity var(--d) var(--e);
  }

  .pCard:hover,
  .pCard:focus-within {
    align-items: center;
  }

  .pCard:hover:before,
  .pCard:focus-within:before {
    transform: translateY(-4%);
  }

  .pCard:hover:after,
  .pCard:focus-within:after {
    transform: translateY(-50%);
  }

  .pCard:hover .content,
  .pCard:focus-within .content {
    transform: translateY(0);
  }

  .pCard:hover .content>*:not(.title),
  .pCard:focus-within .content>*:not(.title) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--d) / 8);
  }

  .pCard:focus-within:before,
  .pCard:focus-within:after,
  .pCard:focus-within .content,
  .pCard:focus-within .content>*:not(.title) {
    transition-duration: 0s;
  }
}