@import url('https://fonts.googleapis.com/css?family=Quicksand:400,500,700');
html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif;
    font-size: 62.5%;
    font-size: 10px;
    background-color: #D3D3D3;
    scroll-behavior: smooth;
}
/*-- Inspiration taken from abdo steif -->
/* --> https://codepen.io/abdosteif/pen/bRoyMb?editors=1100*/

/* Navbar section */

.nav {
    width: 100%;
    height: 65px;
    position: fixed;
    line-height: 65px;
    text-align: center;
}

.nav div.logo {
    float: left;
    width: auto;
    height: auto;
    padding-left: 3rem;
}

.nav div.logo a {
    text-decoration: none;
    color: #fff;
    font-size: 2.5rem;
}

.nav div.logo a:hover {
    color: #00E676;
}

.nav div.main_list {
    height: 65px;
    float: right;
}

.nav div.main_list ul {
    width: 100%;
    height: 65px;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav div.main_list ul li {
    width: auto;
    height: 65px;
    padding: 0;
    padding-right: 3rem;
}

.nav div.main_list ul li a {
    text-decoration: none;
    color: #fff;
    line-height: 65px;
    font-size: 2.4rem;
}

.nav div.main_list ul li a:hover {
    color: #00E676;
}


/* Home section */

.home {
    width: 100%;
    height: 100vh;
    background-position: center;
	background-size:cover;
    transition: 5s;

    animation-name: animate;
    animation-duration: 30s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-play-state: running;
    animation-timing-function: ease-in-out;
}

@keyframes animate{
    0%{
        background-image: url("https://images.unsplash.com/photo-1532629345422-7515f3d16bb6?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8MXx8Y2hhcml0eXxlbnwwfHwwfHw%3D&w=1000&q=80");
    }
    20%{
        background-image: url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8NHx8Y2hhcml0eXxlbnwwfHwwfHw%3D&w=1000&q=80");
    }
    40%{
        background-image: url("https://wallpaperaccess.com/full/2358938.jpg");
    }
    60%{
        background-image: url("https://bodhicenter.org/wp-content/uploads/2016/08/mumbai-india-children-smiling.jpg");
    }
    80%{
        background-image: url("https://static.ebayinc.com/static/assets/Uploads/Stories/Articles/Untitled-1.jpg");
    }
    100%{
        background-image: url("https://www.tearfund.org/-/media/tearfund/images/get-involved/donate/donatepage-smilingchild-overview.jpg?mw=1200");
    }
}

.home2 {
    width: 100%;
    height: 92px;
    background-color: #008B8B;
    background-position: center top;
	background-size:cover;
}

.navTrigger {
    display: none;
}

.nav {
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}


/* Media qurey section */

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .container {
        margin: 0;
    }
}

@media screen and (max-width:768px) {
    .navTrigger {
        display: block;
    }
    .nav div.logo {
        margin-left: 15px;
    }
    .nav div.main_list {
        width: 100%;
        height: 0;
        overflow: hidden;
    }
    .nav div.show_list {
        height: auto;
        display: none;
    }
    .nav div.main_list ul {
        flex-direction: column;
        width: 100%;
        height: 100vh;
        right: 0;
        left: 0;
        bottom: 0;
        background-color: #111;
        /*same background color of navbar*/
        background-position: center top;
    }
    .nav div.main_list ul li {
        width: 100%;
        text-align: right;
    }
    .nav div.main_list ul li a {
        text-align: center;
        width: 100%;
        font-size: 3rem;
        padding: 20px;
    }
    .nav div.media_button {
        display: block;
    }
}


/* Animation */
/* Inspiration taken from Dicson https://codemyui.com/simple-hamburger-menu-x-mark-animation/ */

.navTrigger {
    cursor: pointer;
    width: 30px;
    height: 25px;
    margin: auto;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
}

.navTrigger i {
    background-color: #fff;
    border-radius: 2px;
    content: '';
    display: block;
    width: 100%;
    height: 4px;
}

.navTrigger i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
    margin: 5px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes inM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes outM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

.affix {
    padding: 0;
    background-color: #111;
}






.myH2 {
	text-align:center;
	font-size: 4rem;
}


.myH23 {
	text-align:left;
	font-size: 22px;
      padding-left:5%;
	padding-right:5%;
}

.myP2 {
	text-align: left;
	padding-left:5%;
	padding-right:5%;
	font-size: 19px;
}

.myP {
	text-align: justify;
	padding-left:15%;
	padding-right:15%;
	font-size: 20px;
}
@media all and (max-width:700px){
	.myP {
		padding:2%;
	}
}




#centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


#top-left {
  position: absolute;
  top: 8px;
  left: 0px;
  cursor: pointer;
}




.divTable2{display: table;
width: 100%;
background-color: #F0F8FF;
border-radius: 20px;
margin-left: auto;
margin-right: auto;
margin-top: 5px;
height: 70px;}

.divTableRow2 {display: table-row;
border: 2px  #47,79,79}


.divTableCell2 {display: table-cell;
text-align: center;
padding-bottom: 20px;
padding-top:20px;
padding-right:40px;
padding-left:40px;
font-size: 25px;
font-family:Times new roman;
border-radius: 20px;
border: 2px  #47,79,79;
width:80%;
width: 25px;}
 
a:visited {color:#47,79,79; 
                 text-decoration: none;}

a:hover {color: #6495ED;}

.divTableBody2 {display: table-row-group;}



.divTable{
	display: table;
	width: 90%;
              background-color: #E0FFFF;
            margin-left: auto;
            margin-right: auto;}

.divTableRow {
	display: table-row;
}
.divTableHeading {
	background-color: #E0FFFF;
	display: table-header-group;
}
.divTableCell, .divTableHead {
	border: 1px solid ##E0FFFF;
	display: table-cell;
	padding: 3px 10px;
}
.divTableHeading {
	background-color: #E0FFFF;
	display: table-header-group;
	font-weight: bold;
}
.divTableFoot {
	background-color: #E0FFFF;
	display: table-footer-group;
	font-weight: bold;
}
.divTableBody {
	display: table-row-group;
}





.question {color: #4682B4;
       font-family:Times new roman;
       text-align: left;
       text-decoration: none;
       font-size:40px;
       margin-left: 5px;}




#info 
{color: black;
       font-family:Times new roman;
       text-align: left;
       text-decoration: none;
       font-size:22px;
       margin-left: 5px;}



li { font-size:22px;
}



.footer1{
                display: table; 
                padding:20px; 
                width:100%;
                background-color: #4682B4;
                }

.our row { 
                 display: table-row; 
                 padding:10px;
                 vertical-align:middle;
                 width:100%;}

.cell {
           display: table-cell;
           padding:40px;
           vertical-align:middle;}






h3 {
  font-size: 25px;
  font-family: Arial;
  text-align: center;
  color: white;}


h6 {
  font-size: 20px;
  font-family: Arial;
  text-align: left;
  color: white;}

/* Footer CSS */

.footer__container {

    background-color: rgb(27, 26, 25);
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  
  }
  
  #footer__logo {
  
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
  
  }
  
  .footer__links {
  
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
  
  }
  
  .footer__link--wrapper {
  
    display: flex;
  
  }
  
  .footer__link--items {
  
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 16px;
    text-align: left;
    width: 160px;
    box-sizing: border-box;
  
  }
  
  .footer__link--items h2 {
  
    margin-bottom: 16px;
    color: #fff;
  
  }
  
  .footer__link--items a {
  
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: 0.3 ease-out;
  
  }
  
  .footer__link--items a:hover {
  
    color: #e9e9e9;
    transition: 0.3 ease-out;
  
  }
  
  .social__icon--link {
  
    color: #fff;
    font-size: 24px;
  
  }
  
  .social__media {
  
    max-width: 1000px;
    width: 100%;
  
  }
  
  .social__media--wrap {
  
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    margin: 40px auto 0 auto;
  
  }
  
  .social__icons {
  
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 240px;
  
  }
  
  .website__rights {
  
    color: #fff;
  
  }
  
  @media screen and (max-width: 820px) {
  
    .footer__links {
  
      padding-top: 2rem;
  
    }
  
    #footer__logo {
  
      margin-bottom: 2rem;
  
    }
  
    .website__rights {
  
      margin-bottom: 2rem;
  
    }
  
    .footer__link--wrapper {
  
      flex-direction: column;
  
    }
  
    .social__media--wrap {
  
      flex-direction: column;
  
    }
  
  }
  
  @media screen and (max-width: 480px) {
  
    .footer__link--items {
  
      margin: 0;
      padding: 10px;
      width: 100%;
  
    }
  
  }



.button {
  background-color: #008B8B;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin-left: 62px;
  cursor: pointer;
 }





.divTable99{
	display: table;
	width: 70%;
      background-color: #E0FFFF;
                  margin-left: auto;
            margin-right: auto;

}
.divTableRow99 {
	display: table-row;
}
.divTableHeading99 {
	background-color: #E0FFFF;
	display: table-header-group;
}
.divTableCell99, .divTableHead99 {
	border: 1px solid #E0FFFF;
	display: table-cell;
      width: 70%;

}
.divTableHeading99 {
	background-color: #E0FFFF;
	display: table-header-group;
	font-weight: bold;
}
.divTableFoot99 {
	background-color: #E0FFFF;
	display: table-footer-group;
	font-weight: bold;
}
.divTableBody99 {
	display: table-row-group;
}



input[type=text], select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type=submit] {
  width: 100%;
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

div 2{
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}