/* RESET */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
body {
  line-height: 1;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
  display: block;
}
nav ul {
  list-style: none;
}
ul {
    list-style: none;
}
ul li {
    list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #000;
  margin: 1em 0;
  padding: 0;
}
input, select {
  vertical-align: middle;
}
/* END RESET */

/* Standard Styles */
* {
	box-sizing: border-box;
}
body {
	margin: 0;
  font-family: Georgia;
  text-align: center;
  color: #fff;
  background-image: linear-gradient(to right, #1b4752, #153a42);
}
img {
	max-width: 100%;
}

/* Global Styles */
h1 {
  font-size: 20px;
  font-weight: 100;
  letter-spacing: 1;
}
h2 {
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
}
h3 {
  color: #000;
  font-size: 18px;
  letter-spacing: 1.5;
  text-align: left;
  padding: 10px 0;
  line-height: 1.5;
}
h3 span {
  font-size: 15px;
  text-transform: uppercase;
}
h4 {
  font-size: 16px;
}
p {
  font-size: 15px;
  letter-spacing: 1.5;
}
.copyrights p {
  font-size: 13px;
}

/* Header Styles */
header {
  background-image: linear-gradient(to top right, #92a95a, #337585);
}
header h1 {
  padding: 25px 10px 8px 10px;
}
.img-profile {
  width: 32%;
  margin-bottom: -60px;
}

/* Section 1 */
.section1 {
  padding: 70px 10px 0px 10px;
}

/* Section 2 */
.section2 {
  padding: 35px 0;
}
.about {
  background-color: #fff;
  color: #0b2024;
  border-bottom-left-radius: 2%;
  border-bottom-right-radius: 2%;
  padding-bottom: 20px;
}
.btn-container { /* buttons */
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.tab-btn {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1;
  color: #fff;
  background-color: transparent;
  border: none;
  padding: 8px;
  display: block;
  cursor: pointer;
}
.tab-btn:hover:not(.active) {
  background-color: #bac0d0;
  color: #fff;
  cursor: pointer;
}
.tab-btn:not(.active) {
  background-color: #e7e7e7;
  color: #153a42;
}
.tab-btn.active {
  background-color: #fff;
  color: #000;
  cursor: pointer;
}
.about-content {
  text-align: left;
  padding: 45px 10px 10px 10px;
}
ul li {
  font-size: 16.5px;
  list-style: inside;
  list-style-type: square;
  padding: 3px 2px;
}
.content p {
  font-size: 15px;
  letter-spacing: 1.5;
  padding: 3px 2px;
}
.content p b {
  padding-right: 7px;
}
form input {
  margin: 7px 0px;
  padding: 6px 12px;
  background-color: transparent;
  border: 1px solid #337585;
  border-radius: 3px;
  font-size: 15px;
}
form button {
  margin: 7px 0px;
  padding: 5px 10px;
  color: #FFF;
  background-color: #337585;
  border: none;
  border-radius: 7px;
  font-size: 15px;
}
/* hide content */
.content {
  display: none;
}
.content.active {
  display: block;
}

/* Footer Styles */
footer {
  padding: 15px 10px;
  background-color: #102c32;
}
footer h4 {
  padding-bottom: 4px;
}
footer p {
  padding-top: 5px;
  color: #c7c7c7;
}
.owner-title {
  padding: 20px 10px 10px 10px;
}
.store-info {
  padding: 10px;
}
.copyrights {
  padding: 45px 10px 20px 10px;
}

/* Tablet size devices */
@media screen and (min-width: 700px) {
  /* Global Styles */
  h1 {
    font-size: 22px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 20px;
    letter-spacing: 2;
    text-align: center;
    padding: 10px 10px 25px 10px;
  }
  h3 span {
    font-size: 17px;
  }
  h4 {
    font-size: 18px;
  }
  p {
    font-size: 17px;
    letter-spacing: 2;
  }
  /* Header Styles */
  .img-profile {
    width: 28%;
    margin-bottom: -100px;
  }
  /* Section 1 */
  .section1 {
    padding: 105px 10px 0px 10px;
  }
  /* Section 2 */
  .tab-btn {
    font-size: 15px;
    letter-spacing: 1.5;
    padding: 10px;
  }
  .about-content {
    text-align: center;
  }
  ul li {
    font-size: 19px;
    padding: 5px 0px;
  }
  .content p {
    font-size: 17px;
    letter-spacing: 2;
  }
  form input {
    margin: 10px 0px;
    padding: 9px 45px 9px 12px;
    font-size: 18px;
  }
  form button {
    margin: 10px 0px;
    padding: 8px 24px;
    font-size: 18px;
  }
  /* Footer Styles */
  footer {
    padding: 15px 10px;
  }
  .footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  footer h4 {
    padding-bottom: 20px;
  }
  .owner-title {
    text-align: left;
  }
  .store-info {
    text-align: right;
  }
  .copyrights {
    text-align: center;
    padding: 20px 10px;
  }
}

/* Laptop and larger size devices */
@media screen and (min-width: 1000px) {
  /* Global Styles */
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 22px;
  }
  h3 {
    font-size: 22px;
    letter-spacing: 2.5;
    padding: 10px 10px 25px 10px;
  }
  h3 span {
    font-size: 19px;
  }
  h4 {
    font-size: 20px;
  }
  p {
    font-size: 19px;
    letter-spacing: 2;
    line-height: 25px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
  /* Header Styles */
  .img-profile {
    width: 20%;
    margin-bottom: -140px;
  }
  /* Section 1 */
  .section1 {
    padding: 160px 10px 0px 10px;
  }
  /* Section 2 */
  .tab-btn {
    font-size: 17px;
    letter-spacing: 2;
    padding: 20px;
  }
  ul li {
    font-size: 21px;
    padding: 8px 0px;
  }
  .content p {
    font-size: 19px;
    letter-spacing: 2.5;
  }
  form input {
    margin: 13px 0px;
    font-size: 20px;
  }
  form button {
    margin: 13px 0px;
    font-size: 20px;
  }
  /* Footer Styles */
  footer h4 {
    padding-bottom: 10px;
  }
  .owner-title {
    text-align: left;
    padding-left: 40px;
  }
  .store-info {
    text-align: right;
    padding-right: 40px;
  }
  .copyrights {
    text-align: center;
    padding: 20px 10px;
  }
}