/* CSS Document */

/* Theming */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap"); /* import font */



body {
  background-color: white;
  margin: 0;
  padding: 0;
  font-size: 1em;
}

a {
  text-decoration: none;
  color: #b30086;
  opacity:1;
  font-family: Poppins, sans serif;
  font-size: 1.5em;
  font-weight: 400;
  transition: 200ms;
}
a:hover {
  opacity:0.5;
}
ul {
  padding: 0;
  list-style-type: none;
}

 .container {
  margin-top: 50px; 
  Display: flex;
  justify-content: center;
  align-items: center;
}
.phone {
  background-color: #36383F;
  border-radius: 40px;
  width: 300px;
  height: 600px;
  Display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 30px 50px 100px #85888C;
}
.content {
  border: 1px solid #36383F;
  border-radius: 20px;
  width: 94%;
  height: 91%;
  background-color: #F5F6FA;
  overflow: hidden;
}

.topnav {
  overflow: hidden;
  background-color: #333;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.active {
  background-color: #b30086;
  color: white;
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 17px;    
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #555;
  color: white;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 890px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 890px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}


body {
  margin: 0;
  font-family: Poppins, Arial, Helvetica, sans-serif;
}

.headerimage {
 position: relative;
  text-align: center;
  color: black;
background-repeat:no-repeat;
width: 100%;
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size:150%;
  }
  
  .bottom-left {
  position: absolute;
  bottom: 8px;
  left: 16px;
}

.top-left {
  position: absolute;
  top: 8px;
  left: 16px;
}

.top-right {
  position: absolute;
  top: 8px;
  right: 16px;
}

.bottom-right {
  position: absolute;
  bottom: 8px;
  right: 16px;
}


  
.paddedtext280 {
padding-left: 15px;
padding-right: 15px;
min-height: 280px;
}

.paddedtext {
padding-left: 15px;
padding-right: 15px;
}


.paddedtexttop {
padding-left: 15px;
padding-right: 15px;
}


.paddedtextcentre {
padding-left: 15px;
padding-right: 15px;
text-align:center;
}

.imagecentre {
display: block;
margin-left: auto;
margin-right: auto;
width:30%;
}

@media screen and (max-width: 760px) {
  .imagecentre {width: 45%;}
  }
}


a.read { text-decoration: none;
  color: #1E1E23;
  opacity:1;
  font-family: Poppins, sans serif;
  font-size: 1.1em;
  font-weight: 400;
  transition: 200ms;   }
  
.read a:hover { color: black; }

.flex-container {
  display: flex;
  flex-direction: row;
  font-size: 1.1em;
  
}

/*  Three column-layout */
.flex-item-left {
  background-color: white;
  padding: 15px;
  flex: 33%;
}

.flex-item-middle {
  background-color: white;
  padding: 15px;
  flex: 34%;
}

.flex-item-right {
  background-color: white;
  padding: 15px;
  flex: 33%;
}

/*  Two equal column-layout */
.flex-item-left-equal {
  background-color: white;
  padding: 15px;
  flex: 50%;
}

.flex-item-right-equal {
  background-color: white;
  padding: 15px;
  flex: 50%;
}

/*  Two non equal column-layout */
.flex-item-left-small {
  background-color: white;
  padding: 15px;
  flex: 30%;
}

.flex-item-right-large {
  background-color: white;
  padding: 15px;
  flex: 70%;
}


/* Responsive layout - makes a one column-layout instead of two-column layout */
@media (max-width: 900px) {
  .flex-container {
    flex-direction: column;
  }
}
  
/* Bottom left text */
.bottom-left {
  position: absolute;
  bottom: 8px;
  left: 16px;
}

/* Top left text */
.top-left {
  position: absolute;
  top: 8px;
  left: 16px;
}

/* Top right text */
.top-right {
  position: absolute;
  top: 8px;
  right: 16px;
}

/* Bottom right text */
.bottom-right {
  position: absolute;
  bottom: 8px;
  right: 16px;
}

/* Centered text */
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}  

.centr {
  display: block;
  margin-left: auto;
  margin-right: auto;
  
}

ul.bullet {list-style-type:disc; margin-left:20px;}