* {
    box-sizing: border-box;
}


:root {
    --primary-color: #e91d8f;
    --secondary-color: #e91d8f;
    --text-color: #333;
    --standard-color: black;
    --background: #f8f8f8;
}

body {
    background-color: var(--background);
    font-family: poppins;
    margin: 0px;
    letter-spacing: 0.05em;
    font-size: 14px;
    overflow-x: hidden;
  
}


html {

  overflow-x: hidden;

}

.container {
  width: 100%;
	max-width: 1180px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
	    box-sizing: border-box;
}


h1 {
  font-size: 50px;
  margin: 0px;
  font-weight: 700;
  text-transform: uppercase;
}

h2 {

    margin: 0px;
    font-weight: 700;
    font-size: 32px;
    letter-spacing: .04em;
    text-transform: uppercase;
}
@media (max-width: 690px) {
  h1 {font-size: 36px;}
    h2 {font-size: 24px;}
}

h3 {
    font-weight: bold;
    font-size: 21px;
    letter-spacing: .02em;
    line-height: 1.2em;
    text-transform: none;
    margin-top: 0px;
    margin-bottom: 0px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: var(--secondary-color);
}


 

/* Footer */
.footer {
    background-color: #ccc;
    padding: 20px;
    text-align: center;
}

/* Buttons */
.button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.button:hover {
    background-color: #254d75;
}
 

   

/* Spacing */
.space {
    height: 100px;
    width: 100%;
}
.space20 {
    height: 20px;
    width: 100%;
}

/* Scrollbar */

::-webkit-scrollbar {
    width: 12px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #0d2134; 
      background: linear-gradient( 
  199deg
   , #252d3d 0%, #171c26 100%);
   border-radius: 15px;
        border: 2px solid #f1f1f1;  /* creates padding around scroll thumb */
  }
  
  
/* Scrollbar End */

.textaligncenter {text-align: center;}



.reveal{
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: all 1s ease;
  }
  
  .reveal.active{
    transform: translateY(0px);
    opacity: 1;
  }
        
  
  
  .revealleft{
    position: relative;
    transform: translateX(-150px);
    opacity: 0;
    transition: all 3s ease;
  }
  
  .revealleft.active{
    transform: translateX(0px);
    opacity: 1;
  }
  
  .revealright{
    position: relative;
    transform: translateX(150px);
    opacity: 0;
    transition: all 2s ease;
  }
  
  .revealright.active{
    transform: translateX(0px);
    opacity: 1;
  }
        
  
  .revealearly{
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: all 1s ease;
  }
  
  .revealearly.active{
    transform: translateY(0px);
    opacity: 1;
  }


  

.standardsection {    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 1rem;
align-items: center;
	grid-gap: 5%;
}
.standardsectionimage{    grid-column: span 5;object-fit: cover;
    height: 100%;}
.standardsectiontext {grid-column: span 7;}
.standardsectiontextright {grid-column: span 7; grid-row-start: 1;}

.standardsectionimage img {width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.4s;
    aspect-ratio: 4 / 5;}

    @media screen and (max-width: 600px) {
        .standardsection {justify-items: center;}
        .standardsectionimage { grid-column: span 12;  }
        .standardsectiontext {grid-column: span 12; grid-row-start: 2;}
        .standardsectionimage img {aspect-ratio: 4/2;}
    }






    .button2{
      position: relative;
      font-weight:600;
      text-transform:uppercase;
      letter-spacing:.28em;
      background:none;
      color: var(--primary-color);
      border: 2px solid var(--primary-color);
      padding:15px 30px;
      text-align:center;
      cursor:pointer;
      overflow: hidden;
      transition: 1s all ease;
  }

  
  .button2:hover{
      color: #fff;
  }

  .button2::before{
      background: var(--primary-color);
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: -1;
      transition: all 0.6s ease;
  }


  .button2 > *{
      display: inline-block;
      width: 100%;
      height: 100%;
      
  }

  .but2::before{
      width: 100%;
      height: 0;
      transform: translate(-50%, -50%) rotate(45deg);
  }
  
  
  .but2:hover::before{
    height: 443%;
  }


  .btn-invisble{
position: absolute;
top: -100%;
left: 0;
font-family: 'Poppins';

  }


  .btn_visible{
      transition: 0.2s;
      font-family: 'Poppins';
  }
.button2:hover .btn_visible{
  transform: translateY(200%);
}
  
.button2:hover .btn-invisble{
top:35%;
}
  