/*@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');*/

/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */

/* body {*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    text-decoration: none;*/
/*    box-sizing: border-box;*/
/*    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
/*    font-family: "Poppins", serif;*/
/*    max-width:1500px;*/
/*    color: #1e293b;*/
/*  }*/
  
header{
    align-items: center;
    box-shadow: 0 2px 2px -2px rgba(0,0,0,.2);
    background: #AA183D;
    width: auto;
    color: white;
    padding: 0;
    text-align: center;
    justify-content: flex-start;
    display: flex;
    font-family: "Poppins", serif;
}
#header{
    
    display: flex;
    flex-direction: column;
    max-width: 85%;
    margin: auto;
}
.logoCon{
    width: 25%;
}
.logo {
    width: 85%;
    position: relative;
}
.titleCon{
    width: 65%;
}
header h1{
    font-size: 45px;
    margin: 0;
    font-weight: 600;
}
header h3{
    margin: 0;
    font-size: 28px;
    font-family: "Roboto", sans-serif;
}
#check {
    display: none;
}
.checkbtn, .home {
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    display: none;
    float: right;
    margin-right: 20px;
}
nav {
    display:flex;
    justify-content:space-between;
    align-items: center;
    z-index: 9;
    background: #0F3063;
    /*border-radius: 0 0 8px 8px;*/
    padding-right:20px;
}
nav ul{
    display: flex;
}
nav ul li{
    list-style-type: none;
}
nav a, nav span {
    font-size: 16px;
    color: #fff;
    padding: 0 20px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
}
nav a:hover{
    text-decoration:underline;
     text-decoration-color: white;
     transition: .5s;
}
   .navSearchBtn i{
        color: #fff;
    }
#toggle{
    display:none;
}
/*+++++++++++++++++++++++++++++++++++++++++++++++++++*/
.dropbtn {
    font-size: 16px;
    border: none;
    cursor: pointer;
    background: none;
    color: #fff; 
    font-weight: 500;
    font-family: "Poppins", serif;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 180px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  padding-bottom: 20px;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #0F3063; color:#fff; text-decoration:none;}

.dropdown:hover .dropdown-content {
  display: block;
}
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.navSearchBtn{
    background: none;
    border: none;
}
.navSearch {
    display: none;
    position: absolute;
    right: 100px;
}
.activeSearch{
    display: block;
}
.navSearchForm {
  width: 400px;
}
.navSearch { animation: fadeIn .5s; }

.navSearch input[type=text] {
  padding: 10px;
  font-size: 17px;
  border: none;
  width: 100%;
  background: white;
}
.navSearch input[type=text]:hover {
  background: #f1f1f1;
}
.navSearch input[type="text"]:focus {
    outline : none;
}
.navSearch button {
  float: left;
  width: 15%;
  padding: 10px;
  background: #1e90ff;
  font-size: 17px;
  border: none;
  cursor: pointer;
  z-index:1;
  color:#fff;
}
.navSearch button:hover {
  background: #bbb;
}
.navSearchBtn{
    cursor: pointer;
    padding: 5px;
}
.navSearchForm{
    width: 380px;
    position: absolute;
    top: 20px;
    right: 0;
    z-index: 1000;
    border: 2px solid #1e90ff;
}
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.autocomplete {
  position: relative;
  display: inline-block;
  width: 100%;
}
.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff; 
  border-bottom: 1px solid #d4d4d4; 
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color: #e9e9e9; 
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: DodgerBlue !important; 
  color: #ffffff; 
}

/* --------------------------------------------.Footer Style--------------------------------------------- */

footer {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    text-align:left;
    background: #0F3063;
}
    
 
footer a,  footer span{
    color:#fff;
    font-size: 14px;
    padding: 2px 15px;
}
footer a:hover{
    text-decoration: underline;
}  
.toSearch{
    background-color:#AA183D;
    position: fixed;
    bottom: 16px;
    right: 32px;
    width: 20px;
    height: 20px;
    padding: 22px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all .4s;
    border:none;
    display:none;
    z-index:5;
}
.toSearch:hover {
  background: green;
}
.toSearch i{
    font-size:20px;
    color:#fff;
}
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
}

.overlay-content {
  position: relative;
  top: 28%;
  width: 90%;
  max-width:700px;
  text-align: center;
  margin-top: 30px;
  margin: auto;
}
.overlay { animation: fadeIn .5s; }
.overlay .closebtn {
  position: absolute;
  top: 40px;
  right: 45px;
  font-size: 60px;
  cursor: pointer;
  color: white;
}
 /*.closebtn { animation: fadeOut .5s; }*/

/*.overlay .closebtn:hover {*/
/*  color: #ccc;*/
/*}*/

.overlay input[type=text] {
  padding: 10px;
  font-size: 17px;
  border: none;
  width: 100%;
  background: white;
}
.overlay input[type=text]:hover {
  background: #f1f1f1;
}
.overlay input[type="text"]:focus {
    outline : none;
}

.overlay button {
  float: left;
  width: 15%;
  padding: 10px;
  background: #1e90ff;
  font-size: 17px;
  border: none;
  cursor: pointer;
  z-index:1;
  color:#fff;
}

.overlay button:hover {
  background: #bbb;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes fadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; }
}
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
 @media screen and (max-width: 800px) {
#header{
    /*position: sticky;*/
    /*top: 0;*/
    max-width: 100%;
}
header{
    min-height: 110px;
}
.logoCon{
    /*width: 0;*/
}
.logo {
     /*display: none;*/
}
.titleCon{
    /*width: 100%;*/
}
header h1{
    font-size: 30px;
}
header h3{
    font-size: 20px;
}


.checkbtn, .home {
    display: block;
}

#check:checked~nav {
    left: 0;
}
nav  {
   border-radius: 0;
}
 nav a{
    width:100%;
    padding:14px 0;
    font-weight:400;
    color:#000;
    font-size:20px;
}
nav ul{
    flex-direction:column;
    position: fixed;    
    left: -100%;
    width:50%;
    height:90vh;
    top: 133px;
    background: #fff;
    padding:40px 0 60px 0;
    transition: all 0.5s ease-in-out;
    z-index:2;
    line-height:2;
    text-align: center;
}
.nav2{
    display: flex;
    width: 100vw;
    justify-content: space-between;
}
#toggle{
    display: flex;
    background: #0F3063;
    margin-left: 10px;
}
#toggle span{
    padding: 5px;
    font-weight: 400;
}
.iconbar1, .iconbar2, .iconbar3 {
  width: 35px;
  height: 5px;
  background-color: #fff;
  margin: 6px 0;
  transition: 0.4s;
}
.change .iconbar1 {
  transform: translate(0, 11px) rotate(-45deg);
}
.change .iconbar2 {opacity: 0;}
.change .iconbar3 {
  transform: translate(0, -11px) rotate(45deg);
}
.activeNav{
    /*display: flex !important;*/
    /*position: absolute;*/
    left: 0;
}

.navSearchBtn {
    right: 0;
    position: absolute;
    margin: 5px 8px;
}
.navSearch {
    position: relative;
    top: 30px;
    right: 0;
}
/***************************Footer Content Mobile View*****************************************/
footer{
    display: flex;
    flex-direction: column;
}
.footerLink{
    display: flex;
   flex-direction: column;
   align-items: center;
}
/*.footer-link*/
/*{*/
/*    flex-direction: column;*/
/*}*/
footer a{
    font-size:16px;
}
.copyright{
    display: flex;
    margin-top: 20px;
}
/*+++++++++++++++++++++++++++++++++++++++++*/
.mobBottom{
    position: fixed;
    height: 65px;
    width: 100%;
    bottom: 0;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background-color: #ffffff;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #e3e3e3;
    padding:5px 0;
    z-index:4;
}
.mobCol{
    width:20%;
    padding:5px 0;
    display:flex;
    flex-direction:column;
    align-items:center; 
    background:none;
    border:none;
}
.mobCol p{
   margin:0;
   font-size:12px;
}
.mobCol figure{
   text-align:center;
   margin:0;
    margin-bottom:10px ;
}
.mobCol a{
    color:#000;
}
.toSearch {
    bottom: 20px;
}

}