@font-face {
  font-family: "PlayfairDisplay-SemiBold";
  src: url("fonts/PlayfairDisplay-SemiBold.ttf");
}
@font-face {
  font-family: "Poppins-Medium";
  src: url("fonts/Poppins-Medium.ttf");
}
@font-face {
  font-family: "Poppins-Regular";
  src: url("fonts/Poppins-Regular.ttf");
}
@font-face {
  font-family: "PlayfairDisplay-Bold";
  src: url("fonts/PlayfairDisplay-Bold.ttf");
}
@font-face {
  font-family: "Poppins-SemiBold";
  src: url("fonts/Poppins-SemiBold.ttf");
}
@font-face {
  font-family: "Poppins-Italic";
  src: url("fonts/Poppins-Italic.ttf");
}
@font-face {
  font-family: "PlayfairDisplay-ExtraBold";
  src: url("fonts/PlayfairDisplay-ExtraBold.ttf");
}
@font-face {
  font-family: "Montserrat-Light";
  src: url("fonts/Montserrat-Light.ttf");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f6f5f5;
}

.logoContainer {
  display: flex;
  padding: 7px;
  justify-content: space-between;
  align-items: center;
  background-color: #183650;
}

.logoContainer > img {
  width: 176px;
  height: 78px;
}

.logoContainer img.contactUsIcon,
img.topHeaderPhoneIcon {
  width: 55px;
}

.contactUsNowMobile img.contactUsIcon {
  width: 50px;
}

.contactUsNowMobile > a.button {
  flex: 1;
  margin: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  letter-spacing: 0;
  justify-content: space-evenly;
}

.contactUsNowMobile:not(.v8) > a.button:last-of-type {
  background-color: #183650;
  color: #d0aa70;
}

.contactUsNowMobile:not(.v8) > a.button:first-of-type {
  background-color: #183650;
}
.numberOnMobile {
  color: #d0aa70;
}

.contactUsNowMobile.v8 > a.button:last-of-type {
  background-color: #0d024c;
  color: #e7900a;
}
.contactUsNowMobile.v8 .callUsNumber {
  color: #e7900a;
}

.contactUsNowMobile.v8 > a.button:first-of-type {
  background-color: #0d024c;
}

.logoContainer .button {
  margin-right: 30px;
  padding: 5px;
}

.mainSection {
  background-image: url("/img/bg.jpg");
  width: 100%;
  display: flex;
  padding: 70px;
  justify-content: space-between;
  background-size: cover;
}

.onlyMobile.contactUsNowMobile {
  background-color: #183650;
  justify-content: center;
  padding: 15px 0;
}

.websiteTitle {
  font-family: "PlayfairDisplay-SemiBold";
  font-size: 50px;
  color: #fff;
}

.mainColor {
  color: #d0aa70;
}

.websiteSubTitle {
  font-family: "Poppins-Medium";
  font-size: 19px;
  color: #33333a;
  background-color: #fff;
  border-radius: 50px;
  padding: 0 20px;
  text-align: justify;
  text-align-last: justify;
  letter-spacing: 12px;
}

.introSection {
  width: calc(50% - 35px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.formSection {
  width: calc(50% - 35px);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.introSection .title {
  font-family: "PlayfairDisplay-SemiBold";
  font-size: 45px;
  color: #fff;
  padding-top: 40px;
  border-top: solid 1px #fff;
  margin-top: 20px;
}

.text:not(.v8pageText) {
  font-family: "Poppins-Regular";
  font-size: 25px;
  color: #ffffff82;
}

.formTitle {
  font-family: "PlayfairDisplay-Bold";
  font-size: 35px;
  color: #d0aa70;
}

.formSubTitle {
  font-family: "PlayfairDisplay-SemiBold";
  font-size: 24px;
  color: #fff;
}

.smallText {
  font-family: "Poppins-SemiBold";
  font-size: 20px;
  color: #ffffff82;
}

.mainForm {
  display: flex;
  flex-direction: column;
  padding: 40px;
  border-radius: 20px;
  background-color: #bdbdbdb8;
}

.mainForm input:not(.button),
.mainForm label {
  font-family: "Poppins-Regular";
  font-size: 22px;
  border: none;
  background: none;
  border-bottom: solid 1px #ffffffcf;
  text-align: start;
  padding: 20px 0;
  outline: none;
}

.mainForm input::placeholder,
.mainForm label {
  font-family: "Poppins-Italic";
  color: #ffffffcf;
}

.mainForm select {
  border-radius: 5px;
  font-family: "Poppins-Regular";
  font-size: 18px;
  padding: 5px 10px;
  background-color: #ffffffcf;
  cursor: pointer;
}

.button {
  font-family: "Poppins-Medium";
  font-size: 20px;
  padding: 20px;
  text-align: center;
  color: #fff;
  background-color: #d0aa70;
  border: none;
  margin: 30px 0;
  border-radius: 5px;
  letter-spacing: 5px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

.button:hover {
  background-color: #e9c692;
}

.mainForm .smallText {
  color: #fff;
  letter-spacing: 5px;
}

.dividerSection {
  background-color: #33333a;
  text-align: center;
  padding: 65px 0;
  position: relative;
}

.dividerSection::before,
.dividerSection::after {
  position: absolute;
  content: "";
  border-top: solid 1px #fff;
  width: 10%;
  top: 50%;
}

.dividerSection::before {
  left: 70px;
}

.dividerSection::after {
  right: 70px;
}

.whatWeDo {
  padding: 70px;
  display: flex;
  gap: 70px;
  position: relative;
}
.whatWeDo .max-width-1400 {
  gap: 70px;
}

.whatWeDo::after {
  content: "";
  position: absolute;
  width: 80%;
  bottom: 0;
  left: 10%;
  border-bottom: solid 4px #d0aa70;
}

.whatWeDo .imageSection img {
  border-radius: 5px;
}

.whatWeDo .textSection {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.whatWeDo .textSection .websiteTitle {
  color: #33333a;
  font-size: 55px;
}

.whatWeDo .textSection .websiteTitle b {
  font-family: "PlayfairDisplay-ExtraBold";
}

.whatWeDo .textSection .text {
  color: #33333a;
  font-size: 24px;
}

.flexBox {
  display: flex;
}

.workTogether {
  padding: 30px 0 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.workTogether .max-width-1400 {
  flex-direction: column;
  align-items: center;
}

.workTogether .websiteTitle {
  color: #33333a;
}

.workTogether .button {
  width: fit-content;
}

footer {
  background-color: #183650;
  color: #fff;
  padding: 70px;
  display: flex;
  gap: 70px;
  justify-content: space-between;
}

footer .infoSide {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

footer .infoSide img {
  width: 125px;
}

.microText {
  font-size: 9px;
  font-family: "Poppins-Regular";
}

footer .contactSide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

footer .contactSide .directContact {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

footer .contactSide .directContact a {
  display: flex;
  gap: 10px;
  font-family: "Poppins-Medium";
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}

footer .contactSide .socialMediaIcons {
  display: flex;
  align-items: center;
  gap: 30px;
}

.callUsText {
  display: flex;
  flex-direction: column;
  color: #fff;
  padding-right: 30px;
}

.callUsNumber {
  font-family: "Poppins-Regular";
  font-size: 24px;
  color: #d0aa70;
  font-weight: 700;
  line-height: 40px;
}

.copyrights {
  background-color: #081a2a;
  padding: 30px;
  text-align: center;
  color: #fff;
  font-family: "Poppins-Regular";
  font-size: 16px;
}

.onlyDesktop {
  display: flex !important;
}
.onlyMobile {
  display: none !important;
}

.faq {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 45px;
  padding: 0 20px;
  gap: 20px;
}

.formSubTitle.onlyDesktop,
.smallText.onlyDesktop {
  justify-content: center;
}

.max-width-1400 {
  justify-content: space-around;
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
}

.faq li * {
  font-family: "Poppins-Regular";
  color: #33333a;
  font-size: 24px;
}

.faq h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #33333a;
  font-family: "PlayfairDisplay-SemiBold";
}

.question {
  position: relative;
}

.faq ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.question {
  display: flex;
  justify-content: space-between;
  padding: 5px;
  background-color: #f5f5f5;
  border-radius: 3px;
  align-items: center;
  font-weight: 700;
  gap: 10px;
}

.question .arrow {
  font-weight: 900;
  pointer-events: none;
  height: 100%;
  display: flex;
  align-items: center;

  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 11px solid #000;
}

.question:not(.active) .arrow {
  transform: rotateZ(180deg);
}

.answer {
  display: none;
  padding: 5px;
  border: solid #ddd;
  border-width: 0 1px 1px 1px;
  border-radius: 3px;
  margin: 0 0 10px 10px;
}

.formTitle.onlyDesktop {
  justify-content: center;
}

@media only screen and (max-width: 900px) {
  .callUsNumber {
    font-size: 25px;
  }
  .faq li * {
    font-size: 16px;
  }
  .callUsText .microText {
    font-size: 9px;
  }
  .logoContainer > img {
    width: 130px;
    height: unset;
  }
  .logoContainer img.contactUsIcon {
    width: 35px;
  }
  .callUsText {
    padding-right: 0;
  }
  .mainSection {
    flex-direction: column;
    padding: 30px 10px;
  }
  .max-width-1400 {
    gap: 30px;
    flex-direction: column;
  }
  .introSection,
  .formSection {
    width: 100%;
  }
  .onlyDesktop {
    display: none !important;
  }
  .onlyMobile {
    display: flex !important;
  }
  .websiteTitle {
    text-align: center;
    font-size: 26px;
  }
  .mainSection .introSection .websiteTitle {
    position: relative;
    font-size: 20px;
  }
  .mainSection .introSection .websiteTitle::before,
  .mainSection .introSection .websiteTitle::after {
    content: "";
    display: none;
    position: absolute;
    width: 10%;
    top: 50%;
    border-bottom: solid 1px #fff;
  }
  .mainSection .introSection .websiteTitle::before {
    left: -10px;
  }
  .mainSection .introSection .websiteTitle::after {
    right: -10px;
  }
  .mainForm input:not(.button),
  .mainForm label,
  .mainForm select {
    font-size: 16px;
  }
  .mainForm input:not(.button),
  .mainForm label {
    padding: 12px 0;
  }
  .mainForm {
    padding: 30px 15px;
  }
  .button {
    font-size: 14px;
    padding: 10px;
    margin: 20px 0;
  }
  .smallText {
    font-size: 11px;
  }
  .websiteTitle .smallText {
    font-size: 9px;
  }
  .formSection.onlyMobile {
    background-color: #33333a;
    padding: 30px;
  }
  .formSection.onlyMobile .formTitle {
    font-size: 22px;
  }
  .formSection.onlyMobile .formSubTitle {
    font-size: 16px;
  }
  .formSection.onlyMobile .smallText {
    font-size: 14px;
  }
  .introSection.onlyMobile {
    text-align: center;
    margin: 0;
    padding: 30px;
    gap: 20px;
  }
  .mainSection .introSection.onlyMobile {
    padding: 0;
  }
  .introSection.onlyMobile .title {
    color: #33333a;
    font-size: 23px;
    margin-top: 0;
    border-top: none;
    padding-top: 0;
  }
  .introSection.onlyMobile .text {
    color: #33333a;
    font-size: 16px;
  }
  .dividerSection {
    padding: 30px;
  }
  .dividerSection::before,
  .dividerSection::after {
    display: none;
  }
  .whatWeDo {
    padding: 30px;
    flex-direction: column;
    gap: 30px;
  }
  .whatWeDo .imageSection {
    display: flex;
    justify-content: center;
  }
  .whatWeDo .imageSection img {
    max-width: 100%;
  }
  .whatWeDo .textSection .websiteTitle {
    font-size: 24px;
  }
  .whatWeDo .textSection .text {
    font-size: 16px;
  }
  .workTogether {
    text-align: center;
  }
  .workTogether .websiteTitle {
    font-size: 32px;
  }
  footer {
    padding: 30px;
    flex-direction: column;
  }
  footer .infoSide {
    width: 100%;
  }
  footer .infoSide .smallText {
    font-size: 22px;
    font-family: "Montserrat-Light";
    color: #fff;
  }
}
