:root {
    --color-p: #025adf;
    --color-p-vairant: #f9f221;
    --color-g-0: #f3f6f7;
    /* --color-g-50: #d6e1e6; */
    --color-g-100: #bdcdd4;
    --color-g-200: #a0b2b9;
    --color-g-300: #8ea3ac;
    --color-g-400: #7a8b93;
    --color-g-500: #5a6d75;
    --color-g-600: #3f4d53;
    --color-g-700: #2a3439;
    --color-g-800: #182023;
    --color-g-900: #080b0c;
    --color-danger: #c72156;
    --color-success: #06c4c4;
    --color-info: #ffcd56;
    --color-purple: rgb(166, 27, 191);

    --transition: all 300ms ease;

    --radius-1: 0.4rem;
    --radius-2: 0.8rem;
    --radius-3: 1.2rem;
    --radius-4: 1.6rem;
    --radius-5: 2rem;
    --radius-6: 4rem;

    --container-w-lg: 84%;
    --container-w-md: 92%;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    outline: 0;
    border: 0;
    appearance: 0;
    user-select: none;
}

body{
    font-family: "Montserrat", sans-serif;
    line-height: 1.3;
    color: var(--color-gray-600);
    overflow-x: hidden;
    background: var(--color-gray-50);
}

.containeri{
    width: var(--container-w-lg);
     
    margin-inline: auto;
}

a {
    color: var(--color-white);
    transition: var(--transition);
}

img {
    display: block;
    /* width: 100%;
    height: 100%; */
    /* object-fit: cover; */
}

h2 {
    font-size: 1.8rem;
    font-weight: 800;
}

 h1,
h2,
h3,
h4,
h5,
h6{
    
    
    line-height: 1.2;
    text-transform: uppercase;
}
/*
h1 {
    font-size: 2.8rem;
}

h3 {
    font-size: 1.1rem;
}
h4 {
    font-size: 0.92rem;
}
h5 {
    font-size: 0.86rem;
}
h6 {
    font-size: 0.7rem;
} */

button {
    cursor: pointer;
    transition: var(--transition);
}

.btni {
    display: inline-block;
    width: fit-content;
    padding: 0.7rem 1.2rem;
    font-weight: 600;
    /* text-transform: uppercase; */
    border-radius:  15px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

.btni.primaryi {
    background: var(--color-p);
    color: var(--color-g-0);
}

.btni:hover {
    background: var(--color-g-900);
    color: var(--color-g-0);
}

:focus-visible{
    outline-offset: 4px;
  }
  
  ::-webkit-scrollbar{
    width: 8px;
    border-radius: 20px;
  }
  ::-webkit-scrollbar-track{
    background-color: var(--color-g-100);
  }
  
  ::-webkit-scrollbar-thumb{
    background-color: var(--color-p);
    border-radius: 20px;
  }
  
  ::-webkit-scrollbar-thumb:hover{
    background-color: var(--rich-black-fogra-29-1);
  }


  .page_header{
    height: 25rem;
    background: url('../assets/p4.jpg') no-repeat center center/cover;  
      display: grid;
    place-items: center;
    /* margin: 4rem 0; */
    position: relative;

}

.page_header::before {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    background: #030f1b;
    opacity: 0.7;
}
  .page_header-content{
    width: 60%;
    text-align: center;
    z-index: 1;

  }
.page_header-content * {
    color: #f5f5f5;
}
.page_header-content h2 {
    margin-bottom: 1rem;
}

  
  @media screen and (max-width: 600px) {
    h1{
        font-size: 2rem;
    }
    h2{
        font-size: 1.4rem;
    }
    h3{
        font-size: 1rem;
    }
    .btn{
        padding: 1rem;
        font-size: 0.8rem;
    }
    containeri {
        width: var(--container-w-md);
    }

    .page_header {
        height: 13rem;
    }
    .page_header-content{
        width: var(--container-w-md);
    }
  }