 @font-face {
     font-family: 'Baloo';
     font-style: normal;
     font-weight: 400;
     src: url('/assets/fonts/Baloo2-Regular.ttf') format('truetype');
     font-display: swap;
 }

 /* Define the Grapik font */
 @font-face {
     font-family: 'Grapik';
     font-style: normal;
     font-weight: 400;
     src: url('/assets/fonts/Graphik-Regular.otf') format('opentype');
     /* Corrected format */
     font-display: swap;
 }


 @font-face {
     font-family: 'Open';
     font-style: normal;
     font-weight: 400;
     src: url('/assets/fonts/OpenSans-Regular.ttf') format('truetype');
     /* Corrected format */
     font-display: swap;
 }


 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     scroll-behavior: smooth;
 }


 html {
     overflow-x: hidden !important;
 }



 textarea {
     resize: none;
 }

 :root {

     --primary: #5D2DE6;
     --primary-light: #744BE9;
     --base-color: #222C4E;
     --font-display: "Baloo",
         sans-serif;
     --font-body: "Open",
         sans-serif;
 }

 .text-primary {
     color: var(--primary) !important;
 }

 .text-base {
     color: var(--base-color);
 }

 .text-primary-light {
     color: var(--primary);
 }

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

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

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

 body {
     font-family: var(--font-body);
     font-weight: 400;
     line-height: 30px;
     font-size: 16px;
     overflow-wrap: break-word;
     -webkit-font-smoothing: antialiased;
     background-color: #f3f3f347;
 }

 a {
     text-decoration: none;
 }

 /* scroll bar  */
 ::-webkit-scrollbar {
     width: 8px;
 }

 ::-webkit-scrollbar-track {
     background: #f1f1f1;
 }

 ::-webkit-scrollbar-thumb {
     background: var(--mainColor);
 }

 ::-webkit-scrollbar-thumb:hover {
     background: #555;
 }

 .main-btn {
     position: relative;
     font-family: inherit;
     font-weight: 500;
     font-size: 15px;
     cursor: pointer;
     border: 0px solid var(--primary);
     background: linear-gradient(to right, #8e2de2, #4a00e0);
     color: var(--primary);
     overflow: hidden;
     box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
     border-radius: 6px;

 }


 .main-btn span {
     position: relative;
     z-index: 10;
     transition: color 0.4s;
     display: inline-flex;
     align-items: center;
     padding: 5px 15px;
 }

 .main-btn::before,
 .main-btn::after {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 0;
 }

 .main-btn::before {
     content: "";
     background: #fff;
     width: 120%;
     left: -10%;
     transform: skew(30deg);
     transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
 }

 .main-btn:hover {
     color: white;
 }

 .main-btn:hover::before {
     transform: translate3d(100%, 0, 0);
 }

 .main-btn:active {
     transform: scale(0.95);
 }

 .dark {
     color: white;
     background: white;
 }

 .dark::before {
     background: linear-gradient(to right, #8e2de2, #4a00e0);
 }

 .dark:hover {
     color: black;
 }


 .customContainer,
 .customContainer3 {
     width: auto;
     padding-right: calc(1.5rem * .5);
     padding-left: calc(1.5rem * .5);
     margin-right: auto;
     margin-left: auto;
     transition: var(--easeInTransition);
 }

 h1 {
     font-size: clamp(1.65rem, 3vw, 2.65rem);
     font-family: 'Baloo';

     font-weight: 700;
 }

 h2 {
     font-size: clamp(1.65rem, 3vw, 2.65rem);
     font-family: 'Baloo';

     font-weight: 500;
 }

 h3 {
     font-size: clamp(1rem, 2vw, 1.5rem);
     font-family: 'Baloo';

     font-weight: 500;
     word-wrap: normal;
 }

 h4 {
     font-size: clamp(1.2rem, 2vw, 1.2rem);
     font-family: 'Baloo';
     font-weight: 600;
 }



 @media (min-width: 320px) {

     .customContainer {
         width: auto;

     }
 }

 @media (min-width: 576px) {

     .customContainer {
         max-width: 540px;
         overflow: hidden;
     }
 }


 @media (min-width: 768px) {

     .customContainer {
         max-width: 720px;
     }
 }


 @media (min-width: 991px) {

     .customContainer {
         max-width: 960px;
     }
 }

 @media (min-width: 1200px) {

     .customContainer {
         max-width: 1170px;
     }

     .customContainer3 {
         max-width: 1580px;
     }
 }

 @media (max-width: 1600px) {

     section.home_banner.about_banner {
         height: 700px !important;
     }

 }