@font-face {
  font-family: 'century_gothicregular';
  src: url('fonts/gothic-webfont.woff2') format('woff2'),
    url('fonts/gothic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'century_gothicbold';
  src: url('fonts/gothicb-webfont.woff2') format('woff2'),
    url('fonts/gothicb-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: 'century_gothicregular', sans-serif;
}

body {
  font-family: 'century_gothicregular', sans-serif;
  margin: 15px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  /* background-color: #f4f4f4; */
}

.logo {
  position: fixed;
  top: 1%;
  left: 50%;
  transform: translate(-50%);
  font-size: 2.96vw;
  color: #eb3f43;
  transition: top 0.3s ease, font-size 0.3s ease;
  z-index: 99999;
}

.logo img {
  width: 185px !important;
  height: auto !important;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  color: black;
  background: white;
  z-index: 1000;
  box-shadow: 0 40px 58px rgba(255, 255, 255, 4.1);
  transition: background-color 0.3s ease;
}

.navbar .left-links,
.navbar .right-links {
  display: flex;
  align-items: center;
}

.navbar .left-links a,
.navbar .right-links a {
  margin: 0 15px;
  color: black !important;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

.navbar .left-links a:hover,
.navbar .right-links a:hover {
  color: white;
  /* Highlight color */
}

.main-section {
  height: 100%;
  width: 100%;
  padding: 80px;
}

#logo {
  display: flex;
  justify-content: center;
}

#logo img {
  height: 50%;
  width: 30%;
}

.image {
  margin-block: 20px;
  height: 100%;
  width: 100%;
}

.image img {
  height: 100%;
  width: 100%;
}

.images {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flex-image {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.flex-image img {
  height: 50%;
  width: 49%;
}

/* Responsive Design */
@media (max-width: 768px) {}

@media (max-width: 480px) {

  .navbar .left-links a,
  .navbar .right-links a {
    font-size: 14px;
  }
}

/* moblie_menu */

.logo {
  position: fixed;
  top: 2%;
  left: 50%;
  transform: translate(-50%);
  font-size: 2.96vw;
  color: #eb3f43;
  transition: top 0.3s ease, font-size 0.3s ease;
  z-index: 99999;
}

.mobile-menu {
  display: block;
  width: 100%;
  /*e0b88f/*c99393/*e5d1a4/*dcc591/*EFD3A3*/
  /* background: #8aa8bd
  ; */
  background: #eb3f43;
  line-height: 1.6em;
  font-weight: 400;
  width: 100%;
  text-align: center;
  position: relative;
  margin: 0 auto;
  z-index: 3;
  position: fixed;
  top: 0;
}

/*Strip the ul of padding and list styling*/
.mobile-menu ul {
  list-style-type: none;
  margin: 0 auto;
  padding-left: 0;
  text-align: center;
  width: 100%;
  position: absolute;
  /* background: #8aa8bd; */
  background: #eb3f43;
}

/*Create a horizontal list with spacing*/
.mobile-menu li {
  display: inline-block;
  /*float: left;
	margin-right: 1px;*/
}

/*Style for menu links*/
.mobile-menu li a {
  display: block;
  min-width: 140px;
  text-align: center;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #fff;
  text-transform: uppercase;
  /* background: #8aa8bd; */
  background: #eb3f43;
  text-decoration: none;
  margin-left: -5px;
  padding: 10px 0;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

/*Hover state for top level links*/
/* .mobile-menu li:hover a {
  color: #4db3ff;
  background-color: #ccddee;
} */

/*Style for dropdown links*/
.mobile-menu li:hover ul a {
  background: #f3f3f3;
  color: #2f3036;
  height: 40px;
  line-height: 40px;
}

/*Hover state for dropdown links*/
/* .mobile-menu li:hover .mobile-menu ul a:hover {
  color: #4db3ff;
} */

/*Hide dropdown links until they are needed*/
.mobile-menu li ul {
  display: none;
}

/*Make dropdown links vertical*/
.mobile-menu li ul li {
  display: block;
  float: none;
}

/*Prevent text wrapping*/
.mobile-menu li ul li a {
  width: auto;
  min-width: 100px;
  padding: 0 20px;
}


/*Style 'show menu' label button and hide it by default*/
.mobile-menu .show-menu {
  text-decoration: none;
  color: #fff;
  /* background: #8aa8bd; */
  /* background-color: #eb3f43; */
  background-color: #fff;
  /* background-color: #eb3f43c9; */
  text-align: center;
  /* padding: 10px 15px; */
  padding: 15px 15px;
  display: none;
  cursor: pointer;
  text-transform: uppercase;
}

.mobile-menu .show-menu span {
  padding-left: 25px;
}

/*Hide checkbox*/
.mobile-menu input[type=checkbox] {
  display: none;
}

/*Show menu when invisible checkbox is checked*/
.mobile-menu input[type=checkbox]:checked~#menu {
  display: block;
}

/*Responsive Styles*/

@media screen and (max-width : 800px) {
  .mobile-menu .lines {
    border-bottom: 15px double #000;
    border-top: 5px solid #000;
    content: "";
    /* height: 5px; */
    /* width: 20px; */
    height: 25px;
    width: 30px;
    padding-right: 15px;
    float: right;
  }

  /*Make dropdown links appear inline*/
  .mobile-menu ul {
    position: static;
    display: none;
  }

  /*Create vertical spacing*/
  .mobile-menu li {
    margin-bottom: 1px;
  }

  /*Make all menu links full width*/
  .mobile-menu ul li,
  .mobile-menu li a {
    width: 100%;
  }

  /*Display 'show menu' link*/
  .mobile-menu .show-menu {
    display: block;
  }
}

@media screen and (max-width : 800px) {
  div#navbar {
    display: none;
  }
}

@media screen and (max-width : 480px) {
  .main-section {
    padding: 50px 20px;
  }
}