/*
Elements after a floating element will flow around it. Use the "clearfix" hack to fix the problem.
https://www.w3schools.com/howto/howto_css_clearfix.asp
https://www.w3schools.com/css/css_float_clear.asp
*/
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}


.example-one {
  background-color: navy;
}

.example-two {
  background-color: rgb(153 102 153);
  color: rgb(255 255 204);
}

.example-three {
  background-color: white;
  color: #ffffff;
}
/*
.top-rightf > button {
border-radius: 12px;
background-color: black;
color:white;
border: 1px solid red;
}

https://www.w3schools.com/colors/colors_mixer.asp?colorbottom=FFD700&colortop=FFFFFF
*/

.accordianStyle{
    display:block;
    border-radius: 10px;
    background-color:white;
    border: 2px solid grey;
    padding-left:10px;
    padding-right:10px;
    padding-top:2px;
    padding-bottom:2px;
}

.accordianStyle2{
    display:block;
    background-color:white;
    padding-left:10px;
    padding-right:10px;
    padding-top:2px;
    padding-bottom:2px;
}

.openCloseVee {
display:flex;
justify-content: center;
padding:20px;
height:50px;
}

.accordianWrap{
word-wrap: break-word;
white-space: normal;
}

.menuBar {
  width: 35px;
  height: 3px;
  background-color: black;
  margin: 6px 0;
}

.homeBox {
padding-top:10px;
/*height:43vh;*/
 /*display:table-cell;*/
}

.backColour {
/*background-color: #f8fffc; #f0f8ff; #f0f8ff pale-blue was using this*/
background-color: white;
}

.backColour2 {
/*background-color: #f8fffc; #f0f8ff; #ffffe6-pale yellow*/
background-color: #ffffe6; /*light yellow */
}

.backColour3 {
/*background-color: #f8fffc; #f0f8ff;#ffffcc*/
background-color:#ffffe6;
}

.topColour {
/*background-color: #ffe866;  ffe34d ffed8c*/
/*background-color: #ffe866; dark yellow */
/*background-color: #ffffe6; light yellow */
background-color:#ffe866;
}

.reviewBox {
justify-content: center;
padding:20px;
border:2px solid lightGrey;
border-radius:20px;
/*background-color:#efffff;*/
/*background-color:#f0f8ff;*/
background-color:#f8ffff;
box-shadow: 5px 5px 5px lightGrey;
margin:15px;
color:#595959
}

.whatIsSFScreen {
width:20%;
border:2px solid grey;
border-radius:20px;
}

.whatIsSFScreenSmall {
width:60%;
border:2px solid grey;
border-radius:20px;
}

.review {
width:70%;
border:2px solid grey;
border-radius:20px;
}

.downloadScreenSharing {
width:50%;
border:2px solid grey;
border-radius:20px;
}

.blueRound {
border-radius: 15px;
background-color: #ffa31a;
background-color: #ffb84d
background-color: #ffcc80;
text-color:black;
border: 1px solid #ffa31a;
}

.top-rightf > button.b1 {
border-radius: 15px;
background-color: DodgerBlue;
color:white;
border: 1px solid DodgerBlue;
}

body1 {
  background-color: pink;
}

li {
    margin-bottom:10px;
}

.mainDiv {
  margin:0;
  padding-top:90px;
}

h33 {
  margin-left: 20px;
  font-size: 50px;
  padding-top: 5px;
  text-align: center;
}

.border1 {
    border: none;
    margin: 0;
    padding: 0;
    display:block;
}

iframe {
    border: none;
    margin: 0;
    height: 400px;
    padding: 0;
    width: 100%;
}

iframea {
    border: none;
    height: 90px;
    margin: 0;
    padding: 0;
    width: 100%;
}

.subt {
  color: navy;
  margin-left: 20px;
  font-size: 30px;
  text-align: center;
}
.container {
  position: relative;
  text-align: center;
  color: white;
}

.bottom-left {
  position: absolute;
  bottom: 8px;
  left: 16px;
}

.top-left {
  position: absolute;
  top: 32px;
  left: 64px;
}

.top-right {
  position: absolute;
  top: 32px;
  right: 64px;
}

.top-rightf {
  position: absolute;
  top: 16px;
  right: 64px;
  display: flex;
  flex-direction: row;
}

.top-rightf > div {
  font-size: 20px;
  margin-left: 20px;
  margin-right: 20px;
}

.bottom-right {
  position: absolute;
  bottom: 8px;
  right: 16px;
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.picture {
  display: flex;
  justify-content: center;
}

.elem {
}

.picture3 {
display: block;
  margin: auto;
  width: 25%;
}

.picture2 {
    border-radius: 15px;
    background-color: white;
    border: 1px solid DodgerBlue;
  display: flex;
  justify-content: center;
  padding: 30px;
  }

.dropbtn {
  background-color: #3498DB;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropbtn:hover, .dropbtn:focus {
  background-color: #2980B9;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  right:0px;
  background-color: #f2f2f2;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  /*z-index: 2;*/
}

.dropdown-content a {
  color: black;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {background-color: #ddd;}

.show {display: block;}

.bar1, .bar2, .bar3 {
  width: 33px;
  height: 3px;
  background-color: #333;
  margin: 6px 0;
  transition: 0.4s;
}

.change .bar1 {
  transform: translate(0, 9px) rotate(-45deg);
}

.change .bar2 {opacity: 0;}

.change .bar3 {
  transform: translate(0, -9px) rotate(45deg);
}

.dropDownMenu:hover, .dropDownMenu:focus {
  /*background-color: #f0f8ff;*/
  background-color: #f2f2f2;
  }

.turn .arrow {
    transform: opacity: 0;
}

.flex-container {
  display: flex;
  flex-direction: row;
}

/* Responsive layout - makes a one column layout instead of a two-column layout */
@media (max-width: 900px) {
  .flex-container {
    flex-direction: column;
  }
}

.mySlides {display:none;}

.topHeading {
padding-top:73px;
padding-bottom:3px;
background-color:#ffe866; /* dark yellow */
background-color: #ffffe6; /*light yellow */
background-color:#ffe866; /* dark yellow */
background-color: #ffffe6; /*light yellow */
}

.mainHeading {
padding-top:80px;
/*background-color:#ffe866; dark yellow */
background-color: #ffffe6; /*light yellow */
}

.smileFileFont {
font-family: Georgia, Times New Roman;
}

.navBarStyle {
/*background-color: #ffffe6; light yellow */
background-color: #ffffe6; /* light yellow */
background-color:#ffe866; /* dark yellow */
height:75px;
}


