
:root {
    --brand: #f99d1c;
    --dark: #092032;
    --body: #516171;
    --border: rgba(0,0,0,0.08);
    --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
    --btnbg: #f5c271;
    
}

body {
    font-family: "Barlow", sans-serif;
    color: var(--body);
    line-height: 1.7;

}
h1,h2,h3,h4,h5,h6,
.display-1,.display-2,.display-3,.display-4 {
    font-weight: 700;
    color: var(--dark);
}
img {
    width: 100%;
}
a {
    color: var(--dark);
    transition: all 0.4s ease;
    font-weight: 500;
}
.top-nav {
    background-color: var(--brand);
    color: #fff;
    padding-top: 5px;
    padding-bottom: 5px;
}
.top-nav p {
    margin-bottom: 0;
    display: inline-block;
    margin-right: 16px;
}
.top-nav span,
.top-nav i {
    vertical-align: middle;
}
.social-icons a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.social-icons a:hover {
    background-color: #fff;
    color: var(--brand);
}
.navbar {
    box-shadow: var(--shadow);
}
.navbar .navbar-nav .nav-link {
    color: var(--dark);
}

.navbar .navbar-nav .nav-link:hover {
    color: var(--brand);
}

.navbar .navbar-nav .nav-link.active {
    color: var(--brand);
}

.navbar-brand {
    font-size: 28px;
    font-weight: 700;
}

.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* remove dropdown animation delay */
    background-color: #fff;
  }
  /* Change dropdown item hover background to brand color and text to white */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  background-color: var(--brand);
  color: #fff;
}
.dropdown-menu{background: #fff; border: 0px; border-radius: 0px; width: 200px; border-top: 2px solid #f99d1c; padding: 0px}
.dropdown-item{ padding:8px 15px; border-bottom:1px solid #ebebeb; }

  
  /* Optional: Show arrow direction properly */
  .navbar-nav .dropdown-toggle::after {
    display: none;
    vertical-align: 0.255em;
  }

.btn {
    padding: 8px 26px;
}

.btn-brand {
    border-color: var(--brand);
    background-color: var(--brand);
    color: #fff;
}
.btn-brand:hover {
    background-color: #ec970e;
    border-color:#6d470b;
    color: #fff;
}

/* FOOTER */
.footer {
    width: 100%;
    float: left;
  background-color:#121618;
  position: relative;
}
.footer-logo {
    width: 46%;
    height: auto;
    /* float: left; */
    display: inline-block;
    margin-bottom: 25px;
}
.footer-logo img{width: 100%; height: auto;}
.footer-top-header {
  padding-top: 110px;
  padding-bottom: 50px;
}
.footer-header {
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
}
.footer-address {
  color: #fff;
  font-size: 14px;
}
 ul.footer-ul{display: block;padding-left: 0px; margin: 0px}
.footer-ul li {
  margin-bottom: 7px; list-style-type: none; 
}
.footer-ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
.footer-ul li a:hover {
  color: var(--primaryClr);
}
.footer-bottom-header {
  padding-bottom: 20px; padding-top: 20px; border-top: 1px solid #606876;
}
.footer-bottom-text {
  font-size: 13px; text-align: center;
  color: #fff;
}
.footer_social_icons {
  display: flex;
  align-items: center;
  height:auto;
  margin-top: 25px;
}
.footer_social_icons li {
  margin-right: 30px; list-style-type: none; 
}
.footer_social_icons li:last-child {
  margin-right: 0;
}
.footer_social_icons li a {
  color: #f99d1c;    font-size: 25px;
}
.footer_social_icons li a:hover{color: #fff}
ul.footer_social_icons{padding: 0px}
.policy {
    width: auto;
    height: auto;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 8px;
    margin-top: 25px;
    padding: 17px 39px;
    display: inline-block;
    font-size: 25px;
    text-decoration: none;
    color: #f99d1c;
    line-height: 10px;
}
/* END FOOTER */





  
  


    
  
