@charset "UTF-8";
body {    
    
    background-color:  white;
    /*background: linear-gradient(to bottom, #f2f2f2 30%,#badcff  100%);*/
    font-family: Verdana, Geneva, Arial, sans-serif;
    padding: 0;
    margin:0;
    line-height:1.5;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
     box-sizing: border-box; 
} 
/* to correct compatibility? 
*, *::before, *::after {
  box-sizing: border-box;
}*/

 article {
  position: relative;
    /*background-color: red;*/
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    padding-top: 5px;    
    padding-bottom: 20px; 
     height:fit-content;
    /* width: 90%;*/
    max-width: 1463px;
    /* padding-top: 120px; adjust if header have positon fixed*/
}

.titles p {
  color: #010440;
  font-size: 2rem;
  text-align: left;
  word-spacing: 5px;
  font-weight: 400;
  margin-top: 0;
 padding-left: 8px;
}

.titles li{
font-size: 1rem;
}

 .top_text {
    display: flex;
    flex-wrap: wrap;
    height: 100px;
    /*background-color: darkgrey;*/
    font-size: 1.25rem;
    font-weight: normal;
    color: #010440;
    margin-bottom: 20px;    
    padding-bottom: 8px;
    gap: 30px;
}   

 .columns_top {
 flex: 1 1 calc(33% - 50px);
  /*width: 25%;*/
  height: fit-content;
  padding-left: 8px;  
  padding-bottom: auto;
  margin-left: 0px;
  margin-right: 20px;
  margin-top: auto;   
  margin-bottom: auto; 
  /*float: left;*/   
  background-color:  white;
    /*background: linear-gradient(to bottom, #f1f2f2 60%,#ffffff 100%);*/
  border-radius: 15px ;
  align-items: first baseline;   
box-sizing: border-box;
 box-shadow:8px 8px 10px silver;
 }
 
.text-columns p {
    color: #010440;
    border-radius: 5px ;
    box-shadow:8px 8px 10px ; 
}

li {
    font-weight: normal;
    font-size: 1rem;
    color: #010440;
    text-decoration: none;
    list-style: square;
    font-style: italic;
}
  
header {
    width: 100%;
    height: 120px;
    position: fixed;
    background-color: #010440;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 20px;
    border-bottom: solid 7px ; 
    border-color: #009deF;
    z-index: 100;
}

header, address, a {
   font-weight: bold;
    font-size: .75rem;
    color: white;
    text-decoration: none;
    font-style: normal;
}

.logo{
    cursor: pointer;
    width: 220px;
    padding-left: 15px;
}
.links {
    list-style: none;
}
.links li {
    list-style: none;
    display: inline-block;  
    padding: 0px 50px;
}
.links li a {
    transition: all .03s ease 0s;
}
    .links li a:hover {
    color:#badcff;
    }
   
    .li_current {
        color: #d7a71e;
        font-size: .75rem;
        font-weight: bold;
        text-decoration: none;
        font-style: normal;
      }
    
    .button_e {
      font-size: 1rem;
        padding: 6px 15px;
        margin-right: 40px;    
        background-color: #f2f2f2;
        color: #010440;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        transition: all .03s ease 0s;
    }

.button_e:hover {
    background-color: #d7a71e;
    color: white;
    text-decoration: none;
    transform: scale(1.03);
          transition: all 1s ease;
}
  
  .top-content{
    width: 100%;
    margin: 0; 
    overflow: hidden; 
  }
 
.top-content img{
  width: 100%;
  margin: 0;
}

.img_text {
  width: 100%;
  position: relative;  
  padding-top: 50px;
  margin-top: -47%;
}

.img_text h3 {
  text-align: center;
    color: #ffffff;
    font-size: 7.5vw;
    font-family: Arial, Helvetica, sans-serif;
    text-shadow: 0px 0px 10px #000000,
                 0px 0px 20px #342E2B,
                 0px 0px 40px #342E2B,
                 0px 0px 80px #342E2B,
                 0px 0px 160px #342E2B;           
    animation-name: slideInLeft;
    animation-duration: 1s;
    animation-timing-function: ease-in;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode:none;
   transform: translateX(1%);
}

@keyframes slideInLeft {
    from{
  transform: translateX(-600px);
    }
    to{
  transform: translateX(0);
    }
  }

  .container-a {
    display: flex;
    flex-wrap: wrap;     
    margin: auto; 
    width: 100%;
    gap: 40px;
  }

  .front {    
    flex: 1 1 calc(33% - 80px);
    height: fit-content;    
    /*margin-left: 6%;*/
    float: left;   
    background-color: white;
    border-radius: 15px;
    box-shadow:8px 8px 10px silver;
   }
  
   .front h1{
    color: #010440;
    font-size: 1.25rem;
    text-align: left;
   padding-left: 8px;
    line-height: .5;  
   }

   .front li {
    color: #010440;
    list-style: square;
    font-size: 1rem;
   }

   .front-1 img, .front-2 img, .front-3 img {  
    width: 100%;
    border-radius: 15px 15px 0 0;          
     }
     
    .front a {
          background-color: #010440;
          color: #f2f2f2;
          padding: 15px 20px;
          display: block;
          text-align: center;
          border-radius:  0 0 15px 15px ;          
         }

         .front:hover {
          background-color: rgb(1, 4, 64);
          color:white;        
          transform: scale(1.03);
          transition: all 1s ease;
         }

         .front:hover h1 {        
          color:white;
  }
  .front:hover a {        
    color:#d7a71e;
    font-size: 1rem;
}
  .front:hover li{
    color:white;
  }

/********pages*******************************************/
.main_content {
   width: 100%;    
    margin: auto;    
    background-color: #ffffff; 
    /*border:solid 1px silver;*/
    border-radius:8px;
    box-shadow:8px 8px 10px silver;
} 

.main_content h1 {
      color: #010440;
      text-align: left;
      font-size: 2.5rem;
      line-height: 1;
      padding-left: 30px;
    }  
   
  .main_content p {
    color: #010440;
  font-size: 1rem;
      font-weight: normal;
      padding-left: 10px;
      padding-top: 0px;
      padding-right: 10px;
  }
  
  .main_content a {
font-size: 1.25rem;
  }

   .titles  {
    color: #010440;
    padding-left: 8px;
    line-height: 1;
  }

    .titles a:hover span {
    color: #d7a71e;
    text-decoration: underline;
      font-weight: bold;
  }
  
/* ******************************** */
.container {
    display: flex;
    flex-wrap: wrap;
    height: fit-content;
    gap: 20px;
       margin-top: 50px;
    border-radius: 10px;   
}

.container .left_column .right_column {
    flex: 1 1 calc(50% - 20px);
    box-sizing: border-box;    
}    

/*calc(100% - 120px);*/

.container img {
    width: 100%;
    border-radius: 10px; 
}

.left_column {
flex: 1 1 calc(50% - 30px);
    box-sizing: border-box;
    background-color: #F0F8FF;
    display: grid;
  place-items: left;
  height: 100%;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 20px;
  margin-right: 10px;
  border-radius: 10px;
 /* margin-right: 10;*/
}

.left_column_ab {
flex: 1 1 calc(100% - 20px);
    box-sizing: border-box;
    background-color: #F0F8FF;
    display: grid;
  place-items: left;
  height: 100%;
  margin-top: 20px;
  margin-bottom: auto;
  margin-left: 150px;
  margin-right: 150px;
  border-radius: 10px;
}

.left_column_ab a:hover span, 
.right_column_b a:hover span,
.left_column a:hover span {
color:#d7a71e;
text-decoration: underline;
      font-weight: bold;
}


.right_column {
flex: 1 1 calc(50% - 20px);
    box-sizing: border-box;
    background-color: #F0F8FF;
   display: grid;
  place-items: left;
  height: 100%;
  margin-top: auto;
  margin-bottom: auto;
}


.right_column_b {
flex: 1 1 calc(50% - 40px);
    box-sizing: border-box;
    background-color: #F0F8FF;
   display: grid;
  place-items: left;
  height: 100%;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 10px;
  border-radius: 10px; 
}

.right_column_b p a {
flex: 1 1 calc(50% - 40px);
   
   display: grid;
  place-items: left;
  height: 100%;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 10px;
  border-radius: 10px; 
  /*display: inline;
  white-space: nowrap;*/
}

.right_column_b a {
    font-size: 3rem;
}

.right_column_a {
flex: 1 1 calc(50% - 20px);
    box-sizing: border-box;
    background-color: white;
   display: grid;
  place-items: left;
  height: 100%;
  margin-top: auto;
  margin-bottom: auto; 
}

.right_column img {
display: grid;
place-items: center;
height: 100%;
}
      
  .container-c {
    width: 90%;    
    margin: auto;
    color: white;
    background-color: #010440;
    overflow: auto; 
    border:solid 1px black;
    border-radius:8px;
    box-shadow:8px 8px 10px silver;
      }

iframe {
        display: block;
        width: 90vw;
        height: calc(.666*90vw);
        max-width: 600px;
        max-height: 500px;
        float: left;   
        border: solid 2px gray;
        box-shadow: 2px 2px 2px silver;
        border-radius: 5px; 
        border:0;
      }  

  .container-c a{
    font-size: 1.25rem;    
  }

  .container-c h2 {
text-align: center;
color: #d7a71e;
  }

  .container-c h1 {
    text-align: center;
      }
      
  .container-c p, address { 
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    color: white;
      }
       
 address span {
    color: white;
    text-decoration: none;
  }

address a:hover {
    color: #d7a71e;
    text-decoration: underline;
      font-weight: bold;
  }

      hr {
        color: #d7a71e;
        border: 2px solid;
        width:98%;
        border-radius: 10px;
    }      

  #footer {      
    position:relative;            
    height: 160px;     
    background-color:#f2f2f2;          
    border-top: solid 5px #009deF;     
    margin: 0;
    overflow: hidden;
    }

        #footer p {
      color: #010440; 
      padding-left:5px;
      padding-top: 5px;
      text-align: left;
      margin-left: 10px;
      font-size: 14px;
      font-weight: normal;
    }
    
    #footer p img {
      height: 65px;      
      margin-top: 40px;
      margin-left: 20px;      
    } 

    .column1, .column2{
        width: 50%;
        float: left;
               }

    .column1 address {
color: #010440;
padding: 15px;
text-align: left;
font-size: .75rem;
font-weight: bold;
    }  

    .column2 p, img {
      display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
    }

#footer:hover {      
      background-color: #F0F8FF;    
    }

   #vertical-line {
      width: 5px;
      height: 170px;
      margin: 0;        
      background-color: #009deF;
      float: left;
      border-radius: 10px;
    }
    
/*.right_column_b,
.int_link {
    color: greenyellow;    
    font-weight: normal;
   
     }
*/
     
     .left_column a span,
     .right_column_b a span,
     .int_link a span {
    color: #010440;
    font-size: 18px;
    font-weight: normal;    
     }

 .left_column h2 a span,
 .right_column_b h2 a span, 
.text_bg{
     background-color: #010440;
      color: white;
     padding: 6px 15px;
     border-radius: 50px;
     transition: all .03s ease 0s;
    font-weight:normal;
    text-decoration: none;
     }



 /*.left_column_ab a span {
   font-size: 20px;
  }
   .right_column_b span {
    font-size: 18px;
    color: fuchsia;
   }
  */

   