
* {
  margin: 0;
  padding: 0;
  background-color: transparent;
 
}

.page-header {
  padding: 1.3rem;
  display: flex;
 
  
}
.pheader {
  margin-top: 100px;
  padding-left: 30px;
  padding-right: 30px;
  text-align:Center;
  font-size:12px;
  font-weight:800;
  margin-bottom: 100px;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}

.pbody {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 14px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 400;
  text-justify: auto;
  margin-bottom: 30px

}

.logo {
  color: rgb(207, 61, 3);
  align-self: center;
  margin-left: 1.2rem;
  font-size: 2.5rem;
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.nav-bar {
  margin: auto;
}

.nav-bar a {
  color: rgb(0, 0, 0);
  padding: 1rem;
  cursor: pointer;
  text-decoration: none;
  font-size: 1rem;
  font-family:Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.menu-icon {
  color: rgb(226, 7, 7);
  cursor: pointer;
  display: none;
}

button {
  font-size: 1rem;
  border: 2px solid rgb(226, 7, 7);
  border-radius: 30px;
  padding: 1.1rem;
  transition: background-color 0.3s ease;
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-weight: bold;
}

button:hover {
  background-color: rgb(226, 7, 7);
  color: white;
}

@media screen and (max-width: 700px) {
  .nav-bar {
    display: none;
    position: absolute;
    top: 3.7rem;
    left: 0;
    width: 100%;
    background-color: var(--bgcolor);
    text-align: center;
  }

  .nav-bar.responsive {
    display: block;
  }

  .nav-bar a {
    display: block;
  }

  .menu-icon {
    display: block;
    z-index: 1;
  }

  button {
    padding: 0.4rem;
  }
  .logo {
    font-size: 1.4rem;
  }
}

.banner {
  background-image: url('banner3.jpg');
  background-size: cover;
  background-position: center;
  height: 400px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner-content {
  color: rgb(255, 255, 255);
  background: transparent; /* Set background to transparent */
  padding: 20px;
  margin: 0;
}
.banner-content2 {
  color: #f8c3d7;
  background: transparent; /* Set background to transparent */;
}

.banner-content h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.banner-content p {
  font-size: 1.2em;
  margin-bottom: 1em;
}

.banner-content button {
  background-color: #ff4081;
  color: rgb(255, 255, 255);
  border: none;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.banner-content button:hover {
  background-color: #d81b60;
}

div.image1 {
  margin-top: 50px;
  width: 100px;
  height: 100px;
  background-image: url("./pix1.JPG");
}

/*spacing */
.gap{
  margin-top: 50px;
  margin-bottom: 50px;
}
p.small {
  line-height: 0.7;
}

p.big {
  line-height: 1.8;
}

/*social media formatting */
.fa {
  padding: 20px;
  font-size: 30px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
}

/* hover effect */
.fa:hover {
  opacity: 0.7;
}

/* Facebook */
.fa-facebook {
  background: #ff4081;
  color: white;
}

/* Twitter */
.fa-twitter {
  background: #ff4081;
  color: white;
}
/* instagram */
.fa-instagram {
  background: #ff4081;
  color: white;
}
/* Youtube */
.fa-youtube {
  background: #ff4081;
  color: white;
}

.iconlist {
    display: flex;
    justify-content: center;
    align-items: center;
  }
/*end of social media formatting */

/*--formatting*/
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 25px;
  margin-bottom: 25px;
  width: 60%;
}

/*-----------------------------------------*/
* {
  box-sizing: border-box;
}

/* Style the body */
body {
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 18px;
  margin: 0;
}

/* Header/logo Title */
.header {
  padding: 80px;
  text-align: center;
  background: #1abc9c;
  color: white;
}

/* Increase the font size of the heading */
.header h1 {
  font-size: 40px;
}

/* Sticky navbar - toggles between relative and fixed, depending on the scroll position. It is positioned relative until a given offset position is met in the viewport - then it "sticks" in place (like position:fixed). The sticky value is not supported in IE or Edge 15 and earlier versions. However, for these versions the navbar will inherit default position */
.navbar {
  overflow: hidden;
  background-color: #333;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
}

/* Style the navigation bar links */
.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
}


/* Right-aligned link */
.navbar a.right {
  float: right;
}

/* Change color on hover */
.navbar a:hover {
  background-color: #ddd;
  color: black;
}

/* Active/current link */
.navbar a.active {
  background-color: #666;
  color: white;
}

/* Column container-------------------------------------------- */
.row {  
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
  -ms-flex: 30%; /* IE10 */
  flex: 30%;
  background-color: white;
  padding: 40px;
}

/* Main column */
.main {   
  -ms-flex: 70%; /* IE10 */
  flex: 70%;
  background-color: white;
  padding: 20px;
}


/* 3 grid Colum*/
.column {
  float: left;
  padding: 10px;
}

.left, .right, .middle {
  width: 33.33%;
  text-align: center;
  font-family: cursive;
}


/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}


/* Image */
.flowimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

.img {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px;
  width: 150px;
}


/* Footer */
.footer {
  padding: 50px;
  text-align: center;
  background: #f8c3d7
  
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .row {   
    flex-direction: column;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .navbar a {
    float: none;
    width: 100%;
  }
}
 