:root {
  --bg-normal: #e7f1f8;
  --bg-dark: #88b9dc;
  --primary-300: #b8d5ea;
  --primary-400: #1172b8;
  --primary-500: #052237;
  --secondary-color: #373435;
  --text-white: #ffffff;
  --text-dark: #222;
  --text-gray: #4d4d4d;
  --text-normal: clamp(0.9375rem, 0.8798rem + 0.1923vw, 1rem);
}

/* @import url('https://fonts.googleapis.com/css?family=Arimo:400,400i,700,700i&amp;display=swap'); */

/*
       font-family: 'Arimo', sans-serif;
 */

/*** 
 
 ====================================================================
       Reset
 ====================================================================
 
  ***/

* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  font-size: 100%;
  line-height: inherit;
}

/*** 
 
 ====================================================================
       Global Settings
 ====================================================================
 
  ***/
html,
body {
  scroll-behavior: smooth;
}

body {
  font-size: 15px;
  color: #666666;
  line-height: 1.7em;
  font-weight: 400;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-family: "Nunito", serif;
  overflow-x: hidden;
}
/* Remove default marker from all list items */
ul,
ol {
  list-style: none; /* This removes the default marker */
  padding: 0px;
}
ul li::marker,
ol li::marker {
  content: none; /* This completely removes the marker (bullet or number) */
}
a {
  text-decoration: none;
  cursor: pointer;
  /* color: #f74883; */
}

.theme_color {
  /* color: #f74883; */
}

a:hover,
a:focus,
a:visited,
a:active,
button:active {
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-weight: normal;
  margin: 0px 0px 15px;
  background: none;
  line-height: 1.25em;
  font-family: "Nunito", serif;
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 44px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 10px;
}

input,
select,
button {
  font-family: "Arimo", sans-serif;
}

textarea {
  overflow: hidden;
  resize: none;
}

button {
  outline: none !important;
  cursor: pointer;
}

p {
  font-size: 15px;
  line-height: 1.7em;
  font-weight: 400;
  margin: 1 1 15px;
}

.des-container {
  max-width: 83rem;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .des-container {
    width: 98%;
    padding: 0 1.5rem;
  }
}

.d-flex {
  display: flex;
  flex-wrap: wrap;
}

.space-between {
  justify-content: space-between;
}
.wrap {
  flex-wrap: wrap !important;
}

.row {
  display: flex;
  flex-wrap: nowrap;
  margin-right: -15px;
  margin-left: -15px;
}

@media (max-width: 980px) {
  .row {
    flex-wrap: wrap;
  }
}

.col {
  padding-right: 15px;
  padding-left: 15px;
}

/* Small screens (sm): 0px to 767px */
@media (max-width: 767px) {
  .col-sm-1 {
    flex: 1 1 8.333%;
  }

  .col-sm-2 {
    flex: 1 1 16.667%;
  }

  .col-sm-3 {
    flex: 1 1 25%;
  }

  .col-sm-4 {
    flex: 1 1 33.333%;
  }

  .col-sm-5 {
    flex: 1 1 41.667%;
  }

  .col-sm-6 {
    flex: 1 1 50%;
  }

  .col-sm-7 {
    flex: 1 1 58.333%;
  }

  .col-sm-8 {
    flex: 1 1 66.667%;
  }

  .col-sm-9 {
    flex: 1 1 75%;
  }

  .col-sm-10 {
    flex: 1 1 83.333%;
  }

  .col-sm-11 {
    flex: 1 1 91.667%;
  }

  .col-sm-12 {
    flex: 1 1 100%;
  }
}

/* Medium screens (md): 768px to 980px */
@media (min-width: 768px) and (max-width: 980px) {
  .col-md-1 {
    flex: 1 1 8.333%;
  }

  .col-md-2 {
    flex: 1 1 16.667%;
  }

  .col-md-3 {
    flex: 1 1 25%;
  }

  .col-md-4 {
    flex: 1 1 33.333%;
  }

  .col-md-5 {
    flex: 1 1 41.667%;
  }

  .col-md-6 {
    flex: 1 1 50%;
  }

  .col-md-7 {
    flex: 1 1 58.333%;
  }

  .col-md-8 {
    flex: 1 1 66.667%;
  }

  .col-md-9 {
    flex: 1 1 75%;
  }

  .col-md-10 {
    flex: 1 1 83.333%;
  }

  .col-md-11 {
    flex: 1 1 91.667%;
  }

  .col-md-12 {
    flex: 1 1 100%;
  }
}

/* Large screens (lg): Above 980px */
@media (min-width: 981px) {
  .col-lg-1 {
    flex: 1 1 8.333%;
  }

  .col-lg-2 {
    flex: 1 1 16.667%;
  }

  .col-lg-3 {
    flex: 1 1 25%;
  }

  .col-lg-4 {
    flex: 1 1 33.333%;
  }

  .col-lg-5 {
    flex: 1 1 41.667%;
  }

  .col-lg-6 {
    flex: 1 1 50%;
  }

  .col-lg-7 {
    flex: 1 1 58.333%;
  }

  .col-lg-8 {
    flex: 1 1 66.667%;
  }

  .col-lg-9 {
    flex: 1 1 75%;
  }

  .col-lg-10 {
    flex: 1 1 83.333%;
  }

  .col-lg-11 {
    flex: 1 1 91.667%;
  }

  .col-lg-12 {
    flex: 1 1 100%;
  }
}

.main-container {
  position: static;
  max-width: 1340px;
  padding: 0px 15px;
  margin: 0 auto;
}

/* Sidebar styling */
.side-menu {
  position: fixed;
  top: 0;
  left: -300px; /* Hidden by default */
  width: 300px;
  height: 100%;
  background-color: #111;
  transition: left 0.3s ease; /* Animation for sliding */
  z-index: 1002;
}

.side-menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.side-menu ul li {
  padding: 16px;
  border-bottom: 1px solid #ddd;
}

.side-menu ul li a {
  color: white;
  text-decoration: none;
  display: block;
}

/* Button for toggling menu */
.menu-toggle {
  font-size: 30px;
  color: #111;
  position: absolute;
  top: 20px;
  left: 20px;
  cursor: pointer;
}

/* Style for the overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 999;
}
.close-menu {
  position: absolute;
  top: 12px;
  right: 12px;
}
.close-menu img {
  width: 30px;
  aspect-ratio: 1/1;
}

.opening-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* Full height of the viewport */
    background: #000;
    /* Change to your desired background color */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* Ensures it's on top of other elements */
    animation: closeGate 1.5s ease 3s forwards, fadeOut 0.5s ease 4.5s forwards;
}

/* Keyframes for reverse gate (closing) effect */
@keyframes closeGate {
    0% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    100% {
        clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%);
    }
}

/* Keyframes for fade-out effect */
@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}