
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

/*VARIABLES CSS*/

:root {
  --header-height: 3.5rem;

  /*Color*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --black-color: white;
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #2e7fc2;
  --body-color: white;

  /*Font and typography*/
  --body-font: "Figtree";
  --normal-font-size: .938rem;

  /*Font weight*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*z index*/
  --z-tooltip: 10;
  --z-fixed: 100;
}


/*Responsive typography*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*BASE*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
}

ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/*HEADER*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--black-color);
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
  z-index: var(--z-fixed);
}

/*NAV*/
.nav {
  height: var(--header-height);
}

.nav__logo, 
.nav__burger, 
.nav__close {
  color: var(--white-color);

}
.nav__logo{
    height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: left;
  column-gap: .25rem;
  font-weight: var(--font-semi-bold);
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
}

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger, 
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: var(--black-color);
    padding-top: 1rem;
  }
}

.nav__link {
  color: var(--white-color);
  background-color: var(--black-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
}


/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}



/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {
  .container {
    margin-inline:auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }
 
  .nav__toggle {
    display: none;
  }

  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }
  .nav__logo {position: absolute;left:4.5%;}
  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;
  }
  .nav__link:hover {
    background-color: transparent;
    border-bottom:  solid #2e7fc2;;
  }

}

/*Footer*/
.container{
	max-width: 1170px;
	margin:auto;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
ul{
	list-style: none;
}
.footer{
     margin-top: 20px; 
	background-color: #fffafa;
    padding: 70px 0;
}
.footerdiv{
  background-color: #eaecf0;
  color:rgb(7, 7, 7);
  padding:1em;
}
.footer-col{
   width: 33%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #030303;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #10cc9a;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #0a0a0a;
	text-decoration: none;
	font-weight: 300;
	color: #090909;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #2a2323;
	padding-left: 8px;
}


/*responsive*/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
}
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
}
}

body, html {
  height: 100%;
}
/*


.parallax1{
  height: 100%; 
  background-image: url('./Enterprise Package/Watermark/Light\ Gray\ Watermark@1x.png');
  /* Create the parallax scrolling effect 
  background-attachment: scroll;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #4F81BD;
  padding: 5%;
  overflow: hidden;
 
  align-items: center; /* Center items vertically 
}

.parallax2,
.parallax3,
.parallax4 {
  /* Full height 
  height: 100%; 

  /* Create the parallax scrolling effect 
  background-attachment: scroll;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 5%;
  overflow: hidden;
  display: flex; /* Use Flexbox to control layout 
  flex-direction: row; /* Display items side by side by default 
  justify-content: space-between; /* Distribute space between items 
  align-items: center; /* Center items vertically 
}



.parallax2 img,
.parallax3 img,
.parallax4 img {
  max-width: 40%; /* Make sure images don't exceed the container width 
  margin-right: 1%; /* Add some space between text and image on wider screens 
  
}

.parallax1 p,
  .parallax2 p,
  .parallax3 p,
  .parallax4 p {
    font-size: 1.5em;
  }
  .parallax1 div,
  .parallax2 div,
  .parallax3 div,
  .parallax4 div {
    margin-right: 3%;
  }
  .parallax1{
    padding-top: 10%;
    text-align: center;
  }
  .parallax1 p{
    
    padding:20%;
    padding-top:10%;
    font-size: 1.8em;
  }
@media (max-width: 1024px) {
  .parallax1,
  .parallax2,
  .parallax3,
  .parallax4 {
    flex-direction: column; /* Stack items vertically on smaller screens 
  }
  .parallax1 div,
  .parallax2 div,
  .parallax3 div,
  .parallax4 div{
    padding-top: 2%;
  }
  .parallax1 p{
    padding-top: 10%;
    font-size: 2.8em;
  }
  .parallax3 div,.parallax4 div{
    padding-top: 10%;
  }
  

  .parallax2 img,
  .parallax3 img,
  .parallax4 img {
    margin-right: 0; /* Remove the margin on smaller screens 
    margin-bottom: 10%; /* Add some space between images 
    max-width: 100%;
  }
  .parallax3 img,.parallax4 img{
    margin-bottom: 25%;
  }
}
@media (max-width: 500px) {
  .parallax1 div,
  .parallax2 div,
  .parallax3 div,
  .parallax4 div{
    padding-top: 20%;
  }
 
  .parallax2 div{
    padding-top: 10%;
  }
  .parallax1 p{
    padding-top: 0%;
    font-size: 1.8em;
  }.parallax3 div,.parallax4 div{padding-top: 20%;}
.parallax3 img,.parallax4 img{margin-bottom: 50%;}

  .parallax2 img
  {
    
    margin-bottom: 30%; /* Add some space between images 
    
  }

}
@media (max-width: 400px) {
  .parallax1 p{
    font-size: 1.4em;
  }
}


*/


:root{
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

*{
  margin: 0;
  box-sizing: border-box;
}

/* carousel */
.carousel{
  position: relative;
  
}

.carousel_inner{
  width: 100%;
  overflow: hidden;
}

.carousel_inner::after{
  content: "";
  display: block;
  clear: both;
}

.carousel_item{
  position: relative;
  float: left;
  display: none;
  width: 100%;
  margin-right: -100%;
  overflow: hidden;
}

/* slide effect */
.carousel_item__active,
.carousel_item__pos_prev,
.carousel_item__pos_next{
  display: block;
}

.carousel_item__pos_prev{
  left: -100%;
}

.carousel_item__pos_next{
  left: 100%;
}

.carousel_item__prev{
  transform: translateX(100%);
  transition: transform .5s ease-in-out;
}

.carousel_item__next{
  transform: translateX(-100%);
  transition: transform .5s ease-in-out;
}

/* fade effect */
.carousel__fade .carousel_item__pos_prev,
.carousel__fade .carousel_item__pos_next{
  left: 0;
  opacity: 0;
}

.carousel__fade .carousel_item__prev,
.carousel__fade .carousel_item__next{
  transform: none;
  opacity: 1;
  transition: opacity .5s ease-in-out;
}

.carousel__fade .carousel_item__active.carousel_item__prev,
.carousel__fade .carousel_item__active.carousel_item__next{
  opacity: 0;
}

/* carousel */
.carousel_img{
  display: block;
  width:100%;
  height: 97vh;
  object-fit: cover;
  object-position: 75% 75%;
}

.carousel_caption{
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 3rem 4rem;
  text-align: center;
  color: #fff;
  z-index: 1;
}

.carousel_title{
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.carousel_description{
  margin-top: .75rem;
  line-height: 150%;
  padding:20%;
  font-size: 1.8em;
  color:white;
}

.carousel_indicator{
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  gap: .5rem;
  z-index: 1;
}

.carousel_dot{
  display: block;
  padding: .25rem;
  background-color: rgba(255, 255, 255, .25);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color .5s ease-in-out;
}

.carousel_dot__active{
  background-color: lightskyblue;
  cursor: default;
  pointer-events: none;
}

.carousel_control{
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.carousel_button{
  display: block;
  padding-inline: 1rem;
  font-family: "Raleway", sans-serif;
  font-size: 1.375rem;
  background-color: transparent;
  color: rgba(255, 255, 255, .25);
  border: none;
  cursor: pointer;
  transition: color .25s;
  z-index: 1;
}

.carousel_button:hover{
  color: rgba(135, 206, 250, .75);
}

@media (max-width: 1024px) {
  
  .carousel_item {
    font-size: 1.4em;
  }
}
@media (max-width: 500px) {
  
  .carousel_item {
    font-size: 0.85em;
  }
}

