.logo{
	margin-top: 0;
	margin-left: 0;
  position: absolute;
z-index: 5;
}
  
.tagline{
  position: relative;
	background-color: #f9f0d8;
	width: 100%;
	height: 45px;
	margin-top: 0;
	z-index: 1;
}

.tagline p{
	line-height: 40px;
	font-size: 125%;
	font-weight: bold;
	color: #da002b;
	font-style: italic;
	text-align: center;
	/*margin-top: -140px;*/
}

p {
	text-align: center;
}

  /* navbar styling */
  
  .navbar {
    position: relative;
    float: right;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: #da002b;
	  background-image: linear-gradient(to bottom, #da002b, #730000);
    color: #fff;
    width: 100%; /* from old css*/
    height: 75px;
    z-index: 1;
  }
  
  .nav-links a{
    color: #fff;
    z-index: 1;
  }

/* general styling */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
 
  a {
    text-decoration: none;
  }
  
  li {
    list-style: none;
  }
  

  /* MENU */
  
  .menu{
    font-family: Cambria, Georgia, serif;
    font-weight: bold;
    display: flex;
    justify-content: center;
    gap: 1em;
    font-size: 1.25rem;
  }
  
  .menu li:hover {
  	background: #87e9fc; 
  	background-image: linear-gradient(to bottom, #87e9fc, #0a7fcc);
  	color: #000;
    border-radius: 5px;
    transition: 0.3 east;
  }
  
  .menu li {
    padding: 5px 5px;
    }
  

  /* dropdown menu */
  
  .services {
    position: relative;
  }
  
  .dropdown{
    background: #da002b;
    background-image: linear-gradient(to bottom, #da002b, #730000);
    padding: 1em 0;
    position: absolute;
    display: none;
    border-radius: 8px;
    margin-top: 5px;
    z-index: 2;
  }
  
  .dropdown li + li {
    margin-top: 5px;
   }
  
  .dropdown li{
    padding: 0.5em 1em;
    width: 8em;
    text-align: center;
  }
  
  .dropdown li:hover{
    background-color: #4c9e9e;
  }
  
  .services:hover .dropdown {
    display: block;
  }

  /*  responsive navbar menu  */

  /* checkbox */

  input[type=checkbox]{
    display: none;
  }

  /* hamburger menu */
  .hamburger {
    display: none;
    font-size: 24px;
    user-select: none;
  }


  /****** FOOTER *****/

  footer{
	width: 100%;
	height: 130px;
	/*padding: 20px;*/
	background-color: #000;
}

.fb{
	width: 36px;
	margin-right: 10%;
}

footer p{
	color: #f9f0d8;
	font-size: 1.25em;
	line-height: 1.5em;
}

.left{
	float: left;
	margin-left: 11%;
	margin-top: -5px;
}

.left p{
	text-align: left;
}

.right{
	float: right;
	text-align: right;
	margin-right: 11%;
	margin-top: 5px;
}

.right p{
	text-align: right;
	}


  /* media queries */
  @media screen and (max-width: 1450px) {

    .menu {
      font-size: 1rem;
      margin-left: 30%;
    }


  }


  @media screen and (max-width: 850px) {
    .logo{
      display: none;
    }

    .menu {
        display:none;
        position: absolute;
        background: #da002b;
        background-image: linear-gradient(to bottom, #da002b, #730000);
        right: 0;
        margin-left: 50%;
        margin-top: 40px;
        text-align: right;
        padding: 16px 0;
        width: 50%;
        font-size: 1rem;
    }

    .menu li+li {
        margin-top: 12px;
    }

    input[type=checkbox]:checked ~ .menu{
        display: block;
    }

    .hamburger {
        display: block;
        float: right;
        font-size: 1.5em;
        font-weight: bold;
        color: #fff;
        z-index: 3;
    }

    .dropdown {
         opacity: 1;
         left: 0;
          top: 30%;
         transform: translateX(35%)''
    }

    .dropdown li:hover {
        background-color: #4c9e9e;
    }
  

  footer{
		padding: 0;
	}
	
	footer .left{
		margin-left: 5px;
		font-size: .75em;
	}
	
	footer .right{
		margin-right: 5px;
		font-size: .75em;
	}
}