/* CSS Document */


.section-title{
  color:#0b2c87;
  font-size:34px;
  font-weight:700;
  margin-bottom:30px;
  position:relative;
  padding-left:35px;
}

.section-title:before{
  content:"🖌";
  position:absolute;
  left:0;
  top:0;
}

.section-title:after{
  content:"";
  width:120px;
  height:8px;
  background:#f4c400;
  position:absolute;
  left:35px;
  bottom:-8px;
  border-radius:20px;
}

.greeting-box{
  background:#009EDD;
  color:#fff;
  border:1px solid #e5e5e5;
  border-radius:20px;
  padding:30px;
  display:flex;
  gap:20px;
}

.greeting-image{
  width:300px;
  aspect-ratio: 1/1;
  flex-shrink:0;
}

.greeting-image img{
  width:100%;
}

.greeting-content h3{
  font-size: 34px;
  color: #009EDD;
  margin-bottom: 25px;
  background: #fff;
  border-radius: 7px;
  padding: 10px 20px;
}

.greeting-content p{
  line-height:2;
}

.signature{
  text-align:right;
  margin-top:30px;
  font-size:20px;
  font-weight:bold;
}

.company-table{
  width:100%;
  border-radius: 20px;
  overflow: hidden;
  border-collapse:collapse;
}

.company-table th{
  width: 220px;
  padding: 20px;
  text-align: left;
  color: #fff;
  background: #e3b400 !important;
}

.company-table td{
  padding:20px;
  border:1px solid #eee;
}

.company-table th,
.company-table td{
  border:1px solid #eee;
  background: #fff;
}

.company-table li{
  padding-left:20px;
  position: relative;
}

.company-table li::before{
  content: "\f058";
  display: block;
  font-weight: 900;
  font-size: 1rem;
  font-family: "Font Awesome 6 Free";
  position: absolute;
  left: 0;
  top: 5px;
  color: #e3b400;
}

.access-box{
  background: #fff;
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
}

.access-info{
  max-width: 400px;
  padding:0 30px;
  width: 100%;
}

.access-info h3{
  margin-bottom: 10px;
  color:#001d88;
  font-size: 1.35rem;
  border-bottom: 1px solid #001d88;
}


.access-info p i{
   color: #001d88;
}

.access-map {
  width: 100%;
  display: block;
}

.access-map iframe{
  width:100%;
  height:500px;
  border-radius: 20px;
  overflow: hidden;
}

.signature span{
  font-size: 35px;
}


#company-info{
  background: #f5f3f3;
}


@media(max-width:1560px){
  
  .greeting-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-radius: 7px;
  }
  
  
  .signature {
    font-size: 1.1rem;
  }
  
  .signature span {
    font-size: 1.75rem;
  }
  
}


@media(max-width:1024px){
  
  .greeting-content h3 {
    font-size: 1.5rem;
  }
  
}

@media(max-width:768px){
  
  .greeting-box {
    background: #009EDD;
    color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    gap: 0px;
    flex-direction: column;
  }
  
  .greeting-image {
    width: 100%;
  }
  
}


@media(max-width:768px){

  .section-title{
    font-size:28px;
  }

  .greeting-box{
    flex-direction:column;
    padding:20px;
  }

  .greeting-image{
    width:100%;
  }

  .greeting-content h3{
    background: #009EDD;
    color: #fff;
    padding: 0;
    font-size: 1.35rem;
  }

  .company-table th,
  .company-table td{
    display:block;
    width:100%;
  }

  .company-table th{
    border-bottom:none;
  }


  .access-map iframe{
    height:350px;
  }

  .signature span {
    font-size: 1.35rem;
  }

  .signature {
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 30px;
  }
  
  .access-box {
    flex-direction: column-reverse;
  }
  
  .access-info{
    padding:20px 0;
    max-width: 100%;
  }
  
  
}