
/*  
Light Blue #5B7C98
Blue #00355F
Gray #58595B
*/

@font-face { font-family: QTOldGoudy; src: url(/fonts/QTOldGoudy.otf); }
@font-face { font-family: QTOldGoudy_bold; src: url(/fonts/QTOldGoudy-Bold.otf); }
@font-face { font-family: QTOldGoudy_italic; src: url(/fonts/QTOldGoudy-Italic.otf); }
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

  html, body{
    padding: 0;
    margin: 0;
    font-family: QTOldGoudy;
  }
h1, h2, h3, h4, h5{ font-family: QTOldGoudy_bold; }
h1{ font-size: 30px; }
h2{ font-size: 28px; }
h3{ font-size: 24px; }
h4{ font-size: 20px; }
h5{ font-size: 18px; }
p{
  font-size: 18px;
  /* font-family: "Nunito Sans", sans-serif; */
  font-family: QTOldGoudy;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "YTLC" 500;
}

/* font-size: calc([minimum size] + ([maximum size] - [minimum size]) * ((100vw - [minimum viewport width]) / ([maximum viewport width] - [minimum viewport width]))); */

a { text-decoration:none; color: #8c8c8c; }
a:hover{ text-decoration: underline; color:#d01d22;}

.anchor_link{ position:absolute; margin-top:-112px; }

.fadein, .fadeonload { opacity:0; }

.font_15{ font-size: calc(20pt + 15 * ((100vw - 600px) / 1200)); }
.font_16{ font-size: 16pt; }
.font_19{ font-size: 19pt; }
.font_20{ font-size: 20pt; }
.font_21{ font-size: 21pt; }
.font_22{ font-size: 22pt; }
.font_24{ font-size: 24pt; }
.font_25{ font-size: calc(25pt + 20 * ((100vw - 600px) / 1200)); }
.font_27{ font-size: calc(27pt + 20 * ((100vw - 600px) / 1200)); }
.font_28{ font-size: 28pt; }
.font_30{ font-size: 30pt; }
.font_35{ font-size: calc(35pt + 10 * ((100vw - 600px) / 1200)); }
.font_40{ font-size: calc(40pt + 20 * ((100vw - 600px) / 1200)); }
.font_45{ font-size: calc(45pt + 20 * ((100vw - 600px) / 1200)); }
.font_50{ font-size: calc(50pt + 20 * ((100vw - 600px) / 1200)); }
.font_55{ font-size: 55pt; }
.font_59{ font-size: 59pt; }
.font_60{ font-size: 60pt; }
.font_70{ font-size: calc(70pt + 20 * ((100vw - 600px) / 1200)); }
.font_72{ font-size: 72pt; }
.font_85{ font-size: 85px; }
.font_100{ font-size: 100pt; }

.font_116{ font-size: calc(116pt + 20 * ((100vw - 600px) / 1200)); }
.font_123{ font-size: 123pt; }
.font_128{ font-size: 128pt; }


.nunito-sans {
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "YTLC" 500;
}
.nunito-sans-light {
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "YTLC" 500;
}
.nunito-sans-bold {
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "YTLC" 500;
}

.qtoldgoudy{ font-family: QTOldGoudy; font-weight: 400; }
.qtoldgoudy_bold{ font-family: QTOldGoudy_bold; }
.qtoldgoudy_italic{ font-family: QTOldGoudy_italic; }

.red_text{ color:#d01d22; }
.white_text{ color:#fff; }
.black_text{ color:#000; }
.text_left{ text-align:left; }
.text_right{ text-align:right; }
.text_center{ text-align:center; }

.block{ padding: 60px 150px; }
.light_blue_bg{ background-color: #5B7C98; }
.blue_bg{ background-color: #00355F; }
.gray_bg{ background-color: #58595B; }
.light_blue_color{ color: #5B7C98; }
.blue_color{ color: #00355F; }
.gray_color{ color: #58595B; }


/* HEADER CSS */
  #the_header{
    position:fixed;
    width:100%;
    top:0;
    z-index: 999999;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  #the_header.fixed-header #top_header{
    padding: 10px 70px 10px 40px !important;
    box-shadow: 0px 0px 5px #000;
  }

 #top_header{
    display:flex;
    padding: 20px 12px;
    background-color:#fff;
    align-items: flex-end;
    justify-content: center;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  #top_nav{
    display:flex;
    width:100%;
    justify-content: flex-end;
    margin-right: 30px;
  }
  #top_nav ul{ 
    list-style:none;
  }
  #top_nav li{
    list-style:none;
    display:inline-block;
    color:#fff;
    margin-right:5px;
  }
  #top_nav li a{
    font-family: QTOldGoudy;
    color:#00355F;
    padding: 0 10px;
    text-decoration:none;
    font-size: 28px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  #the_header.fixed-header #top_nav li a{
    font-size: 22px;
  }
  #top_nav li a:hover{
    color:#000;
  }
  #top_menu .fa-bars{
    display:none;
    color:#00355F;
    font-size: 30px;
  }
  #top_menu .fa-bars:hover{
    color: #A6AAAE;
  }
  #top_nav li .white_border{
    border: solid 2px #00355F;
  }
  #top_nav li .black_border{
    background:#ffffff;  
    color:#d01d22;
    border: solid 2px #d01d22;
  }
  #top_nav li .black_border:hover{
    border: solid 2px #000;
    color:#000000;
  }
  #header_logo img{
    margin-left: 30px;
    width:200px;
    height:auto;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  #the_header.fixed-header #header_logo img{
    width:130px;
  }


  #main_content{
    margin-top:186px;
  }
  #main_content.gradient_bg{
    background-image: linear-gradient(#5B7C98, #01355F);
  }

.row { display: flex; }
.col1span { flex: 100%; } 
.col2span { flex: 50%; } 
.col3span { flex: 33%; }  
.col4span { flex: 25%; }   
  
  

/* FOOTER CSS */
#footer_city{
  background:#fff;
  width: 100%;
  padding-top: 30px;
  margin-bottom:-2px;
}
#footer{
  position:relative;
  background: #00355F;
  color:#fff;
}
#footer a{ 
  color:#fff;
  text-decoration:none;
}
#footer .copyright{
  font-size: 14px;
  padding-bottom:20px;
}
#footer_logo{
  position:absolute;
  width:100%;
  max-width: 110px;
  right: 20px;
  top: 10px;
}
.footer_menu{
  display:flex;
  flex-wrap:wrap;
  justify-content: center;
  list-style:none;
  padding:20px 110px;
}
.footer_menu li{
  list-style:none;
  padding: 4px 24px;
  text-align:center;
}
.footer_menu li a{
    font-family: QTOldGoudy;
}

#scrolltop{
  display:none;
  position:fixed;
  bottom: 100px;
  right: -50px;
  display:block;
  padding: 15px 10px 10px 15px;
  color: transparent;
  background:#d01d22;
  z-index: 999999;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#scrolltop.showarrow{
    right: 0px !important; 
}

.chevron::before {
	border-style: solid;
	border-width: 0.25em 0.25em 0 0;
	content: '';
  color:#fff;
	display: inline-block;
	height: 0.75em;
	left: 0.15em;
	position: relative;
	top: 0.15em;
	transform: rotate(-45deg);
	vertical-align: top;
	width: 0.75em;
}

.chevron.right:before {
	left: 0;
	transform: rotate(45deg);
}

.chevron.bottom:before {
	top: 0;
	transform: rotate(135deg);
}

.chevron.left:before {
	left: 0.25em;
	transform: rotate(-135deg);
}


@media (min-width: 1201px) {
  #top_nav ul{  display:block !important; }
}
@media (max-width: 1200px) {
  #header_logo img{ width:160px; }
  #main_content{ margin-top: 157px; }
  #top_nav ul{ 
    display:none; 
    max-width: 230px; 
    position:absolute;
    background: #A6AAAE;
    top: 96px;
    right: 25px;
    padding: 15px;
  }
  #top_nav ul li{ display:block; }
  #top_nav li a{ text-align:left; display: block; padding: 7px; }
  #top_menu:hover ul, #top_menu ul:hover{ display:block; }
  #top_menu .fa-bars{ display:block; }

  .block{ padding: 60px 120px !important; }
}
@media (max-width: 981px) {
  .block{ padding: 60px !important; }
  #footer .row{ flex-direction: column; }
  #footer_logo{
    position:relative;
    right: unset;
    top: unset;
    margin-bottom: 30px;
  }
  
}
@media (max-width: 767px) {
  #header_logo img{ width:140px; }
  #top_nav{ margin-right:0;}
  #main_content{ margin-top: 142px; }
  .row { flex-direction: column; }
  .block{ padding: 20px 15px !important; }
  .footer_menu{ flex-direction: column; align-items: center; padding: 20px;}
}



