html,
body {
  padding: 0;
  margin: 0;
}
.container {
  width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

#hero {
  background-image: linear-gradient(#0f3b7f99 100%, white 0%), url('../img/network2.jpg');
  font-family: "Work Sans", sans-serif;
  padding-top: 30px;
  min-height: calc(100vh - 200px);
  padding-bottom: 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-sizing: border-box;
}

.flex {
  display: flex;
}
.w-full{
  width: 100%;
}
.space-between{
  justify-content: space-between;
}
.sub-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  color: #00acc4;
  text-align: center;
  margin-bottom: 10px;
}
.title {
  color: #fff;
  font-weight: 700;
  font-size: 54px;
  text-align: center;
  margin-top: 22px;
  margin-bottom: 22px;
}
.hero-content {
  color: #fff;
  text-align: center;
  font-size: 18px;
}
.wrapper-card{
    font-family: "Work Sans", sans-serif;
    letter-spacing: -0.36px;
    margin-top: -160px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.card{
    background-color: #fff;
    padding: 36px;
    box-sizing: border-box;
    border: 1px solid #cfd8e5;
    width: 100%;
}
.card h4{
    color: #0f3b7f;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 24px;
}
.card p{
    font-size: 18px;
}
.btn{
    padding: 26px 38px;
    display: inline-block;
    border-radius: 50px;
}
.btn-main{
    background-color: #0f3b7f;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}
.wrapper-address{
  background-color: #EFF2F6;
  padding: 40px 36px;
  margin-top: 30px;

}
.address-title{
  color: #0f3b7f;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.36px;
  font-family: "Work Sans", sans-serif;
}
.address-content{
  color: #5473a4;
  font-size: 18px;
  letter-spacing: -0.36px;
  line-height: 30px;
  font-family: "Work Sans", sans-serif;
}
.contact-content{
  color: #5473a4;
  font-size: 18px;
  letter-spacing: -0.36px;
}
.text-medium{
  font-weight: 500;
}

.logo{
  height: 58px;
}
a.link-logo{
  display: flex;
  align-items: center;
  column-gap: 20px;
  color: white;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  font-family: "Work Sans", sans-serif;
  padding-top: 20px;
  padding-bottom: 20px;
}
.link-logo{
  font-size: 24px;
}

/* navbar */
nav {
  background-color: #0f3b7f;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar ul {
  display: flex;
  margin: 0;
  list-style: none;
  font-family: "Work Sans", sans-serif;
  transition: 0.2s;
}
.navbar ul li{
  position: relative;
}
.navbar ul li div{
  width: 100%;
  height: 2px;
  position: absolute;
  display: none;
  bottom: -18px;
  background-color: #00acc4;
}
.navbar ul li a {
  color: white;
  text-decoration: none;
  padding: 20px 30px;
  display: block;
  font-size: 18px;
  font-weight: 500;
}
.navbar ul li a:hover{
  color: #00acc4;
}
.navbar ul li a:hover + div{
  display: block;
}

#menu-nav,
label.menu-nav {
  display: none;
}

@media screen and (max-width: 768px){
  .container{
    width: 680px;
  }
  .card{
    width: 50%;
}
.card h4{
  font-size: 24px;
}
}

@media screen and (max-width: 576px){
  .container{
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }
  .card{
    width: 100%;
  }
  .title{
    font-size: 32px;
  }
  .wrapper-card{
    flex-direction: column;
  }
 /* navbar */
 nav{
  position: relative;
}
.navbar {
  padding: 0;
  
}
.navbar ul {
  width: calc(100% - 100px);
  flex-direction: column;
  padding: 0;
  margin: 0;
  position: absolute;
  height: 100vh;
  top: 0;
  left: -120%;
  background-color: #00acc4;
}
.navbar ul li a{
  padding: 16px 20px;
  /* display: block; */
  width: 100%;
}
label.menu-nav {
  display: initial;
  width: 26px;
  height: 26px;
  cursor: pointer;

}
#menu-nav:checked ~ .menu-nav .hamberger{
  display: none;
}
#menu-nav:checked ~ .menu-nav .close{
  display: initial;
}
#menu-nav ~ .menu-nav .close{
  display: none;
}
label.menu-nav img{
  width: 100%;
  height: 100%;
} 
#menu-nav:checked ~ ul {
  left: 0px;
}
.navbar ul li a:hover{
  color: #0f0f0f;
}
a.link-logo {
  column-gap: 12px;
}
}