*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'inter', sans-serif;
}

body{
	height: 100%;
	width: 100%;
  -webkit-text-fill-color: #161F6D;
  color: #161F6D;
}



/**************************************************************/

.navigation {
	z-index: 1000;
	width: 100%;
	position: fixed;
	height: 55px;
	color: #161F6D;
  -webkit-text-fill-color: #161F6D;
	background-color: rgba(255, 255, 255, 0.116);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.socialbeeislogo {
	position: absolute;
	float: left;
	width: 160px;
	height: 100%;
	background-image: url("socialbeelogo.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}


.nav-container {
	max-width: 1000px;
	margin: 0 auto;
}

nav {
	float: right;
}

nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

nav ul li {
	float: left;
	position: relative;
}

nav ul li a {
	display: block;
	padding: 0 20px;
	line-height: 55px;
  font-weight: 680;
  letter-spacing: 0.8px;
	background: #262626 ;
	text-decoration: none;
}

nav ul li a:hover{
	border-bottom: 2.5px solid #161F6D;
}


nav ul li a{
	background: transparent;
	color: #161F6D;
  -webkit-text-fill-color: #161F6D;
}

/*
nav ul li a:hover, nav ul li a:visited:hover {
	background: #2581DC;
	color: #ffffff;
}
*/

nav ul li a:not(:only-child):after, nav ul li a:visited:not(:only-child):after {
	padding-left: 4px;
	content: ' \025BE';
}


/* Mobile navigation */
.nav-mobile {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	background: transparent;
	height: 55px;
	width: 70px;
}

@media only screen and (max-width: 800px) {
	.nav-mobile {
		display: block;
   }

   .nav-container{
		margin: 0 2rem;
   }
	
   nav {
		width: 100%;
		padding: 55px 0 15px;
   }
	
   nav ul {
		display: none;
   }

   nav ul li {
		float: none;
   }


   nav ul li a:hover{	
	  border-bottom: 2px solid #161F6D;	
   }

   nav ul li a {
		padding: 15px;
		line-height: 20px;
		background: #faca1d;
   }

   nav ul li ul li a {
		padding-left: 30px;
   }

}


@media screen and (min-width:800px) {
	.nav-list {
		display: block !important;
   }
}

#navbar-toggle {
	position: absolute;
	left: 18px;
	top: 15px;
	cursor: pointer;
	padding: 10px 35px 16px 0px;
}

#navbar-toggle span, #navbar-toggle span:before, #navbar-toggle span:after {
	cursor: pointer;
	border-radius: 1px;
	height: 3px;
	width: 30px;
	background: #161F6D;
	position: absolute;
	display: block;
	content: '';
	transition: all 300ms ease-in-out;
}

#navbar-toggle span:before {
	top: -10px;
}

#navbar-toggle span:after {
	bottom: -10px;
}

#navbar-toggle.active span {
	background-color: transparent;
}

#navbar-toggle.active span:before, #navbar-toggle.active span:after {
	top: 0;
}

#navbar-toggle.active span:before {
	transform: rotate(45deg);
}

#navbar-toggle.active span:after {
	transform: rotate(-45deg);
}





  

/*****************************************/



.contacttext{
    padding: 7.5rem 0 3rem 0;
    text-align: center;
    line-height: 1.5rem;
    max-width: 60%;
    margin: auto;
}

.contacttext h2, .contacttext h3{
    margin-bottom: 1rem;
}

.contacttext p{
  font-weight: 500;
  letter-spacing: -0.5px;
}

a{
    text-decoration: none;
}

.container{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 100px;
	/*background-color: #FBDA61;*/
/*background-image: linear-gradient(45deg, #FBDA61 0%, #FF5ACD 100%);*/
}

.bee{
  position: absolute;
  width: 20%; 
  top: 30px;
  right: 140px; 
}

.contact-box{
	max-width: 850px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	justify-content: center;
	align-items: center;
	text-align: center;
	background-color: #fff;
	box-shadow: 0px 0px 19px 5px rgba(0,0,0,0.19);
	border-radius: 12px;
}

.left{
	margin: 10px 10px;
	height:500px;
}

.right{
	padding: 25px 40px;
}



.field{
	width: 100%;
	border: 2px solid rgba(0, 0, 0, 0);
	outline: none;
	background-color: rgba(230, 230, 230, 0.6);
	padding: 0.5rem 1rem;
	font-size: 1.1rem;
	margin-bottom: 22px;
	transition: .3s;
}

.field:hover{
	background-color: rgba(0, 0, 0, 0.1);
}

textarea{
	min-height: 150px;
}

.btn{
	width: 100%;
	padding: 0.5rem 1rem;
	background-color: #FACB1B;
	font-size: 1.1rem;
  font-weight: 500;
	border: none;
	outline: none;
	cursor: pointer;
	transition: 0.3s;
	border-radius: 12px;
}

.btn:hover{
    border: 3px solid #FACB1B;
    color: #161F6D;
    background-color: white;
}

.field:focus{
    border: 2px solid #161F6D;
    background-color: #fff;
}

@media screen and (max-width: 800px){
	.contact-box{
		grid-template-columns: 1fr;
	}
  
	body{
		width: 100%;
	}

  .container{
    padding: 20px 15px;
  }

  .bee{
    display: none;
  }
}


.credit a{
    text-decoration: none;
    color: violet;
  }

  .mapouter{position:relative;text-align:center;width:100%;height:500px;}
  .gmap_canvas {overflow:hidden;background:none!important;width:100%;height:600px;}
  .gmap_iframe {height:500px}



.contact-info{
    padding: 50px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.contactitem{
    /*background-color: #FBDA61;*/
    width: 250px;
    padding: 1rem  1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-content: flex-start;
    margin: 10px 10px;
}

.contactitem h3{
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.contactitem p{
    font-weight: 400;
    text-align: center;
}


.contactitem .img{
    display: inline-block;
    background-color: #FACB1B;
    padding: 15px;
    border-radius: 50%;
    margin-bottom: 2rem;
}


.contactitem i{
    font-size: 1.5rem;
    color: white;
}




  /******************FOOTER*********************/

  #footersection{
    margin: 0;
    padding-top: 2vw;
    padding-bottom: 7vw;
    display: grid;
    grid-template-rows: auto 1fr auto;
    font-size: 14px;
    background-color: #f4f4f4;
    align-items: start;
    background-image: url("footer2.png");
    background-size: cover;
    background-position: bottom;
    background-color: rgba(255, 232, 18, 30%);
      
  }
  
  
  
  .footer {
      display: flex;
      flex-flow: row wrap;
      padding: 30px 0 20px 0;
      color: #2f2f2f;
      margin: 0 5rem;
    }
    
    .footer > * {
      flex:  1 100%;
    }
    
    .footer__addr {
      margin-bottom: 2em;
    }
    
    
    .footer__addr h2 {
      margin-top: 1.3em;
      font-size: 1rem;
      font-weight: 400;
    }
    
    .nav__title {
      font-weight: 750;
      font-size: 1rem;
    }
    
    .footer address {
      font-style: normal;
      /*color: #999;*/
    }
    
    
    .footer ul {
      list-style: none;
      padding-left: 0;
    }
    
    .footer li {
      line-height: 2em;
    }
    
    .footer a {
      text-decoration: none;
    }

    .footer ul li a:hover {
      color: #0c52a1;
      font-weight: 800;
    }
    
    .footer__nav {
      display: flex;
        flex-flow: row wrap;
    }
    
    .footer__nav > * {
      flex: 1 50%;
      margin-right: 1.25em;
    }
    
    .nav__ul a {
      color: black;
    }
    
    .nav__ul--extra {
      column-count: 2;
      column-gap: 1em;
    }
    
    .legal {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      color: black;
    }
      
    .legal__links {
      display: flex;
      align-items: center;
    }
    
    
    @media screen and (min-width: 24.375em) {
      .legal .legal__links {
        margin-left: auto;
      }
    }
    
    @media screen and (min-width: 40.375em) {
      .footer__nav > * {
        flex: 1;
      }
      
      .nav__item--extra {
        flex-grow: 2;
      }
      
      .footer__addr {
        flex: 1 0px;
      }
      
      .footer__nav {
        flex: 2 0px;
      }
     
    }
  
    @media (max-width:1000px) {
      .footer {
        display: block;
      }
  
    }