@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Russo+One&display=swap');

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

body{
    position: relative;
    font-family: 'IBM Plex Sans', sans-serif;
  color: white;
  background-image: url("../image/bg-bit.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}
body::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(32 119 161 / 13%);
    z-index: 1;
    left: 0px;
    top: 0px;
    
}

.container {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}
.container > div {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 20px 0px;
}

h1 {
    font-family: 'Russo One', sans-serif;
    margin: 11px;
    font-size: 36px;
    text-shadow: 0px 0px 30px #1a87c5;
    padding-bottom: 30px;
}
p.text-lead {
    font-size: 17px;
    font-weight: 500;
    width: auto;
    display: inline-block;
    line-height: 30px;
    background: #05203af2;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 9px 10px #05203a;
}

button {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    padding: 11px 25px;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    background: #d8dbde;
    border: 1px solid transparent;
    transform: scale(0.9);
    transition: 320ms;
}

button:hover{
    transform: scale(1);
}

button svg {
    width: 18px;
    height: 18px;
    top: 4px;
    position: relative;
}

.row-image {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}

.logo-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    width: 250px;
    height: 120px;
    margin: 25px;
    padding: 25px;
    border-radius: 10px;
    opacity: 0.85;
}
.logo-image img {
    width: 100%;
    transform: scale(0.85);
    transition: 350ms;
}
.logo-image img:hover {
    transform: scale(1);
}

.display {
    display: none;
}
.email {
    display: inline-block;
}
.show_email {
    color: #3385bb;
    cursor: pointer;
}
.show_email:hover {
    text-decoration: underline;
}

/***** mod ******/
#mod-template {
    width:100%; 
    height:100%; 
    position:fixed; 
    left:0;
    top:0;
    background-color: rgba(0, 0, 0, 0.406);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999999999999999999999999999;
    overflow: auto;
    
 
  }
 
  #guides-image {
    margin:25px;
    padding: 15px;
    max-width: 652px;
    background-color: white;
    position: relative;
    border-radius: 10px;
    display: inline-block;
    height: fit-content;
    overflow: hidden;
    width: 100%;
    text-align: center;
    color: black;
 
  }
  #guides-image span.close{
    position: absolute;
     right: -3px;
     top: -2px;
     margin: 3px;
     font-size: 40px;
     display: inline-block;
     line-height: 20px;
     background: white;
     padding: 3px;
     padding-top: 0px;
     cursor: pointer;
  }
  #guides-image img {
     width: 100%;
     margin-top: 10px;
  }

  #guides-image svg {
    width: 20px;
    height: 20px;
    position: relative;
    top: 4px;
    margin-right: 5px;
  }
  #guides-image p:first-child
  {
    font-size: 19px;
    font-weight: 500;
    text-transform: uppercase;
  }

  #guides-image p {
      padding: 2px;
  }

  @media screen and (max-width: 1200px) {
    .row-image {
        justify-content: center;
    }
  }