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

  
 @font-face {
     font-family: 'Droid';
     font-style: normal;
     font-weight: 400;
     src: url('../fonts/DroidSerif-Italic.ttf') format('opentype');
 
     font-display: swap;
 } */
 @font-face {
     font-family: 'Montserrat';
     font-style: normal;
     font-weight: 400;
     src: url('../../frontend-assets/fonts/Unbounded/static/Unbounded-Regular.ttf') format('truetype');
     font-display: swap;
 }

 /* Define the Grapik font */
 @font-face {
     font-family: 'Droid';
     font-style: normal;
     font-weight: 400;
     src: url('../../frontend-assets/fonts/Poppins/Poppins-Medium.ttf') format('truetype');
     /* Corrected format */
     font-display: swap;
 }

 /* Define the Grapik font */
 @font-face {
     font-family: 'arial';
     font-style: normal;
     font-weight: 400;
     src: url('../fonts/ARIAL.TTF') format('opentype');
     font-display: swap;
 }


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


 html {
     overflow-x: hidden !important;
 }



 textarea {
     resize: none;
 }

 :root {
     --primary: #D42123;
     --base-color: rgb(26 26 26 / 0.8);
     --font-display: "Droid", sans-serif;
     --font-body: "Montserrat", sans-serif;
     --font-base: "arial", sans-serif;
 }

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

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

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

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

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


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

 p {
     line-height: 28px;
 }

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



 .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, 2vw, 4rem);
     font-family: 'Montserrat';
     font-weight: 700;
     color: #fff;
     margin: 20px 0;
 }

 h1 span,
 h2 span {
     font-family: 'Droid';
     font-style: italic
 }

 h2 {
     font-size: clamp(1.65rem, 3vw, 2.5rem);
     font-family: 'Montserrat';
     font-weight: 700;
 }

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

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

 h4 {
     font-size: clamp(1rem, 2vw, 1rem);
     font-family: 'Montserrat';
     font-weight: 600;
     text-transform: uppercase;
     margin:15px 0;
 }


 h5 {
     font-size: clamp(1rem, 2vw, 1rem);

     font-family: "Montserrat", sans-serif;
     font-weight: 600;
     color: rgba(255, 255, 255, 0.5);
     line-height: 28px;
     letter-spacing: 1.7px;
     text-transform: uppercase;
     margin-bottom: 0;
 }


 @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;
     }

 }
