* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
}
* p {
  text-align: left;
}

html {
  scroll-behavior: smooth;
  scroll-padding: 3rem;
  min-height: 100vh;
  width: 100%;
}

body {
  width: 100%;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../img/finance-industry-banner.jpg);
  background-size: cover;
  z-index: -5;
}

.serviceWrapper h1 {
  text-align: center;
  font-size: 50px;
  font-weight: bold;
}
.serviceWrapper .serviceBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 50px;
}
.serviceWrapper .serviceBox .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.serviceWrapper .serviceBox .cards .card {
  min-height: 300px;
  height: auto;
  width: 350px;
  background-color: #333;
  padding: 3% 8%;
  border-radius: 8px;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.serviceWrapper .serviceBox .cards .card h2 {
  font-weight: bold;
  font-size: 25px;
  text-align: center;
}
.serviceWrapper .serviceBox .cards .card p {
  font-size: 15px;
  line-height: 24px;
  text-align: center;
  width: 100%;
  margin: 12px 0;
}
.serviceWrapper .serviceBox .cards .card img {
  max-width: 50px; /* Safari/Chrome */
  filter: invert(100%);
  margin-top: 15px;
  margin-bottom: 10px;
}
.serviceWrapper .serviceBox .cards .card:hover {
  background-color: #282828;
  transform: translateY(-8px);
}
.serviceWrapper .serviceBox .cards .card:last-child {
  grid-column: 2;
}

.mobileWrapper {
  display: none;
}

header {
  width: 100%;
  height: 1000px;
}

.logo {
  position: fixed;
  float: left;
  width: 60px;
  margin-top: 1px;
  margin-left: 10px;
}

nav {
  position: fixed;
  width: 100%;
  z-index: 1;
}
nav ul {
  list-style: none;
  overflow: hidden;
  color: white;
  padding: 0;
  text-align: center;
  margin: 0;
  transition: 1s;
}
nav ul li {
  display: inline-block;
  padding: 20px;
}
nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: bold;
}

nav.black ul {
  background: #000;
}

.quote {
  text-align: center;
  color: white;
  position: relative;
  top: 45%;
  animation-name: transitionIn;
  animation-duration: 2s;
}
.quote h1 {
  font-size: 80px;
}
.quote h2 {
  font-size: 50px;
}

section {
  padding-left: 20%;
  padding-right: 20%;
  padding-bottom: 10px;
}

.about {
  color: white;
}
.about h2 {
  text-align: center;
  font-size: 40px;
  padding-top: 50px;
  padding-bottom: 50px;
  font-weight: bold;
}
.about p {
  text-align: center;
  margin-bottom: 50px;
  line-height: 30px;
  font-size: 20px;
}
.about .picture {
  text-align: center;
}
.about .picture img {
  max-width: 100%;
  display: inline;
  border-radius: 10%;
}

.services {
  padding-top: 20px;
  padding-left: 2%;
  padding-right: 2%;
  color: white;
}

.contact {
  width: 100%;
  height: auto;
  background-size: cover;
  background-attachment: fixed;
  color: white;
}
.contact h2 {
  text-align: center;
  font-size: 40px;
  padding-top: 50px;
  padding-bottom: 50px;
  font-weight: bold;
}
.contact p {
  line-height: 30px;
  font-size: 17px;
}
.contact .contactInfo {
  margin: 1rem;
  text-align: center;
}
.contact .item {
  display: inline-flex;
  padding: 1rem 1rem;
  vertical-align: middle;
}
.contact .item img {
  height: 50px;
}
.contact .item h3 {
  align-self: center;
  padding-left: 20px;
  font-size: 20px;
}
.contact .item .email {
  align-self: center;
  padding-left: 20px;
  font-size: 20px;
}
.contact .item a {
  text-decoration: underline;
}
.contact .item a:link {
  color: red;
}
.contact .item a:visited {
  color: green;
}
.contact .item a:hover {
  color: hotpink;
}
.contact .item a:active {
  color: blue;
}

footer {
  padding-top: 20px;
  padding-left: 2%;
  padding-right: 2%;
  background-color: black;
  color: white;
}
footer .footerLogo {
  width: 600px;
}
footer img {
  width: 100px;
}
footer h1 {
  font-size: 30px;
  margin-top: 20px;
  margin-bottom: 20px;
}
footer p {
  padding-bottom: 20px;
  line-height: 30px;
}
footer .socials {
  margin-bottom: 30px;
  margin-top: 30px;
  max-width: 80px;
  margin-left: 100px;
}
footer .copyrightWrapper {
  margin-top: 20px;
}
footer .copyrightWrapper .copyright {
  text-align: center;
  font-size: 14px;
  padding: 10px;
  line-height: 20px;
}

@media only screen and (max-width: 1200px) {
  .cards {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .card:last-child {
    grid-column: 1 !important;
  }
}
@media only screen and (max-width: 750px) {
  .background {
    background-position: 50% 100%;
  }
  .cards {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .card:last-child {
    grid-column: 1 !important;
  }
  .wrapper {
    display: none;
  }
  section {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .mobileWrapper {
    display: contents;
    overflow: hidden;
    background-color: #333;
    position: relative;
  }
  .mobileWrapper #mobileLinks {
    display: none;
    position: relative;
    text-align: center;
    background-color: black;
  }
  .over {
    position: absolute;
    width: 100%;
    background-color: black;
    z-index: 1;
  }
  .mobileWrapper a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    display: block;
    text-decoration: none;
    color: white;
    font-size: 30px;
    letter-spacing: 1px;
    z-index: 0;
    background-color: black;
  }
  .mobileWrapper a.icon {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-tap-highlight-color: transparent;
    padding: 10px 16px;
  }
  .active {
    max-width: 50px;
  }
  .mobileLogo {
    background-color: #000;
    -webkit-tap-highlight-color: transparent;
  }
  .fa-bars {
    margin-top: 5px;
    font-size: 40px !important;
    animation-name: fade;
    animation-duration: 2s;
  }
  .mobileQuote {
    text-align: center;
    color: white;
    position: relative;
    top: 36%;
    animation-name: transitionIn;
    animation-duration: 2s;
  }
  .mobileQuote h1 {
    font-size: 50px;
  }
  .mobileQuote h2 {
    font-size: 20px;
  }
  .mobileNav {
    position: fixed;
    width: 100%;
    z-index: 1;
  }
  .mobileNav.black ul {
    background: #000;
  }
  .picture img {
    max-width: 100%;
    display: inline;
  }
  .item img {
    max-width: 12%;
    height: auto !important;
  }
  .gridIcon img {
    width: 80px !important;
    height: 80px !important;
  }
  .gridTitle h1 {
    font-size: 20px !important;
    margin-top: 30px !important;
  }
  .gridItem {
    padding-right: 0 !important;
  }
  .gridItem p {
    width: 100% !important;
    text-align: center !important;
  }
  .contactInfo {
    margin: 0 !important;
  }
  .email {
    align-self: center;
    padding-left: 20px;
    font-size: 100% !important;
  }
  .topFoot {
    display: block !important;
  }
  .socials {
    margin-bottom: 30px;
    margin-top: 30px;
    margin-left: 100px;
  }
  .socials img {
    max-width: 60px;
    margin: auto;
  }
  .services {
    padding-top: 50px;
  }
  .services .grid {
    row-gap: 0px;
  }
  .services .grid .gridItem {
    max-width: 100% !important;
  }
  .footerLogo {
    width: 100% !important;
  }
  .cross {
    display: none;
    font-size: 40px !important;
    margin-top: -5px;
    margin-right: 4px;
    font-weight: bolder;
    animation-name: fade;
    animation-duration: 2s;
  }
}
.created {
  background-color: #000;
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  justify-content: right;
}
.created p {
  padding: 0 !important;
}
.created img {
  margin-left: 10px;
  width: 50px;
  transition: all 0.3s ease 0s;
  animation-name: rotate2;
  animation-duration: 1s;
}
.created img:hover {
  opacity: 0.8;
  animation-name: rotate;
  animation-duration: 1s;
}

@keyframes transitionIn {
  from {
    opacity: 0;
    transform: translate3d(0, 40%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate2 {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(-360deg);
  }
}
.invalid-feedback,
.empty-feedback {
  display: none;
}

.was-validated :-moz-placeholder-shown:invalid ~ .empty-feedback {
  display: block;
}

.was-validated :placeholder-shown:invalid ~ .empty-feedback {
  display: block;
}

.was-validated :not(:-moz-placeholder-shown):invalid ~ .invalid-feedback {
  display: block;
}

.was-validated :not(:placeholder-shown):invalid ~ .invalid-feedback {
  display: block;
}

.is-invalid,
.was-validated :invalid {
  border-color: #dc3545;
}

.checkbox {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 30px;
}
.checkbox .tacbox {
  margin-right: 30px;
  max-width: 800px;
  color: #000;
}
.checkbox p {
  color: #000;
  margin: 0;
}
.checkbox p a {
  text-decoration: underline;
}
.checkbox p a:link {
  color: red;
}
.checkbox p a:visited {
  color: green;
}
.checkbox p a:hover {
  color: hotpink;
}
.checkbox p a:active {
  color: blue;
}
.checkbox input {
  height: 2em;
  width: 2em;
  vertical-align: middle;
}

.infoWrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #000;
  color: white;
  text-align: center;
  font-size: 24px;
}
.infoWrapper .logoInfo {
  width: 60px;
  margin-top: 1px;
  margin-left: 10px;
}

.topFoot {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.infomation {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.infomation a {
  text-decoration: underline;
}
.infomation a:link {
  color: red;
}
.infomation a:visited {
  color: green;
}
.infomation a:hover {
  color: hotpink;
}
.infomation a:active {
  color: blue;
}

.info {
  padding-top: 10px;
  background-color: #282828;
  color: white;
  padding-left: 10%;
  padding-right: 10%;
  padding-bottom: 10px;
}
.info h2 {
  text-align: left;
  font-size: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: bold;
}
.info p {
  font-size: 12px;
  margin-bottom: 10px;
  line-height: 20px;
}
.info a {
  font-size: 12px;
  text-decoration: underline;
  font-weight: bold;
  color: lightblue;
}

.serviceBottom {
  text-align: center;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 20px;
}
.serviceBottom a {
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */