* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

body {
  font-family: verdana;
  background-color: #e5e5e5;
  color: #222222;
}

a,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 1200px;
  margin: 20px auto 0 auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 20px;
}

/* HOME STARTS*/
.sectionContainerLine {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
section {
  width: 24%;
  height: 180px;
}

section :hover {
  cursor: pointer;
}

section .title {
  font-size: 14px;
  font-weight: bold;
  color: #444444;
}

section .content {
  border: #aaaaaa 1px solid;
  border-radius: 10px;
  padding: 10px;
  background-color: #f5f5f5;
  font-size: 14px;
  text-align: center;
  line-height: 25px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.5s, background 1s;

  box-shadow: aqua;
}

div.content:hover {
  background-color: #c1c7c1;
  box-shadow: 5px 5px 5px#c1c7c1;
}

div.content_text {
  text-align: center;
  margin-top: 10px;
}
/* HOME ENDS*/

/*ABOUT STARTS */
.aboutSectionContainerLine {
  display: flex;
  justify-content: space-between;
}
.aboutSectionContainerLine .title {
  text-align: center;
}

.aboutSectionContainerLine:nth-of-type(2) section {
  width: 32%;
}

.aboutSectionContainerLine:nth-of-type(3) section {
  margin: 20px 0 20px 0;
  width: 100%;
}
.aboutContent {
  border: #aaaaaa 1px solid;
  border-radius: 10px;
  padding: 10px;
  background-color: #f5f5f5;
  font-size: 14px;
  line-height: 25px;
  overflow: hidden;
  height: 100%;
  pointer-events: none;
}

.aboutContent .content_text {
  text-align: justify;
}
/*ABOUT ENDS */

/* CONTACT STARTS */
.contact {
  border: #aaaaaa 1px solid;
  border-radius: 10px;
  background-color: #f5f5f5;
  padding: 15px;
}
.contactPanel > span {
  display: none;
}
div.contactPanel {
  text-align: center;
}

div.contactPanel span {
  font-weight: bold;
  font-size: 18px;
}

div.social img {
  height: 40px;
  margin-right: 30px;
}

div.contactContainer {
  padding-top: 10px;
}
/*CONTACT ENDS */

/* PRIVACY STARTS */
.privacy {
  border: #aaaaaa 1px solid;
  border-radius: 10px;
  background-color: #f5f5f5;
  padding: 15px;
  text-align: justify;
  line-height: 25px;
  font-size: 14px;
}
.privacy h1 {
  font-weight: bold;
  margin-bottom: 10px;
}
.privacy h2 {
  font-weight: bold;
  margin: 20px 0 10px 0;
}
.privacy p {
  margin-top: 10px;
}
/* PRIVACY ENDS */

/* TERMS STARTS */
.terms {
  border: #aaaaaa 1px solid;
  border-radius: 10px;
  background-color: #f5f5f5;
  padding: 0px 15px 15px 15px;
  text-align: justify;
  line-height: 25px;
  font-size: 14px;
}
.terms h1 {
  font-weight: bold;
  margin-bottom: 10px;
}
.terms h2 {
  font-weight: bold;
  margin: 20px 0 10px 0;
}
.terms h3 {
  font-weight: bold;
  margin: 20px 0 10px 0;
}
.terms p {
  margin-top: 10px;
}
.terms li {
  margin-top: 10px;
  margin-left: 25px;
  line-height: 25px;
}
/* TERMS ENDS */

/* DISCLAIMER STARTS */
.disclaimer {
  border: #aaaaaa 1px solid;
  border-radius: 10px;
  background-color: #f5f5f5;
  padding: 15px;
  text-align: justify;
  line-height: 25px;
  font-size: 14px;
}
.disclaimer h1 {
  font-weight: bold;
  margin-bottom: 10px;
}
.disclaimer h2 {
  font-weight: bold;
  margin: 20px 0 10px 0;
}
.disclaimer p {
  margin-top: 10px;
}
/* DISCLAIMER ENDS */
