@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Open Sans', sans-serif;
    background-color: #f0f0f0;

}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 15%;
}

.logo {
    max-width: 350px;
    height: auto;
    margin: 0 auto;
}

.content-block {
    position: relative;
    z-index: 1;
    padding: 0 25%;
    display: flex;
    flex-direction: column;
    margin-top: 5%;
}


.content-block .content-top{
	background-color: #243389;
	color: white;
    padding: 0 20px 10px 40px;
}

.content-block .content-bottom{
	background-color: white;
	color: #404041;
    padding: 0 20px 20px 20px;
}

.content-block p{
    font-size: 17px;
    line-height: 30px;
    font-weight: 600;
}

.content-block h2{
    margin-bottom: 10px !important;
}

.name::before{
    content: ''; 
    display: inline-block; 
    width: 10px; 
    height: 10px;
    background-color: #00AE5E;
    margin-right: 5px;
    vertical-align: middle;
}

.name{
    display: flex;
    align-items: baseline;
}

.title{
    margin-left: 16px;
    font-size: 17px;
}

.content-top::before {
    content: '';
    position: absolute;
    top: -11px;
    width: 30px;
    left: 11%;
    height: 30px;
    border-top: 9px solid #00AE5E;
    border-left: 9px solid #00AE5E;
}


.content-footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: wrap;
    margin-bottom: 10%;
}

.content-footer div{
    display: flex;
    align-items: center;
    margin-top: 30px;

}

.content-footer .icon{
    margin: 0 8px 0 8px;
    background: #d8d8d8;
    padding: 3px 0 0 0;
    width: 40px;
    border-radius: 3px;
    text-align: center;
}

.button-location{
    all: unset;
    padding: 10px;
    background: #00ae5e;
    border-radius: 5px;
    font-weight: 600;
    color: white;
    transition: background-color 0.3s, transform 0.2s; 
    cursor: pointer;
}

.button-location:hover {
    background-color: #243389; 
    transform: scale(1.05); 
  }

  .button-location:active {
    background-color: #008a4b; 
    transform: scale(0.95); 
  }
  
  @media only screen and (max-width: 575.98px) { 
    h1{
        font-size: 25px;
    }
    .content-block{
        padding: 0 3%;
    }
    .content-top::before{
        left: 5%;
    }
    .content-block .content-top{
        padding: 0px 20px 20px 40px;
    }

    .content-block{
        margin-top: 10%;
    }

    .name::before{
        width: 12px;
    }
  }

  @media only screen and (min-width: 576px) and (max-width: 767.98px) { 
    h1{
        font-size: 27px;
    }
    .content-block{
        padding: 0 12%;
    }
    .content-top::before{
        left: 13%;
    }

    .content-block .content-top{
        padding: 0px 20px 20px 40px;
    }
    .content-block{
        margin-top: 8%;
    }
  }

  @media only screen and (min-width: 768px) and (max-width: 991.98px) { 
    h1{
        font-size: 28px;
    }
    .content-block{
        padding: 0 15%;
    }
    .content-top::before{
        left: 16%;
    }
    .content-block .content-top{
        padding: 0px 20px 20px 40px;
    }
    .content-block{
        margin-top: 7%;
    }
  }

  @media only screen and (min-width: 992px) and (max-width: 1199.98px) { 
    h1{
        font-size: 28px;
    }
    .content-block{
        padding: 0 18%;
    }
    .content-top::before{
        left: 19%;
    }
    .content-block .content-top{
        padding: 0px 20px 20px 40px;
    }
    .content-block{
        margin-top: 6%;
    }
  }

  @media only screen and (min-width: 1200px) { 
    .content-block{
        padding: 0 22%;
    }
    .content-top::before{
        left: 23%;
    }
    .content-block .content-top{
        padding: 0px 20px 20px 40px;
    }
  }
  