@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
p,
span {
  margin: 0;
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto Slab", sans-serif;
  font-size: 80px;
}

h1 {
  font-family: roboto slab, sans-serif;
  font-weight: bold;
  font-size: 50px;
  padding: 0px;
  margin: 0px;
}
@media screen and (max-width: 900px) {
  h1 {
    line-height: 58px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 550px) {
  h1 {
    font-size: 9vw;
    line-height: 11vw;
    margin-bottom: 20px;
  }
}

p {
  font-family: roboto, sans-serif;
  font-size: 20px;
}

.redBGWhiteOutButton {
  height: 57px;
  background-color: #DA291C;
  color: white;
  border: 5px solid white;
  border-radius: 38px;
  letter-spacing: 2px;
  cursor: pointer;
  font-size: 22px;
  font-weight: bold;
  font-family: roboto, sans-serif;
  transition: 0.1s;
}

.redBGWhiteOutButton:hover {
  background-color: white;
  color: #DA291C;
  border: 5px solid white;
}

.redBGButton {
  height: 57px;
  background-color: #DA291C;
  color: white;
  border: 5px solid #DA291C;
  border-radius: 38px;
  letter-spacing: 2px;
  cursor: pointer;
  font-size: 22px;
  font-weight: bold;
  font-family: roboto, sans-serif;
  transition: 0.1s;
}

.redBGButton:hover {
  background-color: white;
  color: #DA291C;
  border: 5px solid #DA291C;
}

.whiteBGButton {
  height: 57px;
  background-color: white;
  color: #DA291C;
  border: 5px solid white;
  border-radius: 38px;
  letter-spacing: 2px;
  cursor: pointer;
  font-size: 22px;
  font-weight: bold;
  font-family: roboto, sans-serif;
  transition: 0.1s;
}

.whiteBGButton:hover {
  background-color: #DA291C;
  color: white;
  border: 5px solid white;
}

.grayBGButton {
  height: 57px;
  background-color: white;
  color: #707070;
  border: 5px solid #707070;
  border-radius: 38px;
  letter-spacing: 2px;
  cursor: pointer;
  font-size: 22px;
  font-weight: bold;
  font-family: roboto, sans-serif;
  transition: 0.1s;
}

.grayBGButton:hover {
  background-color: #707070;
  color: white;
  border: 5px solid #707070;
}

.navbar {
  width: 100%;
  height: 100px;
  background-color: white;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 900px) {
  .navbar {
    height: 80px;
  }
}
.navbar .navbarMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.navbar .navbarMain .navbarLogo {
  text-align: left;
  padding: 25px 0px 0px 22px;
}
@media screen and (max-width: 900px) {
  .navbar .navbarMain .navbarLogo {
    padding: 20px 0px 0px 18px;
  }
}
.navbar .navbarMain .navbarLogo img {
  height: 50px;
  width: auto;
}
@media screen and (max-width: 900px) {
  .navbar .navbarMain .navbarLogo img {
    height: 40px;
  }
}
.navbar .navbarMain .navbarCategories {
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  align-items: flex-end;
  height: 101px;
  font-family: roboto, sans-serif;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .navbar .navbarMain .navbarCategories {
    margin-left: auto;
  }
}
.navbar .navbarMain .navbarCategories .navbarCategoriesTop {
  padding: 6px 24px;
  background-color: #DA291C;
  color: white;
}
@media screen and (max-width: 900px) {
  .navbar .navbarMain .navbarCategories .navbarCategoriesTop {
    padding: 19px 18px;
    width: 155px;
    background-color: white;
    color: #707070;
    font-size: 17px;
    line-height: 1.25;
  }
}
@media screen and (max-width: 550px) {
  .navbar .navbarMain .navbarCategories .navbarCategoriesTop {
    padding: 13px 18px;
    width: 105px;
    background-color: white;
    color: #707070;
    font-size: 15px;
    line-height: 1.25;
  }
}
.navbar .navbarMain .navbarCategories .navbarCategoriesTop a {
  text-decoration: none;
  padding: 10px 0px;
}
.navbar .navbarMain .navbarCategories .navbarCategoriesBottom {
  color: #707070;
  margin-right: 12px;
}
@media screen and (max-width: 900px) {
  .navbar .navbarMain .navbarCategories .navbarCategoriesBottom {
    display: none;
  }
}
.navbar .navbarMain .navbarCategories .navbarCategoriesBottom a {
  text-decoration: none;
  padding: 0px 12px;
  border-bottom: 3px solid white;
  transition: 0.1s;
}
.navbar .navbarMain .navbarCategories .navbarCategoriesBottom a:hover {
  color: #DA291C;
  border-bottom: 3px solid #DA291C;
}
.navbar .navbarMain .navbarCategories .navbarCategoriesBottom .active {
  color: #DA291C;
  border-bottom: 3px solid #DA291C;
}
.navbar .navbarMain .navbarMobile {
  height: 40px;
  width: 40px;
  border-radius: 8px;
  display: none;
  color: #DA291C;
  background-color: white;
  font-size: 23px;
  margin-top: 20px;
  margin-right: 20px;
  border: 3px solid #DA291C;
}
@media screen and (max-width: 900px) {
  .navbar .navbarMain .navbarMobile {
    display: block;
  }
}

@media screen and (max-width: 900px) {
  .responsive {
    position: absolute;
    right: 0;
    top: 80px;
    border-top: 2px solid #707070;
    background-color: white;
    padding: 0px;
    margin-right: 0px !important;
    display: block !important;
    width: 100%;
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.125);
  }
}
@media screen and (max-width: 900px) {
  .responsive a {
    float: none;
    display: block;
    text-align: left;
    border: 0px !important;
    width: 100%;
    padding: 10px 10px 10px 20px !important;
  }
}
@media screen and (max-width: 900px) {
  .responsive a:hover {
    background-color: #DA291C;
    color: white !important;
  }
}
@media screen and (max-width: 900px) {
  .responsive .active {
    background-color: #DA291C;
    color: white !important;
  }
}

.mainArea {
  width: 100%;
  margin-top: 100px;
}
@media screen and (max-width: 900px) {
  .mainArea {
    margin-top: 80px;
  }
}
.mainArea .introHeader {
  width: 100%;
  background-image: url("../img/AdobeStock_99586952 - Designer RED.jpg");
  background-size: cover;
  background-position: center;
  padding: 155px 50px 180px 50px;
}
@media screen and (max-width: 1600px) {
  .mainArea .introHeader {
    padding: 100px 50px 100px 50px;
  }
}
.mainArea .introHeader .introHeaderFlex {
  display: flex;
  align-content: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
@media screen and (max-width: 1600px) {
  .mainArea .introHeader .introHeaderFlex {
    flex-direction: column;
  }
}
.mainArea .introHeader .introHeaderFlex .introHeaderText {
  width: 575px;
  margin-right: 50px;
}
@media screen and (max-width: 900px) {
  .mainArea .introHeader .introHeaderFlex .introHeaderText {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1600px) {
  .mainArea .introHeader .introHeaderFlex .introHeaderText {
    margin-right: 0px;
  }
}
@media screen and (max-width: 550px) {
  .mainArea .introHeader .introHeaderFlex .introHeaderText {
    width: 95%;
  }
}
.mainArea .introHeader .introHeaderFlex .introHeaderText .topTitle {
  font-size: 20px;
  color: white;
  font-weight: 800;
  text-align: left;
  letter-spacing: 1px;
}
@media screen and (max-width: 1600px) {
  .mainArea .introHeader .introHeaderFlex .introHeaderText .topTitle {
    text-align: center;
  }
}
.mainArea .introHeader .introHeaderFlex .introHeaderText .bottomTitle1 {
  font-size: 100px;
  font-family: Roboto Slab, sans-serif;
  color: white;
  font-weight: 600;
  line-height: 150px;
  text-align: left;
  letter-spacing: 8px;
}
@media screen and (max-width: 1600px) {
  .mainArea .introHeader .introHeaderFlex .introHeaderText .bottomTitle1 {
    text-align: center;
  }
}
@media screen and (max-width: 900px) {
  .mainArea .introHeader .introHeaderFlex .introHeaderText .bottomTitle1 {
    font-size: 11vw;
    letter-spacing: 0.5vw;
    line-height: 19vw;
  }
}
.mainArea .introHeader .introHeaderFlex .introHeaderText .bottomTitle2 {
  font-size: 100px;
  font-family: Roboto Slab;
  color: white;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 70px;
  text-align: left;
  letter-spacing: 8px;
}
@media screen and (max-width: 1600px) {
  .mainArea .introHeader .introHeaderFlex .introHeaderText .bottomTitle2 {
    text-align: center;
  }
}
@media screen and (max-width: 900px) {
  .mainArea .introHeader .introHeaderFlex .introHeaderText .bottomTitle2 {
    font-size: 11vw;
    letter-spacing: 0.5vw;
    line-height: 2vw;
    margin-bottom: 10vw;
  }
}
.mainArea .introHeader .introHeaderFlex .introHeaderText p {
  text-align: left;
  color: white;
  line-height: 25px;
  font-size: 18px;
}
@media screen and (max-width: 1600px) {
  .mainArea .introHeader .introHeaderFlex .introHeaderText p {
    text-align: center;
  }
}
.mainArea .introHeader .introHeaderFlex .introHeaderText .buttonContainer {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
@media screen and (max-width: 900px) {
  .mainArea .introHeader .introHeaderFlex .introHeaderText .buttonContainer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.mainArea .introHeader .introHeaderFlex .introHeaderText .buttonContainer .whiteBGButton {
  padding: 0px 20px;
  height: 57px;
  font-size: 18px;
}
@media screen and (max-width: 900px) {
  .mainArea .introHeader .introHeaderFlex .introHeaderText .buttonContainer .whiteBGButton {
    letter-spacing: 0px;
    font-size: 17px;
  }
}
.mainArea .introHeader .introHeaderFlex .introHeaderText .buttonContainer .redBGWhiteOutButton {
  padding: 0px 30px;
  height: 57px;
  font-size: 18px;
}
@media screen and (max-width: 900px) {
  .mainArea .introHeader .introHeaderFlex .introHeaderText .buttonContainer .redBGWhiteOutButton {
    margin-top: 20px;
    letter-spacing: 0px;
    font-size: 17px;
  }
}
.mainArea .introHeader .introHeaderFlex .introHeaderVidContainer {
  margin: 0;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1600px) {
  .mainArea .introHeader .introHeaderFlex .introHeaderVidContainer {
    margin: 0 auto;
    margin-top: 75px;
  }
}
@media screen and (max-width: 900px) {
  .mainArea .introHeader .introHeaderFlex .introHeaderVidContainer {
    width: 90%;
  }
}
@media screen and (max-width: 550px) {
  .mainArea .introHeader .introHeaderFlex .introHeaderVidContainer {
    width: 95%;
  }
}
.mainArea .introHeader .introHeaderFlex .introHeaderVidContainer .introHeaderVid {
  background-color: white;
  padding: 20px;
  width: 859px;
  height: 527px;
}
@media screen and (max-width: 1600px) {
  .mainArea .introHeader .introHeaderFlex .introHeaderVidContainer .introHeaderVid {
    width: 575px;
    height: 333px;
  }
}
@media screen and (max-width: 900px) {
  .mainArea .introHeader .introHeaderFlex .introHeaderVidContainer .introHeaderVid {
    width: 100%;
    height: 41vw;
    padding: 12px;
  }
}
.mainArea .introHeader .introHeaderFlex .introHeaderVidContainer .introHeaderVid iframe {
  width: 100%;
  height: 100%;
  border: 0px;
}
.mainArea .whatWeDo {
  padding-top: 150px;
  padding-bottom: 150px;
}
.mainArea .whatWeDo .whatWeDoContainer {
  width: 80%;
  margin: 0 auto;
}
.mainArea .whatWeDo .whatWeDoContainer .whatWeDoHeader {
  width: 70%;
  margin: 0 auto;
}
.mainArea .whatWeDo .whatWeDoContainer .whatWeDoHeader h1 {
  color: #75787B;
}
.mainArea .whatWeDo .whatWeDoContainer .whatWeDoHeader p {
  color: #75787B;
}
.mainArea .whatWeDo .whatWeDoContainer .whatWeDoContent {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.mainArea .whatWeDo .whatWeDoContainer .whatWeDoContent .whatWeDoObject {
  width: 400px;
  margin: 100px 20px 0px 20px;
}
.mainArea .whatWeDo .whatWeDoContainer .whatWeDoContent .whatWeDoObject a {
  text-decoration: none;
}
.mainArea .whatWeDo .whatWeDoContainer .whatWeDoContent .whatWeDoObject .whatWeDoIcon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  margin-bottom: 16px;
}
.mainArea .whatWeDo .whatWeDoContainer .whatWeDoContent .whatWeDoObject h2 {
  color: #75787B;
  font-size: 24px;
  font-weight: bold;
}
.mainArea .whatWeDo .whatWeDoContainer .whatWeDoContent .whatWeDoObject p {
  color: #75787B;
  font-size: 18px;
}
.mainArea .ourLatestWork {
  background-color: #DA291C;
  padding-top: 150px;
  padding-bottom: 150px;
}
.mainArea .ourLatestWork .ourLatestWorkContainer {
  width: 80%;
  margin: 0 auto;
}
.mainArea .ourLatestWork .ourLatestWorkContainer .ourLatestWorkHeader {
  width: 70%;
  margin: 0 auto;
}
.mainArea .ourLatestWork .ourLatestWorkContainer .ourLatestWorkHeader h1 {
  color: white;
}
.mainArea .ourLatestWork .ourLatestWorkContainer .ourLatestWorkHeader p {
  color: white;
}
.mainArea .ourLatestWork .ourLatestWorkContainer .ourLatestWorkContent {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.mainArea .ourLatestWork .ourLatestWorkContainer .ourLatestWorkContent .ourLatestWorkObject {
  width: 247px;
  height: 247px;
  margin: 40px 25px 10px 25px;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.3);
  transition: 0.2s;
  cursor: pointer;
}
.mainArea .ourLatestWork .ourLatestWorkContainer .ourLatestWorkContent .ourLatestWorkObject img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mainArea .ourLatestWork .ourLatestWorkContainer .ourLatestWorkContent .ourLatestWorkObjectHide {
  width: 247px;
  height: 247px;
  margin: 40px 25px 10px 25px;
  background-color: #EEEEEE;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.3);
  transition: 0.2s;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .mainArea .ourLatestWork .ourLatestWorkContainer .ourLatestWorkContent .ourLatestWorkObjectHide {
    display: none;
  }
}
.mainArea .ourLatestWork .ourLatestWorkContainer .ourLatestWorkContent .ourLatestWorkObjectHide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mainArea .ourLatestWork .ourLatestWorkContainer .ourLatestWorkContent .ourLatestWorkObjectHide:hover {
  background-color: #d1d0d0;
}
.mainArea .subHeader {
  height: auto;
  width: 100%;
  color: white;
  background-color: #DA291C;
  font-family: roboto slab, sans-serif;
  text-align: left;
}
.mainArea .subHeader .title {
  font-size: 4vw;
  font-weight: bold;
  letter-spacing: 0.25vw;
  line-height: 5vw;
  padding: 25px 0 10px 5%;
}
@media screen and (max-width: 1200px) {
  .mainArea .subHeader .title {
    font-size: 6vw;
    text-align: center;
    letter-spacing: 0.5vw;
    padding: 30px 10px 20px 10px;
  }
}
@media screen and (max-width: 900px) {
  .mainArea .subHeader .title {
    font-size: 8vw;
    padding: 35px 10px 20px 0px;
  }
}
.mainArea .subHeader .subTitle {
  font-size: 1.25vw;
  letter-spacing: 0.125vw;
  font-weight: 100;
  padding: 0px 0px 0px 5%;
}
@media screen and (max-width: 1200px) {
  .mainArea .subHeader .subTitle {
    font-size: 2vw;
    text-align: center;
    letter-spacing: 0.5vw;
    padding: 0px 60px 0px 60px;
  }
}
@media screen and (max-width: 900px) {
  .mainArea .subHeader .subTitle {
    font-size: 3vw;
    padding: 0px 30px 0px 30px;
    font-weight: 300;
  }
}
.mainArea .subHeader .author {
  font-size: 0.75vw;
  letter-spacing: 0.1vw;
  padding: 0px 0 40px 5%;
}
@media screen and (max-width: 1200px) {
  .mainArea .subHeader .author {
    font-size: 1.5vw;
    text-align: center;
    letter-spacing: 0.5vw;
    padding: 10px 60px 30px 25px;
  }
}
@media screen and (max-width: 900px) {
  .mainArea .subHeader .author {
    font-size: 2vw;
    padding: 10px 60px 30px 60px;
  }
}
.mainArea .subNav {
  width: 90%;
  margin: 0 auto;
  padding: 30px 0px 30px 0px;
  font-size: 20px;
  font-family: roboto, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  color: #C9C9C9;
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
}
@media screen and (max-width: 900px) {
  .mainArea .subNav {
    flex-flow: column wrap;
  }
}
.mainArea .subNav .active {
  color: #75787B;
}
.mainArea .subNav a {
  cursor: pointer;
  margin: 5px 20px 5px 20px;
  transition: 0.1s;
}
.mainArea .subNav a:hover {
  color: #75787B;
}
.mainArea .contentServicesContainer {
  padding: 0px 0px 50px 0px;
  width: 100%;
}
.mainArea .contentServicesContainer .contentServicesContainerFlex {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media screen and (max-width: 900px) {
  .mainArea .contentServicesContainer .contentServicesContainerFlex {
    width: 95%;
  }
}
.mainArea .contentServicesContainer .contentServicesContainerFlex .contentServicesColumn {
  display: flex;
  flex-direction: column;
  padding: 0px 30px 0px 30px;
  width: 45%;
}
.mainArea .contentServicesContainer .contentServicesContainerFlex .contentServicesColumn .titleCard {
  background-color: white;
  width: 100%;
  height: 600px;
  margin: 30px 0px 30px 0px;
  padding: 35px 40px;
  position: relative;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.mainArea .contentServicesContainer .contentServicesContainerFlex .contentServicesColumn .titleCard .servicesTitle {
  font-family: roboto slab, sans-serif;
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: left;
  line-height: 45px;
  color: #75787B;
}
@media screen and (max-width: 1200px) {
  .mainArea .contentServicesContainer .contentServicesContainerFlex .contentServicesColumn .titleCard .servicesTitle {
    text-align: center;
  }
}
@media screen and (max-width: 900px) {
  .mainArea .contentServicesContainer .contentServicesContainerFlex .contentServicesColumn .titleCard .servicesTitle {
    font-size: 6vw;
    line-height: 7vw;
  }
}
.mainArea .contentServicesContainer .contentServicesContainerFlex .contentServicesColumn .titleCard p {
  margin-top: 20px;
  font-family: roboto, sans-serif;
  text-align: left;
  color: #75787B;
}
@media screen and (max-width: 1200px) {
  .mainArea .contentServicesContainer .contentServicesContainerFlex .contentServicesColumn .titleCard p {
    text-align: center;
  }
}
.mainArea .contentServicesContainer .contentServicesContainerFlex .contentServicesColumn .titleCard button {
  padding: 0px 20px;
  position: absolute;
  left: 40px;
  bottom: 40px;
}
@media screen and (max-width: 1200px) {
  .mainArea .contentServicesContainer .contentServicesContainerFlex .contentServicesColumn .titleCard button {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
    width: 275px;
  }
}
.mainArea .contentServicesContainer .contentServicesContainerFlex .contentServicesColumn .imageCardFull {
  width: 100%;
  height: 500px;
  margin: 30px 0px 30px 0px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.mainArea .contentServicesContainer .contentServicesContainerFlex .contentServicesColumn .imageCardFull img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.mainArea .contentServicesContainer .contentServicesContainerFlex .contentServicesColumn .imageCardHalf {
  width: 100%;
  height: 200px;
  margin: 30px 0px 30px 0px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.mainArea .contentServicesContainer .contentServicesContainerFlex .contentServicesColumn .imageCardHalf img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.mainArea .contentServicesContainer .contentServicesContainerFlex .contentServicesColumn .imageCardMid {
  width: 100%;
  height: 360px;
  margin: 30px 0px 30px 0px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.mainArea .contentServicesContainer .contentServicesContainerFlex .contentServicesColumn .imageCardMid img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .mainArea .contentServicesContainer .contentServicesContainerFlex #contentServicesColumn01 {
    width: 100% !important;
  }
}
@media screen and (max-width: 1200px) {
  .mainArea .contentServicesContainer .contentServicesContainerFlex #contentServicesColumn02 {
    display: none !important;
    width: 0%;
  }
}
.mainArea .contentServicesContainer .buttonContainer {
  margin-top: 100px;
}
.mainArea .contentServicesContainer .buttonContainer button {
  padding: 0px 15px 0px 15px;
}
.mainArea .contentPortfolioWholeContainer {
  padding: 0px 0px 50px 0px;
  width: 100%;
}
.mainArea .contentPortfolioWholeContainer button {
  padding: 0px 20px;
}
.mainArea .contentPortfolioWholeContainer .contentPortfolioContainer {
  margin: 0 auto;
  max-width: 1286px;
  margin-top: 20px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1400px) {
  .mainArea .contentPortfolioWholeContainer .contentPortfolioContainer {
    max-width: 966px;
  }
}
@media screen and (max-width: 1200px) {
  .mainArea .contentPortfolioWholeContainer .contentPortfolioContainer {
    max-width: 646px;
  }
}
@media screen and (max-width: 800px) {
  .mainArea .contentPortfolioWholeContainer .contentPortfolioContainer {
    max-width: 326px;
  }
}
.mainArea .contentPortfolioWholeContainer .contentPortfolioContainer .portfolioTitle {
  font-family: roboto slab, sans-serif;
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: left;
  padding-left: 20px;
  color: #75787B;
}
@media screen and (max-width: 1200px) {
  .mainArea .contentPortfolioWholeContainer .contentPortfolioContainer .portfolioTitle {
    text-align: center;
    font-size: 35px;
    padding-left: 0px;
  }
}
@media screen and (max-width: 900px) {
  .mainArea .contentPortfolioWholeContainer .contentPortfolioContainer .portfolioTitle {
    font-size: 5vw;
    line-height: 6vw;
  }
}
.mainArea .contentPortfolioWholeContainer .contentPortfolioContainer .portfolioGroupContainer {
  margin: 0 auto;
  display: block;
  margin-top: 30px;
  text-align: left;
}
.mainArea .contentPortfolioWholeContainer .contentPortfolioContainer .portfolioGroupContainer .portfolioSubTitle {
  font-family: roboto, sans-serif;
  font-size: 30px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: left;
  padding-left: 20px;
  color: #75787B;
}
@media screen and (max-width: 1200px) {
  .mainArea .contentPortfolioWholeContainer .contentPortfolioContainer .portfolioGroupContainer .portfolioSubTitle {
    text-align: center;
    padding-left: 0px;
  }
}
@media screen and (max-width: 900px) {
  .mainArea .contentPortfolioWholeContainer .contentPortfolioContainer .portfolioGroupContainer .portfolioSubTitle {
    font-size: 4vw;
    line-height: 5vw;
  }
}
.mainArea .contentPortfolioWholeContainer .contentPortfolioContainer .portfolioGroupContainer .portfolioGroup {
  display: inline-block;
  margin-top: 10px;
}
.mainArea .contentPortfolioWholeContainer .contentPortfolioContainer .portfolioGroupContainer .portfolioGroup .imgHolder {
  float: left;
  height: 280px;
  width: 280px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  margin: 20px;
  cursor: pointer;
}
.mainArea .contentPortfolioWholeContainer .contentPortfolioContainer .portfolioGroupContainer .portfolioGroup .imgHolder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hidden {
  display: none !important;
}

.footerClientsContainer {
  padding-top: 150px;
  padding-bottom: 150px;
}
.footerClientsContainer .footerClients {
  width: 80%;
  margin: 0 auto;
}
.footerClientsContainer .footerClients .footerClientsHeader {
  width: 70%;
  margin: 0 auto;
}
.footerClientsContainer .footerClients .footerClientsHeader h1 {
  color: #75787B;
}
.footerClientsContainer .footerClients .footerClientsHeader p {
  color: #75787B;
}
.footerClientsContainer .footerClients .footerClientsReviewContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.footerClientsContainer .footerClients .footerClientsReviewContainer .footerClientsReview {
  width: 500px;
  padding-top: 100px;
  display: flex;
}
@media screen and (max-width: 550px) {
  .footerClientsContainer .footerClients .footerClientsReviewContainer .footerClientsReview {
    width: 95%;
  }
}
.footerClientsContainer .footerClients .footerClientsReviewContainer .footerClientsReview .footerReviewImage {
  background-color: #C2C2C2;
  width: 93px;
  height: 93px;
  border-radius: 46px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.footerClientsContainer .footerClients .footerClientsReviewContainer .footerClientsReview .footerReview {
  padding-left: 26px;
  width: 380px;
  color: #75787B;
}
@media screen and (max-width: 550px) {
  .footerClientsContainer .footerClients .footerClientsReviewContainer .footerClientsReview .footerReview {
    width: 70%;
  }
}
.footerClientsContainer .footerClients .footerClientsReviewContainer .footerClientsReview .footerReview .footerReviewText {
  text-align: left;
  font-style: italic;
  font-size: 15px;
}
.footerClientsContainer .footerClients .footerClientsReviewContainer .footerClientsReview .footerReview .footerReviewName {
  text-align: left;
  padding-top: 12px;
  font-weight: bold;
  font-size: 17px;
}
.footerClientsContainer .footerClients .footerClientsReviewContainer .footerClientsReview .footerReview .footerReviewTitle {
  text-align: left;
  font-size: 13px;
  line-height: 0.6;
}

.footerContactContainer {
  background-color: #DA291C;
}
.footerContactContainer .footerContact {
  width: 80%;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 100px;
}
.footerContactContainer .footerContact h1 {
  color: white;
}
.footerContactContainer .footerContact .footerForm {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 125px;
  background-color: #DA291C;
}
.footerContactContainer .footerContact .footerForm #footerFormInput1, .footerContactContainer .footerContact .footerForm #footerFormInput2, .footerContactContainer .footerContact .footerForm #footerFormInput3, .footerContactContainer .footerContact .footerForm #footerFormInput4 {
  width: 100%;
  background-color: #DA291C;
  border: 0px;
  font-family: roboto, sans-serif;
  color: white;
}
.footerContactContainer .footerContact .footerForm label {
  color: white;
  float: left;
  font-family: roboto, sans-serif;
  font-size: 16px;
  font-weight: bold;
}
.footerContactContainer .footerContact .footerForm .line {
  width: 100%;
  border-bottom: 1px solid white;
  margin: 0px 0px 35px 0px;
}
.footerContactContainer .footerContact .footerForm .redBGWhiteOutButton {
  margin-top: 30px;
  width: 130px;
}

footer {
  background-color: #BBBBBB;
}
footer .footerContainerTop {
  margin-bottom: 95px;
}
footer .footerContainerTop .footerLine01 {
  width: 80%;
  margin: 0 auto;
  padding-top: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  footer .footerContainerTop .footerLine01 {
    justify-content: center;
  }
}
footer .footerContainerTop .footerLine01 img {
  width: 375px;
  height: auto;
}
footer .footerContainerTop .footerLine01 .newsletterContainer {
  width: 252px;
}
@media screen and (max-width: 800px) {
  footer .footerContainerTop .footerLine01 .newsletterContainer {
    padding-top: 35px;
  }
}
footer .footerContainerTop .footerLine01 .newsletterContainer p {
  color: #75787B;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;
}
footer .footerContainerTop .footerLine01 .newsletterContainer button {
  width: 252px;
  margin-top: 10px;
}
footer .footerContainerTop .footerLine02 {
  width: 80%;
  padding-top: 75px;
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .footerContainerTop .footerLine02 .footerSubHead {
  padding-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  color: #75787B;
  letter-spacing: 0px;
}
footer .footerContainerTop .footerLine02 .footerBodyB {
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  color: white;
  letter-spacing: 0px;
}
footer .footerContainerTop .footerLine02 .footerBodyR {
  font-size: 16px;
  font-weight: normal;
  text-align: left;
  color: white;
  letter-spacing: 0px;
}
footer .footerContainerTop .footerLine02 .footerBox {
  padding: 0px 20px 20px 0px;
}
footer .footerContainerTop .footerLine02 .footerBox a {
  text-decoration: none;
}
footer .footerContainerBottom {
  background-color: #75787B;
  padding-bottom: 50px;
}
footer .footerContainerBottom button {
  width: 565px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
@media screen and (max-width: 800px) {
  footer .footerContainerBottom button {
    width: 400px;
    font-size: 20px;
    height: 82px;
  }
}
footer .footerContainerBottom .copyrightContainer {
  width: 80%;
  margin: 0 auto;
  padding-top: 62px;
}
footer .footerContainerBottom .copyrightContainer p {
  font-family: Roboto-Slab;
  font-size: 18px;
  font-weight: normal;
  color: white;
}