/*-------------------
    BASE FILES
-------------------*/
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Lato:300,400,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Handlee&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 62.5%; /*Sets the font to 10 rem*/
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, p, a {
  line-height: 100%;
}

/*--------------------
    ABSTRACT FILES
---------------------*/
/*colors*/
.link1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #EE851F;
  text-decoration: none;
  transition: all 0.5s ease;
}
.link1:hover {
  cursor: pointer;
  color: #2c3b58;
}

.hide {
  display: none !important;
}

.show1 {
  display: block !important;
}

.show2 {
  display: flex !important;
}

/*--------------------
    LAYOUT FILES
--------------------*/
.topNavigationWrapper {
  display: block;
  position: relative;
  z-index: 600;
  background-color: #f9f9f9;
}

.topNavigation {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.topNavigation__left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.topNavigation__left p {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  color: #2c3b58;
}
.topNavigation__left i {
  font-size: 2rem;
  color: #EE851F;
  margin-right: 1rem;
}
.topNavigation__right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.topNavigation__right i {
  font-size: 1.8rem;
  color: #EE851F;
  margin-left: 1rem;
}
.topNavigation__discount a {
  display: block;
  width: fit-content;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 100%;
  font-size: 1.8rem;
  color: #f9f9f9;
  background-color: #EE851F;
  padding: 1rem 2.2rem;
  border: 2px solid #EE851F;
  border-radius: 5px;
  transition: all 1s ease;
}
.topNavigation__discount a:hover {
  cursor: pointer;
  border-color: #2c3b58;
  background-color: #2c3b58;
  color: #f9f9f9;
}
.topNavigation__vl {
  border-left: 2px solid #B4B4B4;
  height: 17px;
  margin-left: 2rem;
}
.topNavigation__basket {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-left: 6rem;
}
.topNavigation__basket i {
  transition: all 0.5s ease;
  font-size: 2rem;
}
.topNavigation__basket:hover {
  cursor: pointer;
}
.topNavigation__basket:hover i {
  color: #2c3b58;
}
.topNavigation__logIn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-left: 2rem;
}
.topNavigation__logIn i {
  margin-right: 1rem;
  transition: all 0.5s ease;
  margin-left: 0;
  padding-left: 0;
}
.topNavigation__logIn p {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.9rem;
  color: #EE851F;
  transition: all 0.5s ease;
}
.topNavigation__logIn:hover {
  cursor: pointer;
}
.topNavigation__logIn:hover i {
  color: #2c3b58;
}
.topNavigation__logIn:hover p {
  color: #2c3b58;
}
.topNavigation__socials i {
  transition: all 0.5s ease;
  margin-left: 2rem;
}
.topNavigation__socials .fa-linkedin-in:hover {
  color: #3B5998;
}
.topNavigation__socials .fa-facebook-f:hover {
  color: #3B5998;
}
.topNavigation__socials .fa-twitter:hover {
  color: #55ACEE;
}

.mainNavigation {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative !important;
}
.mainNavigation__burger {
  display: none;
}
.mainNavigation__logo {
  width: fit-content;
}
.mainNavigation__logo img {
  width: 28rem;
}
.mainNavigation__links {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.mainNavigation__link {
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #f9f9f9;
  margin-right: 2.5rem;
  transition: all 0.5s ease;
  padding: 2.5rem 0;
}
.mainNavigation__link:hover {
  color: #EE851F;
}
.mainNavigation__link--active {
  color: #EE851F;
}
.mainNavigation__link--last {
  margin-right: 0;
}

.showMainNav {
  animation: slideDown 1s;
  display: block !important;
}
@keyframes slideDown {
  0% {
    transform: translateY(-50px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.transform .burgerLine--1 {
  width: 3rem !important;
  transform: rotate(-45deg) translate(-5px, 7.5px);
}

.transform .burgerLine--2 {
  width: 3rem;
  opacity: 0;
}

.transform .burgerLine--3 {
  width: 3rem !important;
  transform: rotate(45deg) translate(-5px, -7.5px);
}

@media screen and (max-width: 400px) {
  .topNavigation__discount {
    display: none;
  }
  .topNavigation__basket {
    margin-left: 0;
  }
}
@media screen and (max-width: 500px) {
  .mainNavigation__logo {
    width: fit-content;
  }
  .mainNavigation__logo img {
    width: 20rem !important;
  }
}
@media screen and (max-width: 700px) {
  .topNavigation__left {
    display: none;
  }
  .topNavigation__right {
    width: 100%;
  }
  .topNavigation__vl--1 {
    display: none;
  }
}
@media screen and (max-width: 860px) {
  .topNavigation__socials {
    display: none;
  }
  .topNavigation__vl--2 {
    display: none;
  }
}
@media screen and (max-width: 1400px) {
  .mainNavigation {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .mainNavigation__logo {
    width: fit-content;
    z-index: 1000;
  }
  .mainNavigation__logo img {
    width: 25rem;
  }
  .mainNavigation__linksContainer {
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 500 !important;
    width: 100vw !important;
    max-width: 100vw;
    overflow-x: hidden;
    height: 100vh !important;
    max-height: 100vh;
    overflow-y: hidden;
    background-color: #2c3b58;
    padding: 15rem 0rem 15rem 0rem;
    display: none;
  }
  .mainNavigation__links {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block;
    overflow-x: hidden;
    overflow-y: scroll;
  }
  .mainNavigation__link {
    display: block;
    width: fit-content;
    margin: 0 auto 1.5rem auto;
    font-size: 2rem !important;
    font-weight: 900;
  }
  .mainNavigation__burger {
    display: block !important;
    z-index: 1000;
  }
  .mainNavigation__burger .burgerLine {
    height: 4px;
    margin: 5px;
    background-color: #f9f9f9;
    transition: all 0.6s ease;
  }
  .mainNavigation__burger .burgerLine--1 {
    width: 3rem;
  }
  .mainNavigation__burger .burgerLine--2 {
    width: 2rem;
    margin-left: auto;
  }
  .mainNavigation__burger .burgerLine--3 {
    width: 1rem;
    margin-left: auto;
  }
  .mainNavigation__burger:hover {
    cursor: pointer;
  }
  .mainNavigation__burger:hover .burgerLine {
    background-color: #EE851F;
  }
  .mainNavigation__burger:hover .burgerLine--1 {
    width: 3rem;
  }
  .mainNavigation__burger:hover .burgerLine--2 {
    width: 3rem;
  }
  .mainNavigation__burger:hover .burgerLine--3 {
    width: 3rem;
  }
}
.headerSliderContainer {
  padding: 0;
  margin: 0;
  width: 100%;
  min-height: 60rem;
  height: max-content;
  display: grid;
  grid-template-columns: 10% 1fr 10%;
  grid-template-rows: 1fr;
}

.headerSliderCntrl {
  font-size: 2.5rem;
  color: #f9f9f9;
  margin: auto 0;
  transition: all 0.5s ease;
  z-index: 3;
}
.headerSliderCntrl:hover {
  color: #EE851F;
  cursor: pointer;
}
.headerSliderCntrl--prev {
  grid-row: 1/span 1;
  grid-column: 1/span 1;
  justify-self: start;
  padding-left: 5rem;
}
.headerSliderCntrl--next {
  grid-row: 1/span 1;
  grid-column: 3/span 1;
  justify-self: end;
  padding-right: 5rem;
}

.headerSlider {
  grid-column: 1/span 3;
  grid-row: 1/span 1;
}

.headerSlide {
  min-height: 60rem;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transition: ease 0.5s;
  display: none;
}
.headerSlide__contentWrap {
  width: 90%;
  max-width: 1200px;
  height: 100%;
  margin: auto;
  padding-top: 8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.headerSlide__content {
  width: 45%;
  margin-right: 55%;
  display: none;
}
.headerSlide__content h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3.5rem;
  color: #f9f9f9;
  margin-bottom: 3rem;
  line-height: 160%;
}
.headerSlide__content h1 span {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3.5rem;
  color: #EE851F;
  margin-bottom: 3rem;
  line-height: 160%;
}
.headerSlide__content p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1.8rem;
  color: #f9f9f9;
  line-height: 160%;
  margin-bottom: 3rem;
}
.headerSlide__content p span {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1.8rem;
  color: #EE851F;
  line-height: 160%;
}
.headerSlide__buttons {
  flex-wrap: wrap;
  display: none;
}
.headerSlide__button {
  display: block;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #f9f9f9;
  padding: 2rem 3rem 2rem 3rem !important;
  border: 2px solid #f9f9f9;
  border-radius: 5px;
  max-width: 6.5rem;
  min-width: fit-content;
  text-align: center;
}
.headerSlide__button:hover {
  border-color: #EE851F;
  background-color: #EE851F;
}
.headerSlide__button--1 {
  border-color: #EE851F;
  background-color: #EE851F;
  margin-right: 2rem;
}
.headerSlide__button--1:hover {
  border-color: #f9f9f9;
  background-color: transparent;
}
.headerSlide--1 {
  background-image: url("../img/banners/banner2-big.png");
}
.headerSlide--2 {
  background-image: url("../img/banners/banner1-big.png");
}
.headerSlide--3 {
  background-image: url("../img/banners/banner3-big.png");
}
.headerSlide--4 {
  background-image: url("../img/banners/banner4-big.png");
}

.activeSlide {
  transition: all 0.5s ease;
  animation: fadeIn2 1s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@keyframes fadeIn2 {
  0% {
    opacity: 0.9;
  }
  100% {
    opacity: 1;
  }
}
.activeSlide .headerSlide__content {
  display: block;
  animation: slideL 2s;
}
@keyframes slideL {
  0% {
    transform: translateX(-50px);
    opacity: 0.8;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.activeSlide .headerSlide__buttons {
  display: flex;
  animation: slideR 1.5s;
}
@keyframes slideR {
  0% {
    transform: translateX(50px);
    opacity: 0.5;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@media screen and (max-width: 1400px) {
  .headerSliderCntrl {
    font-size: 2rem;
  }
  .headerSliderCntrl--prev {
    padding-left: 2rem;
  }
  .headerSliderCntrl--next {
    padding-right: 2rem;
  }
}
@media screen and (max-width: 1120px) {
  .headerSlide__contentWrap {
    padding-top: 2rem !important;
  }
  .headerSlide__content {
    width: 100%;
    margin: 0 auto;
  }
  .headerSlide__content h1 {
    max-width: 700px;
  }
  .headerSlide__content p {
    max-width: 700px;
  }
  .headerSlide__buttons {
    width: 100%;
    margin: 0 auto;
  }
  .headerSlide--1 {
    background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.6), rgba(44, 59, 88, 0.6)), url("../img/banners/banner2-m.png");
  }
  .headerSlide--2 {
    background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.6), rgba(44, 59, 88, 0.6)), url("../img/banners/banner1-m.png");
  }
  .headerSlide--3 {
    background-position: 90% 50%;
    background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.6), rgba(44, 59, 88, 0.6)), url("../img/banners/banner3-m.png");
  }
  .headerSlide--4 {
    background-position: 90% 50%;
    background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.6), rgba(44, 59, 88, 0.6)), url("../img/banners/banner4-m.png");
  }
  .headerSliderCntrl {
    font-size: 2rem;
  }
  .headerSliderCntrl--prev {
    padding-left: 1rem;
  }
  .headerSliderCntrl--next {
    padding-right: 1rem;
  }
}
@media screen and (max-width: 560px) {
  .headerSliderCntrl {
    font-size: 1.8rem;
    margin: auto 2rem;
  }
  .headerSlide {
    padding: 10rem 5rem 5rem;
  }
  .headerSlide__content h1 {
    font-size: 1.6rem;
  }
  .headerSlide__content h1 span {
    font-size: 1.6rem;
  }
  .headerSlide__content p {
    font-size: 1.4rem;
  }
  .headerSlide__buttons {
    display: flex;
    flex-direction: column;
  }
  .headerSlide__button {
    display: block;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: #f9f9f9;
    padding: 2rem 3rem 2rem 3rem !important;
    border: 2px solid #f9f9f9;
    border-radius: 5px;
    font-size: 1.4rem;
    max-width: 100%;
    padding: 2rem 2rem;
  }
  .headerSlide__button:hover {
    border-color: #EE851F;
    background-color: #EE851F;
  }
  .headerSlide__button--1 {
    border-color: #EE851F;
    background-color: #EE851F;
    margin-right: 0rem;
    margin-bottom: 2rem;
  }
  .headerSlide__button--1:hover {
    border-color: #f9f9f9;
    background-color: transparent;
  }
}
.header {
  display: grid;
  height: fit-content;
  grid-template-columns: 8.5rem 1fr 8.5rem;
  grid-template-rows: 6rem 10rem max-content;
}

.navigation {
  grid-column: 1/span 3;
  grid-row: 1/span 2;
  z-index: 5;
}

.headerSliderContainer {
  grid-column: 1/span 3;
  grid-row: 2/span 2;
}

.header2 {
  display: grid;
  height: fit-content;
  grid-template-columns: 1fr;
  grid-template-rows: 5rem 10rem max-content;
}
.header2 .navigation {
  grid-column: 1/span 3;
  grid-row: 1/span 2;
  z-index: 5;
}
.header2 .header2Content {
  grid-column: 1/span 3;
  grid-row: 2/span 2;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.header2 .header2Content--regOffice {
  background-image: linear-gradient(0deg, rgba(3, 41, 77, 0.9), rgba(3, 41, 77, 0.9)), url("../img/banners/roa.png");
}
.header2 .header2Content--DSA {
  background-image: linear-gradient(0deg, rgba(3, 41, 77, 0.9), rgba(3, 41, 77, 0.9)), url("../img/banners/dsa.png");
}
.header2 .header2Content--VBA {
  background-position: center center;
  background-image: linear-gradient(0deg, rgba(3, 41, 77, 0.9), rgba(3, 41, 77, 0.9)), url("../img/banners/vba.png");
}
.header2 .header2Content--VBP {
  background-image: linear-gradient(0deg, rgba(3, 41, 77, 0.9), rgba(3, 41, 77, 0.9)), url("../img/banners/vbp.png");
}
.header2 .header2Content--teleAnswering {
  background-image: linear-gradient(0deg, rgba(3, 41, 77, 0.9), rgba(3, 41, 77, 0.9)), url("../img/banners/tas.png");
}
.header2 .header2Content--CF {
  background-image: linear-gradient(0deg, rgba(3, 41, 77, 0.9), rgba(3, 41, 77, 0.9)), url("../img/banners/cf.png");
}
.header2 .header2Content--MR {
  background-image: linear-gradient(0deg, rgba(3, 41, 77, 0.9), rgba(3, 41, 77, 0.9)), url("../img/banners/meeting-rooms.png");
}
.header2 .header2Content--VBA-TAS {
  background-image: linear-gradient(0deg, rgba(3, 41, 77, 0.9), rgba(3, 41, 77, 0.9)), url("../img/banners/vba-tas.png");
}
.header2 .header2Content--VBP-TAS {
  background-image: linear-gradient(0deg, rgba(3, 41, 77, 0.9), rgba(3, 41, 77, 0.9)), url("../img/banners/vbp-tas.png");
}
.header2 .header2Content--VBP-web {
  background-image: linear-gradient(0deg, rgba(3, 41, 77, 0.9), rgba(3, 41, 77, 0.9)), url("../img/banners/vbp-web.png");
}
.header2 .header2Content--VBP-legal {
  background-image: linear-gradient(0deg, rgba(3, 41, 77, 0.9), rgba(3, 41, 77, 0.9)), url("../img/banners/vbp-legal.png");
}
.header2 .header2Content--aboutUs {
  background-image: linear-gradient(0deg, rgba(3, 41, 77, 0.9), rgba(3, 41, 77, 0.9)), url("../img/banners/about.png");
}
.header2 .header2Content--aboutUs .header2ContentInner {
  min-height: 33rem;
}
.header2 .header2Content--makePayment {
  background-image: linear-gradient(0deg, rgba(3, 41, 77, 0.9), rgba(3, 41, 77, 0.9)), url("../img/banners/cart.png");
}
.header2 .header2Content--makePayment .header2ContentInner {
  min-height: 33rem;
}
.header2 .header2Content--cart1 {
  background-image: linear-gradient(0deg, rgba(3, 41, 77, 0.9), rgba(3, 41, 77, 0.9)), url("../img/banners/cart.png");
}
.header2 .header2Content--cart2 {
  background-image: linear-gradient(0deg, rgba(3, 41, 77, 0.9), rgba(3, 41, 77, 0.9)), url("../img/banners/cart.png");
}
.header2 .header2Content--cart3 {
  background-image: linear-gradient(0deg, rgba(3, 41, 77, 0.9), rgba(3, 41, 77, 0.9)), url("../img/banners/cart.png");
}
.header2 .header2Content--thankYou {
  background-image: linear-gradient(0deg, rgba(3, 41, 77, 0.9), rgba(3, 41, 77, 0.9)), url("../img/banners/cart.png");
}
.header2 .header2Content--thankYou .header2ContentInner {
  min-height: 33rem;
}
.header2 .header2Content--pricing {
  background-image: linear-gradient(0deg, rgba(3, 41, 77, 0.9), rgba(3, 41, 77, 0.9)), url("../img/banners/pricing.png");
}
.header2 .header2Content--pricing .header2ContentInner {
  min-height: 33rem;
}
.header2 .header2Content--locations {
  background-position: center top;
  background-image: linear-gradient(0deg, rgba(3, 41, 77, 0.9), rgba(3, 41, 77, 0.9)), url("../img/banners/locations.png");
}
.header2 .header2Content--locations .header2ContentInner {
  min-height: 33rem;
}
.header2 .header2Content--partners {
  background-image: linear-gradient(0deg, rgba(3, 41, 77, 0.9), rgba(3, 41, 77, 0.9)), url("../img/banners/partners.png");
}
.header2 .header2Content--partners .header2ContentInner {
  min-height: 33rem;
}
.header2 .header2Content--apps {
  background-image: linear-gradient(0deg, rgba(3, 41, 77, 0.9), rgba(3, 41, 77, 0.9)), url("../img/banners/app.png");
}
.header2 .header2Content--apps .header2ContentInner {
  min-height: 33rem;
}
.header2 .header2Content--faq {
  background-image: linear-gradient(0deg, rgba(3, 41, 77, 0.9), rgba(3, 41, 77, 0.9)), url("../img/banners/faq.png");
}
.header2 .header2Content--faq .header2ContentInner {
  min-height: 33rem;
}
.header2 .header2Content--blog {
  background-position: center top;
  background-image: linear-gradient(0deg, rgba(3, 41, 77, 0.9), rgba(3, 41, 77, 0.9)), url("../img/london4.png");
}
.header2 .header2Content--blog .header2ContentInner {
  min-height: 33rem;
}
.header2 .header2Content--contactUs {
  background-position: center top;
  background-image: linear-gradient(0deg, rgba(3, 41, 77, 0.9), rgba(3, 41, 77, 0.9)), url("../img/banners/contact.png");
}
.header2 .header2Content--contactUs .header2ContentInner {
  min-height: 33rem;
}
.header2 .header2ContentInner {
  padding: 14rem 0 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.header2 .header2ContentInner__h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #f9f9f9;
  font-size: 4rem;
  line-height: 200%;
}
.header2 .header2ContentInner__h2 {
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #f9f9f9;
  font-size: 2.2rem;
  line-height: 100%;
}
.header2 .header2ContentInner__price {
  display: block;
  width: 15rem;
}

@media screen and (max-width: 1024px) {
  .header2 .header2ContentInner__h1 {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: #f9f9f9;
    font-size: 3rem;
    line-height: 200%;
  }
  .header2 .header2ContentInner__h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 900px) {
  .header2 .header2ContentInner__h1 {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: #f9f9f9;
    font-size: 2rem;
    line-height: 200%;
  }
  .header2 .header2ContentInner__h2 {
    font-size: 1.6rem;
  }
  .header2 .header2ContentInner__price {
    display: block;
    width: 10rem;
  }
}
@media screen and (max-width: 600px) {
  .header2 .header2ContentInner {
    display: block;
  }
  .header2 .header2ContentInner__h1 {
    width: 90%;
    text-align: center;
    margin: auto;
    margin-bottom: 2rem;
  }
  .header2 .header2ContentInner__h2 {
    width: 90%;
    text-align: center;
    margin: auto;
  }
  .header2 .header2ContentInner__price {
    margin: auto;
  }
}
.footer1Wrapper {
  background-color: #2C3B58;
  padding: 6rem 0;
}

.footer1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer1 h2 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #f9f9f9;
  margin-bottom: 2rem;
}
.footer1 a {
  display: block;
  line-height: 240%;
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #f9f9f9;
  transition: all 0.5s ease;
}
.footer1 a:hover {
  color: #EE851F;
}
.footer1 .footer1AboutUs {
  width: 38rem;
}
.footer1 .footer1AboutUs__logo {
  width: 25rem;
  margin-bottom: 3rem;
}
.footer1 .footer1AboutUs__about {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  color: #f9f9f9;
  margin-bottom: 3rem;
}
.footer1 .footer1AboutUs__socials {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  width: 12rem;
}
.footer1 .footer1AboutUs__socials i {
  font-size: 2rem;
  margin-right: 2rem;
  color: #f9f9f9;
  transition: all 0.5s ease;
}
.footer1 .footer1AboutUs__socials .fa-linkedin-in:hover {
  color: #3B5998;
}
.footer1 .footer1AboutUs__socials .fa-facebook-f:hover {
  color: #3B5998;
}
.footer1 .footer1AboutUs__socials .fa-twitter:hover {
  color: #55ACEE;
}
.footer1 .footer1AboutUs__apps {
  max-width: 35rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer1 .footer1AboutUs__apps a {
  display: block;
}
.footer1 .footer1AboutUs__apps img {
  height: 5rem;
}
.footer1 .footer1Services {
  width: fit-content;
}
.footer1 .footer1Services__block--1 {
  margin-bottom: 5rem;
}
.footer1 .footer1Links__row1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer1 .footer1Links__ourCompany {
  width: fit-content;
  margin-right: 6rem;
  margin-bottom: 3rem;
}
.footer1 .footer1Links__otherLinks {
  width: fit-content;
  margin-right: 6rem;
  margin-bottom: 3rem;
}
.footer1 .footer1Links__contactUs {
  width: fit-content;
  margin-bottom: 3rem;
}
.footer1 .footer1Links__contactUs p {
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  color: #f9f9f9;
  color: #f9f9f9;
}
.footer1 .footer1Links__worldPay img {
  display: block;
  margin-left: auto;
  width: 25rem;
}

.footer2Wrapper {
  padding: 1rem 0;
  background-color: #232E44;
}

.footer2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem;
}
.footer2 .footer2Copy {
  margin-right: 0.8rem;
}
.footer2 .footer2Copy p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  font-size: 13px;
  color: #f9f9f9;
  line-height: 160%;
}
.footer2 .footer2Links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer2 .footer2Links__link {
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  font-size: 13px;
  color: #f9f9f9;
  transition: all 0.5s ease;
}
.footer2 .footer2Links__link:hover {
  color: #EE851F;
}
.footer2 .footer2Links__vl {
  margin: 1rem 0.8rem;
  border-left: 1px solid #f9f9f9;
  height: 2.1rem;
}

.partnersFooterWrap {
  background-color: #232E44;
  padding: 2rem 0;
}
.partnersFooterWrap .partnersFooter {
  display: grid;
  grid-template-columns: max-content max-content max-content max-content max-content max-content;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: space-between;
}
.partnersFooterWrap .partnersFooter a {
  width: fit-content;
  text-decoration: none;
}
.partnersFooterWrap .partnersFooter a img {
  height: 3.5rem;
}

@media screen and (max-width: 1280px) {
  .footer1 .footer1AboutUs {
    width: 100%;
    margin-bottom: 3rem;
  }
  .footer1 .footer1AboutUs__about {
    width: 100%;
  }
  .footer1 .footer1AboutUs__socials {
    max-width: 12rem;
  }
  .footer1 .footer1AboutUs__apps {
    max-width: 35rem;
  }
}
@media screen and (max-width: 1050px) {
  .partnersFooterWrap .partnersFooter a img {
    height: 3rem;
  }
}
@media screen and (max-width: 850px) {
  .footer1 .footer1AboutUs {
    margin-right: 3rem;
    width: 30rem;
  }
  .footer1 .footer1Links {
    width: 100%;
  }
  .footer1 .footer1Links__worldPay img {
    margin: auto;
  }
  .partnersFooterWrap .partnersFooter {
    grid-template-columns: max-content max-content max-content;
  }
}
@media screen and (max-width: 650px) {
  .footer1 .footer1AboutUs {
    width: 100%;
  }
  .footer1 .footer1Services {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .footer1 .footer1Services__block {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 420px) {
  .partnersFooterWrap .partnersFooter {
    grid-template-columns: max-content max-content;
  }
}
.pricing {
  padding: 6rem 0 6rem 0;
}

.pricingHeading__h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: center;
  width: fit-content;
  width: fit-content;
  max-width: 90%;
  margin: auto;
}
.pricingHeading__h1:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin: auto;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}
.pricingHeading__h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  width: fit-content;
  max-width: 90%;
  margin: auto;
  margin-bottom: 6rem;
  text-align: center;
}
.pricingHeading__toggle {
  margin-bottom: 5rem;
  display: grid;
  grid-template-columns: 1fr 50px max-content 50px 1fr;
  align-items: center;
}
.pricingHeading__toggle .switch {
  position: relative;
  display: block;
  width: 75px;
  height: 35px;
}
.pricingHeading__toggle .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #EE851F;
  border: 1px solid #EE851F;
  box-sizing: border-box;
  border-radius: 39px;
  transition: 0.4s;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}
.pricingHeading__toggle .switch .slider::before {
  position: absolute;
  content: "";
  top: 3px;
  left: 3px;
  background-color: #f9f9f9;
  transition: 0.4s;
}
.pricingHeading__toggle .switch input {
  display: none;
}
.pricingHeading__toggle .switch input:checked + .slider::before {
  transform: translateX(40px);
}
.pricingHeading__toggle .switch .slider.round {
  border-radius: 35px;
}
.pricingHeading__toggle .switch .slider.round::before {
  width: 27px;
  height: 27px;
  border-radius: 50px;
}
.pricingHeading__toggle .optionBox {
  width: 100%;
  max-width: 40rem;
  padding: 3rem;
  border: 1px solid #C4C4C4;
  border-radius: 6px;
  align-self: stretch;
  transition: 0.5s;
}
.pricingHeading__toggle .optionBox h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 160%;
  text-align: center;
  margin-bottom: 2rem;
  color: #979797;
}
.pricingHeading__toggle .optionBox p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 160%;
  text-align: center;
  color: #979797;
}
.pricingHeading__toggle .optionBox--active {
  border-color: #EE851F;
}
.pricingHeading__toggle .optionBox--active h3 {
  color: #2c3b58;
}
.pricingHeading__toggle .optionBox--active p {
  color: #2c3b58;
}
.pricingHeading__toggle .optionBox--central {
  justify-self: end;
}
.pricingHeading__toggle .toggleLine {
  width: 5rem;
  height: 1px;
  background-color: #C4C4C4;
  transition: 0.5s;
}
.pricingHeading__toggle .toggleLine--active {
  background-color: #EE851F;
}
.pricingHeading__btns {
  display: flex;
  width: fit-content;
  margin: auto;
  margin-bottom: 3rem;
}
.pricingHeading .pricingBtns {
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  padding: 2rem 4rem;
  transition: all 0.5s ease;
  text-align: center;
}
.pricingHeading .pricingBtns--active {
  background-color: #EE851F;
  color: #f9f9f9;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
}
.pricingHeading .pricingBtns--off {
  background-color: rgb(252, 217, 181);
  color: #EE851F;
}
.pricingHeading .pricingBtns--1 {
  border-radius: 6px 0px 0px 6px;
}
.pricingHeading .pricingBtns--2 {
  border-radius: 0px 6px 6px 0px;
}
.pricingHeading .pricingBtns:hover {
  cursor: pointer;
}
.pricingHeading__select select {
  display: block;
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #2c3b58;
  line-height: 160%;
  padding: 0.6em 1.4em 0.5em 0.8em;
  width: 18rem;
  max-width: 90%;
  box-sizing: border-box;
  margin: 0 auto;
  border: 2px solid #2c3b58;
  box-shadow: none;
  border-radius: 5px;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #F5F5F5;
  background-image: url("../img/angle-down-solid.svg"), linear-gradient(to bottom, #F5F5F5 100%, #F5F5F5 100%);
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 1.2rem auto, 100%;
}
.pricingHeading__select select:focus {
  border: 2px solid #EE851F;
}
.pricingHeading__select option {
  font-size: 1.8rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #b1b1b1;
}

.pricingIndividual {
  padding: 4rem 0 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  align-items: flex-start;
}
.pricingIndividual__col {
  width: 24%;
  background-color: #f9f9f9;
  border: 1px solid #EFEFEF;
  box-sizing: border-box;
  box-shadow: 0px 10px 30px rgba(131, 131, 131, 0.3);
  border-radius: 5px;
  box-sizing: border-box;
}

.pricingCombined {
  padding: 4rem 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-items: flex-start;
}
.pricingCombined__col {
  width: 24%;
  background-color: #f9f9f9;
  border: 1px solid #EFEFEF;
  box-sizing: border-box;
  box-shadow: 0px 10px 30px rgba(131, 131, 131, 0.3);
  border-radius: 5px;
  box-sizing: border-box;
}
.pricingCombined .pricingCombined__col.service {
  margin-left: 10px;
  margin-right: 10px;
}

.service {
  margin-top: 4.2rem;
  display: grid;
  grid-template-rows: max-content 5rem max-content max-content;
  grid-template-columns: 1fr;
}
.service--mostPop {
  margin-top: 0;
  background-color: #EE851F;
}
.service--yearly {
  margin-top: 0;
}
.service__top {
  padding: 0px;
  background-color: #EDEDED;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  grid-row: 1/span 1;
  grid-column: 1/span 1;
}
.service__top--popular {
  background-color: #DF7914;
}
.service__top .director-address {
  width: fit-content;
  margin: 2rem auto 2rem;
}
.service__top .director-address label {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #2c3b58;
  line-height: 100%;
  font-size: 1.6rem;
  margin-left: 0.5rem;
}
.service__top #director-check {
  transform: translateY(-0.05rem);
  font-size: 5rem;
}
.service__h {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 160%;
  text-align: center;
  color: #2c3b58;
  width: fit-content;
  margin: auto;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
.service__h--popular {
  color: #f9f9f9;
}
.service__price {
  color: #EE851F;
  font-size: 5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  width: fit-content;
  margin: auto;
}
.service__price span {
  color: #EE851F;
  font-size: 3rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  padding-right: 2px;
}
.service__price--popular {
  color: #f9f9f9;
}
.service__price--popular span {
  color: #f9f9f9;
}
.service__price .serviceVat {
  color: #A6A4A4;
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  margin-left: 0.6rem;
}
.service__price .serviceVat--popular {
  color: #f9f9f9;
}
.service__note {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #2c3b58;
  line-height: 100%;
  font-size: 1.6rem;
  width: fit-content;
  text-align: center;
  margin: 2rem auto;
}
.service__note--popular {
  color: #f9f9f9;
}
.service__learnMore {
  display: block;
  width: fit-content;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 100%;
  font-size: 1.8rem;
  color: #f9f9f9;
  background-color: #EE851F;
  padding: 1rem 2.2rem;
  border: 2px solid #EE851F;
  border-radius: 5px;
  transition: all 1s ease;
  font-size: 1.6rem;
  padding: 1rem 1.8rem;
  margin: 2rem auto;
}
.service__learnMore:hover {
  cursor: pointer;
  border-color: #2c3b58;
  background-color: #2c3b58;
  color: #f9f9f9;
}
.service__learnMore--popular {
  background-color: #f9f9f9;
  border-color: #f9f9f9;
  color: #EE851F;
}
.service__mostPopular {
  height: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0rem;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: #EE851F;
}
.service__mostPopular p {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #f9f9f9;
  font-size: 1.9rem;
  width: fit-content;
  margin: auto;
}
.service__yearly {
  height: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0rem;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: #EE851F;
}
.service__yearly p {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #f9f9f9;
  font-size: 1.9rem;
  width: fit-content;
  margin: auto;
}
.service__wave {
  grid-row: 2/span 1;
  grid-column: 1/span 1;
  background-color: #EDEDED;
  background-image: url("../img/curve.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.service__wave--popular {
  background-color: #DF7914;
  background-image: url("../img/curve2.png");
}
.service__content {
  grid-row: 3/span 1;
  grid-column: 1/span 1;
  margin-top: 0rem;
  padding: 0 5px;
  padding-right: 1rem;
  width: fit-content;
  margin: auto;
}
.service__content--popular ul .tooltip {
  color: #f9f9f9;
}
.service__content--popular ul i {
  color: #f9f9f9 !important;
}
.service__content ul {
  list-style: none;
  width: fit-content;
  max-width: 100% !important;
  margin: auto;
}
.service__content ul li {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}
.service__content ul i {
  font-size: 1rem;
  color: #EE851F;
  margin-right: 1rem;
}
.service__content #regOffAdd1 {
  width: 100%;
}
.service__content #regOffAdd2 {
  width: 100%;
}
.service__buttons {
  grid-row: 4/span 1;
  grid-column: 1/span 1;
  padding-bottom: 2rem;
  margin-top: 4rem;
}
.service__buttons .selectPlan {
  display: block;
  width: fit-content;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 100%;
  font-size: 1.8rem;
  color: #f9f9f9;
  background-color: #2c3b58;
  padding: 1rem 2.2rem;
  border: 2px solid #2c3b58;
  border-radius: 5px;
  transition: all 0.5s ease;
  margin: auto;
  margin-bottom: 1rem;
}
.service__buttons .selectPlan:hover {
  cursor: pointer;
  border-color: #2c3b58;
  background-color: transparent;
  color: #2c3b58;
}
.service__buttons .selectPlan--popular:hover {
  cursor: pointer;
  border-color: #f9f9f9;
  background-color: transparent;
  color: #f9f9f9;
}

@media screen and (max-width: 1236px) {
  .service {
    grid-template-rows: max-content 8rem max-content max-content;
  }
  .pricingIndividual__col {
    width: 48%;
  }
  .pricingCombined__col {
    width: 48%;
  }
}
@media screen and (max-width: 900px) {
  .pricingHeading__toggle {
    grid-template-columns: 1fr 20px max-content 20px 1fr;
  }
  .pricingHeading__toggle .optionBox {
    max-width: 100%;
    width: 100%;
    padding: 1.5rem;
    border-radius: 4px;
  }
  .pricingHeading__toggle .optionBox h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  .pricingHeading__toggle .optionBox p {
    font-size: 1.2rem;
  }
  .pricingHeading__toggle .toggleLine {
    width: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .pricingHeading__toggle {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 1rem;
    grid-template-rows: max-content max-content;
    grid-row-gap: 2rem;
  }
  .pricingHeading__toggle .switch {
    grid-column: 1/span 2;
    grid-row: 2/span 1;
    justify-self: center;
  }
  .pricingHeading__toggle .optionBox--central {
    grid-column: 1/span 1;
    grid-row: 1/span 1;
  }
  .pricingHeading__toggle .optionBox--premium {
    grid-column: 2/span 1;
    grid-row: 1/span 1;
  }
  .pricingHeading__toggle .toggleLine {
    display: none;
  }
  .pricingIndividual__col {
    width: 100%;
    margin: 2rem auto;
  }
  .pricingCombined__col {
    width: 90%;
    margin: 2rem auto;
  }
}
@media screen and (max-width: 500px) {
  .pricingHeading .pricingBtns {
    padding: 1rem 2rem;
  }
}
.testimonialsWrapper {
  padding: 6rem 0;
  background-color: #ECF0F7;
}
.testimonialsWrapper__h {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: center;
  width: fit-content;
  width: fit-content;
  margin: auto;
}
.testimonialsWrapper__h:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin: auto;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}

.testimonials {
  display: flex;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: max-content 1fr 1fr 1fr max-content;
}
.testimonials__quoteBubble {
  width: 80%;
  max-width: 8rem;
  grid-row: 1/span 1;
  grid-column: 5/span 2;
  justify-self: center;
}
.testimonials__trustPilot {
  grid-column: 4/span 8;
  grid-row: 5/span 1;
  justify-self: center;
}
.testimonials__trustPilot a {
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #4D4C4C;
  font-size: 1.4rem;
}
.testimonials__btn {
  width: 70%;
  border-radius: 50%;
  border: 1px solid #FFFFFF;
  box-shadow: 0px 20px 40px rgba(49, 88, 114, 0.25);
}
.testimonials__btn:hover {
  cursor: pointer;
  border-color: #EE851F;
  border-width: 2px;
}
.testimonials__btn--active {
  border-color: #EE851F;
  border-width: 2px;
}
.testimonials__btn--1 {
  grid-column: 2/span 1;
  grid-row: 2/span 1;
  justify-self: center;
  align-self: center;
  width: 90%;
  max-width: 7rem;
  animation: testimonial1 3s ease-in-out infinite;
}
@keyframes testimonial1 {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translateY(0px);
  }
  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
  }
  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translateY(0px);
  }
}
.testimonials__btn--2 {
  grid-column: 1/span 1;
  grid-row: 3/span 1;
  justify-self: start;
  align-self: end;
  width: 70%;
  max-width: 5rem;
  animation: testimonial2 4s ease-in-out infinite;
}
@keyframes testimonial2 {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translateX(0px);
  }
  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translateX(-20px);
  }
  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translateX(0px);
  }
}
.testimonials__btn--3 {
  grid-column: 3/span 1;
  grid-row: 4/span 1;
  justify-self: end;
  align-self: start;
  width: 80%;
  max-width: 6rem;
  animation: testimonial3 5s ease-in-out infinite;
  animation-direction: reverse;
}
@keyframes testimonial3 {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translate(0px, 0px);
  }
  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translate(20px, -50px);
  }
  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translate(0px, 0px);
  }
}
.testimonials__btn--4 {
  grid-column: 13/span 1;
  grid-row: 2/span 1;
  justify-self: start;
  align-self: center;
  width: 90%;
  max-width: 7rem;
  animation: testimonial4 4s ease-in-out infinite;
}
@keyframes testimonial4 {
  0% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translate(0px, 0px);
  }
  50% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translate(-30px, 50px);
  }
  100% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translate(0px, 0px);
  }
}
.testimonials__btn--5 {
  grid-column: 12/span 1;
  grid-row: 3/span 1;
  justify-self: start;
  align-self: end;
  width: 70%;
  max-width: 5rem;
  animation: testimonial5 5s ease-in-out infinite;
}
@keyframes testimonial5 {
  0% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translate(0px, 0px);
  }
  50% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translate(0px, 50px);
  }
  100% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translate(0px, 0px);
  }
}
.testimonials__btn--6 {
  grid-column: 14/span 1;
  grid-row: 4/span 1;
  justify-self: end;
  align-self: start;
  width: 80%;
  max-width: 6rem;
  animation: testimonial4 3s ease-in-out infinite;
}
@keyframes testimonial4 {
  0% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translate(0px, 0px);
  }
  50% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translate(-30px, 20px);
  }
  100% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translate(0px, 0px);
  }
}

.testimonial {
  grid-row: 2/span 3;
  grid-column: 4/span 8;
  padding: 1rem 1rem 3rem;
  transition: ease 0.1s;
  display: block;
}
.testimonial__quote {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  font-size: 2rem;
  color: #2c3b58;
  text-align: center;
  padding-bottom: 3rem;
  transition: all 0.5s ease;
}
.testimonial__from {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 1rem;
  transition: all 0.5s ease;
}
.testimonial__authorImg {
  margin-right: 3rem;
  width: 8rem;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  box-shadow: 0px 20px 40px rgba(49, 88, 114, 0.25);
}
.testimonial__author {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #EE851F;
}
.testimonial__author span {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #4D4C4C;
}
.testimonial--hidden {
  display: none;
}
.testimonial--active {
  display: block;
}
.testimonial--active .testimonial__quote {
  animation: slideL 2s;
}
@keyframes slideL {
  0% {
    transform: translateX(-50px);
    opacity: 0.8;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.testimonial--active .testimonial__from {
  animation: slideR 1.5s;
}
@keyframes slideR {
  0% {
    transform: translateX(50px);
    opacity: 0.5;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@media screen and (max-width: 800px) {
  .testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: max-content max-content max-content max-content max-content;
  }
  .testimonials__quoteBubble {
    width: 80%;
    max-width: 8rem;
    grid-row: 1/span 1;
    grid-column: 1/span 3;
    justify-self: center;
  }
  .testimonials__trustPilot {
    grid-column: 1/span 3;
    grid-row: 5/span 1;
    justify-self: center;
  }
  .testimonials__btn {
    animation: initial;
    animation-play-state: paused;
  }
  .testimonials__btn--1 {
    margin-bottom: 1.5rem;
    grid-column: 1/span 1;
    grid-row: 3/span 1;
    justify-self: end;
    align-self: center;
    width: 90%;
    max-width: 6rem;
  }
  .testimonials__btn--2 {
    margin-bottom: 1.5rem;
    grid-column: 2/span 1;
    grid-row: 3/span 1;
    justify-self: center;
    align-self: center;
    width: 90%;
    max-width: 6rem;
  }
  .testimonials__btn--3 {
    margin-bottom: 1.5rem;
    grid-column: 3/span 1;
    grid-row: 3/span 1;
    justify-self: start;
    align-self: center;
    width: 90%;
    max-width: 6rem;
  }
  .testimonials__btn--4 {
    margin-bottom: 1.5rem;
    grid-column: 1/span 1;
    grid-row: 4/span 1;
    justify-self: end;
    align-self: center;
    width: 90%;
    max-width: 6rem;
  }
  .testimonials__btn--5 {
    margin-bottom: 1.5rem;
    grid-column: 2/span 1;
    grid-row: 4/span 1;
    justify-self: center;
    align-self: center;
    width: 90%;
    max-width: 6rem;
  }
  .testimonials__btn--6 {
    margin-bottom: 1.5rem;
    grid-column: 3/span 1;
    grid-row: 4/span 1;
    justify-self: start;
    align-self: center;
    width: 90%;
    max-width: 6rem;
  }
  .testimonial {
    grid-row: 2/span 1;
    grid-column: 1/span 6;
    padding: 1rem 1rem 3rem;
  }
  .testimonial__quote {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    color: #4D4C4C;
    line-height: 160%;
    font-size: 2rem;
    color: #2c3b58;
    text-align: center;
    padding-bottom: 3rem;
  }
  .testimonial__from {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 1rem;
  }
  .testimonial__authorImg {
    margin-right: 3rem;
    width: 8rem;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    box-shadow: 0px 20px 40px rgba(49, 88, 114, 0.25);
  }
  .testimonial__author {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #EE851F;
  }
  .testimonial__author span {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: #4D4C4C;
  }
}
.ourServices1Wrapper {
  padding-top: 6rem;
}
.ourServices1Wrapper__h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: center;
  width: fit-content;
  width: fit-content;
  max-width: 90%;
  margin: auto;
  margin-bottom: 6rem !important;
}
.ourServices1Wrapper__h1:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin: auto;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}

.ourServices1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  justify-items: stretch;
  align-items: stretch;
}

.ourServices1Box {
  background-image: url("../img/serv1-1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: grid;
  grid-template-rows: 40rem 1fr;
  grid-template-columns: 1fr;
  grid-row-gap: 0;
  align-items: stretch !important;
  justify-items: stretch !important;
}
.ourServices1Box:hover {
  cursor: pointer;
}
.ourServices1Box--1 {
  background-image: url("../img/services-banners/ROA1.png");
}
.ourServices1Box--2 {
  background-image: url("../img/services-banners/mail-forward-1.png");
}
.ourServices1Box--3 {
  background-image: url("../img/services-banners/DSA1.png");
}
.ourServices1Box--4 {
  background-image: url("../img/services-banners/business-call-answ-1.png");
}
.ourServices1Box--5 {
  background-image: url("../img/services-banners/CF1.png");
}
.ourServices1Box__info {
  grid-column: 1/span 1;
  grid-row: 2/span 1;
  background-color: rgba(44, 59, 88, 0.8);
  width: 100%;
  max-width: 100%;
  min-height: 10.5rem;
  padding: 2rem 1rem;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.ourServices1Box__h {
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  color: #f9f9f9;
  margin-bottom: 0.5rem;
  min-height: 6.1rem;
  text-align: center;
}
.ourServices1Box__price {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #EE851F;
}
.ourServices1Box__price span {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #f9f9f9;
}
.ourServices1Box__price--1 {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 80%;
  font-size: 2rem;
  color: #f9f9f9;
}
.ourServices1Box__price--1 .priceSpan1 {
  font-size: 2rem;
  line-height: 80%;
  color: #EE851F;
}
.ourServices1Box__price--1 .priceSpan2 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 80%;
  font-size: 1.8rem;
}
.ourServices1Box__btn {
  display: block;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: #f9f9f9;
  background-color: #EE851F;
  padding: 1rem;
  border: 1px solid #EE851F;
  border-radius: 4px;
  transition: all 0.5s ease;
}
.ourServices1Box__btn:hover {
  border-color: #f9f9f9;
  background-color: #2c3b58;
}
.ourServices1Box__overlay {
  grid-column: 1/span 1;
  grid-row: 1/span 1;
  height: 100%;
  padding: 2rem;
  transition: ease 0.3s;
}
.ourServices1Box__overlay p {
  display: none;
  transition: ease 0.3s;
}
.ourServices1Box .ourServices1Box-show {
  transition: all 0.7s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeIn2 1s ease;
  background-color: rgba(44, 59, 88, 0.6);
}
@keyframes fadeIn2 {
  0% {
    opacity: 0.9;
  }
  100% {
    opacity: 1;
  }
}
.ourServices1Box .ourServices1Box-show p {
  display: block;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  color: #f9f9f9;
  margin: 1rem 0;
  text-align: center;
  animation: slideD-100px2S 1s;
}
@keyframes slideD-100px2S {
  0% {
    transform: translateY(-200px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media screen and (max-width: 1700px) {
  .ourServices1Box__info {
    display: block;
  }
  .ourServices1Box__price {
    text-align: center;
  }
  .ourServices1Box__btn {
    width: fit-content;
    margin: auto;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 1300px) {
  .ourServices1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }
  .ourServices1Box--1 {
    grid-row: 1/span 1;
    grid-column: 1/span 1;
  }
  .ourServices1Box--2 {
    grid-row: 1/span 1;
    grid-column: 2/span 1;
  }
  .ourServices1Box--3 {
    grid-row: 2/span 1;
    grid-column: 1/span 2;
  }
  .ourServices1Box--4 {
    grid-row: 3/span 1;
    grid-column: 1/span 1;
  }
  .ourServices1Box--5 {
    grid-row: 3/span 1;
    grid-column: 2/span 1;
  }
}
@media screen and (max-width: 750px) {
  .ourServices1 {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  }
  .ourServices1Box--1 {
    grid-row: 1/span 1;
    grid-column: 1/span 1;
  }
  .ourServices1Box--2 {
    grid-row: 2/span 1;
    grid-column: 1/span 1;
  }
  .ourServices1Box--3 {
    grid-row: 3/span 1;
    grid-column: 1/span 1;
  }
  .ourServices1Box--4 {
    grid-row: 4/span 1;
    grid-column: 1/span 1;
  }
  .ourServices1Box--5 {
    grid-row: 5/span 1;
    grid-column: 1/span 1;
  }
}
.phoneApp {
  height: fit-content;
  background-image: url("../img/locationPin.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right top;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}
.phoneApp__phone {
  grid-row: 3/span 18;
  grid-column: 2/span 16;
  width: 100%;
  object-fit: cover;
}
.phoneApp__dot {
  color: #2c3b58;
  border: 2px solid white;
  background-color: white;
  padding: 0;
  border-radius: 50%;
  font-size: 1.4rem;
  z-index: 4;
  animation: pulse-fwd 1.5s ease-in-out infinite both;
}
@keyframes pulse-fwd {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
.phoneApp__dot--1 {
  grid-row: 11/span 1 !important;
  grid-column: 4/span 1 !important;
  justify-self: flex-start;
  align-self: flex-end;
}
.phoneApp__dot--2 {
  grid-row: 10/span 1 !important;
  grid-column: 7/span 1 !important;
  justify-self: flex-start;
  align-self: flex-end;
}
.phoneApp__dot--3 {
  grid-row: 6/span 1 !important;
  grid-column: 6/span 1 !important;
  justify-self: flex-end;
  align-self: flex-end;
}
.phoneApp__dot--4 {
  grid-row: 5/span 1 !important;
  grid-column: 10/span 1 !important;
  justify-self: start;
  align-self: end;
}
.phoneApp__dot:hover {
  cursor: pointer;
}
.phoneApp__box {
  z-index: 5;
  transition: all 0.5s ease;
}
.phoneApp__box p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  text-align: center;
  padding: 2rem 2rem;
  box-sizing: border-box;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  background-color: #2c3b58;
  color: #f9f9f9;
}
.phoneApp__box--1 {
  grid-row: 1/span 10 !important;
  grid-column: 13/span 6 !important;
  justify-self: center;
  align-self: end;
  display: none;
  animation: bounce-in-top 1.5s both;
}
@keyframes bounce-in-top {
  0% {
    transform: translateY(-200px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateY(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateY(-30px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateY(-18px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateY(-8px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
}
.phoneApp__box--2 {
  grid-row: 1/span 9 !important;
  grid-column: 13/span 6 !important;
  justify-self: center;
  align-self: end;
  display: block;
  animation: bounce-in-top 1.5s both;
}
@keyframes bounce-in-top {
  0% {
    transform: translateY(-200px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateY(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateY(-30px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateY(-18px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateY(-8px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
}
.phoneApp__box--3 {
  grid-row: 1/span 5 !important;
  grid-column: 1/span 6 !important;
  justify-self: center;
  align-self: end;
  display: none;
  animation: bounce-in-top 1.5s both;
}
@keyframes bounce-in-top {
  0% {
    transform: translateY(-200px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateY(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateY(-30px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateY(-18px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateY(-8px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
}
.phoneApp__box--4 {
  grid-row: 1/span 4 !important;
  grid-column: 15/span 6 !important;
  justify-self: center;
  align-self: end;
  display: none;
  animation: bounce-in-top 1.5s both;
}
@keyframes bounce-in-top {
  0% {
    transform: translateY(-200px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateY(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateY(-30px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateY(-18px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateY(-8px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
}
.phoneApp__line {
  display: block;
}
.phoneApp__line--1 {
  grid-row: 10/span 2 !important;
  grid-column: 4/span 12 !important;
  justify-self: start;
  align-self: end;
  width: 100%;
  transform: translateY(-5px) !important;
}
.phoneApp__line--2 {
  grid-row: 9/span 2 !important;
  grid-column: 7/span 9 !important;
  justify-self: start;
  align-self: end;
  width: 100%;
  transform: translateY(-5px) !important;
}
.phoneApp__line--3 {
  grid-row: 4/span 3 !important;
  grid-column: 4/span 3 !important;
  justify-self: end;
  align-self: end;
  width: 100%;
  transform: translateY(-5px) !important;
}
.phoneApp__line--4 {
  grid-row: 4/span 2 !important;
  grid-column: 10/span 8 !important;
  justify-self: start;
  align-self: end;
  width: 100%;
  transform: translateY(-5px) !important;
}
.phoneApp #appLine1 {
  display: none;
  stroke-dasharray: 200;
  stroke-dashoffset: 0;
  transition: all 0.5s ease;
  animation: appLine1 0.7s linear forwards;
}
@keyframes appLine1 {
  from {
    stroke-dashoffset: 200;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.phoneApp #appLine2 {
  display: block;
  stroke-dasharray: 200;
  stroke-dashoffset: 0;
  transition: all 0.5s ease;
  animation: appLine2 1s linear forwards;
}
@keyframes appLine2 {
  from {
    stroke-dashoffset: 200;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.phoneApp #appLine3 {
  display: none;
  stroke-dasharray: 100;
  stroke-dashoffset: 0;
  transition: all 0.5s ease;
  animation: appLine3 0.4s linear forwards;
}
@keyframes appLine3 {
  from {
    stroke-dashoffset: 160;
  }
  to {
    stroke-dashoffset: 200;
  }
}
.phoneApp #appLine4 {
  display: none;
  stroke-dasharray: 200;
  stroke-dashoffset: 0;
  transition: all 0.5s ease;
  animation: appLine4 1s linear forwards;
}
@keyframes appLine4 {
  from {
    stroke-dashoffset: 200;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@media screen and (max-width: 780px) {
  .phoneApp__box p {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    color: #4D4C4C;
    line-height: 160%;
    font-size: 1.2rem;
    padding: 0.6rem;
  }
  .phoneApp__box--1 p {
    background-color: #f9f9f9;
  }
  .phoneApp__box--2 p {
    color: white;
    background-color: #EE851F;
  }
  .phoneApp__box--3 p {
    color: white;
    background-color: #EE8787;
  }
  .phoneApp__box--4 p {
    color: white;
    background-color: #2c3b58;
  }
}
@media screen and (max-width: 496px) {
  .phoneApp__dot {
    display: none !important;
  }
  .phoneApp__line--2 {
    display: none;
  }
  .phoneApp__box--2 {
    display: none;
  }
}
.locations1Wrapper__h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: center;
  width: fit-content;
  width: fit-content;
  max-width: 90%;
  margin: auto;
}
.locations1Wrapper__h1:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin: auto;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}
.locations1Wrapper__h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  width: fit-content;
  max-width: 90%;
  margin: auto;
  margin-bottom: 6rem;
  text-align: center;
}
.locations1Wrapper__btn {
  display: block;
  margin: auto;
  margin-top: 4rem;
  display: block;
  width: fit-content;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 100%;
  font-size: 1.8rem;
  color: #f9f9f9;
  background-color: #EE851F;
  padding: 1rem 2.2rem;
  border: 2px solid #EE851F;
  border-radius: 5px;
  transition: all 1s ease;
}
.locations1Wrapper__btn:hover {
  cursor: pointer;
  border-color: #2c3b58;
  background-color: #2c3b58;
  color: #f9f9f9;
}

.locations1Thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
}
.locations1Thumbs .locations1Thumb {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 1rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.locations1Thumbs .locations1Thumb h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #f9f9f9;
  margin-bottom: 1rem;
}
.locations1Thumbs .locations1Thumb__p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  color: #f9f9f9;
  text-align: center;
  margin-bottom: 4rem;
}
.locations1Thumbs .locations1Thumb__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-color: #EE851F;
  padding: 1.5rem 1.5rem;
  box-shadow: 0px 4px 4px rgba(3, 41, 77, 0.2);
  border-radius: 6px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  color: #f9f9f9;
}
.locations1Thumbs .locations1Thumb__btn i {
  font-size: 2rem;
  margin-right: 1.5rem;
}
.locations1Thumbs .locations1Thumb__btn:hover {
  cursor: pointer;
  background-color: #2c3b58;
}
.locations1Thumbs .locations1Thumb--1 {
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.5), rgba(44, 59, 88, 0.5)), url("../img/location1.png");
}
.locations1Thumbs .locations1Thumb--2 {
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.5), rgba(44, 59, 88, 0.5)), url("../img/location3.png");
}
.locations1Thumbs .locations1Thumb--3 {
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.5), rgba(44, 59, 88, 0.5)), url("../img/location2.png");
}

.locations1Maps .locations1Map {
  width: 100%;
}
.locations1Maps .locations1Map .mapouter {
  position: relative;
  text-align: right;
  height: 500px;
  width: 100%;
}
.locations1Maps .locations1Map .gmap_canvas {
  overflow: hidden;
  background: none !important;
  height: 500px;
  width: 100%;
}
.locations1Maps .locations1Map--visible {
  display: block;
  animation: slideDown 1s;
}
@keyframes slideDown {
  0% {
    transform: translateY(-50px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.locations1Maps .locations1Map--hidden {
  display: none;
}

@media screen and (max-width: 850px) {
  .locations1Thumbs {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }
  .locations1Thumbs .locations1Thumb {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .locations1Thumbs .locations1Thumb h2 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: #f9f9f9;
    margin-bottom: 1rem;
  }
  .locations1Thumbs .locations1Thumb__p {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    color: #4D4C4C;
    line-height: 160%;
    color: #f9f9f9;
    text-align: center;
    margin-bottom: 2rem;
  }
  .locations1Thumbs .locations1Thumb__btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    color: #4D4C4C;
    line-height: 160%;
    color: #f9f9f9;
  }
  .locations1Thumbs .locations1Thumb__btn i {
    font-size: 2rem;
    margin-right: 1.5rem;
  }
  .locations1Thumbs .locations1Thumb__btn:hover {
    cursor: pointer;
    background-color: transparent;
    color: #EE851F;
  }
}
.faqS {
  border-bottom: 1px solid #E5E5E5;
}

.faq dt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex-wrap: nowrap;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: #2c3b58;
  border-top: 1px solid #E5E5E5;
  padding: 2rem 0;
}
.faq dt:hover {
  cursor: pointer;
}
.faq dt i {
  color: #EE851F;
  font-size: 1.7rem;
  margin-right: 2rem;
}
.faq dt i:hover {
  cursor: pointer;
  color: #2c3b58;
}
.faq dt .fa-minus {
  display: none;
}
.faq dd {
  display: none;
}
.faq--open dt {
  margin-bottom: 1rem;
}
.faq--open dt .fa-minus {
  display: block;
}
.faq--open dt .fa-plus {
  display: none;
}
.faq--open dd {
  display: block;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  color: #2c3b58;
  line-height: 200%;
  padding-left: 3.8rem;
  padding-bottom: 3rem;
  animation: slideDown 1s;
}
@keyframes slideDown {
  0% {
    transform: translateY(-10px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.faqS2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.faqS2 .faq2 {
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-template-rows: minmax(max-content, 120px) 1fr;
  padding: 0 2rem;
}
.faqS2 .faq2__p1 {
  grid-row: 1/span 1;
  grid-column: 1/span 1;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 150%;
  font-size: 1.8rem;
  color: #EE851F;
  padding-right: 2rem;
  padding-top: 2rem;
}
.faqS2 .faq2__p2 {
  grid-row: 1/span 1;
  grid-column: 2/span 1;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 150%;
  font-size: 1.8rem;
  color: #EE851F;
  padding-bottom: 2rem;
  padding-top: 2rem;
}
.faqS2 .faq2__p3 {
  grid-row: 2/span 1;
  grid-column: 1/span 1;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 150%;
  font-size: 1.8rem;
  color: #4D4C4C;
  padding-right: 2rem;
}
.faqS2 .faq2__p4 {
  grid-row: 2/span 1;
  grid-column: 2/span 1;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 150%;
  font-size: 1.6rem;
  color: #4D4C4C;
  padding-bottom: 2rem;
}
.faqS2 .faq2 a {
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 150%;
  font-size: 1.6rem;
  color: #EE851F;
}

@media screen and (max-width: 1060px) {
  .faqS2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .faqS2 .faq2 {
    display: grid;
    grid-template-columns: max-content 1fr;
    grid-template-rows: max-content 1fr;
    padding: 0 2rem;
  }
}
@media screen and (max-width: 896px) {
  .faqS2 {
    display: grid;
    grid-template-columns: 1fr;
  }
  .faqS2 .faq2 {
    display: grid;
    grid-template-columns: max-content 1fr;
    grid-template-rows: max-content 1fr;
    padding: 0 2rem;
  }
}
.whichServiceChartWrap {
  background-color: #F2F3F5;
  padding: 6rem 0;
  margin-bottom: 6rem;
}
.whichServiceChartWrap h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: center;
  width: fit-content;
  width: fit-content;
  max-width: 90%;
  margin: auto;
}
.whichServiceChartWrap h1:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin: auto;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}

.whichServiceChart {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 30px;
  grid-auto-rows: max-content;
  padding-top: 3rem;
  background-image: url("../img/chart-background.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}

.box1 {
  grid-column: 2/span 4;
  grid-row: 1/span 1;
  justify-self: center;
  width: fit-content;
  max-width: 100%;
  padding: 2rem;
  background-color: #2c3b58;
}
.box1 p {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #f9f9f9;
  font-size: 2.2rem;
  line-height: 160%;
  text-align: center;
}

.arrow {
  background-color: #2c3b58;
  width: 2px;
  height: 4rem;
  position: relative;
}
.arrow::after {
  position: absolute;
  bottom: -1px;
  right: -5px;
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #2c3b58;
}
.arrow--2 {
  height: 8rem;
}
.arrow--4 {
  height: 2.3rem;
}
.arrow--5 {
  height: 2.3rem;
}
.arrow--6 {
  height: 2.3rem;
}

.box1-after {
  grid-column: 2/span 4;
  grid-row: 2/span 1;
  justify-self: stretch;
  padding-bottom: 2px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.box1-after .arrow--1 {
  grid-column: 1/span 1;
  grid-row: 2/span 1;
  justify-self: start;
}
.box1-after .arrow--2 {
  grid-column: 2/span 1;
  grid-row: 1/span 2;
  justify-self: center;
}
.box1-after .arrow--3 {
  grid-column: 3/span 1;
  grid-row: 2/span 1;
  justify-self: end;
}
.box1-after .horizontal {
  grid-column: 1/span 3;
  grid-row: 1/span 1;
  align-self: end;
  z-index: 2;
  background-color: #2c3b58;
  width: 100%;
  height: 2px;
}

.mailBox {
  display: grid;
  grid-template-columns: 2rem 1fr 2rem;
  grid-template-rows: 3rem 3rem;
  padding: 1rem;
}
.mailBox p {
  grid-column: 2/span 1;
  grid-row: 1/span 2;
  align-self: center;
  z-index: 2;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 120%;
  text-align: center;
  color: #f9f9f9;
}
.mailBox .tooltip {
  grid-column: 1/span 3;
  grid-row: 1/span 1;
  text-align: end;
}
.mailBox .tooltip i {
  grid-column: 1/span 3;
  font-size: 1.9rem;
  color: #f9f9f9;
}
.mailBox .tooltip .tooltipText {
  bottom: 4.5rem;
  left: -10px;
  background-color: #EE851F;
  border-bottom-right-radius: 0px !important;
  padding: 2rem;
}
.mailBox .tooltip .tooltipText::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 100%;
  margin-left: -16px;
  border-width: 8px;
  border-style: solid;
  border-color: #EE851F #EE851F transparent transparent;
}
.mailBox--1 {
  grid-row: 3/span 1;
  grid-column: 1/span 2;
  background-color: #4CAF50;
}
.mailBox--2 {
  grid-row: 3/span 1;
  grid-column: 3/span 2;
  background-color: #A161A8;
}
.mailBox--3 {
  grid-row: 3/span 1;
  grid-column: 5/span 2;
  background-color: #56CCF2;
}

.arrow--4 {
  grid-row: 4/span 1;
  grid-column: 2/span 1;
  justify-self: start;
  margin-bottom: 2px;
}

.arrow--5 {
  grid-row: 4/span 1;
  grid-column: 3/span 2;
  justify-self: center;
  margin-bottom: 2px;
}

.arrow--6 {
  grid-row: 4/span 1;
  grid-column: 5/span 1;
  justify-self: end;
  margin-bottom: 2px;
}

.box2 {
  grid-column: 1/span 6;
  grid-row: 5/span 1;
  justify-self: center;
  width: 80%;
  max-width: 100%;
  padding: 2rem;
  background-color: #2c3b58;
}
.box2 p {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #f9f9f9;
  font-size: 2.2rem;
  line-height: 160%;
  text-align: center;
}

.arrow--7 {
  grid-row: 6/span 1;
  grid-column: 2/span 1;
  justify-self: start;
  margin-bottom: 2px;
}

.arrow--8 {
  grid-row: 6/span 1;
  grid-column: 3/span 2;
  justify-self: center;
  margin-bottom: 2px;
}

.arrow--9 {
  grid-row: 6/span 1;
  grid-column: 5/span 1;
  justify-self: end;
  margin-bottom: 2px;
}

.sBox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-height: 8rem;
  padding: 1rem;
  text-decoration: none;
  transition: all 0.5s ease;
  margin-bottom: 3rem;
  position: relative;
}
.sBox p {
  width: fit-content;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  color: #f9f9f9;
  line-height: 120%;
}
.sBox--green {
  background-color: #4CAF50;
}
.sBox--green:hover {
  background-color: #38813a;
}
.sBox--purple {
  background-color: #A161A8;
}
.sBox--purple:hover {
  background-color: #7b3883;
}
.sBox--blue {
  background-color: #56CCF2;
}
.sBox--blue:hover {
  background-color: #3787a1;
}
.sBox--or::after {
  position: absolute;
  bottom: -18px;
  content: "Or";
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: #2c3b58;
}
.sBox--1 {
  grid-row: 7/span 1;
  grid-column: 1/span 2;
  justify-self: stretch;
  align-self: stretch;
}
.sBox--2 {
  grid-row: 8/span 1;
  grid-column: 1/span 2;
  justify-self: stretch;
  align-self: stretch;
}
.sBox--3 {
  grid-row: 7/span 1;
  grid-column: 3/span 2;
  justify-self: stretch;
  align-self: stretch;
}
.sBox--4 {
  grid-row: 8/span 1;
  grid-column: 3/span 2;
  justify-self: stretch;
  align-self: stretch;
}
.sBox--5 {
  grid-row: 7/span 1;
  grid-column: 5/span 2;
  justify-self: stretch;
  align-self: stretch;
}
.sBox--6 {
  grid-row: 8/span 1;
  grid-column: 5/span 2;
  justify-self: stretch;
  align-self: stretch;
}
.sBox--7 {
  grid-row: 9/span 1;
  grid-column: 5/span 2;
  justify-self: stretch;
  align-self: stretch;
}
.sBox--8 {
  grid-row: 10/span 1;
  grid-column: 5/span 2;
  justify-self: stretch;
  align-self: stretch;
}

@media screen and (max-width: 800px) {
  .box1 {
    padding: 1rem;
  }
  .box1 p {
    font-size: 1.8rem;
  }
  .mailBox p {
    font-size: 1.4rem;
  }
  .box2 {
    padding: 1rem;
  }
  .box2 p {
    font-size: 1.8rem;
  }
  .sBox p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 500px) {
  .whichServiceChartWrap {
    display: none;
  }
}
.getInTouch {
  background-color: #2C3B58;
  display: grid;
  grid-template-columns: 1fr 10rem 1fr;
  grid-auto-rows: 10rem;
}
.getInTouch__triangle {
  grid-column: 2/span 1;
  grid-row: 1/span 1;
  display: block;
  height: 100%;
  width: 100%;
  transform: translateX(-1px);
}
.getInTouch__col1 {
  grid-column: 1/span 1;
  grid-row: 1/span 1;
  background-color: #232E44;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.getInTouch__col1 p {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  color: #f9f9f9;
  width: 90%;
  max-width: 510px;
}
.getInTouch__col2Wrap {
  grid-column: 3/span 1;
  grid-row: 1/span 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.getInTouch__col2 {
  width: 90%;
  max-width: 510px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.getInTouch__col2 a {
  margin: 1rem 0 1rem 1rem;
  padding: 1.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: #f9f9f9;
  border: 2px solid #EE851F;
  border-radius: 5px;
  background-color: #EE851F;
  transition: all 0.5s ease;
}
.getInTouch__col2 a i {
  margin-right: 1rem;
  font-weight: 3rem;
}
.getInTouch__col2 a:hover {
  border-color: #f9f9f9;
  background-color: transparent;
}

.getInTouchAfter {
  display: grid;
  grid-template-columns: 1fr 10rem 1fr;
  grid-auto-rows: max-content;
}
.getInTouchAfter .arrow-down {
  grid-column: 1/span 1;
  grid-row: 1/span 1;
  justify-self: end;
  transform: translateY(-1px);
  width: 0;
  height: 0;
  border-left: 70px solid transparent;
  border-right: 50px solid transparent;
  border-top: 50px solid #232E44;
}

.getInTouchContacts {
  padding: 5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.getInTouchContacts .vl {
  border-left: 3px solid #EE851F;
  height: 8rem;
}
.getInTouchContacts__h {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  color: #EE851F;
}
.getInTouchContacts__number {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 200%;
}
.getInTouchContacts__time {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  font-size: 1.8rem;
  color: #4D4C4C;
}

@media screen and (max-width: 1230px) {
  .getInTouch {
    background-color: #2C3B58;
    display: block;
  }
  .getInTouch__triangle {
    display: none;
  }
  .getInTouch__col1 {
    background-color: #232E44;
    padding: 5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  .getInTouch__col1 p {
    width: 90%;
    text-align: center;
    margin: auto;
  }
  .getInTouch__col2Wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  .getInTouch__col2 {
    width: 90%;
    margin: auto;
    justify-content: center;
    padding: 2rem 0;
  }
  .getInTouch__col2 a {
    margin: 1rem 1rem 1rem 1rem;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 1.8rem;
    color: #f9f9f9;
    border: 2px solid #EE851F;
    border-radius: 5px;
    background-color: #EE851F;
    transition: all 0.5s ease;
  }
  .getInTouch__col2 a i {
    margin-right: 1rem;
    font-weight: 3rem;
  }
  .getInTouch__col2 a:hover {
    border-color: #f9f9f9;
    background-color: transparent;
  }
  .getInTouchAfter {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: max-content;
  }
  .getInTouchAfter .arrow-down {
    grid-column: 1/span 1;
    grid-row: 1/span 1;
    justify-self: center;
    transform: translateY(-1px);
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 35px solid #232E44;
  }
}
@media screen and (max-width: 920px) {
  .getInTouchContacts {
    display: block;
  }
  .getInTouchContacts .vl {
    display: none;
  }
  .getInTouchContacts__col {
    width: fit-content;
    margin: auto;
  }
  .getInTouchContacts__col--2 {
    margin-top: 5rem;
  }
  .getInTouchContacts__col--3 {
    margin-top: 5rem;
  }
}
.buyService {
  width: 45rem;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center;
}
.buyService__h {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 160%;
  color: #f9f9f9;
  padding: 7rem 2rem 7rem 2rem;
}
.buyService__angle {
  height: 4rem;
  background-image: url("../img/angle1-2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}
.buyService__pricingBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
  padding: 2rem;
  background-color: rgba(238, 133, 31, 0.9);
}
.buyService__price {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 4.5rem;
  width: 100%;
  color: #f9f9f9;
  margin-bottom: 0.5rem;
}
.buyService__price span {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #f9f9f9;
}
.buyService__onlyAvailable {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #f9f9f9;
  border: 1px solid #f9f9f9;
  border-radius: 5px;
  padding: 1.4rem 4.3rem;
}
.buyService__select select {
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #f9f9f9;
  line-height: 160%;
  padding: 0.6em 1.4em 0.5em 0.8em;
  width: 20rem;
  max-width: 90%;
  box-sizing: border-box;
  margin: 0 auto;
  border: 1px solid #f9f9f9 !important;
  box-shadow: none;
  border-radius: 5px;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: url("../img/downArrow2.png");
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 1.2rem auto, 100%;
}
.buyService__select select:focus {
  cursor: pointer;
  border: 0, 6px solid #f9f9f9;
}
.buyService__select option {
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #4D4C4C;
}
.buyService__buyBtn {
  display: block;
  width: fit-content;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 100%;
  font-size: 1.8rem;
  color: #f9f9f9;
  background-color: #2c3b58;
  padding: 1rem 2.2rem;
  border: 2px solid #2c3b58;
  border-radius: 5px;
  transition: all 0.5s ease;
  padding: 1.4rem 5rem;
}
.buyService__buyBtn:hover {
  cursor: pointer;
  border-color: #2c3b58;
  background-color: transparent;
  color: #2c3b58;
}
.buyService__buyBtn:hover {
  cursor: pointer;
  border-color: #f9f9f9;
  background-color: transparent;
  color: #f9f9f9;
}
.buyService__postal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-color: #2c3b58;
  padding: 1rem 2rem;
}
.buyService__postal p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 120%;
  color: #f9f9f9;
}
.buyService__postal span {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
}
.buyService__postal .tooltip {
  border: 1px solid #f9f9f9;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
}
.buyService--regOffAdd {
  background: linear-gradient(0deg, rgba(44, 59, 88, 0.2), rgba(44, 59, 88, 0.2)), url("../img/services-banners/ROA.png");
}
.buyService--directorServAddress {
  background: linear-gradient(0deg, rgba(44, 59, 88, 0.2), rgba(44, 59, 88, 0.2)), url("../img/director-service-add.png");
}
.buyService--virtBussAdd {
  background: linear-gradient(0deg, rgba(44, 59, 88, 0.2), rgba(44, 59, 88, 0.2)), url("../img/services-banners/VBA.png");
}
.buyService--virtBussPlus {
  background: linear-gradient(0deg, rgba(44, 59, 88, 0.4), rgba(44, 59, 88, 0.4)), url("../img/services-banners/VBP.png");
}
.buyService--TAS {
  background: linear-gradient(0deg, rgba(44, 59, 88, 0.2), rgba(44, 59, 88, 0.2)), url("../img/services-banners/TAS.png");
}
.buyService--VBA-TAS {
  background: linear-gradient(0deg, rgba(44, 59, 88, 0.4), rgba(44, 59, 88, 0.4)), url("../img/services-banners/VBA-TAS.png");
}
.buyService--VBP-TAS {
  background: linear-gradient(0deg, rgba(44, 59, 88, 0.4), rgba(44, 59, 88, 0.4)), url("../img/services-banners/VBP-TAS.png");
}
.buyService--VBP-web {
  background: linear-gradient(0deg, rgba(44, 59, 88, 0.4), rgba(44, 59, 88, 0.4)), url("../img/services-banners/VBP-Web.png");
}
.buyService--VBP-legal {
  background: linear-gradient(0deg, rgba(44, 59, 88, 0.4), rgba(44, 59, 88, 0.4)), url("../img/services-banners/VBP-Legal.png");
}

@media screen and (max-width: 500px) {
  .buyService {
    width: 100% !important;
  }
  .buyService__pricingBox {
    display: block;
  }
  .buyService__onlyAvailable {
    width: 100%;
    text-align: center;
  }
  .buyService__select select {
    width: 100%;
    max-width: 100%;
  }
  .buyService__buyBtn {
    margin-top: 2rem;
    width: 100%;
    text-align: center;
  }
  .buyService__postal {
    display: block;
    padding: 2rem;
  }
  .buyService__postal p {
    text-align: center;
  }
  .buyService__postal .tooltip {
    margin-top: 2rem;
    text-align: center;
  }
}
.timelineCarousel {
  position: relative;
  height: 30rem;
}
.timelineCarousel__track-container {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.timelineCarousel__track {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  transition: transform 300ms ease-in;
}
.timelineCarousel__slide {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  padding-top: 6rem;
}
.timelineCarousel__slide h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 180%;
  text-align: center;
  color: #4D4C4C;
  margin-bottom: 1rem;
}
.timelineCarousel__slide p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 180%;
  text-align: center;
  color: #4D4C4C;
  width: 90%;
  max-width: 600px;
  margin: auto;
}
.timelineCarousel__slide p:not(:last-child) {
  margin-bottom: 2rem;
}
.timelineCarousel__controls {
  display: grid;
  grid-template-rows: max-content;
  grid-template-columns: max-content 1fr max-content;
  height: fit-content;
}
.timelineCarousel__line {
  grid-column: 2/span 1;
  grid-row: 1/span 1;
  padding-bottom: 0.7rem;
  border-top: 2px dashed #B4B4B4;
  align-self: end;
}
.timelineCarousel__button {
  font-size: 2rem;
  color: #4D4C4C;
  transition: all 0.5s ease;
}
.timelineCarousel__button--prev {
  align-self: end;
  grid-column: 1/span 1;
  grid-row: 1/span 1;
  padding-right: 1rem;
}
.timelineCarousel__button--next {
  align-self: end;
  grid-column: 3/span 1;
  grid-row: 1/span 1;
  padding-left: 1rem;
}
.timelineCarousel__button:hover {
  cursor: pointer;
  color: #EE851F;
}
.timelineCarousel__nav {
  padding: 0 5rem;
  grid-column: 2/span 1;
  grid-row: 1/span 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.timelineCarousel__indicator {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.5s ease;
  z-index: 3;
}
.timelineCarousel__indicator span {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 100%;
  font-size: 2.2rem;
  color: #4D4C4C;
  padding: 0;
  margin: 0;
}
.timelineCarousel__indicator i {
  font-size: 1.5rem;
  margin: 0;
  margin-top: 3rem;
  padding: 0;
  color: #4D4C4C;
}
.timelineCarousel__indicator:hover {
  cursor: pointer;
  color: #EE851F;
}
.timelineCarousel .timelineCarouselCurrentIndicator i {
  color: #EE851F;
}
.timelineCarousel .is-hidden {
  visibility: hidden;
}

@media screen and (max-width: 1050px) {
  .timelineCarousel__nav {
    padding: 0 1rem;
  }
  .timelineCarousel__indicator {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .timelineCarousel__indicator span {
    position: absolute;
    top: -20px;
    transform: rotate(310deg);
    padding: 0;
    margin: 0;
  }
  .timelineCarousel__indicator i {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 700px) {
  .timelineCarousel__indicator {
    align-items: center;
  }
  .timelineCarousel__indicator span {
    transform: rotate(270deg);
    padding-left: 1rem;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 450px) {
  .timelineCarousel__line {
    padding-top: 0.4rem;
  }
  .timelineCarousel__indicator span {
    display: none;
  }
  .timelineCarousel__indicator i {
    align-self: center;
    margin-top: 0;
  }
}
.thumbnailCarouselWrap {
  position: relative;
  padding-top: 10rem;
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  grid-template-rows: 1fr;
}
.thumbnailCarouselWrap .thumbnailCarouselArrow {
  position: relative;
  font-size: 3rem;
  color: #4D4C4C;
  align-self: center;
  transition: all 0.5s ease;
}
.thumbnailCarouselWrap .thumbnailCarouselArrow:hover {
  cursor: pointer;
  color: #EE851F;
}
.thumbnailCarouselWrap .thumbnailCarouselArrow--left {
  grid-column: 1/span 1;
  grid-row: 1/span 1;
  margin-right: 2rem;
}
.thumbnailCarouselWrap .thumbnailCarouselArrow--right {
  grid-column: 3/span 1;
  grid-row: 1/span 1;
  margin-left: 2rem;
}
.thumbnailCarouselWrap .thumbnailCarouselArrow--hide {
  visibility: hidden;
}
.thumbnailCarouselWrap .thumbnailCarousel {
  position: relative;
  overflow: hidden;
  border: 2px solid red;
}
.thumbnailCarouselWrap .thumbnailCarouselInner {
  position: relative;
  grid-column: 2/span 1;
  grid-row: 1/span 1;
  transition: transform 250ms ease-in;
}
.thumbnailCarouselWrap .thumbnail {
  position: absolute;
  min-width: 29rem;
  max-width: 29rem;
  display: grid;
  grid-template-columns: 1fr max-content;
  grid-template-rows: 25rem max-content;
}
.thumbnailCarouselWrap .thumbnail__image {
  grid-row: 1/span 1;
  grid-column: 1/span 1;
}
.thumbnailCarouselWrap .thumbnail__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumbnailCarouselWrap .thumbnail__info {
  grid-row: 2/span 1;
  grid-column: 1/span 1;
  background-color: rgba(44, 59, 88, 0.95);
  padding: 1rem 1rem;
}
.thumbnailCarouselWrap .thumbnail__info p {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  color: #f9f9f9;
  text-align: center;
  line-height: 160%;
}
.thumbnailCarouselWrap .thumbnail__info span {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #f9f9f9;
  text-align: center;
}
.thumbnailCarouselWrap .thumbnail__side {
  grid-row: 1/span 2;
  grid-column: 2/span 1;
  padding-right: 4rem;
  background-color: palegoldenrod;
}
.thumbnailCarouselWrap .thumbnail__side--last {
  padding-right: 0;
}
.thumbnailCarouselWrap .thumbnail--last {
  min-width: 25rem;
  max-width: 25rem;
}

.officesMap {
  width: 50%;
  display: grid;
  grid-template-columns: 14fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 32fr;
  grid-template-rows: 12fr 1fr 1fr 8fr 1fr 3fr 1fr 1fr 1fr 1fr 6fr;
}
.officesMap__map1 {
  display: block;
  width: 100% !important;
  grid-column: 1/span 13;
  grid-row: 1/span 11;
  justify-self: stretch;
  align-self: stretch;
}
.officesMap__map2 {
  width: 100% !important;
  grid-column: 1/span 12;
  grid-row: 1/span 11;
  justify-self: stretch;
  align-self: stretch;
  display: none;
}
.officesMap__pin {
  position: relative;
}
.officesMap__pin img {
  display: block;
  position: absolute !important;
  cursor: pointer;
  object-fit: contain;
}
.officesMap__pin:hover {
  cursor: pointer;
}
.officesMap__pin:hover p {
  display: block;
  animation: slideDown 0.5s;
}
@keyframes slideDown {
  0% {
    transform: translateY(-5px);
    opacity: 0.7;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.officesMap__pin--cardif {
  grid-column: 2/span 1;
  grid-row: 9/span 2;
}
.officesMap__pin--cardif img {
  width: 100%;
  transform: translateY(70%);
}
.officesMap__pin--london1 {
  grid-column: 9/span 1;
  grid-row: 10/span 1;
}
.officesMap__pin--london1 img {
  width: 100%;
  transform: translateY(10%);
}
.officesMap__pin--london2 {
  grid-column: 8/span 1;
  grid-row: 10/span 1;
}
.officesMap__pin--london2 img {
  width: 100%;
  transform: translateY(-10%);
}
.officesMap__pin--london3 {
  grid-column: 8/span 2;
  grid-row: 9/span 1;
}
.officesMap__pin--london3 img {
  width: 50%;
  margin: 0 auto;
  transform: translate(60%, 0%);
}
.officesMap__pin--ipswich {
  grid-column: 11/span 1;
  grid-row: 7/span 2;
}
.officesMap__pin--ipswich img {
  width: 100%;
  transform: translateY(70%);
}
.officesMap__pin--cambridge {
  grid-column: 8/span 2;
  grid-row: 7/span 1;
}
.officesMap__pin--cambridge img {
  width: 50%;
  transform: translate(50%, 20%);
}
.officesMap__pin--manchester {
  grid-column: 3/span 2;
  grid-row: 5/span 1;
}
.officesMap__pin--manchester img {
  width: 50%;
  transform: translate(50%, 10%);
}
.officesMap__pin--edinburgh1 {
  grid-column: 3/span 1;
  grid-row: 3/span 1;
}
.officesMap__pin--edinburgh1 img {
  width: 100%;
}
.officesMap__pin--edinburgh2 {
  grid-column: 2/span 1;
  grid-row: 2/span 2;
}
.officesMap__pin--edinburgh2 img {
  width: 100%;
  transform: translateY(50%);
}
.officesMap__address {
  z-index: 100 !important;
  position: absolute;
  display: none;
  width: 25rem;
  background-color: #2c3b58;
  padding: 2rem;
  border-radius: 6px;
  border-bottom-left-radius: 0px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  color: #f9f9f9;
  text-align: center;
  transition: ease 1s;
  display: none;
}
.officesMap__address::after {
  content: "";
  position: absolute;
  top: 99.9%;
  left: 0;
  border: 6px solid transparent;
  border-left-color: #2c3b58;
  border-top-color: #2c3b58;
}
.officesMap__address--ed2 {
  bottom: 125%;
  left: 50%;
}
.officesMap__address--ed1 {
  bottom: 175%;
  left: 50%;
}
.officesMap__address--man {
  bottom: 175%;
  left: 50%;
}
.officesMap__address--cam {
  bottom: 175%;
  left: 50%;
}
.officesMap__address--ipsw {
  bottom: 115%;
  left: 50%;
}
.officesMap__address--lnd3 {
  bottom: 175%;
  left: 50%;
}
.officesMap__address--lnd2 {
  bottom: 200%;
  left: 50%;
}
.officesMap__address--lnd1 {
  bottom: 175%;
  left: 50%;
}
.officesMap__address--cardif {
  bottom: 115%;
  left: 50%;
}

@media screen and (max-width: 500px) {
  .officesMap {
    display: grid;
    grid-template-columns: 14fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 12fr 1fr 1fr 8fr 1fr 3fr 1fr 1fr 1fr 1fr 6fr;
  }
  .officesMap__map1 {
    display: none;
  }
  .officesMap__map2 {
    width: 100% !important;
    display: block;
  }
  .officesMap__address {
    width: 18rem;
    padding: 1rem;
    border-bottom-left-radius: 6px;
  }
  .officesMap__address::after {
    content: "";
    position: absolute;
    top: 99.9%;
    left: 50%;
    margin-left: -10px;
    border: 10px solid transparent;
    border-top-color: #2c3b58;
  }
  .officesMap__address--ed2 {
    bottom: calc(75% + 20px);
    left: -80px;
  }
  .officesMap__address--ed1 {
    bottom: calc(100% + 20px);
    left: -80px;
  }
  .officesMap__address--man {
    bottom: calc(100% + 20px);
    left: -70px;
  }
  .officesMap__address--cam {
    bottom: calc(100% + 20px);
    left: -120px;
  }
  .officesMap__address--cam::after {
    left: 75%;
  }
  .officesMap__address--ipsw {
    bottom: calc(75% + 20px);
    left: -160px;
  }
  .officesMap__address--ipsw::after {
    left: 100%;
    margin-left: -30px;
  }
  .officesMap__address--lnd3 {
    bottom: calc(100% + 20px);
    left: -120px;
  }
  .officesMap__address--lnd3::after {
    left: 75%;
  }
  .officesMap__address--lnd2 {
    bottom: calc(100% + 20px);
    left: -130px;
  }
  .officesMap__address--lnd2::after {
    left: 75%;
  }
  .officesMap__address--lnd1 {
    bottom: calc(100% + 20px);
    left: -130px;
  }
  .officesMap__address--lnd1::after {
    left: 75%;
  }
  .officesMap__address--cardif {
    bottom: calc(75% + 20px);
    left: -80px;
  }
}
.contactSectionWrap {
  background-color: #ECECEC;
  padding: 6rem 0;
}

.contactSection {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contactSection .contactSectionText {
  width: 55%;
}
.contactSection .contactSectionText__h {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: left;
  width: fit-content;
}
.contactSection .contactSectionText__h:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}
.contactSection .contactSectionText__p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  margin-bottom: 3rem;
}
.contactSection .contactSectionText__p--2 {
  margin-bottom: 0;
}
.contactSection .contactSectionForm {
  width: 40%;
  padding: 3rem 3rem 1rem;
  background: #FFFFFF;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}
.contactSection .contactSectionForm h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.2rem;
  color: #4D4C4C;
  width: fit-content;
  margin: auto;
  margin-bottom: 1rem;
}
.contactSection .contactSectionForm p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  font-size: 1.4rem;
  text-align: center;
  width: 90%;
  margin: auto;
  margin-bottom: 3rem;
}

@media screen and (max-width: 900px) {
  .contactSection .contactSectionText {
    width: 49%;
  }
  .contactSection .contactSectionForm {
    width: 49%;
  }
}
@media screen and (max-width: 700px) {
  .contactSection {
    display: block;
  }
  .contactSection .contactSectionText {
    width: 100%;
    margin-bottom: 3rem;
  }
  .contactSection .contactSectionForm {
    width: 100%;
  }
}
/*-----------------
    CONTAINERS
-------------------*/
.row90 {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}

.boxes1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  column-gap: 0;
  row-gap: 0;
  justify-items: stretch;
  align-items: stretch;
}
.boxes1 .box {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 20rem 27rem 4rem 1fr;
  column-gap: 0;
  row-gap: 0;
  justify-items: stretch;
  align-items: stretch;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.boxes1 .box__mostPop {
  grid-column: 1/span 1;
  grid-row: 1/span 1;
}
.boxes1 .box__mostPop img {
  display: block;
  height: 19rem;
  margin-left: auto;
}
.boxes1 .box__top {
  grid-column: 1/span 1;
  grid-row: 2/span 1;
}
.boxes1 .box__top img {
  display: block;
  width: 22rem;
  padding: 0rem 2rem 5rem 2rem;
}
.boxes1 .box__angle {
  grid-column: 1/span 1;
  grid-row: 3/span 1;
  background-image: url("../img/angle1-2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}
.boxes1 .box__angle--blue {
  background-image: url("../img/angle1-2-blue.png");
}
.boxes1 .box__more {
  grid-column: 1/span 1;
  grid-row: 4/span 1;
  padding: 2rem 2rem 2rem;
  background-color: rgba(238, 133, 31, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.boxes1 .box__more a {
  display: block;
  width: fit-content;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #f9f9f9;
  padding: 1rem 2rem;
  border: 2px solid #f9f9f9;
  border-radius: 5px;
  transition: all 0.5s ease;
  font-size: 2rem;
  margin-left: 2rem;
}
.boxes1 .box__more a:hover {
  border-color: #2c3b58;
  background-color: #2c3b58;
}
.boxes1 .box__more--blue {
  background-color: rgba(44, 52, 88, 0.9);
}
.boxes1 .box__moreInner {
  align-self: flex-start !important;
  max-width: 40rem;
}
.boxes1 .box__moreInner h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 140%;
  color: #f9f9f9;
}
.boxes1 .box__moreInner p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 140%;
  color: #f9f9f9;
  margin-top: 1rem;
}
.boxes1 .box__moreInner ul {
  margin-left: 1.5rem;
  margin-top: 1rem;
}
.boxes1 .box__moreInner ul li {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 147%;
  color: #f9f9f9;
}
.boxes1 .box__moreInner--headingOnly {
  align-self: center !important;
}
.boxes1 .box--regOffAddPlusDirector {
  background-image: url("../img/services-banners/ROA-DSA.png");
}
.boxes1 .box--VirtBussinesAddressTelAnsw {
  background-image: url("../img/services-banners/VBA-TAS.png");
}
.boxes1 .box--VirtBussinesPlusTelAnsw {
  background-image: url("../img/services-banners/VBP-TAS.png");
}
.boxes1 .box--VirtBussinesPlusLegal {
  background-image: url("../img/services-banners/VBP-Legal.png");
}
.boxes1 .box--meetingRooms {
  background-image: url("../img/services-banners/meeting-rooms.png");
}
.boxes1 .box--virtBussinesPlus {
  background-image: url("../img/services-banners/VBP.png");
}
.boxes1 .box--webHosting {
  background-image: url("../img/services-banners/VBP-Web.png");
}
.boxes1 .box--VirtBussinesAddress {
  background-image: url("../img/services-banners/VBA.png");
}
.boxes1 .box--companyFormation {
  background-image: url("../img/services-banners/CF.png");
}
.boxes1 .box--TAS {
  background-image: url("../img/services-banners/TAS.png");
}
.boxes1 .box--CF {
  background-image: url("../img/services-banners/CF.png");
}

@media screen and (max-width: 1870px) {
  .boxes1 .box__more {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }
  .boxes1 .box__more a {
    display: block;
    width: fit-content;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    color: #f9f9f9;
    padding: 1rem 2rem;
    border: 2px solid #f9f9f9;
    border-radius: 5px;
    transition: all 0.5s ease;
    font-size: 2rem;
    margin-left: 0rem;
    margin: 0 auto;
    margin-top: 2rem;
  }
  .boxes1 .box__more a:hover {
    border-color: #2c3b58;
    background-color: #2c3b58;
  }
  .boxes1 .box__moreInner {
    width: 100%;
    max-width: 100%;
  }
  .boxes1 .box__moreInner h2 {
    text-align: center;
  }
  .boxes1 .box__moreInner p {
    text-align: center;
  }
  .boxes1 .box__moreInner ul {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1080px) {
  .boxes1 {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }
  .boxes1 .box {
    grid-template-rows: 11rem 25rem 4rem 1fr;
  }
  .boxes1 .box__mostPop {
    grid-column: 1/span 1;
    grid-row: 1/span 1;
  }
  .boxes1 .box__mostPop img {
    display: block;
    height: 10rem;
    margin-left: auto;
  }
  .boxes1 .box__top img {
    display: block;
    width: 20rem;
  }
  .boxes1 .box__angle {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
  }
}
.boxes2 {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  column-gap: 2rem;
  row-gap: 0;
  justify-items: stretch;
  align-items: stretch;
}
.boxes2 .box {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 20rem 27rem 4rem 1fr;
  column-gap: 0;
  row-gap: 0;
  justify-items: stretch;
  align-items: stretch;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.boxes2 .box__mostPop {
  grid-column: 1/span 1;
  grid-row: 1/span 1;
}
.boxes2 .box__mostPop img {
  display: block;
  height: 19rem;
  margin-left: auto;
}
.boxes2 .box__top {
  grid-column: 1/span 1;
  grid-row: 2/span 1;
}
.boxes2 .box__top img {
  display: block;
  width: 22rem;
  padding: 0rem 2rem 5rem 2rem;
}
.boxes2 .box__angle {
  grid-column: 1/span 1;
  grid-row: 3/span 1;
  background-image: url("../img/angle1-2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}
.boxes2 .box__more {
  grid-column: 1/span 1;
  grid-row: 4/span 1;
  padding: 2rem 2rem 2rem;
  background-color: rgba(238, 133, 31, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.boxes2 .box__more a {
  display: block;
  width: fit-content;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #f9f9f9;
  padding: 1rem 2rem;
  border: 2px solid #f9f9f9;
  border-radius: 5px;
  transition: all 0.5s ease;
  font-size: 2rem;
  margin-left: 1rem;
}
.boxes2 .box__more a:hover {
  border-color: #2c3b58;
  background-color: #2c3b58;
}
.boxes2 .box__more a:hover {
  color: #f9f9f9;
}
.boxes2 .box__moreInner {
  padding: 0 !important;
  align-self: flex-start !important;
  max-width: 38rem;
}
.boxes2 .box__moreInner h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 140%;
  color: #f9f9f9;
  text-align: left;
}
.boxes2 .box__moreInner p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 140%;
  color: #f9f9f9;
  margin-top: 1rem;
  text-align: left;
  margin-bottom: 0;
}
.boxes2 .box__moreInner ul {
  margin-left: 1.5rem;
  margin-top: 1rem;
}
.boxes2 .box__moreInner ul li {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 147%;
  color: #f9f9f9;
}
.boxes2 .box__moreInner--headingOnly {
  align-self: center !important;
  justify-self: flex-start !important;
}
.boxes2 .box--regOffAddPlusDirector {
  background-image: url("../img/services-banners/ROA-DSA.png");
}
.boxes2 .box--VirtBussinesAddressTelAnsw {
  background-image: url("../img/teleAnsw.png");
}
.boxes2 .box--VirtBussinesPlusTelAnsw {
  background-image: url("../img/pic3.png");
}
.boxes2 .box--meetingRooms {
  background-image: url("../img/meetingRoom.png");
}
.boxes2 .box--virtBussinesPlus {
  background-image: url("../img/services-banners/VBP.png");
}
.boxes2 .box--webHosting {
  background-image: url("../img/hosting.png");
}
.boxes2 .box--VirtBussinesAddress {
  background-image: url("../img/london1.png");
}

@media screen and (max-width: 1320px) {
  .boxes2 .box__more {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
  }
  .boxes2 .box__more a {
    display: block;
    width: fit-content;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    color: #f9f9f9;
    padding: 1rem 2rem;
    border: 2px solid #f9f9f9;
    border-radius: 5px;
    transition: all 0.5s ease;
    font-size: 2rem;
    margin-left: 0rem;
    margin-top: 1rem;
  }
  .boxes2 .box__more a:hover {
    border-color: #2c3b58;
    background-color: #2c3b58;
  }
  .boxes2 .box__moreInner {
    padding: 0 !important;
    align-self: center !important;
    max-width: 100%;
  }
  .boxes2 .box__moreInner h2 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 140%;
    color: #f9f9f9;
    text-align: center;
  }
  .boxes2 .box__moreInner p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 140%;
    color: #f9f9f9;
    margin-top: 1rem;
    text-align: center;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1024px) {
  .boxes2 {
    width: 100%;
    column-gap: 0rem;
  }
}
@media screen and (max-width: 900px) {
  .boxes2 {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    column-gap: 0;
    row-gap: 2rem;
  }
}
/*------------------
    ELEMENTS
------------------*/
#servicesDropDownBtn {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
#servicesDropDownBtn:hover {
  cursor: pointer;
}

.dropDown1 {
  z-index: 10;
  position: absolute;
  right: 0;
  margin-top: 2.5rem;
  width: 1200px;
  max-width: 100%;
  background: #2c3b58;
  border-top: 2px solid #EE851F;
  padding: 3rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between !important;
}
.dropDown1__column {
  list-style: none;
  margin: 0 4rem 0 0;
  width: fit-content;
}
.dropDown1__column li {
  margin-bottom: 2.3rem;
}
.dropDown1__column a {
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem !important;
  color: #f9f9f9;
  transition: all 0.5s ease;
}
.dropDown1__column a:hover {
  color: #EE851F;
}
.dropDown1__column .activeLink a {
  color: rgb(252, 217, 181);
}
.dropDown1__column--last {
  margin: 0 0 0 0;
}
.dropDown1__column--bottom {
  margin-top: 5rem;
  width: 100%;
}
.dropDown1__heading {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.8rem !important;
  color: #EE851F;
  margin-bottom: 4.5rem !important;
}

.hideDropDown {
  display: none;
}

.showDropDown1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-items: flex-start;
  animation: slideDown 1s;
}
@keyframes slideDown {
  0% {
    transform: translateY(-10px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media screen and (max-width: 1400px) {
  .dropDown1 {
    position: relative;
    width: 100%;
    border: none;
    flex-direction: column;
    margin-top: 0;
    padding: 0 0 3rem 0;
  }
  .dropDown1__column {
    width: fit-content;
    margin: 0 auto;
    text-align: center;
  }
  .dropDown1__column li {
    margin-bottom: 1.5rem;
  }
  .dropDown1__column a {
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 2rem !important;
    color: #f9f9f9;
    transition: all 0.5s ease;
  }
  .dropDown1__column a:hover {
    color: #EE851F;
  }
  .dropDown1__heading {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 2rem !important;
    color: #EE851F;
    margin-bottom: 1rem !important;
    margin-top: 3rem;
  }
  .dropDown1__bottom {
    border-top: none;
    padding: 1rem 0 0 1rem;
    margin-top: 0rem;
  }
  .dropDown1__bottom li {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1.8rem !important;
    color: #EE851F;
  }
  .dropDown1__bottom span {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1.8rem !important;
    color: #f9f9f9;
    margin-left: 1rem;
  }
}
.DropDownMenu {
  position: relative;
  width: 30rem;
  margin: auto;
  margin-top: 3rem;
}
.DropDownMenu__btn {
  width: 30rem;
  margin: auto;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 100%;
  color: #f9f9f9;
  text-align: center;
  padding: 1.5rem 2rem;
  background-color: #EE851F;
  border-radius: 6px;
}
.DropDownMenu__btn i {
  font-size: 2.1rem;
  margin-left: 2rem;
}
.DropDownMenu__btn:hover {
  cursor: pointer;
}
.DropDownMenu__dropDown {
  z-index: 10;
  position: absolute;
  width: 30rem;
  margin: 0.5rem auto;
  padding: 1rem 0;
  list-style: none;
  background-color: #f9f9f9;
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}
.DropDownMenu__dropDown li {
  padding: 2rem 1rem;
  transition: all 0.5s ease;
}
.DropDownMenu__dropDown li a {
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: #4D4C4C;
}
.DropDownMenu__dropDown li:hover {
  background-color: #EFEFEF;
  cursor: pointer;
}
.DropDownMenu__dropDown li:hover a {
  color: #EE851F;
}

.DropDownMenuOpen {
  display: block;
  animation: slideDown 1s;
}
@keyframes slideDown {
  0% {
    transform: translateY(-10px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.DropDownMenuClose {
  display: none;
}

.modalContainer {
  z-index: 20000;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  min-width: 100vw;
  min-height: 100vh;
  max-height: fit-content;
  overflow: scroll;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(44, 59, 88, 0.4);
  transition: all 2s ease-in 1s;
}

.modal {
  background-color: white;
  padding: 3rem;
  border-radius: 6px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.4);
  margin: 2rem;
}
.modal__head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.modal__head h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #2c3b58;
  font-size: 2rem;
  margin-bottom: 5rem;
  line-height: 160%;
}
.modal__head i {
  color: #EE851F;
  font-size: 2rem;
  transition: all 0.5s ease;
  margin-left: 5rem;
}
.modal__head i:hover {
  color: #2c3b58;
  cursor: pointer;
}
.modal__head2 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.modal__head2 i {
  color: #EE851F;
  font-size: 2rem;
  transition: all 0.5s ease;
  margin-bottom: 3rem;
}
.modal__head2 i:hover {
  color: #2c3b58;
  cursor: pointer;
}
.modal__head2 h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #2c3b58;
  font-size: 2rem;
  width: 100%;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 160%;
}

.closeModal {
  display: none;
}

.openModal {
  display: flex;
}
.openModal .modal {
  animation: slideDown1000 1.5s;
}
@keyframes slideDown1000 {
  0% {
    transform: translateY(-1000px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.logInModal {
  width: 100%;
  max-width: 40rem;
}
.logInModal .forgottenPassBtn {
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #EE851F;
  font-size: 1.6rem;
  transition: all 0.5s ease;
}
.logInModal .forgottenPassBtn:hover {
  color: #2c3b58;
  cursor: pointer;
}
.logInModal .logInSubmit {
  width: 100%;
}

.forgottenPassModal .backToLogInBtn {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #2c3b58;
  font-size: 1.4rem;
  transition: all 0.5s ease;
}
.forgottenPassModal .backToLogInBtn:hover {
  color: #EE851F;
  cursor: pointer;
}
.forgottenPassModal .backToLogInBtn i {
  color: #EE851F;
  font-size: 1.6rem;
  margin-right: 1rem;
}

.discountModal {
  width: 100%;
  max-width: 70rem;
}
.discountModal input {
  width: 100%;
  max-width: 50rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}
.discountModal button {
  display: block;
  width: fit-content;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 100%;
  font-size: 1.8rem;
  color: #f9f9f9;
  background-color: #EE851F;
  padding: 1rem 2.2rem;
  border: 2px solid #EE851F;
  border-radius: 5px;
  transition: all 1s ease;
  margin: 0 auto 3rem auto;
}
.discountModal button:hover {
  cursor: pointer;
  border-color: #2c3b58;
  background-color: #2c3b58;
  color: #f9f9f9;
}
.discountModal p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  text-align: center;
  margin-bottom: 3rem;
}
.discountModal__noThanks {
  width: fit-content;
  margin: auto;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  color: #EE851F;
  transition: all 0.5s ease;
  text-decoration: underline;
}
.discountModal__noThanks:hover {
  color: #2c3b58;
  cursor: pointer;
}

.freeCompanyFModal {
  width: 100%;
  max-width: 70rem;
}
.freeCompanyFModal p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  text-align: center;
  margin-bottom: 3rem;
}
.freeCompanyFModal__btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 43rem;
  margin: 5rem auto 0;
}
.freeCompanyFModal__btn {
  display: block;
  width: 20rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  justify-content: center;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #f9f9f9;
  font-size: 2rem;
  padding: 1rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.5s ease;
}
.freeCompanyFModal__btn i {
  font-size: 1.9rem;
  margin-right: 2rem;
}
.freeCompanyFModal__btn--no {
  background-color: #F44336;
  border: 2px solid #F44336;
}
.freeCompanyFModal__btn--yes {
  background-color: #EE851F;
  border: 2px solid #EE851F;
}
.freeCompanyFModal__btn:hover {
  cursor: pointer;
  border-color: #2c3b58;
  background-color: #2c3b58;
  color: #f9f9f9;
}

.bookMeetingRoomModal .modal {
  max-width: 62rem;
}
.bookMeetingRoomModal__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  margin-bottom: 3rem;
}
.bookMeetingRoomModal__head h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #2c3b58;
  font-size: 3rem;
}
.bookMeetingRoomModal__head i {
  color: #EE851F;
  font-size: 2rem;
  transition: all 0.5s ease;
  margin-left: 1rem;
}
.bookMeetingRoomModal__head i:hover {
  color: #2c3b58;
  cursor: pointer;
}
.bookMeetingRoomModal p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  margin-bottom: 3rem;
}

.meetingRoomMapModal__close {
  width: fit-content;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.meetingRoomMapModal__close p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  color: #2c3b58;
  transition: all ease-in 0.5s;
}
.meetingRoomMapModal__close i {
  color: #EE851F;
  font-size: 2rem;
  margin-left: 2rem;
}
.meetingRoomMapModal__close:hover {
  cursor: pointer;
}
.meetingRoomMapModal__close:hover p {
  color: #EE851F;
}
.meetingRoomMapModal__h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: #EE851F;
  text-align: center;
  width: fit-content;
  margin: auto;
  margin-bottom: 4rem;
}
.meetingRoomMapModal__p1 {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  text-align: center;
  max-width: 45rem;
  margin: auto;
  margin-bottom: 4rem;
}
.meetingRoomMapModal__p2 {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  text-align: center;
  color: #EE851F;
  margin: auto;
  margin-bottom: 4rem;
}
.meetingRoomMapModal__map {
  position: initial;
  text-align: right;
  height: 40rem;
  width: 80rem;
  max-width: 100%;
}
.meetingRoomMapModal__map .gmap_canvas {
  overflow: hidden;
  background: none !important;
  height: 400px;
  width: 100%;
}

.locationMapModal {
  width: 80rem;
  max-width: 100%;
}
.locationMapModal__p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  text-align: center;
  color: #EE851F;
  margin: auto;
  margin-bottom: 4rem;
}
.locationMapModal__map {
  position: initial;
  text-align: right;
  height: 40rem;
}
.locationMapModal__map .gmap_canvas {
  overflow: hidden;
  background: none !important;
  height: 400px;
  width: 100%;
}

.myForms__input {
  width: 100%;
  margin-bottom: 2rem;
  padding: 1rem;
  border: 1px solid #F5F5F5;
  border-radius: 5px;
  background-color: #F5F5F5;
  outline: none;
  color: #4D4C4C;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
}
.myForms__input:focus {
  border: 1px solid #EE851F;
}
.myForms__textarea {
  width: 100%;
  height: 15rem;
  margin-bottom: 2rem;
  padding: 1rem;
  border: 1px solid #F5F5F5;
  border-radius: 5px;
  background-color: #F5F5F5;
  outline: none;
  color: #4D4C4C;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  resize: none;
  overflow: scroll;
}
.myForms__textarea:focus {
  border: 1px solid #EE851F;
}
.myForms__submit {
  display: block;
  margin: auto;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 1rem 1rem !important;
  width: fit-content;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #f9f9f9;
  border-radius: 0.4rem;
  border: 2px solid #EE851F;
  background-color: #EE851F;
  transition: all 1s ease;
}
.myForms__submit:hover {
  background-color: transparent;
  color: #EE851F;
  border: 2px solid #EE851F;
  cursor: pointer;
}
.myForms__submit--1 {
  width: 100%;
}
.myForms__submit--2 {
  margin: 0 0 0 0;
}
.myForms__checkbox {
  display: flex;
  align-items: center;
}
.myForms__checkbox input {
  margin-right: 0.5rem;
  font-size: 4rem;
}
.myForms__checkbox label {
  color: #4D4C4C;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
}
.myForms__checkbox a {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #EE851F;
  text-decoration: none;
  transition: all 1s ease;
}
.myForms__checkbox a:hover {
  color: #2c3b58;
}
.myForms__select {
  display: inline-block;
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #b1b1b1;
  line-height: 160%;
  padding: 0.6em 1.4em 0.5em 0.8em;
  width: 26rem;
  max-width: 90%;
  box-sizing: border-box;
  margin: 0 auto;
  border: 1px solid #F5F5F5;
  box-shadow: none;
  border-radius: 5px;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #F5F5F5;
  background-image: url("../img/angle-down-solid.svg"), linear-gradient(to bottom, #F5F5F5 100%, #F5F5F5 100%);
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 1.2rem auto, 100%;
}
.myForms__select:focus {
  border: 1px solid #EE851F;
}
.myForms__select2 {
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #b1b1b1;
  line-height: 160%;
  padding: 0.6em 1.4em 0.5em 0.8em;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 2rem;
  border: 1px solid #F5F5F5;
  box-shadow: none;
  border-radius: 5px;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #F5F5F5;
  background-image: url("../img/angle-down-solid.svg"), linear-gradient(to bottom, #F5F5F5 100%, #F5F5F5 100%);
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 1.2rem auto, 100%;
}
.myForms__select2:focus {
  border: 1px solid #EE851F;
}
.myForms__option2 {
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 160%;
}

.input1 {
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
  border: 1px solid #F5F5F5;
  border-radius: 5px;
  background-color: #F5F5F5;
  outline: none;
  color: #4D4C4C;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  appearance: none;
}
.input1:focus {
  border: 1px solid #EE851F;
}
.input1[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.input1input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.select2 {
  cursor: pointer;
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #4D4C4C;
  line-height: 160%;
  padding: 0.6em 1.4em 0.5em 0.8em;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #F5F5F5;
  box-shadow: none;
  border-radius: 5px;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #F5F5F5;
  background-image: url("../img/angle-down-solid.svg"), linear-gradient(to bottom, #F5F5F5 100%, #F5F5F5 100%);
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 1.2rem auto, 100%;
}
.select2:focus {
  border: 1px solid #EE851F;
}

.option2 {
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 160%;
}

.checkbox1 {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.checkbox1 input {
  margin-right: 1rem;
  font-size: 5rem;
  height: 2rem;
  width: 2rem;
}
.checkbox1 label {
  color: #4D4C4C;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2rem;
}
.checkbox1 a {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  color: #EE851F;
  transition: all 1s ease;
}
.checkbox1 a:hover {
  color: #2c3b58;
  text-decoration: none;
}

.checkbox2 {
  color: #4D4C4C;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  position: relative;
  padding-left: 0.8rem;
  cursor: pointer !important;
}
.checkbox2 .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 1.9rem;
  width: 1.9rem;
  background-color: white;
  border: 2px solid #EE851F;
  border-radius: 3px;
}
.checkbox2 input {
  opacity: 0 !important;
  cursor: pointer !important;
}
.checkbox2 input:checked ~ .checkmark {
  background-color: #EE851F !important;
}
.checkbox2 input:checked ~ .checkmark::after {
  content: "\f00c";
  font-family: "FontAwesome";
  font-weight: 300;
  font-size: 1.3rem;
  position: absolute;
  top: 1px;
  left: 1px;
  color: #f9f9f9;
}

.submit1 {
  display: block;
  padding: 1rem 1rem;
  width: fit-content;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #f9f9f9;
  border-radius: 0.4rem;
  border: 2px solid #EE851F;
  background-color: #EE851F;
  transition: all 1s ease;
}
.submit1:hover {
  background-color: transparent;
  color: #EE851F;
  border: 2px solid #EE851F;
  cursor: pointer;
}

.submit2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  display: block;
  width: fit-content;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 100%;
  font-size: 1.8rem;
  color: #f9f9f9;
  background-color: #EE851F;
  padding: 1rem 2.2rem;
  border: 2px solid #EE851F;
  border-radius: 5px;
  transition: all 1s ease;
}
.submit2:hover {
  cursor: pointer;
  border-color: #2c3b58;
  background-color: #2c3b58;
  color: #f9f9f9;
}

.textarea1 {
  width: 100%;
  height: 15rem;
  padding: 1rem;
  border: 1px solid #F5F5F5;
  border-radius: 5px;
  background-color: #F5F5F5;
  outline: none;
  color: #4D4C4C;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  resize: none;
  overflow: scroll;
}
.textarea1:focus {
  border: 1px solid #EE851F;
}

.tooltip {
  position: relative;
}
.tooltip:hover {
  cursor: pointer;
}
.tooltip:hover .tooltipText {
  display: block;
  animation: slideDown 0.5s;
}
@keyframes slideDown {
  0% {
    transform: translateY(-5px);
    opacity: 0.7;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.tooltip:hover .tooltipText2 {
  display: block;
  animation: slideDown 0.5s;
}
@keyframes slideDown {
  0% {
    transform: translateY(-5px);
    opacity: 0.7;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.tooltip:focus {
  cursor: pointer;
}
.tooltip:focus .tooltipText {
  display: block;
  animation: slideDown 0.5s;
}
@keyframes slideDown {
  0% {
    transform: translateY(-5px);
    opacity: 0.7;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.tooltip:focus .tooltipText2 {
  display: block;
  animation: slideDown 0.5s;
}
@keyframes slideDown {
  0% {
    transform: translateY(-5px);
    opacity: 0.7;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.tooltip:active {
  cursor: pointer;
}
.tooltip:active .tooltipText {
  display: block;
  animation: slideDown 0.5s;
}
@keyframes slideDown {
  0% {
    transform: translateY(-5px);
    opacity: 0.7;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.tooltip:active .tooltipText2 {
  display: block;
  animation: slideDown 0.5s;
}
@keyframes slideDown {
  0% {
    transform: translateY(-5px);
    opacity: 0.7;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.tooltipText {
  position: absolute;
  bottom: 3.5rem;
  left: 0rem;
  z-index: 3;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  color: #f9f9f9;
  font-size: 1.4rem;
  text-align: center;
  background-color: #2c3b58;
  width: 100% !important;
  padding: 1rem;
  border-radius: 4px;
  transition: ease 0.2s;
  display: none;
}
.tooltipText--top::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border-width: 10px;
  border-style: solid;
  border-color: #2c3b58 transparent transparent transparent;
}

.tooltipText2 {
  position: absolute;
  bottom: 5.5rem;
  left: -18rem;
  z-index: 3;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-weight: 400 !important;
  font-size: 1.8rem !important;
  line-height: 160%;
  text-align: center !important;
  color: #4D4C4C;
  background-color: #f9f9f9;
  width: 30rem !important;
  padding: 2rem;
  border-radius: 4px;
  transition: ease 0.2s;
  display: none;
}
.tooltipText2--top::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: 84px;
  border-width: 10px;
  border-style: solid;
  border-color: #f9f9f9 transparent transparent transparent;
}

@media screen and (max-width: 500px) {
  .tooltipText2 {
    position: absolute;
    bottom: 5.5rem;
    left: 0rem;
    z-index: 3;
    width: 100% !important;
  }
  .tooltipText2--top::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -10px;
    border-width: 10px;
  }
}
/*---------------
    PAGES
----------------*/
body {
  background-color: #f9f9f9;
}

.howServicesWorkWrapper {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.howServicesWorkWrapper__h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: center;
  width: fit-content;
  width: fit-content;
  max-width: 90%;
  margin: auto;
}
.howServicesWorkWrapper__h1:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin: auto;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}

.howServicesWork {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  justify-items: stretch;
  align-items: stretch;
}
.howServicesWork__col {
  display: grid;
  grid-template-rows: 10rem max-content 1fr;
  grid-row-gap: 3rem;
  justify-items: center;
}
.howServicesWork__col img {
  width: 7rem;
}
.howServicesWork__col h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  color: #2c3b58;
}
.howServicesWork__col p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  text-align: center;
}

.stepsWrapper {
  padding-bottom: 6rem;
}
.stepsWrapper__h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: center;
  width: fit-content;
  width: fit-content;
  max-width: 90%;
  margin: auto;
  margin-bottom: 6rem !important;
}
.stepsWrapper__h1:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin: auto;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}
.stepsWrapper .steps {
  padding: 5rem 0;
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.5), rgba(44, 59, 88, 0.5)), url("../img/3St.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.stepsWrapper .steps__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  align-items: flex-start;
}
.stepsWrapper .steps__col {
  width: 31%;
}
.stepsWrapper .steps__img {
  display: block;
  width: 7rem;
  margin: auto;
  margin-bottom: 2rem;
}
.stepsWrapper .steps__h2 {
  width: fit-content;
  margin: auto;
  margin-bottom: 2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #f9f9f9;
}
.stepsWrapper .steps__p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  text-align: center;
  color: #f9f9f9;
}

.whatServiceWrap {
  padding: 7rem 0;
  margin-bottom: 6rem;
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.9), rgba(44, 59, 88, 0.9)), url("../img/london8.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.whatServiceWrap .whatService h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 138%;
  color: #f9f9f9;
  font-size: 4.8rem;
  text-align: center;
  margin-bottom: 3rem;
}
.whatServiceWrap .whatService p {
  width: 100%;
  max-width: 700px;
  margin: auto;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 183%;
  color: #f9f9f9;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
}
.whatServiceWrap .whatService a {
  display: block;
  width: fit-content;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 100%;
  font-size: 1.8rem;
  color: #f9f9f9;
  background-color: #EE851F;
  padding: 1rem 2.2rem;
  border: 2px solid #EE851F;
  border-radius: 5px;
  transition: all 0.5s ease;
  margin: auto;
}
.whatServiceWrap .whatService a:hover {
  cursor: pointer;
  border-color: #f9f9f9;
  background-color: #f9f9f9;
  color: #EE851F;
}

.ourAppsWrapper {
  padding-bottom: 6rem;
}
.ourAppsWrapper .ourApps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.ourAppsWrapper .ourAppsLeft {
  width: 28%;
  max-width: 42rem;
}
.ourAppsWrapper .ourAppsLeft__h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 2.9rem;
  line-height: 140%;
  color: #2c3b58;
  margin-bottom: 3rem;
}
.ourAppsWrapper .ourAppsLeft__h2 {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  color: #4D4C4C;
  font-size: 1.8rem;
  line-height: 160%;
  margin-bottom: 5rem;
}
.ourAppsWrapper .ourAppsLeft__links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 32rem;
}
.ourAppsWrapper .ourAppsLeft__links a {
  margin-bottom: 1rem;
}
.ourAppsWrapper .ourAppsLeft__links a img {
  width: 15rem;
}
.ourAppsWrapper .ourAppsRight {
  width: 70%;
}

.trustedWrapper {
  padding-bottom: 6rem;
}
.trustedWrapper__h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: center;
  width: fit-content;
  width: fit-content;
  max-width: 90%;
  margin: auto;
  margin-bottom: 6rem !important;
}
.trustedWrapper__h1:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin: auto;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}

.faqWrapper {
  padding: 6rem 0;
}
.faqWrapper__h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: center;
  width: fit-content;
  width: fit-content;
  max-width: 90%;
  margin: auto;
}
.faqWrapper__h1:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin: auto;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}
.faqWrapper__h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  width: fit-content;
  max-width: 90%;
  margin: auto;
  margin-bottom: 6rem;
  text-align: center;
}
.faqWrapper__a {
  display: block;
  width: fit-content;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 100%;
  font-size: 1.8rem;
  color: #f9f9f9;
  background-color: #EE851F;
  padding: 1rem 2.2rem;
  border: 2px solid #EE851F;
  border-radius: 5px;
  transition: all 1s ease;
  margin: 5rem auto 0;
}
.faqWrapper__a:hover {
  cursor: pointer;
  border-color: #2c3b58;
  background-color: #2c3b58;
  color: #f9f9f9;
}

@media screen and (max-width: 1100px) {
  .ourAppsWrapper {
    padding-bottom: 6rem;
  }
  .ourAppsWrapper .ourApps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .ourAppsWrapper .ourAppsLeft {
    width: 100%;
    max-width: 42rem;
    margin: auto;
    margin-bottom: 2rem;
  }
  .ourAppsWrapper .ourAppsRight {
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  .howServicesWork {
    grid-template-columns: 1fr 1fr;
  }
  .stepsWrapper .steps__col {
    width: 80%;
    margin: 1rem auto;
  }
  .whatServiceWrap {
    padding: 3rem 0;
  }
  .whatServiceWrap .whatService h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .whatServiceWrap .whatService p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  .whatServiceWrap .whatService a {
    display: block;
    width: fit-content;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    line-height: 100%;
    font-size: 1.8rem;
    color: #f9f9f9;
    background-color: #EE851F;
    padding: 1rem 2.2rem;
    border: 2px solid #EE851F;
    border-radius: 5px;
    transition: all 0.5s ease;
    margin: auto;
  }
  .whatServiceWrap .whatService a:hover {
    cursor: pointer;
    border-color: #f9f9f9;
    background-color: #f9f9f9;
    color: #EE851F;
  }
  .faqWrapper {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: max-content;
  }
  .faqWrapper__h1 {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 3rem;
    color: #2c3b58;
    line-height: 160%;
    text-align: center;
    width: fit-content;
    width: fit-content;
    margin: auto;
  }
  .faqWrapper__h1:after {
    content: "";
    display: block;
    width: 5rem;
    height: 0;
    margin: auto;
    margin-bottom: 3rem;
    margin-top: 1rem;
    border-bottom: 4px solid #EE851F;
  }
  .faqWrapper__p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    color: #4D4C4C;
    line-height: 160%;
    width: fit-content;
    max-width: 90%;
    margin: auto;
    margin-bottom: 6rem;
    text-align: center;
  }
  .faqWrapper__left {
    grid-row: 1/span 1;
    grid-column: 1/span 1;
    padding: 6rem 0rem 6rem 0;
  }
  .faqWrapper__right {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .howServicesWork {
    grid-template-columns: 1fr;
  }
  .howServicesWork__col {
    display: grid;
    grid-template-rows: max-content max-content max-content;
    grid-row-gap: 2rem;
  }
}
.basicNumbersWrap {
  padding: 6rem 0;
}
.basicNumbersWrap .basicNumbers {
  width: 100%;
  display: grid;
  grid-template-columns: max-content max-content max-content max-content;
  justify-content: space-between;
}
.basicNumbersWrap .basicNumbers__number p {
  width: fit-content;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 5rem;
  color: #2c3b58;
  line-height: 100%;
}
.basicNumbersWrap .basicNumbers__number span {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.6rem;
  color: #EE851F;
  line-height: 100%;
}
.basicNumbersWrap .basicNumbers__number--established {
  grid-column: 1/span 1;
  grid-row: 1/span 1;
}
.basicNumbersWrap .basicNumbers__number--locations {
  grid-column: 2/span 1;
  grid-row: 1/span 1;
}
.basicNumbersWrap .basicNumbers__number--clients {
  grid-column: 3/span 1;
  grid-row: 1/span 1;
}
.basicNumbersWrap .basicNumbers__number--employees {
  grid-column: 4/span 1;
  grid-row: 1/span 1;
}

.aboutUsWrap {
  padding-bottom: 6rem;
}
.aboutUsWrap .aboutUs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  align-items: flex-start;
}
.aboutUsWrap .aboutUs__col1 {
  width: 50%;
  padding-right: 5rem;
}
.aboutUsWrap .aboutUs__col1 p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  margin-bottom: 3rem;
}
.aboutUsWrap .aboutUs__col1 a {
  display: block;
  width: fit-content;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 100%;
  font-size: 1.8rem;
  color: #f9f9f9;
  background-color: #EE851F;
  padding: 1rem 2.2rem;
  border: 2px solid #EE851F;
  border-radius: 5px;
  transition: all 1s ease;
  padding: 2rem 7rem;
}
.aboutUsWrap .aboutUs__col1 a:hover {
  cursor: pointer;
  border-color: #2c3b58;
  background-color: #2c3b58;
  color: #f9f9f9;
}
.aboutUsWrap .aboutUs__col2 {
  width: 50%;
}
.aboutUsWrap .aboutUs__col2 img {
  width: 100%;
}

.ourHistoryWrap {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../img/our-history-background.png");
}
.ourHistoryWrap__h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 2.8rem;
  color: #4D4C4C;
  text-align: center;
  width: 90%;
  margin: auto;
  margin-bottom: 6rem;
}

.ourLocationsWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.ourLocationsWrap .ourLocationsTextWrap {
  width: 50%;
}
.ourLocationsWrap .ourLocationsText {
  width: 90%;
  max-width: 600px;
  margin-left: auto;
  padding: 2rem 2rem 2rem 0;
}
.ourLocationsWrap .ourLocationsText__h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: left;
  width: fit-content;
  margin-bottom: 6rem;
}
.ourLocationsWrap .ourLocationsText__h1:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}
.ourLocationsWrap .ourLocationsText__p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  margin-bottom: 6rem;
}
.ourLocationsWrap .ourLocationsText__btn {
  display: block;
  width: fit-content;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 100%;
  font-size: 1.8rem;
  color: #f9f9f9;
  background-color: #EE851F;
  padding: 1rem 2.2rem;
  border: 2px solid #EE851F;
  border-radius: 5px;
  transition: all 1s ease;
  padding: 2rem 7rem;
}
.ourLocationsWrap .ourLocationsText__btn:hover {
  cursor: pointer;
  border-color: #2c3b58;
  background-color: #2c3b58;
  color: #f9f9f9;
}
.ourLocationsWrap .officesMap {
  width: 50%;
}

.ourProgressWrap {
  padding: 6rem 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../img/growth-background.png");
}
.ourProgressWrap__h1 {
  width: 90%;
  margin: auto;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  text-align: center;
  color: #2c3b58;
  font-size: 4rem;
  line-height: 180%;
}
.ourProgressWrap__h1 span {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-align: center;
  color: #2c3b58;
  font-size: 4rem;
}
.ourProgressWrap__p {
  width: 90%;
  max-width: 60rem;
  margin: auto;
  margin-bottom: 6rem;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  text-align: center;
}
.ourProgressWrap__chart {
  display: block;
  width: 90%;
  max-width: 80rem;
  margin: auto;
}

.aboutOurAppsWrap {
  padding: 6rem 0 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.aboutOurAppsWrap .aboutOurApps {
  width: 50%;
}
.aboutOurAppsWrap .aboutOurApps__h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  text-align: left;
  color: #2c3b58;
  font-size: 2.8rem;
  line-height: 140%;
  margin-bottom: 3rem;
}
.aboutOurAppsWrap .aboutOurApps__p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  font-size: 1.8rem;
  margin-bottom: 3rem;
  max-width: 35rem;
}
.aboutOurAppsWrap .aboutOurApps__btns a {
  text-decoration: none;
  height: 5rem;
}
.aboutOurAppsWrap .aboutOurApps__btns a:not(:last-child) {
  margin-right: 1.6rem;
}
.aboutOurAppsWrap .aboutOurAppsImg {
  width: 50%;
}
.aboutOurAppsWrap .aboutOurAppsImg img {
  display: block;
  width: 47rem !important;
  max-width: 100%;
  margin-left: auto;
}

.accreditationsWrap {
  padding: 10rem 0;
  background-color: white;
}
.accreditationsWrap__h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: center;
  width: fit-content;
  width: fit-content;
  max-width: 90%;
  margin: auto;
  margin-bottom: 10rem;
}
.accreditationsWrap__h1:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin: auto;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}
.accreditationsWrap .accreditations {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 6rem;
  grid-row-gap: 8rem;
}
.accreditationsWrap .accreditations__box img {
  display: block;
  margin: auto;
  height: 8rem;
  margin-bottom: 2rem;
}
.accreditationsWrap .accreditations__box p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  text-align: center;
}

@media screen and (max-width: 1050px) {
  .ourHistoryWrap__h1 {
    margin-bottom: 8rem;
  }
}
@media screen and (max-width: 1024px) {
  .ourLocationsWrap .ourLocationsTextWrap {
    width: 100%;
  }
  .ourLocationsWrap .ourLocationsText {
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 6rem 0rem 6rem 0;
  }
  .ourLocationsWrap .ourLocationsText__h1 {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 3rem;
    color: #2c3b58;
    line-height: 160%;
    text-align: left;
    width: fit-content;
    margin-bottom: 6rem;
  }
  .ourLocationsWrap .ourLocationsText__h1:after {
    content: "";
    display: block;
    width: 5rem;
    height: 0;
    margin-bottom: 3rem;
    margin-top: 1rem;
    border-bottom: 4px solid #EE851F;
  }
  .ourLocationsWrap .ourLocationsText__p {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    color: #4D4C4C;
    line-height: 160%;
    margin-bottom: 6rem;
  }
  .ourLocationsWrap .ourLocationsText__btn {
    display: block;
    width: fit-content;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    line-height: 100%;
    font-size: 1.8rem;
    color: #f9f9f9;
    background-color: #EE851F;
    padding: 1rem 2.2rem;
    border: 2px solid #EE851F;
    border-radius: 5px;
    transition: all 1s ease;
    padding: 2rem 7rem;
  }
  .ourLocationsWrap .ourLocationsText__btn:hover {
    cursor: pointer;
    border-color: #2c3b58;
    background-color: #2c3b58;
    color: #f9f9f9;
  }
  .ourLocationsWrap .officesMap {
    width: 100%;
  }
  .accreditationsWrap .accreditations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 3rem;
    grid-row-gap: 6rem;
  }
}
@media screen and (max-width: 900px) {
  .basicNumbersWrap {
    padding: 6rem 0;
  }
  .basicNumbersWrap .basicNumbers__number p {
    font-size: 3rem;
  }
  .basicNumbersWrap .basicNumbers__number span {
    font-size: 1.8rem;
  }
  .aboutUsWrap {
    padding-bottom: 6rem;
  }
  .aboutUsWrap .aboutUs__col1 {
    width: 100%;
    padding-right: 0rem;
    padding-bottom: 6rem;
  }
  .aboutUsWrap .aboutUs__col2 {
    width: 100%;
  }
  .aboutOurAppsWrap {
    padding: 6rem 0 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .aboutOurAppsWrap .aboutOurApps {
    width: 60%;
  }
  .aboutOurAppsWrap .aboutOurAppsImg {
    width: 40%;
  }
}
@media screen and (max-width: 700px) {
  .aboutOurAppsWrap {
    padding: 6rem 0 6rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .aboutOurAppsWrap .aboutOurApps {
    width: 100%;
  }
  .aboutOurAppsWrap .aboutOurAppsImg {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .basicNumbersWrap {
    padding: 4rem 0;
  }
  .basicNumbersWrap .basicNumbers__number p {
    font-size: 2.4rem;
  }
  .basicNumbersWrap .basicNumbers__number span {
    font-size: 1.6rem;
  }
  .accreditationsWrap .accreditations {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 4rem;
  }
}
@media screen and (max-width: 450px) {
  .basicNumbersWrap {
    padding: 4rem 0;
  }
  .basicNumbersWrap .basicNumbers {
    display: grid;
    grid-template-columns: max-content max-content max-content;
    grid-template-rows: max-content max-content;
    grid-row-gap: 2rem;
  }
  .basicNumbersWrap .basicNumbers__number--established {
    grid-row: 1/span 1 !important;
    grid-column: 1/span 3;
    justify-self: center;
  }
  .basicNumbersWrap .basicNumbers__number--locations {
    grid-row: 2/span 1 !important;
    grid-column: 1/span 1;
  }
  .basicNumbersWrap .basicNumbers__number--clients {
    grid-row: 2/span 1 !important;
    grid-column: 2/span 1;
  }
  .basicNumbersWrap .basicNumbers__number--employees {
    grid-row: 2/span 1 !important;
    grid-column: 3/span 1;
  }
  .ourProgressWrap__h1 {
    font-size: 2rem;
  }
  .ourProgressWrap__h1 span {
    font-size: 2rem;
  }
}
.contactUsIntroWrap {
  padding-top: 6rem;
  padding-bottom: 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 6rem;
  justify-items: stretch;
  align-items: stretch;
}
.contactUsIntroWrap .contactUsIntro__p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  line-height: 180%;
  margin-bottom: 3rem;
}
.contactUsIntroWrap .contactUsIntro__liveChat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  display: block;
  width: fit-content;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 100%;
  font-size: 1.8rem;
  color: #f9f9f9;
  background-color: #EE851F;
  padding: 1rem 2.2rem;
  border: 2px solid #EE851F;
  border-radius: 5px;
  transition: all 1s ease;
}
.contactUsIntroWrap .contactUsIntro__liveChat:hover {
  cursor: pointer;
  border-color: #2c3b58;
  background-color: #2c3b58;
  color: #f9f9f9;
}
.contactUsIntroWrap .contactUsIntro__liveChat i {
  font-size: 2rem;
  color: #f9f9f9;
  margin-right: 1rem;
}
.contactUsIntroWrap .conatctUsIntroImg img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.contactUs-Locations-Wrap {
  display: grid;
  grid-template-columns: 1fr max-content;
  grid-template-rows: 1fr;
  justify-items: stretch;
  align-items: stretch;
  box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}
.contactUs-Locations-Wrap .contactUsFormWrap {
  background-color: white;
  padding: 5rem;
  padding-right: 6rem;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.contactUs-Locations-Wrap .contactUsFormWrap__h1 {
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.6rem;
  color: #2c3b58;
  text-align: center;
  line-height: 160%;
  margin-bottom: 2rem;
}
.contactUs-Locations-Wrap .contactUsFormWrap__h2 {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  text-align: center;
  width: 100%;
  max-width: 40rem;
  margin: auto;
  margin-bottom: 4rem;
}
.contactUs-Locations-Wrap .contactUsFormWrap .contactUsForm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: max-content max-content max-content max-content;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}
.contactUs-Locations-Wrap .contactUsFormWrap .contactUsForm__name {
  grid-column: 1/span 1;
  grid-row: 1/span 1;
}
.contactUs-Locations-Wrap .contactUsFormWrap .contactUsForm__email {
  grid-column: 1/span 1;
  grid-row: 2/span 1;
}
.contactUs-Locations-Wrap .contactUsFormWrap .contactUsForm__company {
  grid-column: 2/span 1;
  grid-row: 1/span 1;
}
.contactUs-Locations-Wrap .contactUsFormWrap .contactUsForm__service {
  grid-column: 2/span 1;
  grid-row: 2/span 1;
}
.contactUs-Locations-Wrap .contactUsFormWrap .contactUsForm__message {
  grid-column: 1/span 2;
  grid-row: 3/span 1;
  height: 25rem;
}
.contactUs-Locations-Wrap .contactUsFormWrap .contactUsForm__submit {
  grid-column: 1/span 2;
  grid-row: 4/span 1;
  justify-self: end;
  padding: 2rem 5rem;
  margin-top: 5rem;
}
.contactUs-Locations-Wrap .locationsAddressWrap {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr max-content;
}
.contactUs-Locations-Wrap .locationsAddressWrap .locationsAddressInner {
  background-color: #EE851F;
  padding: 4rem 8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contactUs-Locations-Wrap .locationsAddressWrap .locationsAddressInner .locationsAddress {
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-template-rows: max-content max-content;
  grid-row-gap: 1rem;
  grid-column-gap: 1rem;
}
.contactUs-Locations-Wrap .locationsAddressWrap .locationsAddressInner .locationsAddress__pin {
  grid-column: 1/span 1;
  grid-row: 1/span 2;
  width: 3rem;
}
.contactUs-Locations-Wrap .locationsAddressWrap .locationsAddressInner .locationsAddress__name {
  grid-column: 2/span 1;
  grid-row: 1/span 1;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.2rem;
  color: #f9f9f9;
}
.contactUs-Locations-Wrap .locationsAddressWrap .locationsAddressInner .locationsAddress__address {
  grid-column: 2/span 1;
  grid-row: 2/span 1;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 160%;
  color: #f9f9f9;
}
.contactUs-Locations-Wrap .locationsAddressWrap .locationsAddressInner .locationsAddress:not(:last-child) {
  border-bottom: 1px solid #D07115;
  padding-bottom: 2rem;
}
.contactUs-Locations-Wrap .locationsAddressWrap .locationsAddressInner .locationsAddress:not(:first-child) {
  padding-top: 2rem;
}
.contactUs-Locations-Wrap .locationsAddressWrap .locationsAddressAdditional {
  background-color: #2c3b58;
  padding: 4rem 8rem;
}
.contactUs-Locations-Wrap .locationsAddressWrap .locationsAddressAdditional .phoneNumber {
  width: fit-content;
  margin: auto;
}
.contactUs-Locations-Wrap .locationsAddressWrap .locationsAddressAdditional .phoneNumber i {
  font-size: 1.8rem;
  color: #f9f9f9;
  margin-right: 1rem;
}
.contactUs-Locations-Wrap .locationsAddressWrap .locationsAddressAdditional .phoneNumber p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 2rem;
  color: #f9f9f9;
}
.contactUs-Locations-Wrap .locationsAddressWrap .locationsAddressAdditional .emailAddress {
  margin: auto;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: fit-content;
}
.contactUs-Locations-Wrap .locationsAddressWrap .locationsAddressAdditional .emailAddress i {
  font-size: 1.8rem;
  color: #f9f9f9;
  margin-right: 1rem;
}
.contactUs-Locations-Wrap .locationsAddressWrap .locationsAddressAdditional .emailAddress a {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 2rem;
  color: #f9f9f9;
  text-decoration: none;
}
.contactUs-Locations-Wrap .locationsAddressWrap .locationsAddressAdditional .socialLinks {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.contactUs-Locations-Wrap .locationsAddressWrap .locationsAddressAdditional .socialLinks a {
  text-decoration: none;
  transition: all 0.5s ease;
}
.contactUs-Locations-Wrap .locationsAddressWrap .locationsAddressAdditional .socialLinks a i {
  color: #f9f9f9;
  font-size: 2rem;
  margin: 0 2rem;
}
.contactUs-Locations-Wrap .locationsAddressWrap .locationsAddressAdditional .socialLinks a .fa-linkedin-in:hover {
  color: #3B5998;
}
.contactUs-Locations-Wrap .locationsAddressWrap .locationsAddressAdditional .socialLinks a .fa-facebook-f:hover {
  color: #3B5998;
}
.contactUs-Locations-Wrap .locationsAddressWrap .locationsAddressAdditional .socialLinks a .fa-twitter:hover {
  color: #55ACEE;
}

.mapWrap {
  padding: 8rem 0;
}
.mapWrap img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .contactUs-Locations-Wrap {
    display: block;
    box-shadow: none;
    border-radius: 6px;
  }
  .contactUs-Locations-Wrap .contactUsFormWrap {
    background-color: white;
    padding: 2rem 2rem 2rem 2rem;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 6px;
  }
  .contactUs-Locations-Wrap .contactUsFormWrap .contactUsForm__submit {
    margin-top: 0;
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 850px) {
  .contactUsIntroWrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: max-content 350px;
    grid-row-gap: 6rem;
  }
}
@media screen and (max-width: 600px) {
  .contactUs-Locations-Wrap .contactUsFormWrap .contactUsForm {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: max-content max-content max-content max-content max-content max-content;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }
  .contactUs-Locations-Wrap .contactUsFormWrap .contactUsForm__name {
    grid-column: 1/span 1;
    grid-row: 1/span 1;
  }
  .contactUs-Locations-Wrap .contactUsFormWrap .contactUsForm__email {
    grid-column: 1/span 1;
    grid-row: 2/span 1;
  }
  .contactUs-Locations-Wrap .contactUsFormWrap .contactUsForm__company {
    grid-column: 1/span 1;
    grid-row: 3/span 1;
  }
  .contactUs-Locations-Wrap .contactUsFormWrap .contactUsForm__service {
    grid-column: 1/span 1;
    grid-row: 4/span 1;
  }
  .contactUs-Locations-Wrap .contactUsFormWrap .contactUsForm__message {
    grid-column: 1/span 1;
    grid-row: 5/span 1;
    height: 15rem;
  }
  .contactUs-Locations-Wrap .contactUsFormWrap .contactUsForm__submit {
    grid-column: 1/span 1;
    grid-row: 6/span 1;
    justify-self: end;
  }
  .contactUs-Locations-Wrap .locationsAddressWrap .locationsAddressInner {
    padding: 4rem 4rem;
  }
  .contactUs-Locations-Wrap .locationsAddressWrap .locationsAddressAdditional {
    padding: 4rem 4rem;
  }
}
@media screen and (max-width: 400px) {
  .contactUs-Locations-Wrap .contactUsFormWrap .contactUsForm {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: max-content max-content max-content max-content max-content max-content;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }
  .contactUs-Locations-Wrap .contactUsFormWrap .contactUsForm__name {
    grid-column: 1/span 1;
    grid-row: 1/span 1;
  }
  .contactUs-Locations-Wrap .contactUsFormWrap .contactUsForm__email {
    grid-column: 1/span 1;
    grid-row: 2/span 1;
  }
  .contactUs-Locations-Wrap .contactUsFormWrap .contactUsForm__company {
    grid-column: 1/span 1;
    grid-row: 3/span 1;
  }
  .contactUs-Locations-Wrap .contactUsFormWrap .contactUsForm__service {
    grid-column: 1/span 1;
    grid-row: 4/span 1;
  }
  .contactUs-Locations-Wrap .contactUsFormWrap .contactUsForm__message {
    grid-column: 1/span 1;
    grid-row: 5/span 1;
    height: 15rem;
  }
  .contactUs-Locations-Wrap .contactUsFormWrap .contactUsForm__submit {
    grid-column: 1/span 1;
    grid-row: 6/span 1;
    justify-self: end;
  }
  .contactUs-Locations-Wrap .locationsAddressWrap .locationsAddressInner {
    padding: 2rem 1rem;
  }
  .contactUs-Locations-Wrap .locationsAddressWrap .locationsAddressAdditional {
    padding: 2rem 1rem;
  }
  .contactUs-Locations-Wrap .locationsAddressWrap .locationsAddressAdditional .phoneNumber i {
    display: none;
  }
  .contactUs-Locations-Wrap .locationsAddressWrap .locationsAddressAdditional .emailAddress i {
    display: none;
  }
}
.termsWrapper {
  height: 100vh;
  max-height: 100vh;
  display: grid;
  grid-template-rows: max-content 1fr max-content;
  grid-template-columns: 1fr;
}
.termsWrapper .termsHeader {
  padding: 3rem 0;
}
.termsWrapper .termsHeader h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: center;
  width: fit-content;
  margin: auto;
}
.termsWrapper .termsHeader h1:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin: auto;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}
.termsWrapper .terms {
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scrollbar-width: 0px;
}
.termsWrapper .terms__h {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  color: #2c3b58;
  line-height: 160%;
  padding: 3rem 0 2rem;
}
.termsWrapper .terms__p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
.termsWrapper .terms__p span {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  font-size: 1.8rem;
  color: #EE851F;
}
.termsWrapper .terms__attention {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #EE851F;
  line-height: 160%;
  text-transform: uppercase;
}
.termsWrapper .terms__ul {
  list-style-type: circle;
  margin-left: 5rem;
  margin-bottom: 2rem;
}
.termsWrapper .terms__ul li {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.termsWrapper .termsFooter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 4rem 0;
}
.termsWrapper .termsFooter__date {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: #2c3b58;
}
.termsWrapper .termsFooter__date span {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #EE851F;
}
.termsWrapper .termsFooter__download a {
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #EE851F;
  transition: all 0.5s ease;
}
.termsWrapper .termsFooter__download a:hover {
  color: #2c3b58;
}

.serviceIntroWrapper {
  padding: 6rem 0 6rem;
}
.serviceIntroWrapper .serviceIntro {
  display: grid;
  grid-template-columns: 1fr 450px;
  grid-template-rows: 1fr;
  justify-items: stretch;
  align-items: start;
}
.serviceIntroWrapper .serviceIntro__col1 {
  padding-right: 6rem;
}
.serviceIntroWrapper .serviceIntro__col1 h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: left;
  width: fit-content;
}
.serviceIntroWrapper .serviceIntro__col1 h1:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}
.serviceIntroWrapper .serviceIntro__col1 p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  margin-bottom: 3rem;
}
.serviceIntroWrapper .serviceIntro__col1 a {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  color: #EE851F;
  text-decoration: none;
  transition: all 0.5s ease;
}
.serviceIntroWrapper .serviceIntro__col1 a:hover {
  color: #2c3b58;
}
.serviceIntroWrapper .serviceIntro__col2 {
  width: 45rem;
}

.featuresWrapper {
  padding: 6rem 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.featuresWrapper--regOfficeAddress {
  background-image: linear-gradient(0deg, rgba(242, 246, 251, 0.94), rgba(242, 246, 251, 0.94)), url("../img/features-banners/roa.png");
}
.featuresWrapper--directorServAddress {
  background-image: linear-gradient(0deg, rgba(242, 246, 251, 0.94), rgba(242, 246, 251, 0.94)), url("../img/features-banners/dsa.png");
}
.featuresWrapper--VBA {
  background-image: linear-gradient(0deg, rgba(242, 246, 251, 0.94), rgba(242, 246, 251, 0.94)), url("../img/features-banners/vba.png");
}
.featuresWrapper--VBP {
  background-image: linear-gradient(0deg, rgba(242, 246, 251, 0.94), rgba(242, 246, 251, 0.94)), url("../img/features-banners/vbp.png");
}
.featuresWrapper--TAS {
  background-image: linear-gradient(0deg, rgba(242, 246, 251, 0.7), rgba(242, 246, 251, 0.7)), url("../img/features-banners/tas.png");
}
.featuresWrapper--teleAnswering {
  background-image: linear-gradient(0deg, rgba(242, 246, 251, 0.94), rgba(242, 246, 251, 0.94)), url("../img/features-banners/tas.png");
}
.featuresWrapper--VBA-TAS {
  background-image: linear-gradient(0deg, rgba(242, 246, 251, 0.94), rgba(242, 246, 251, 0.94)), url("../img/features-banners/vba-tas.png");
}
.featuresWrapper--VBP-TAS {
  background-image: linear-gradient(0deg, rgba(242, 246, 251, 0.94), rgba(242, 246, 251, 0.94)), url("../img/features-banners/vbp-tas.png");
}
.featuresWrapper--VBP-web {
  background-image: linear-gradient(0deg, rgba(242, 246, 251, 0.94), rgba(242, 246, 251, 0.94)), url("../img/features-banners/vbp-web.png");
}
.featuresWrapper--VBP-legal {
  background-image: linear-gradient(0deg, rgba(242, 246, 251, 0.94), rgba(242, 246, 251, 0.94)), url("../img/features-banners/vbp-legal.png");
}
.featuresWrapper--freeCompany {
  background-image: linear-gradient(0deg, rgba(242, 246, 251, 0.94), rgba(242, 246, 251, 0.94)), url("../img/features-banners/vbp-tas.png");
}
.featuresWrapper .features {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  align-items: flex-start;
}
.featuresWrapper .featuresList {
  width: 32%;
}
.featuresWrapper .featuresList__h {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: left;
  width: fit-content;
  font-size: 3.2rem;
}
.featuresWrapper .featuresList__h:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}
.featuresWrapper .feature {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex-wrap: nowrap;
  min-height: 5rem;
  margin-bottom: 2rem;
}
.featuresWrapper .feature--last {
  margin-bottom: 0;
}
.featuresWrapper .feature__icon {
  width: 3rem !important;
  height: 3rem !important;
  margin-right: 2rem;
}
.featuresWrapper .feature__description {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 160%;
  color: #4D4C4C;
}

.ServicesFAQsWrapper {
  padding: 6rem 10%;
}
.ServicesFAQsWrapper .ServicesFAQsInner {
  min-height: 820px;
  max-width: 90rem;
  background-image: url("../img/locationPin.svg");
  background-repeat: no-repeat;
  background-origin: content-box;
  background-size: 70%;
  background-position: 0 80px;
}
.ServicesFAQsWrapper .ServicesFAQsInner__h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: center;
  width: fit-content;
  width: fit-content;
  margin: auto;
}
.ServicesFAQsWrapper .ServicesFAQsInner__h1:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin: auto;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}
.ServicesFAQsWrapper .ServicesFAQsInner__h1--bigMargin {
  margin-bottom: 8rem;
}
.ServicesFAQsWrapper .ServicesFAQsInner__p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  width: fit-content;
  max-width: 90%;
  margin: auto;
  margin-bottom: 6rem;
  text-align: center;
}
.ServicesFAQsWrapper .faqS {
  max-width: 70rem;
  margin: auto;
}

.additionalServicesWrapper {
  padding: 6rem 0;
}
.additionalServicesWrapper__h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: center;
  width: fit-content;
  width: fit-content;
  max-width: 90%;
  margin: auto;
}
.additionalServicesWrapper__h1:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin: auto;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}
.additionalServicesWrapper__h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  width: fit-content;
  max-width: 90%;
  margin: auto;
  margin-bottom: 6rem;
  text-align: center;
}
.additionalServicesWrapper .additionalServices {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  align-items: end;
  justify-items: stretch;
  align-items: stretch;
}

.additionalServicesDropDown {
  position: relative;
  width: 30rem;
  margin: auto;
  margin-top: 3rem;
}
.additionalServicesDropDown__btn {
  width: 30rem;
  margin: auto;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 100%;
  color: #f9f9f9;
  text-align: center;
  padding: 1.5rem 2rem;
  background-color: #EE851F;
  border-radius: 6px;
}
.additionalServicesDropDown__btn i {
  font-size: 2.1rem;
  margin-left: 2rem;
}
.additionalServicesDropDown__btn:hover {
  cursor: pointer;
}
.additionalServicesDropDown__dropDown {
  z-index: 10;
  position: absolute;
  width: 30rem;
  margin: 0.5rem auto;
  padding: 1rem 0;
  list-style: none;
  background-color: #f9f9f9;
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}
.additionalServicesDropDown__dropDown li {
  padding: 2rem 1rem;
  transition: all 0.5s ease;
}
.additionalServicesDropDown__dropDown li a {
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: #4D4C4C;
}
.additionalServicesDropDown__dropDown li:hover {
  background-color: #EFEFEF;
  cursor: pointer;
}
.additionalServicesDropDown__dropDown li:hover a {
  color: #EE851F;
}
.additionalServicesDropDown__dropDown--open {
  display: block;
  animation: slideDown 1s;
}
@keyframes slideDown {
  0% {
    transform: translateY(-10px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.additionalServicesDropDown__dropDown--close {
  display: none;
}

.contactUs2Wrapper {
  padding: 6rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contactUs2Wrapper .contactUs2Text {
  width: 55%;
}
.contactUs2Wrapper .contactUs2Text__h {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: left;
  width: fit-content;
}
.contactUs2Wrapper .contactUs2Text__h:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}
.contactUs2Wrapper .contactUs2Text__p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  margin-bottom: 3rem;
}
.contactUs2Wrapper .contactUs2Text__p--2 {
  margin-bottom: 0;
}
.contactUs2Wrapper .contactUs2Form {
  width: 40%;
  padding: 3rem 3rem 1rem;
  background: #FFFFFF;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}
.contactUs2Wrapper .contactUs2Form h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.2rem;
  color: #4D4C4C;
  width: fit-content;
  margin: auto;
  margin-bottom: 1rem;
}
.contactUs2Wrapper .contactUs2Form p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  font-size: 1.4rem;
  text-align: center;
  width: 90%;
  margin: auto;
  margin-bottom: 3rem;
}

@media screen and (max-width: 1800px) {
  .additionalServicesWrapper .additionalServicesBox__more {
    padding: 5rem 2rem 2rem 2rem;
    background-image: url("../img/angle1.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
  }
  .additionalServicesWrapper .additionalServicesBox__more p {
    text-align: center;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 1330px) {
  .additionalServicesWrapper .additionalServicesBox__more p {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: #f9f9f9;
    font-size: 2rem;
    line-height: 140%;
  }
  .additionalServicesWrapper .additionalServicesBox__more a {
    display: block;
    width: fit-content;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    color: #f9f9f9;
    padding: 1rem 2rem;
    border: 2px solid #f9f9f9;
    border-radius: 5px;
    transition: all 0.5s ease;
    font-size: 1.8rem;
  }
  .additionalServicesWrapper .additionalServicesBox__more a:hover {
    border-color: #2c3b58;
    background-color: #2c3b58;
  }
}
@media screen and (max-width: 1080px) {
  .serviceIntroWrapper {
    padding: 6rem 0 6rem;
  }
  .serviceIntroWrapper .serviceIntro {
    display: block;
  }
  .serviceIntroWrapper .serviceIntro__col1 {
    width: 100%;
    padding-right: 0;
    padding-bottom: 2rem;
  }
  .serviceIntroWrapper .serviceIntro__col2 {
    width: 100%;
  }
  .featuresWrapper {
    padding: 6rem 0 1rem;
  }
  .featuresWrapper .features {
    display: block;
  }
  .featuresWrapper .featuresList {
    width: 100%;
    max-width: 50rem;
    margin: auto;
    margin-bottom: 5rem;
  }
  .contactUs2Wrapper .contactUs2Text {
    width: 40%;
  }
  .contactUs2Wrapper .contactUs2Form {
    width: 55%;
  }
}
@media screen and (max-width: 920px) {
  .additionalServicesWrapper .additionalServices {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    align-items: end;
    justify-items: stretch;
    align-items: stretch;
  }
  .contactUs2Wrapper .contactUs2Text {
    width: 100%;
  }
  .contactUs2Wrapper .contactUs2Form {
    margin-top: 3rem;
    width: 100%;
  }
}
.ourMeetingRoomsWrap {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.ourMeetingRoomsWrap__h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: left;
  width: fit-content;
}
.ourMeetingRoomsWrap__h1:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}
.ourMeetingRoomsWrap__h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  width: fit-content;
  max-width: 90%;
  margin: auto;
  margin-bottom: 6rem;
  text-align: center;
}
.ourMeetingRoomsWrap p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
.ourMeetingRoomsWrap p:last-of-type {
  margin-bottom: 6rem;
}
.ourMeetingRoomsWrap .ourMeetingRooms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 6rem;
  grid-template-rows: max-content;
}
.ourMeetingRoomsWrap .meetingRoom {
  display: grid;
  grid-template-rows: max-content max-content max-content;
  grid-template-columns: 1fr max-content;
  background-color: #F2F3F5;
  padding: 2rem;
  padding-bottom: 2.5rem;
}
.ourMeetingRoomsWrap .meetingRoom__capacity {
  grid-column: 1/span 2;
  grid-row: 1/span 1;
  padding: 16rem 1rem 6rem 6rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.ourMeetingRoomsWrap .meetingRoom__capacity img {
  height: 15rem;
}
.ourMeetingRoomsWrap .meetingRoom__capacity--1 {
  background-image: url("../img/167-169 GPS.jpg");
}
.ourMeetingRoomsWrap .meetingRoom__capacity--2 {
  background-image: url("../img/7 Bell Yard.jpg");
}
.ourMeetingRoomsWrap .meetingRoom__capacity--3 {
  background-image: url("../img/85 GPS-1.jpg");
}
.ourMeetingRoomsWrap .meetingRoom__about {
  grid-column: 1/span 2;
  grid-row: 2/span 1;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.ourMeetingRoomsWrap .meetingRoom__about h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 180%;
  color: #2c3b58;
  margin-bottom: 1.5rem;
}
.ourMeetingRoomsWrap .meetingRoom__about p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  font-size: 1.6rem;
  margin-bottom: 0;
}
.ourMeetingRoomsWrap .meetingRoom__info {
  grid-column: 1/span 1;
  grid-row: 3/span 1;
  width: fit-content;
  background-color: white;
  border: 1px solid #EE851F;
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.ourMeetingRoomsWrap .meetingRoom__info img {
  width: 5.8rem;
  margin-right: 1rem;
}
.ourMeetingRoomsWrap .meetingRoom__info p {
  padding: 0;
  margin: 0;
}
.ourMeetingRoomsWrap .meetingRoom__info .meetingRoomPeople {
  padding: 0;
  margin: 0;
  margin-right: 3rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  color: #2c3b58;
  line-height: 100%;
}
.ourMeetingRoomsWrap .meetingRoom__info .meetingRoomPeople span {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #979797;
}
.ourMeetingRoomsWrap .meetingRoom__info .meetingRoomPrice {
  width: 6rem;
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #EE851F;
  text-align: center;
}
.ourMeetingRoomsWrap .meetingRoom__info .meetingRoomPrice span {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 2.3rem;
  color: #EE851F;
  line-height: 120%;
}
.ourMeetingRoomsWrap .meetingRoom__mapBtn {
  grid-column: 2/span 1;
  grid-row: 3/span 1;
  align-self: center;
  margin-left: 1rem;
  padding: 0;
  height: fit-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.ourMeetingRoomsWrap .meetingRoom__mapBtn img {
  width: 2.4rem;
  margin-right: 1rem;
}
.ourMeetingRoomsWrap .meetingRoom__mapBtn p {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  transition: all 0.5s ease;
}
.ourMeetingRoomsWrap .meetingRoom__mapBtn:hover {
  cursor: pointer;
}
.ourMeetingRoomsWrap .meetingRoom__mapBtn:hover p {
  text-decoration: underline;
}

.portlandStreetWrap {
  background-color: #F2F3F5;
  display: grid;
  grid-template-columns: 50% 600px auto;
  margin-bottom: 6rem;
}
.portlandStreetWrap .portlandStreet {
  grid-column: 1/span 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
.portlandStreetWrap .portlandStreet__col1 {
  width: 50%;
  padding: 5rem 1rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.5), rgba(44, 59, 88, 0.5)), url("../img/services-banners/london-west.png");
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.portlandStreetWrap .portlandStreet__col1 h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: center;
  width: fit-content;
  color: #f9f9f9;
  font-size: 3.2rem;
  margin: auto;
}
.portlandStreetWrap .portlandStreet__col1 h3:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin: auto;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}
.portlandStreetWrap .portlandStreet__col1 h3:after {
  margin-bottom: 0;
}
.portlandStreetWrap .portlandStreet__col2 {
  width: 50%;
  padding: 5rem 0 5rem 5rem;
}
.portlandStreetWrap .portlandStreet__col2 h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.8rem;
  color: #2c3b58;
  margin-bottom: 4rem;
}
.portlandStreetWrap .portlandStreet__col2 p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  margin-bottom: 4rem;
}
.portlandStreetWrap .portlandStreet__col2 ul {
  list-style: none;
  margin-bottom: 4rem;
}
.portlandStreetWrap .portlandStreet__col2 ul li {
  width: fit-content;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.portlandStreetWrap .portlandStreet__col2 ul li i {
  color: #EE851F;
  margin-right: 1rem;
  font-size: 0.9rem;
}
.portlandStreetWrap .portlandStreet__col2 .scrollToContactUs {
  display: block;
  width: fit-content;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 100%;
  font-size: 1.8rem;
  color: #f9f9f9;
  background-color: #EE851F;
  padding: 1rem 2.2rem;
  border: 2px solid #EE851F;
  border-radius: 5px;
  transition: all 1s ease;
  padding: 2rem 4rem;
  margin: 0;
}
.portlandStreetWrap .portlandStreet__col2 .scrollToContactUs:hover {
  cursor: pointer;
  border-color: #2c3b58;
  background-color: #2c3b58;
  color: #f9f9f9;
}

.bellYardWrap {
  background-color: #F2F3F5;
  display: grid;
  grid-template-columns: auto 600px 50%;
}
.bellYardWrap .bellYard {
  grid-column: 2/span 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
.bellYardWrap .bellYard__col1 {
  width: 50%;
  padding: 5rem 5rem 5rem 0rem;
}
.bellYardWrap .bellYard__col1 h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.8rem;
  color: #2c3b58;
  margin-bottom: 4rem;
}
.bellYardWrap .bellYard__col1 p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  margin-bottom: 4rem;
}
.bellYardWrap .bellYard__col1 .meetingRoomFeatures {
  margin-bottom: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.bellYardWrap .bellYard__col1 .meetingRoomFeatures ul {
  width: fit-content;
  list-style: none;
}
.bellYardWrap .bellYard__col1 .meetingRoomFeatures ul li {
  width: fit-content;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.bellYardWrap .bellYard__col1 .meetingRoomFeatures ul li i {
  color: #EE851F;
  margin-right: 1rem;
  font-size: 0.9rem;
}
.bellYardWrap .bellYard__col1 .meetingRoomFeatures__1 {
  margin-right: 4rem;
}
.bellYardWrap .bellYard__col1 .scrollToContactUs {
  display: block;
  width: fit-content;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 100%;
  font-size: 1.8rem;
  color: #f9f9f9;
  background-color: #EE851F;
  padding: 1rem 2.2rem;
  border: 2px solid #EE851F;
  border-radius: 5px;
  transition: all 1s ease;
  padding: 2rem 4rem;
  margin: 0;
}
.bellYardWrap .bellYard__col1 .scrollToContactUs:hover {
  cursor: pointer;
  border-color: #2c3b58;
  background-color: #2c3b58;
  color: #f9f9f9;
}
.bellYardWrap .bellYard__col2 {
  width: 50%;
  padding: 5rem 1rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.5), rgba(44, 59, 88, 0.5)), url("../img/services-banners/london-strand.png");
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.bellYardWrap .bellYard__col2 h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: center;
  width: fit-content;
  color: #f9f9f9;
  font-size: 3.2rem;
  margin: auto;
}
.bellYardWrap .bellYard__col2 h3:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin: auto;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}
.bellYardWrap .bellYard__col2 h3:after {
  margin-bottom: 0;
}

@media screen and (max-width: 1340px) {
  .portlandStreetWrap {
    background-color: #F2F3F5;
    display: grid;
    grid-template-columns: 50% 45% auto;
  }
  .bellYardWrap {
    grid-template-columns: auto 45% 50%;
  }
}
@media screen and (max-width: 1270px) {
  .ourMeetingRoomsWrap .meetingRoom {
    display: grid;
    grid-template-rows: max-content max-content max-content max-content;
    grid-template-columns: 1fr;
    background-color: #F2F3F5;
    padding: 2rem;
    padding-bottom: 2.5rem;
  }
  .ourMeetingRoomsWrap .meetingRoom__capacity {
    grid-column: 1/span 1;
    grid-row: 1/span 1;
  }
  .ourMeetingRoomsWrap .meetingRoom__about {
    grid-column: 1/span 1;
    grid-row: 2/span 1;
  }
  .ourMeetingRoomsWrap .meetingRoom__info {
    grid-column: 1/span 1;
    grid-row: 3/span 1;
    width: 100%;
  }
  .ourMeetingRoomsWrap .meetingRoom__mapBtn {
    grid-column: 1/span 1;
    grid-row: 4/span 1;
    align-self: center;
    justify-self: center;
    margin-left: 1rem;
    padding: 4rem 2rem 0 2rem;
    height: fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 1000px) {
  .ourMeetingRoomsWrap p {
    margin-bottom: 3rem;
  }
  .ourMeetingRoomsWrap .ourMeetingRooms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 3rem;
    grid-template-rows: max-content;
  }
  .ourMeetingRoomsWrap .meetingRoom__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .ourMeetingRoomsWrap .meetingRoom__info .meetingRoomPeople {
    padding: 0;
    margin: 0;
    margin-right: 0;
  }
  .ourMeetingRoomsWrap .meetingRoom__info .meetingRoomPrice {
    width: 100%;
    padding: 0;
    margin: 0;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 880px) {
  .portlandStreetWrap {
    display: grid;
    grid-template-columns: 1fr;
  }
  .portlandStreetWrap .portlandStreet {
    grid-column: 1/span 1;
    display: block;
  }
  .portlandStreetWrap .portlandStreet__col1 {
    width: 100%;
  }
  .portlandStreetWrap .portlandStreet__col2 {
    width: 90%;
    margin: auto;
    padding: 5rem 0;
  }
  .bellYardWrap {
    display: grid;
    grid-template-columns: 1fr;
  }
  .bellYardWrap .bellYard {
    grid-column: 1/span 1;
    display: block;
  }
  .bellYardWrap .bellYard__col2 {
    width: 100%;
  }
  .bellYardWrap .bellYard__col1 {
    width: 90%;
    margin: auto;
    padding: 5rem 0;
  }
}
@media screen and (max-width: 800px) {
  .ourMeetingRoomsWrap .ourMeetingRooms {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 3rem;
  }
}
@media screen and (max-width: 400px) {
  .ourMeetingRoomsWrap .meetingRoom__capacity {
    padding: 7rem 1rem;
  }
  .ourMeetingRoomsWrap .meetingRoom__capacity img {
    height: 10rem;
  }
  .ourMeetingRoomsWrap .meetingRoom__info img {
    display: none;
  }
  .ourMeetingRoomsWrap .meetingRoom .meetingRoomPeople {
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
  }
}
.freeCompanyFormationIntro {
  padding: 6rem 0;
}
.freeCompanyFormationIntro p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  font-size: 1.8rem;
  line-height: 180%;
  margin-bottom: 6rem;
}
.freeCompanyFormationIntro a {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  font-size: 1.8rem;
  line-height: 180%;
  transition: all 0.5s ease;
  text-decoration: none;
  color: #EE851F;
}
.freeCompanyFormationIntro a:hover {
  color: #2c3b58;
}

.amountToPayWrapper {
  padding: 6rem 0;
}
.amountToPayWrapper__h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3.4rem;
  color: #2c3b58;
  text-align: center;
  width: fit-content;
  max-width: 90%;
  margin: auto;
  margin-bottom: 3rem;
}
.amountToPayWrapper__p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  font-size: 1.8rem;
  text-align: center;
  width: fit-content;
  max-width: 90%;
  margin: auto;
  margin-bottom: 6rem;
}
.amountToPayWrapper .amountToPayInnerWrap {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 2rem;
  grid-template-rows: 1fr;
  align-items: stretch;
}
.amountToPayWrapper .amountToPay {
  padding: 2rem;
  padding-bottom: 5rem;
  border-radius: 4px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr max-content;
  position: relative;
}
.amountToPayWrapper .amountToPay__info {
  grid-column: 1/span 1;
  grid-row: 1/span 1;
}
.amountToPayWrapper .amountToPay__info h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: center;
  width: fit-content;
  color: #f9f9f9;
  text-align: center;
  width: fit-content;
  margin: 5rem auto 5rem;
}
.amountToPayWrapper .amountToPay__info h3:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin: auto;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}
.amountToPayWrapper .amountToPay__info p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  font-size: 1.8rem;
  text-align: center;
  color: #f9f9f9;
  margin-bottom: 5rem;
}
.amountToPayWrapper .amountToPay__amount {
  grid-column: 1/span 1;
  grid-row: 2/span 1;
  align-self: end;
  width: 100%;
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
}
.amountToPayWrapper .amountToPay__amount p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #f9f9f9;
  font-size: 2.4rem;
  padding-right: 1rem;
}
.amountToPayWrapper .amountToPay--newOrder {
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.9), rgba(44, 59, 88, 0.9)), url("../img/newOrder.png");
}
.amountToPayWrapper .amountToPay--upgrade {
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.9), rgba(44, 59, 88, 0.9)), url("../img/upgrade.png");
}
.amountToPayWrapper .amountToPay--renewal {
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.9), rgba(44, 59, 88, 0.9)), url("../img/renewal.png");
}
.amountToPayWrapper .amountToPay--postDeposit {
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.9), rgba(44, 59, 88, 0.9)), url("../img/postDeposit.png");
}

.payerDetailsWrap__head {
  background-color: #2c3b58;
  padding: 4rem 6rem;
  margin-bottom: 2rem;
  border-radius: 4px;
}
.payerDetailsWrap__head h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.2rem;
  color: #f9f9f9;
  line-height: 160%;
}
.payerDetailsWrap .payerDetails {
  background-color: #E8E8E8;
  padding: 4rem 6rem;
  margin-bottom: 6rem;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: max-content max-content max-content;
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
}
.payerDetailsWrap .payerDetails__head {
  grid-column: 1/span 4;
  grid-row: 1/span 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-end;
}
.payerDetailsWrap .payerDetails__head h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.2rem;
  color: #2c3b58;
  margin-right: 4rem;
}
.payerDetailsWrap .payerDetails__head p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #2c3b58;
  margin-right: 10rem;
}
.payerDetailsWrap .payerDetails__info {
  position: relative;
}
.payerDetailsWrap .payerDetails__info img {
  width: 3rem;
  cursor: pointer;
}
.payerDetailsWrap .payerDetails__info span {
  position: absolute;
  bottom: 6rem;
  right: 1rem;
  background-color: #EE851F;
  padding: 1rem;
  width: 25rem;
  border-radius: 6px;
  border-bottom-right-radius: 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  color: #f9f9f9;
  text-align: center;
  display: none;
}
.payerDetailsWrap .payerDetails__info span::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 100%;
  margin-left: -20px;
  border: 10px solid transparent;
  border-right-color: #EE851F;
  border-top-color: #EE851F;
}
.payerDetailsWrap .payerDetails__info:hover span {
  animation: slideDown 0.5s;
  display: block;
}
@keyframes slideDown {
  0% {
    transform: translateY(-5px);
    opacity: 0.7;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.payerDetailsWrap .payerDetails__detail p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #979797;
  margin-bottom: 1rem;
}
.payerDetailsWrap .payerDetails__detail--companyName {
  grid-column: 1/span 1;
  grid-row: 2/span 1;
}
.payerDetailsWrap .payerDetails__detail--Name {
  grid-column: 2/span 1;
  grid-row: 2/span 1;
}
.payerDetailsWrap .payerDetails__detail--Email {
  grid-column: 1/span 2;
  grid-row: 3/span 1;
}
.payerDetailsWrap .payerDetails__detail--InvoiceNum {
  grid-column: 3/span 2;
  grid-row: 2/span 1;
}

.cardDetailsWrap__head {
  background-color: #2c3b58;
  padding: 4rem 6rem;
  margin-bottom: 2rem;
  border-radius: 4px;
}
.cardDetailsWrap__head h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.2rem;
  color: #f9f9f9;
  line-height: 160%;
}
.cardDetailsWrap .cardDetails {
  background-color: #E8E8E8;
  padding: 4rem 6rem;
  margin-bottom: 6rem;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 2fr 2fr 3fr 4fr 4fr;
  grid-template-rows: max-content max-content max-content max-content max-content;
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
}
.cardDetailsWrap .cardDetails__head {
  grid-column: 1/span 5;
  grid-row: 1/span 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-end;
}
.cardDetailsWrap .cardDetails__head h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.2rem;
  color: #2c3b58;
  margin-right: 4rem;
}
.cardDetailsWrap .cardDetails__head p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #2c3b58;
  margin-right: 14rem;
}
.cardDetailsWrap .cardDetails__info {
  position: relative;
}
.cardDetailsWrap .cardDetails__info img {
  width: 3rem;
  cursor: pointer;
}
.cardDetailsWrap .cardDetails__info span {
  position: absolute;
  bottom: 6rem;
  right: 1rem;
  background-color: #EE851F;
  padding: 1rem;
  width: 25rem;
  border-radius: 6px;
  border-bottom-right-radius: 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  color: #f9f9f9;
  text-align: center;
  display: none;
}
.cardDetailsWrap .cardDetails__info span::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 100%;
  margin-left: -20px;
  border: 10px solid transparent;
  border-right-color: #EE851F;
  border-top-color: #EE851F;
}
.cardDetailsWrap .cardDetails__info:hover span {
  animation: slideDown 0.5s;
  display: block;
}
@keyframes slideDown {
  0% {
    transform: translateY(-5px);
    opacity: 0.7;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.cardDetailsWrap .cardDetails__detail p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #979797;
  margin-bottom: 1rem;
}
.cardDetailsWrap .cardDetails__detail--cardName {
  grid-column: 1/span 3;
  grid-row: 2/span 1;
}
.cardDetailsWrap .cardDetails__detail--cardNumber {
  grid-column: 1/span 3;
  grid-row: 3/span 1;
}
.cardDetailsWrap .cardDetails__detail--expieryMonth {
  grid-column: 1/span 1;
  grid-row: 4/span 1;
  position: relative;
}
.cardDetailsWrap .cardDetails__detail--expieryMonth::after {
  content: "/";
  font-size: 3rem;
  color: #B4B4B4;
  position: absolute;
  right: -2rem;
  top: 50%;
}
.cardDetailsWrap .cardDetails__detail--expieryYear {
  grid-column: 2/span 1;
  grid-row: 4/span 1;
  align-self: end;
}
.cardDetailsWrap .cardDetails__detail--CVC {
  grid-column: 3/span 1;
  grid-row: 4/span 1;
  align-self: end;
}
.cardDetailsWrap .cardDetails__detail--security {
  grid-column: 1/span 3;
  grid-row: 5/span 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-start;
}
.cardDetailsWrap .cardDetails__detail--security .cardDetailsSecurity-1 {
  height: 6rem;
  margin-right: 3rem;
}
.cardDetailsWrap .cardDetails__detail--security .cardDetailsSecurity-2 {
  height: 5rem;
}
.cardDetailsWrap .cardDetails__detail--TandC {
  grid-column: 4/span 2;
  grid-row: 3/span 1;
  align-self: end;
}
.cardDetailsWrap .cardDetails__detail--editOrder {
  grid-column: 4/span 1;
  grid-row: 4/span 1;
  align-self: end;
}
.cardDetailsWrap .cardDetails__detail--editOrder a {
  display: block;
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: #f9f9f9;
  text-align: center;
  text-decoration: none;
  background-color: #B4B4B4;
  border-radius: 4px;
  padding: 2rem;
  height: 6rem;
  margin: 0;
  cursor: pointer;
  transition: all 0.5s ease;
}
.cardDetailsWrap .cardDetails__detail--editOrder a:hover {
  background-color: #EE851F;
}
.cardDetailsWrap .cardDetails__detail--pay {
  grid-column: 5/span 1;
  grid-row: 4/span 1;
  align-self: end;
}
.cardDetailsWrap .cardDetails__detail--pay p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: #f9f9f9;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #EE851F;
  border-radius: 4px;
  padding: 2rem;
  width: 100%;
  height: 6rem;
  margin: 0;
  cursor: pointer;
  transition: all 0.5s ease;
}
.cardDetailsWrap .cardDetails__detail--pay p:hover {
  background-color: #B4B4B4;
}
.cardDetailsWrap .cardDetails__detail--pay p img {
  display: block;
  height: 2rem;
  margin-right: 1rem;
}
.cardDetailsWrap .cardDetails__detail--pay p span {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: #f9f9f9;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
}
.cardDetailsWrap .cardDetails .cvc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.cardDetailsWrap .cardDetails .cvc__info {
  position: relative;
}
.cardDetailsWrap .cardDetails .cvc__info img {
  width: 1.6rem;
  cursor: pointer;
}
.cardDetailsWrap .cardDetails .cvc__info span {
  position: absolute;
  bottom: 6rem;
  right: 1rem;
  background-color: #EE851F;
  padding: 1rem;
  width: 25rem;
  border-radius: 6px;
  border-bottom-right-radius: 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  color: #f9f9f9;
  text-align: center;
  display: none;
}
.cardDetailsWrap .cardDetails .cvc__info span::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 100%;
  margin-left: -20px;
  border: 10px solid transparent;
  border-right-color: #EE851F;
  border-top-color: #EE851F;
}
.cardDetailsWrap .cardDetails .cvc__info:hover span {
  animation: slideDown 0.5s;
  display: block;
}
@keyframes slideDown {
  0% {
    transform: translateY(-5px);
    opacity: 0.7;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media screen and (max-width: 1280px) {
  .cardDetailsWrap__head {
    background-color: #2c3b58;
    padding: 2rem 4rem;
  }
  .cardDetailsWrap .cardDetails {
    padding: 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: max-content max-content max-content max-content max-content max-content max-content;
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }
  .cardDetailsWrap .cardDetails__head {
    grid-column: 1/span 6;
    grid-row: 1/span 1;
  }
  .cardDetailsWrap .cardDetails__detail--cardName {
    grid-column: 1/span 6;
    grid-row: 2/span 1;
  }
  .cardDetailsWrap .cardDetails__detail--cardNumber {
    grid-column: 1/span 6;
    grid-row: 3/span 1;
  }
  .cardDetailsWrap .cardDetails__detail--expieryMonth {
    grid-column: 1/span 2;
    grid-row: 4/span 1;
  }
  .cardDetailsWrap .cardDetails__detail--expieryYear {
    grid-column: 3/span 2;
    grid-row: 4/span 1;
    align-self: end;
  }
  .cardDetailsWrap .cardDetails__detail--CVC {
    grid-column: 5/span 2;
    grid-row: 4/span 1;
    align-self: end;
  }
  .cardDetailsWrap .cardDetails__detail--security {
    grid-column: 1/span 6;
    grid-row: 7/span 1;
  }
  .cardDetailsWrap .cardDetails__detail--TandC {
    grid-column: 1/span 6;
    grid-row: 5/span 1;
    align-self: end;
  }
  .cardDetailsWrap .cardDetails__detail--editOrder {
    grid-column: 1/span 3;
    grid-row: 6/span 1;
    align-self: end;
  }
  .cardDetailsWrap .cardDetails__detail--pay {
    grid-column: 4/span 3;
    grid-row: 6/span 1;
    align-self: end;
  }
}
@media screen and (max-width: 1200px) {
  .payerDetailsWrap__head {
    padding: 2rem 4rem;
  }
  .payerDetailsWrap .payerDetails {
    padding: 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: max-content max-content max-content max-content;
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }
  .payerDetailsWrap .payerDetails__head {
    grid-column: 1/span 2;
    grid-row: 1/span 1;
  }
  .payerDetailsWrap .payerDetails__detail--companyName {
    grid-column: 1/span 1;
    grid-row: 2/span 1;
  }
  .payerDetailsWrap .payerDetails__detail--Name {
    grid-column: 2/span 1;
    grid-row: 2/span 1;
  }
  .payerDetailsWrap .payerDetails__detail--Email {
    grid-column: 1/span 2;
    grid-row: 3/span 1;
  }
  .payerDetailsWrap .payerDetails__detail--InvoiceNum {
    grid-column: 1/span 2;
    grid-row: 4/span 1;
  }
}
@media screen and (max-width: 1169px) {
  .amountToPayWrapper .amountToPayInnerWrap {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 2rem;
    grid-template-rows: 1fr 1fr;
    grid-row-gap: 2rem;
  }
}
@media screen and (max-width: 800px) {
  .payerDetailsWrap__head {
    padding: 1.5rem 2rem;
  }
  .payerDetailsWrap .payerDetails {
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: max-content max-content max-content max-content max-content;
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }
  .payerDetailsWrap .payerDetails__head {
    grid-column: 1/span 1;
    grid-row: 1/span 1;
  }
  .payerDetailsWrap .payerDetails__head h3 {
    margin-bottom: 2rem;
  }
  .payerDetailsWrap .payerDetails__head p {
    margin-bottom: 2rem;
  }
  .payerDetailsWrap .payerDetails__detail--companyName {
    grid-column: 1/span 1;
    grid-row: 2/span 1;
  }
  .payerDetailsWrap .payerDetails__detail--Name {
    grid-column: 1/span 1;
    grid-row: 3/span 1;
  }
  .payerDetailsWrap .payerDetails__detail--Email {
    grid-column: 1/span 1;
    grid-row: 4/span 1;
  }
  .payerDetailsWrap .payerDetails__detail--InvoiceNum {
    grid-column: 1/span 1;
    grid-row: 5/span 1;
  }
}
@media screen and (max-width: 700px) {
  .cardDetailsWrap__head {
    padding: 1.5rem 2rem;
  }
  .cardDetailsWrap .cardDetails {
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: max-content max-content max-content max-content max-content max-content max-content max-content max-content;
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }
  .cardDetailsWrap .cardDetails__head {
    grid-column: 1/span 2;
    grid-row: 1/span 1;
  }
  .cardDetailsWrap .cardDetails__detail--cardName {
    grid-column: 1/span 2;
    grid-row: 2/span 1;
  }
  .cardDetailsWrap .cardDetails__detail--cardNumber {
    grid-column: 1/span 2;
    grid-row: 3/span 1;
  }
  .cardDetailsWrap .cardDetails__detail--expieryMonth {
    grid-column: 1/span 1;
    grid-row: 4/span 1;
  }
  .cardDetailsWrap .cardDetails__detail--expieryYear {
    grid-column: 2/span 1;
    grid-row: 4/span 1;
    align-self: end;
  }
  .cardDetailsWrap .cardDetails__detail--CVC {
    grid-column: 1/span 2;
    grid-row: 5/span 1;
    align-self: end;
  }
  .cardDetailsWrap .cardDetails__detail--security {
    grid-column: 1/span 2;
    grid-row: 9/span 1;
  }
  .cardDetailsWrap .cardDetails__detail--TandC {
    grid-column: 1/span 2;
    grid-row: 6/span 1;
    align-self: end;
  }
  .cardDetailsWrap .cardDetails__detail--editOrder {
    grid-column: 1/span 2;
    grid-row: 7/span 1;
    align-self: end;
  }
  .cardDetailsWrap .cardDetails__detail--pay {
    grid-column: 1/span 2;
    grid-row: 8/span 1;
    align-self: end;
  }
}
@media screen and (max-width: 600px) {
  .amountToPayWrapper .amountToPayInnerWrap {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 2rem;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-row-gap: 2rem;
  }
}
.cartProgressWrap {
  padding: 6rem 0;
}
.cartProgressWrap .cartProgress {
  width: 100%;
  max-width: 80rem;
  margin: auto;
  display: grid;
  grid-template-columns: max-content 40px max-content 1fr max-content 40px max-content 1fr max-content 40px max-content;
  grid-template-rows: max-content max-content;
  grid-row-gap: 2rem;
}
.cartProgressWrap .cartProgress__stageNum {
  z-index: 2;
  width: 4rem;
  height: 4rem;
  background-color: #E8E8E8;
  border-radius: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.cartProgressWrap .cartProgress__stageNum p {
  width: fit-content;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #f9f9f9;
}
.cartProgressWrap .cartProgress__stageNum--active {
  background-color: #EE851F;
}
.cartProgressWrap .cartProgress__stageNum--1 {
  grid-column: 2/span 1;
  grid-row: 1/span 1;
  align-self: center;
}
.cartProgressWrap .cartProgress__stageNum--2 {
  grid-column: 6/span 1;
  grid-row: 1/span 1;
  align-self: center;
}
.cartProgressWrap .cartProgress__stageNum--3 {
  grid-column: 10/span 1;
  grid-row: 1/span 1;
  align-self: center;
}
.cartProgressWrap .cartProgress__stageName p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #2c3b58;
  display: block;
  width: 100%;
}
.cartProgressWrap .cartProgress__stageName--1 {
  grid-column: 1/span 3;
  grid-row: 2/span 1;
  align-self: center;
}
.cartProgressWrap .cartProgress__stageName--2 {
  grid-column: 5/span 3;
  grid-row: 2/span 1;
  align-self: center;
}
.cartProgressWrap .cartProgress__stageName--3 {
  grid-column: 9/span 3;
  grid-row: 2/span 1;
  align-self: center;
}
.cartProgressWrap .cartProgress__line {
  z-index: 1;
  height: 3px;
  background-color: #E8E8E8;
  width: 100%;
}
.cartProgressWrap .cartProgress__line--active {
  background-color: #EE851F;
}
.cartProgressWrap .cartProgress__line--1 {
  grid-column: 2/span 5;
  grid-row: 1/span 1;
  align-self: center;
}
.cartProgressWrap .cartProgress__line--2 {
  grid-column: 6/span 5;
  grid-row: 1/span 1;
  align-self: center;
}

.cartSummaryWrap {
  padding: 5rem 0;
  background-color: #E8E8E8;
}
.cartSummaryWrap .cartSummary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.cartSummaryWrap .cartSummary__left {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: fit-content;
}
.cartSummaryWrap .cartSummary__right {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: fit-content;
}
.cartSummaryWrap .cartSummary__cartImage {
  width: 6.6rem;
  margin-right: 3rem;
}
.cartSummaryWrap .cartSummary__summary {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 2rem;
  line-height: 140%;
  color: #2c3b58;
}
.cartSummaryWrap .cartSummary__summary span {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 2rem;
}
.cartSummaryWrap .cartSummary__total {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 2rem;
  line-height: 140%;
  color: #2c3b58;
  margin-right: 3rem;
}
.cartSummaryWrap .cartSummary__total span {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 2rem;
}
.cartSummaryWrap .cartSummary__total--cart3 {
  margin-right: 0;
}
.cartSummaryWrap .cartSummary__btn {
  display: block;
  width: fit-content;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 100%;
  font-size: 1.8rem;
  color: #f9f9f9;
  background-color: #EE851F;
  padding: 1rem 2.2rem;
  border: 2px solid #EE851F;
  border-radius: 5px;
  transition: all 1s ease;
}
.cartSummaryWrap .cartSummary__btn:hover {
  cursor: pointer;
  border-color: #2c3b58;
  background-color: #2c3b58;
  color: #f9f9f9;
}

@media screen and (max-width: 600px) {
  .cartProgressWrap .cartProgress__stageName p {
    width: min-content;
    text-align: center;
  }
  .cartProgressWrap .cartProgress__stageName--1 {
    grid-column: 1/span 3;
    grid-row: 2/span 1;
  }
  .cartProgressWrap .cartProgress__stageName--2 {
    grid-column: 5/span 3;
    grid-row: 2/span 1;
  }
  .cartProgressWrap .cartProgress__stageName--3 {
    grid-column: 9/span 3;
    grid-row: 2/span 1;
  }
}
@media screen and (max-width: 800px) {
  .cartItemsWrap .cartItems td {
    padding: 10px;
  }
  .cartItemsWrap .cartItem__itemName {
    font-size: 1.8rem;
  }
  .cartItemsWrap .cartItem__itemName span {
    display: block;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 1.6rem;
  }
  .cartItemsWrap .cartItem__price {
    font-size: 1.8rem;
  }
  .cartItemsWrap .cartItem__delete img {
    width: 1.6rem;
    cursor: pointer;
  }
}
@media screen and (max-width: 400px) {
  .cartItemsWrap .cartItem__itemName {
    font-size: 1.6rem;
  }
  .cartItemsWrap .cartItem__itemName span {
    display: block;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
  }
  .cartItemsWrap .cartItem__price {
    font-size: 1.6rem;
  }
  .cartItemsWrap .cartItem__delete img {
    width: 1.6rem;
    cursor: pointer;
  }
}
.cartItemsWrap {
  margin: 6rem auto 3rem auto;
  padding: 2rem;
  background-color: #2c3b58;
}
.cartItemsWrap .cartItems {
  width: 100%;
  border: none;
  border-collapse: collapse;
}
.cartItemsWrap .cartItems td {
  padding: 20px 20px;
}
.cartItemsWrap .cartItem__itemName {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  color: #f9f9f9;
  line-height: 140%;
  vertical-align: center;
}
.cartItemsWrap .cartItem__itemName span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1.8rem;
}
.cartItemsWrap .cartItem__price {
  text-align: center;
  vertical-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  color: #f9f9f9;
}
.cartItemsWrap .cartItem__delete {
  text-align: right;
  vertical-align: center;
}
.cartItemsWrap .cartItem__delete img {
  width: 2rem;
  cursor: pointer;
}
.cartItemsWrap .cartItem__info {
  text-align: right;
  vertical-align: center;
}
.cartItemsWrap .cartItem__info p {
  position: relative;
}
.cartItemsWrap .cartItem__info p img {
  width: 3rem;
  cursor: pointer;
}
.cartItemsWrap .cartItem__info p span {
  position: absolute;
  bottom: 6rem;
  right: 1rem;
  background-color: #EE851F;
  padding: 1rem;
  width: 25rem;
  border-radius: 6px;
  border-bottom-right-radius: 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  color: #f9f9f9;
  text-align: center;
  display: none;
}
.cartItemsWrap .cartItem__info p span::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 100%;
  margin-left: -20px;
  border: 10px solid transparent;
  border-right-color: #EE851F;
  border-top-color: #EE851F;
}
.cartItemsWrap .cartItem__info p:hover span {
  animation: slideDown 0.5s;
  display: block;
}
@keyframes slideDown {
  0% {
    transform: translateY(-5px);
    opacity: 0.7;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.upsellsWrap {
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 2rem;
  grid-template-rows: 1fr;
  align-items: stretch;
  justify-content: stretch;
}
.upsellsWrap .upsell-1 {
  grid-column: 1/span 1;
  grid-row: 1/span 1;
  background-color: #E8E8E8;
  padding: 2rem;
  min-height: 15rem;
  display: grid;
  grid-template-columns: 1fr max-content;
  grid-column-gap: 1rem;
  grid-template-rows: 1fr 1fr;
}
.upsellsWrap .upsell-1__name {
  grid-column: 1/span 1;
  grid-row: 1/span 1;
  justify-self: start;
  align-self: start;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  color: #2c3b58;
}
.upsellsWrap .upsell-1__price {
  grid-column: 2/span 1;
  grid-row: 1/span 1;
  justify-self: end;
  align-self: start;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  color: #2c3b58;
}
.upsellsWrap .upsell-1__select {
  grid-column: 1/span 1;
  grid-row: 2/span 1;
  justify-self: start;
  align-self: end;
}
.upsellsWrap .upsell-1__select select {
  cursor: pointer;
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #2c3b58;
  line-height: 160%;
  padding: 0.6em 1.4em 0.5em 0.8em;
  width: 18rem;
  box-sizing: border-box;
  border: 1px solid #F5F5F5;
  box-shadow: none;
  border-radius: 5px;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #F5F5F5;
  background-image: url("../img/angle-down-solid.svg"), linear-gradient(to bottom, #F5F5F5 100%, #F5F5F5 100%);
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 1.2rem auto, 100%;
}
.upsellsWrap .upsell-1__select select:focus {
  border: 1px solid #EE851F;
}
.upsellsWrap .upsell-1__select option {
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #4D4C4C;
}
.upsellsWrap .upsell-1__add {
  grid-column: 2/span 2;
  grid-row: 2/span 1;
  justify-self: end;
  align-self: end;
  display: block;
  width: fit-content;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 100%;
  font-size: 1.8rem;
  color: #f9f9f9;
  background-color: #EE851F;
  padding: 1rem 2.2rem;
  border: 2px solid #EE851F;
  border-radius: 5px;
  transition: all 1s ease;
}
.upsellsWrap .upsell-1__add:hover {
  cursor: pointer;
  border-color: #2c3b58;
  background-color: #2c3b58;
  color: #f9f9f9;
}
.upsellsWrap .upsell-2 {
  grid-column: 2/span 1;
  grid-row: 1/span 1;
  background-color: #2c3b58;
  padding-right: 2rem;
  display: grid;
  grid-template-columns: 15rem 1fr 1fr;
  grid-column-gap: 1rem;
  grid-template-rows: 1fr 1fr 1r;
  grid-row-gap: 1rem;
}
.upsellsWrap .upsell-2__img {
  grid-column: 1/span 1;
  grid-row: 1/span 3;
  align-self: stretch;
  justify-self: stretch;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center;
}
.upsellsWrap .upsell-2__img--teleAnsw {
  background-image: url("../img/rand1.png");
}
.upsellsWrap .upsell-2__name {
  grid-column: 2/span 2;
  grid-row: 1/span 1;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  color: #f9f9f9;
  margin-top: 2rem;
}
.upsellsWrap .upsell-2__price {
  grid-column: 2/span 2;
  grid-row: 2/span 1;
  padding: 2rem 0;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  color: #f9f9f9;
}
.upsellsWrap .upsell-2__select {
  grid-column: 2/span 1;
  grid-row: 3/span 1;
  align-self: flex-end;
  padding-bottom: 2rem;
}
.upsellsWrap .upsell-2__select select {
  cursor: pointer;
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #2c3b58;
  line-height: 160%;
  padding: 0.6em 1.4em 0.5em 0.8em;
  width: 18rem;
  box-sizing: border-box;
  border: 1px solid #F5F5F5;
  box-shadow: none;
  border-radius: 5px;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #F5F5F5;
  background-image: url("../img/angle-down-solid.svg"), linear-gradient(to bottom, #F5F5F5 100%, #F5F5F5 100%);
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 1.2rem auto, 100%;
}
.upsellsWrap .upsell-2__select select:focus {
  border: 1px solid #EE851F;
}
.upsellsWrap .upsell-2__select option {
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #4D4C4C;
}
.upsellsWrap .upsell-2__add {
  grid-column: 3/span 1;
  grid-row: 3/span 1;
  align-self: flex-end;
  justify-self: end;
  margin-bottom: 2rem;
  background-color: transparent;
  padding: 1rem 2.2rem;
  border: 2px solid #f9f9f9;
  border-radius: 5px;
  transition: all 0.5s ease;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 100%;
  font-size: 1.8rem;
  color: #f9f9f9;
  cursor: pointer;
}
.upsellsWrap .upsell-2__add:hover {
  cursor: pointer;
  border-color: #EE851F;
  background-color: #EE851F;
  color: #f9f9f9;
}

.diccount-orderSummary-Wrap {
  margin-bottom: 6rem;
  display: grid;
  grid-template-columns: 1fr max-content;
  grid-template-rows: 1fr;
  align-items: stretch;
}
.diccount-orderSummary-Wrap .dicountCodeWrap {
  grid-column: 1/span 1;
  grid-row: 1/span 1;
  background-color: #E5E5E5;
}
.diccount-orderSummary-Wrap .dicountCodeWrap__head {
  padding: 2rem;
  padding-left: 4rem;
  background-color: #2c3b58;
}
.diccount-orderSummary-Wrap .dicountCodeWrap__head h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 140%;
  color: #f9f9f9;
}
.diccount-orderSummary-Wrap .dicountCodeWrap .discountCode {
  background-color: #E5E5E5;
  padding: 4rem;
  max-width: 60rem;
  display: grid;
  grid-template-columns: 1fr max-content;
  grid-template-rows: 1fr;
}
.diccount-orderSummary-Wrap .dicountCodeWrap .discountCode__code {
  grid-column: 1/span 1;
  grid-row: 1/span 1;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.diccount-orderSummary-Wrap .dicountCodeWrap .discountCode__apply {
  grid-column: 2/span 1;
  grid-row: 1/span 1;
  display: block;
  width: fit-content;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 100%;
  font-size: 1.8rem;
  color: #f9f9f9;
  background-color: #EE851F;
  padding: 1rem 2.2rem;
  border: 2px solid #EE851F;
  border-radius: 5px;
  transition: all 1s ease;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.diccount-orderSummary-Wrap .dicountCodeWrap .discountCode__apply:hover {
  cursor: pointer;
  border-color: #2c3b58;
  background-color: #2c3b58;
  color: #f9f9f9;
}
.diccount-orderSummary-Wrap .dicountCodeWrap .discountSafe {
  background-color: #E5E5E5;
  padding: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-start;
}
.diccount-orderSummary-Wrap .dicountCodeWrap .discountSafe__img--worldPay {
  height: 6rem;
  margin-right: 3rem;
}
.diccount-orderSummary-Wrap .dicountCodeWrap .discountSafe__img--SSL {
  height: 5rem;
}
.diccount-orderSummary-Wrap .orderSummaryWrap {
  background-color: #E5E5E5;
}
.diccount-orderSummary-Wrap .orderSummaryWrap__head {
  padding: 2rem 4rem 2rem 0;
  background-color: #2c3b58;
}
.diccount-orderSummary-Wrap .orderSummaryWrap__head h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 140%;
  color: #f9f9f9;
}
.diccount-orderSummary-Wrap .orderSummaryWrap .orderSummary {
  padding: 4rem 4rem 4rem 0;
}
.diccount-orderSummary-Wrap .orderSummaryWrap .orderSummary__item td {
  padding: 1rem 0rem 1rem 0;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: #4D4C4C;
}
.diccount-orderSummary-Wrap .orderSummaryWrap .orderSummary__itemName {
  padding-right: 10rem !important;
}
.diccount-orderSummary-Wrap .orderSummaryWrap .orderSummary__itemPrice {
  font-weight: 700 !important;
  text-align: right;
}
.diccount-orderSummary-Wrap .orderSummaryWrap .orderSummary__total td {
  padding-top: 3rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #4D4C4C;
  vertical-align: top;
}
.diccount-orderSummary-Wrap .orderSummaryWrap .orderSummary__total td span {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
.diccount-orderSummary-Wrap .orderSummaryWrap .orderSummaryNext {
  margin-bottom: 4rem;
  padding-right: 4rem;
}
.diccount-orderSummary-Wrap .orderSummaryWrap .orderSummaryNext button {
  display: block;
  width: fit-content;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 100%;
  font-size: 1.8rem;
  color: #f9f9f9;
  background-color: #EE851F;
  padding: 1rem 2.2rem;
  border: 2px solid #EE851F;
  border-radius: 5px;
  transition: all 1s ease;
  width: 100%;
}
.diccount-orderSummary-Wrap .orderSummaryWrap .orderSummaryNext button:hover {
  cursor: pointer;
  border-color: #2c3b58;
  background-color: #2c3b58;
  color: #f9f9f9;
}

@media screen and (max-width: 1210px) {
  .upsellsWrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 3rem;
    grid-template-rows: 1fr 1fr;
    align-items: stretch;
    justify-content: stretch;
  }
  .upsellsWrap .upsell-1 {
    grid-column: 1/span 1;
    grid-row: 1/span 1;
  }
  .upsellsWrap .upsell-2 {
    grid-column: 1/span 1;
    grid-row: 2/span 1;
  }
}
@media screen and (max-width: 800px) {
  .cartItemsWrap .cartItems td {
    padding: 10px;
  }
  .cartItemsWrap .cartItem__itemName {
    font-size: 1.8rem;
  }
  .cartItemsWrap .cartItem__itemName span {
    display: block;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 1.6rem;
  }
  .cartItemsWrap .cartItem__price {
    font-size: 1.8rem;
  }
  .cartItemsWrap .cartItem__delete img {
    width: 1.6rem;
    cursor: pointer;
  }
  .diccount-orderSummary-Wrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    align-items: stretch;
  }
  .diccount-orderSummary-Wrap .dicountCodeWrap {
    background-color: #E5E5E5;
    margin-bottom: 3rem;
    grid-column: 1/span 1;
    grid-row: 1/span 1;
  }
  .diccount-orderSummary-Wrap .dicountCodeWrap .discountCode {
    max-width: 100%;
  }
  .diccount-orderSummary-Wrap .dicountCodeWrap .discountSafe {
    justify-content: space-between;
  }
  .diccount-orderSummary-Wrap .orderSummaryWrap {
    grid-column: 1/span 1;
    grid-row: 2/span 1;
  }
  .diccount-orderSummary-Wrap .orderSummaryWrap__head {
    padding: 2rem 4rem 2rem 4rem;
  }
  .diccount-orderSummary-Wrap .orderSummaryWrap .orderSummary {
    padding: 4rem 4rem 4rem 4rem;
  }
}
@media screen and (max-width: 600px) {
  .upsellsWrap .upsell-1 {
    background-color: #E8E8E8;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 2rem;
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }
  .upsellsWrap .upsell-1__name {
    grid-column: 1/span 1;
    grid-row: 1/span 1;
    justify-self: start;
    align-self: start;
  }
  .upsellsWrap .upsell-1__price {
    grid-column: 1/span 1;
    grid-row: 2/span 1;
    justify-self: start;
    align-self: start;
  }
  .upsellsWrap .upsell-1__select {
    grid-column: 1/span 1;
    grid-row: 3/span 1;
    justify-self: start;
    align-self: start;
  }
  .upsellsWrap .upsell-1__add {
    grid-column: 1/span 1;
    grid-row: 4/span 1;
    justify-self: start;
    align-self: start;
  }
  .upsellsWrap .upsell-2 {
    padding: 2rem !important;
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 2rem;
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }
  .upsellsWrap .upsell-2__img {
    display: none;
  }
  .upsellsWrap .upsell-2__name {
    padding: 0 !important;
    margin: 0 !important;
    grid-column: 1/span 1;
    grid-row: 1/span 1;
    justify-self: start;
    align-self: start;
  }
  .upsellsWrap .upsell-2__price {
    padding: 0 !important;
    margin: 0 !important;
    grid-column: 1/span 1;
    grid-row: 2/span 1;
    justify-self: start;
    align-self: start;
  }
  .upsellsWrap .upsell-2__select {
    padding: 0 !important;
    margin: 0 !important;
    grid-column: 1/span 1;
    grid-row: 3/span 1;
    justify-self: start;
    align-self: start;
  }
  .upsellsWrap .upsell-2__add {
    margin: 0 !important;
    grid-column: 1/span 1;
    grid-row: 4/span 1;
    justify-self: start;
    align-self: start;
  }
}
@media screen and (max-width: 400px) {
  .cartItemsWrap .cartItem__itemName {
    font-size: 1.6rem;
  }
  .cartItemsWrap .cartItem__itemName span {
    display: block;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
  }
  .cartItemsWrap .cartItem__price {
    font-size: 1.6rem;
  }
  .cartItemsWrap .cartItem__delete img {
    width: 1.6rem;
    cursor: pointer;
  }
  .diccount-orderSummary-Wrap .dicountCodeWrap__head {
    padding: 2rem !important;
  }
  .diccount-orderSummary-Wrap .dicountCodeWrap .discountCode {
    padding: 2rem;
  }
  .diccount-orderSummary-Wrap .dicountCodeWrap .discountSafe {
    padding: 2rem;
  }
  .diccount-orderSummary-Wrap .orderSummaryWrap__head {
    padding: 2rem !important;
  }
  .diccount-orderSummary-Wrap .orderSummaryWrap .orderSummary {
    padding: 2rem !important;
  }
}
.additionalDetailsHeader {
  margin: 6rem auto 3rem auto;
  background-color: #2c3b58;
  padding: 4rem 4rem;
}
.additionalDetailsHeader h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 140%;
  font-size: 2.2rem;
  color: #f9f9f9;
}

.cart2-Section {
  padding: 4rem;
  background-color: #E8E8E8;
  margin-bottom: 3rem;
}
.cart2-Section__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.cart2-Section__heading h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 140%;
  color: #2c3b58;
}
.cart2-Section__heading p {
  position: relative;
}
.cart2-Section__heading p img {
  width: 3rem;
  cursor: pointer;
}
.cart2-Section__heading p span {
  position: absolute;
  bottom: 6rem;
  right: 1rem;
  background-color: #EE851F;
  padding: 1rem;
  width: 25rem;
  border-radius: 6px;
  border-bottom-right-radius: 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  color: #f9f9f9;
  text-align: center;
  display: none;
}
.cart2-Section__heading p span::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 100%;
  margin-left: -20px;
  border: 10px solid transparent;
  border-right-color: #EE851F;
  border-top-color: #EE851F;
}
.cart2-Section__heading p:hover span {
  animation: slideDown 0.5s;
  display: block;
}
@keyframes slideDown {
  0% {
    transform: translateY(-5px);
    opacity: 0.7;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.cart2-Section__detail {
  margin-top: 2rem;
}
.cart2-Section__detail p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #979797;
  margin-bottom: 1rem;
}

.personalDetailsWrap {
  padding-top: 4rem;
  background-color: #E8E8E8;
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 4rem;
  grid-template-rows: max-content 1fr;
  align-items: start;
}
.personalDetailsWrap__head {
  padding-left: 4rem;
  grid-column: 1/span 2;
  grid-row: 1/span 1;
}
.personalDetailsWrap__head h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: #2c3b58;
}
.personalDetailsWrap .personalDetails {
  padding-right: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 2rem;
  grid-template-rows: max-content 1fr 1fr 1fr 1fr;
}
.personalDetailsWrap .personalDetails__heading {
  grid-column: 1/span 2;
  grid-row: 1/span 1;
}
.personalDetailsWrap .personalDetails__fName {
  grid-column: 1/span 1;
  grid-row: 2/span 1;
}
.personalDetailsWrap .personalDetails__lName {
  grid-column: 2/span 1;
  grid-row: 2/span 1;
}
.personalDetailsWrap .personalDetails__email {
  grid-column: 1/span 2;
  grid-row: 3/span 1;
}
.personalDetailsWrap .personalDetails__phone {
  grid-column: 1/span 2;
  grid-row: 4/span 1;
}
.personalDetailsWrap .personalDetails__mobile {
  grid-column: 1/span 2;
  grid-row: 5/span 1;
}
.personalDetailsWrap .personalAddress {
  padding-left: 0;
}
.personalDetailsWrap .personalAddress__postCode {
  margin-top: 4.5rem;
  display: grid;
  grid-template-columns: 1fr max-content;
}
.personalDetailsWrap .personalAddress__postCode input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.personalDetailsWrap .personalAddress__postCode button {
  display: block;
  width: fit-content;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 100%;
  font-size: 1.8rem;
  color: #f9f9f9;
  background-color: #EE851F;
  padding: 1rem 2.2rem;
  border: 2px solid #EE851F;
  border-radius: 5px;
  transition: all 1s ease;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}
.personalDetailsWrap .personalAddress__postCode button:hover {
  cursor: pointer;
  border-color: #2c3b58;
  background-color: #2c3b58;
  color: #f9f9f9;
}
.personalDetailsWrap .personalAddress__manualBtn {
  margin-top: 2rem;
}
.personalDetailsWrap .personalAddress__manualBtn p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #2c3b58;
  text-decoration: underline;
  cursor: pointer;
}
.personalDetailsWrap .personalAddress__manualBtn p:hover {
  transition: all 0.5s ease;
  color: #EE851F;
}
.personalDetailsWrap .personalAddress .manualAddress {
  display: none;
}

.companyInfoWrap .companyInfo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 4rem;
  grid-template-rows: max-content max-content max-content;
  align-items: end;
}
.companyInfoWrap .companyInfo__heading {
  grid-column: 1/span 1;
  grid-row: 1/span 1;
}
.companyInfoWrap .companyInfo__companyType {
  grid-column: 1/span 1;
  grid-row: 2/span 1;
}
.companyInfoWrap .companyInfo__companyName {
  grid-column: 1/span 1;
  grid-row: 3/span 1;
}
.companyInfoWrap .companyInfo__tradingName {
  grid-column: 2/span 1;
  grid-row: 2/span 1;
}
.companyInfoWrap .companyInfo__companyNum {
  grid-column: 2/span 1;
  grid-row: 3/span 1;
  display: grid;
  grid-template-columns: 1fr max-content;
  grid-template-rows: max-content 1fr;
  display: none;
}
.companyInfoWrap .companyInfo__companyNum p {
  grid-column: 1/span 2;
}
.companyInfoWrap .companyInfo__companyNum input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.companyInfoWrap .companyInfo__companyNum button {
  display: block;
  width: fit-content;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 100%;
  font-size: 1.8rem;
  color: #f9f9f9;
  background-color: #EE851F;
  padding: 1rem 2.2rem;
  border: 2px solid #EE851F;
  border-radius: 5px;
  transition: all 1s ease;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}
.companyInfoWrap .companyInfo__companyNum button:hover {
  cursor: pointer;
  border-color: #2c3b58;
  background-color: #2c3b58;
  color: #f9f9f9;
}
.companyInfoWrap .companyInfo__newLimited {
  grid-column: 2/span 1;
  grid-row: 3/span 1;
  display: none;
}

.selectLocationWrap .selectLocation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 4rem;
  grid-template-rows: max-content max-content;
}
.selectLocationWrap .selectLocation__heading {
  grid-column: 1/span 1;
  grid-row: 1/span 1;
}
.selectLocationWrap .selectLocation__location {
  grid-column: 1/span 1;
  grid-row: 2/span 1;
}

.createPasswordWrap .createPassword {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 4rem;
  grid-template-rows: max-content max-content max-content max-content;
}
.createPasswordWrap .createPassword__heading {
  grid-column: 1/span 1;
  grid-row: 1/span 1;
}
.createPasswordWrap .createPassword__note {
  grid-column: 1/span 2;
  grid-row: 2/span 1;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #979797;
  margin-top: 2rem;
}
.createPasswordWrap .createPassword__pass {
  grid-column: 1/span 1;
  grid-row: 3/span 1;
}
.createPasswordWrap .createPassword__passConfirm {
  grid-column: 2/span 1;
  grid-row: 3/span 1;
}
.createPasswordWrap .createPassword__next {
  grid-column: 1/span 2;
  grid-row: 4/span 1;
}
.createPasswordWrap .createPassword__next button {
  display: block;
  width: fit-content;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 100%;
  font-size: 1.8rem;
  color: #f9f9f9;
  background-color: #EE851F;
  padding: 1rem 2.2rem;
  border: 2px solid #EE851F;
  border-radius: 5px;
  transition: all 1s ease;
  margin-top: 5rem;
  margin-left: auto;
}
.createPasswordWrap .createPassword__next button:hover {
  cursor: pointer;
  border-color: #2c3b58;
  background-color: #2c3b58;
  color: #f9f9f9;
}

@media screen and (max-width: 924px) {
  .personalDetailsWrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: max-content max-content max-content;
  }
  .personalDetailsWrap__head {
    padding-left: 4rem;
    grid-column: 1/span 1;
    grid-row: 1/span 1;
  }
}
@media screen and (max-width: 800px) {
  .companyInfoWrap .companyInfo {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 4rem;
    grid-template-rows: max-content max-content max-content max-content max-content;
  }
  .companyInfoWrap .companyInfo__heading {
    grid-column: 1/span 1;
    grid-row: 1/span 1;
  }
  .companyInfoWrap .companyInfo__companyType {
    grid-column: 1/span 1;
    grid-row: 2/span 1;
  }
  .companyInfoWrap .companyInfo__companyName {
    grid-column: 1/span 1;
    grid-row: 3/span 1;
  }
  .companyInfoWrap .companyInfo__tradingName {
    grid-column: 1/span 1;
    grid-row: 4/span 1;
  }
  .companyInfoWrap .companyInfo__companyNum {
    grid-column: 1/span 1;
    grid-row: 5/span 1;
  }
  .companyInfoWrap .companyInfo__newLimited {
    grid-column: 1/span 1;
    grid-row: 5/span 1;
  }
  .selectLocationWrap .selectLocation {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: max-content max-content;
  }
  .selectLocationWrap .selectLocation__heading {
    grid-column: 1/span 1;
    grid-row: 1/span 1;
  }
  .selectLocationWrap .selectLocation__location {
    grid-column: 1/span 1;
    grid-row: 2/span 1;
  }
  .createPasswordWrap .createPassword {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: max-content max-content max-content max-content max-content;
  }
  .createPasswordWrap .createPassword__heading {
    grid-column: 1/span 1;
    grid-row: 1/span 1;
  }
  .createPasswordWrap .createPassword__note {
    grid-column: 1/span 1;
    grid-row: 2/span 1;
  }
  .createPasswordWrap .createPassword__pass {
    grid-column: 1/span 1;
    grid-row: 3/span 1;
  }
  .createPasswordWrap .createPassword__passConfirm {
    grid-column: 1/span 1;
    grid-row: 4/span 1;
  }
  .createPasswordWrap .createPassword__next {
    grid-column: 1/span 1;
    grid-row: 5/span 1;
  }
}
@media screen and (max-width: 500px) {
  .cart2-Section {
    padding: 1.5rem;
  }
  .additionalDetailsHeader {
    padding: 1.5rem;
  }
  .personalDetailsWrap__head {
    padding-left: 1.5rem;
  }
  .personalDetailsWrap .personalDetails {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: max-content 1fr 1fr 1fr 1fr 1fr;
  }
  .personalDetailsWrap .personalDetails__heading {
    grid-column: 1/span 1;
    grid-row: 1/span 1;
  }
  .personalDetailsWrap .personalDetails__fName {
    grid-column: 1/span 1;
    grid-row: 2/span 1;
  }
  .personalDetailsWrap .personalDetails__lName {
    grid-column: 1/span 1;
    grid-row: 3/span 1;
  }
  .personalDetailsWrap .personalDetails__email {
    grid-column: 1/span 1;
    grid-row: 4/span 1;
  }
  .personalDetailsWrap .personalDetails__phone {
    grid-column: 1/span 1;
    grid-row: 5/span 1;
  }
  .personalDetailsWrap .personalDetails__mobile {
    grid-column: 1/span 1;
    grid-row: 6/span 1;
  }
  .personalDetailsWrap .personalAddress__postCode {
    display: block;
  }
  .personalDetailsWrap .personalAddress__postCode input {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
  }
  .personalDetailsWrap .personalAddress__postCode button {
    display: block;
    width: fit-content;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    line-height: 100%;
    font-size: 1.8rem;
    color: #f9f9f9;
    background-color: #EE851F;
    padding: 1rem 2.2rem;
    border: 2px solid #EE851F;
    border-radius: 5px;
    transition: all 1s ease;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    width: 100%;
    margin-top: 1rem;
  }
  .personalDetailsWrap .personalAddress__postCode button:hover {
    cursor: pointer;
    border-color: #2c3b58;
    background-color: #2c3b58;
    color: #f9f9f9;
  }
}
.thankYouWrap {
  padding: 6rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: max-content max-content max-content;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}
.thankYouWrap__heading {
  grid-column: 1/span 2;
  grid-row: 1/span 1;
  padding-bottom: 4rem;
}
.thankYouWrap__heading h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 180%;
  font-size: 3.4rem;
  color: #2c3b58;
  text-align: center;
}
.thankYouWrap .thankYou-OrderInfo {
  background-color: #E8E8E8;
  padding: 2rem;
}
.thankYouWrap .thankYou-OrderInfo__heading {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.8rem;
  color: #2c3b58;
  margin-bottom: 4rem;
}
.thankYouWrap .thankYou-OrderInfo__companyName {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.2rem;
  color: #2c3b58;
  margin-bottom: 3rem;
}
.thankYouWrap .thankYou-OrderInfo__companyName span {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  color: #EE851F;
}
.thankYouWrap .thankYou-OrderInfo__breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row: 1fr;
  justify-items: stretch;
  align-items: start;
  background-color: #f9f9f9;
}
.thankYouWrap .thankYou-OrderInfo__breakdown .orderItems {
  width: 100%;
  grid-column: 1/span 1;
  grid-row: 1/span 1;
  padding: 0;
  border-collapse: collapse;
}
.thankYouWrap .thankYou-OrderInfo__breakdown .orderItems th {
  background-color: #E8E8E8;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.2rem;
  color: #2c3b58;
  text-align: left;
  padding: 2rem;
}
.thankYouWrap .thankYou-OrderInfo__breakdown .orderItems__item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: max-content max-content;
}
.thankYouWrap .thankYou-OrderInfo__breakdown .orderItems td {
  padding: 2rem;
  padding-bottom: 0.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: #2c3b58;
}
.thankYouWrap .thankYou-OrderInfo__breakdown .orderTotal {
  width: 100%;
  grid-column: 2/span 1;
  grid-row: 1/span 1;
  padding: 0;
  border-collapse: collapse;
}
.thankYouWrap .thankYou-OrderInfo__breakdown .orderTotal th {
  background-color: #E8E8E8;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.2rem;
  color: #2c3b58;
  text-align: left;
  padding: 2rem;
}
.thankYouWrap .thankYou-OrderInfo__breakdown .orderTotal td {
  padding: 2rem;
  padding-bottom: 0.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: #2c3b58;
}
.thankYouWrap .thankYou-OrderInfo__breakdown .orderTotal .orderTotalSubtotal__value {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}
.thankYouWrap .thankYou-OrderInfo__breakdown .orderTotal .orderTotalPostal__value {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}
.thankYouWrap .thankYou-OrderInfo__breakdown .orderTotal .orderTotalVat__value {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}
.thankYouWrap .thankYou-OrderInfo__breakdown .orderTotal .orderTotalTotal__name {
  padding-top: 4rem;
  padding-bottom: 2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 2rem;
}
.thankYouWrap .thankYou-OrderInfo__breakdown .orderTotal .orderTotalTotal__name span {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
}
.thankYouWrap .thankYou-OrderInfo__breakdown .orderTotal .orderTotalTotal__value {
  padding-top: 4rem;
  padding-bottom: 2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  vertical-align: top;
}
.thankYouWrap .thankYou-OrderInfo .openLogInBtn {
  width: 100%;
  margin: 2rem 0;
}
.thankYouWrap .thankYou-OrderInfo .openLogInBtn p {
  width: 100% !important;
  display: block;
  width: fit-content;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 100%;
  font-size: 1.8rem;
  color: #f9f9f9;
  background-color: #EE851F;
  padding: 1rem 2.2rem;
  border: 2px solid #EE851F;
  border-radius: 5px;
  transition: all 1s ease;
  text-align: center;
}
.thankYouWrap .thankYou-OrderInfo .openLogInBtn p:hover {
  cursor: pointer;
  border-color: #2c3b58;
  background-color: #2c3b58;
  color: #f9f9f9;
}
.thankYouWrap .thankYou-OrderInfo__copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 1rem;
}
.thankYouWrap .thankYou-OrderInfo__copy p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #2c3b58;
  margin-right: 1rem;
}
.thankYouWrap .thankYou-OrderInfo__copy .copySentTo {
  color: #EE851F;
  margin-right: 0;
}
.thankYouWrap .thankYou-OrderInfo__print button {
  margin-left: auto;
  border: none;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: #2c3b58;
}
.thankYouWrap .thankYou-OrderInfo__print button img {
  margin-left: 1rem;
  width: 3.3rem;
}
.thankYouWrap .thankYou-Img {
  grid-column: 2/span 1;
  grid-row: 2/span 1;
}
.thankYouWrap .thankYou-Img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thankYouWrap .thankYou-Next {
  grid-column: 1/span 1;
  grid-row: 3/span 1;
  padding: 4rem 2rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.9), rgba(44, 59, 88, 0.9)), url("../img/london3.png");
}
.thankYouWrap .thankYou-Next h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.8rem;
  color: #f9f9f9;
  margin-bottom: 6rem;
}
.thankYouWrap .thankYou-Next p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 160%;
  color: #f9f9f9;
  margin-bottom: 4rem;
}
.thankYouWrap .thankYou-Next span a {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem !important;
  color: #EE851F;
  text-decoration: none;
}
.thankYouWrap .thankYou-Next p:last-child {
  margin-bottom: 0;
}
.thankYouWrap .thankYou-faq {
  grid-column: 2/span 1;
  grid-row: 3/span 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #E8E8E8;
  padding: 4rem 2rem;
}
.thankYouWrap .thankYou-faq h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.8rem;
  color: #2c3b58;
  margin-bottom: 4rem;
}
.thankYouWrap .thankYou-faq__questions .faq3 dt {
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex-wrap: nowrap;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #2c3b58;
  transition: all 0.5s ease;
}
.thankYouWrap .thankYou-faq__questions .faq3 dt:hover {
  cursor: pointer;
  color: #EE851F;
}
.thankYouWrap .thankYou-faq__questions .faq3 dt i {
  color: #EE851F;
  font-size: 1.5rem;
  margin-right: 1rem;
}
.thankYouWrap .thankYou-faq__questions .faq3 dt .fa-minus {
  display: none;
}
.thankYouWrap .thankYou-faq__questions .faq3 dd {
  display: none;
}
.thankYouWrap .thankYou-faq__questions .faq3--open dt {
  margin-bottom: 1rem;
}
.thankYouWrap .thankYou-faq__questions .faq3--open dt i {
  transform: rotate(90deg);
}
.thankYouWrap .thankYou-faq__questions .faq3--open dd {
  display: block;
  margin-bottom: 2rem;
  background-color: #f9f9f9;
  padding: 2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  color: #2c3b58;
  line-height: 140%;
  animation: slideDown 0.5s;
}
@keyframes slideDown {
  0% {
    transform: translateY(-5px);
    opacity: 0.7;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.thankYouWrap .thankYou-faq a {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: #EE851F;
  cursor: pointer;
  transition: all 0.5s ease;
  margin-top: 4rem;
}
.thankYouWrap .thankYou-faq a:hover {
  text-decoration: none;
}

@media screen and (max-width: 1170px) {
  .thankYouWrap .thankYou-OrderInfo {
    grid-column: 1/span 2;
    grid-row: 2/span 1;
  }
  .thankYouWrap .thankYou-Img {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .thankYouWrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: max-content max-content max-content max-content;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }
  .thankYouWrap .thankYou-OrderInfo {
    grid-column: 1/span 1;
    grid-row: 2/span 1;
  }
  .thankYouWrap .thankYou-Next {
    grid-column: 1/span 1;
    grid-row: 3/span 1;
  }
  .thankYouWrap .thankYou-faq {
    grid-column: 1/span 1;
    grid-row: 4/span 1;
  }
}
@media screen and (max-width: 700px) {
  .thankYouWrap .thankYou-OrderInfo__breakdown {
    display: grid;
    grid-template-columns: 1fr;
    grid-row: max-content max-content;
    justify-items: stretch;
    align-items: start;
    background-color: #f9f9f9;
  }
  .thankYouWrap .thankYou-OrderInfo__breakdown .orderItems {
    width: 100%;
    grid-column: 1/span 1;
    grid-row: 1/span 1;
  }
  .thankYouWrap .thankYou-OrderInfo__breakdown .orderTotal {
    width: 100%;
    grid-column: 1/span 1;
    grid-row: 2/span 1;
  }
  .thankYouWrap .thankYou-OrderInfo .openLogInBtn {
    width: 100%;
    margin: 2rem 0;
  }
  .thankYouWrap .thankYou-OrderInfo .openLogInBtn p {
    width: 100% !important;
    display: block;
    width: fit-content;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    line-height: 100%;
    font-size: 1.8rem;
    color: #f9f9f9;
    background-color: #EE851F;
    padding: 1rem 2.2rem;
    border: 2px solid #EE851F;
    border-radius: 5px;
    transition: all 1s ease;
    text-align: center;
  }
  .thankYouWrap .thankYou-OrderInfo .openLogInBtn p:hover {
    cursor: pointer;
    border-color: #2c3b58;
    background-color: #2c3b58;
    color: #f9f9f9;
  }
  .thankYouWrap .thankYou-OrderInfo__copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 1rem;
  }
  .thankYouWrap .thankYou-OrderInfo__copy p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    color: #2c3b58;
    margin-right: 1rem;
  }
  .thankYouWrap .thankYou-OrderInfo__copy .copySentTo {
    color: #EE851F;
    margin-right: 0;
  }
  .thankYouWrap .thankYou-OrderInfo__print button {
    margin-left: auto;
    border: none;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    color: #2c3b58;
  }
  .thankYouWrap .thankYou-OrderInfo__print button img {
    margin-left: 1rem;
    width: 3.3rem;
  }
}
.reasonsToTrustWrap {
  margin: 6rem auto 0;
}
.reasonsToTrustWrap__h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: center;
  width: fit-content;
  width: fit-content;
  max-width: 90%;
  margin: auto;
  margin-bottom: 6rem !important;
}
.reasonsToTrustWrap__h1:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin: auto;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}
.reasonsToTrustWrap .reasonsToTrust {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: max-content;
  grid-column-gap: 3rem;
}
.reasonsToTrustWrap .reasonsToTrust .reason {
  justify-items: stretch;
  align-items: stretch;
  background-color: white;
  box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}
.reasonsToTrustWrap .reasonsToTrust .reason__number {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: #f9f9f9;
  width: fit-content;
  padding: 3rem 5rem 4rem 3rem;
  background-color: #EE851F;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 100%;
}
.reasonsToTrustWrap .reasonsToTrust .reason__heading {
  margin: 3rem 0;
  padding: 0 2rem;
  min-height: 5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  color: #2c3b58;
  text-align: center;
}
.reasonsToTrustWrap .reasonsToTrust .reason__text {
  padding: 4rem;
  padding-top: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 218%;
}
.reasonsToTrustWrap .reasonsToTrust .reason--1 {
  grid-column: 1/span 1;
  grid-row: 1/span 1;
}
.reasonsToTrustWrap .reasonsToTrust .reason--2 {
  grid-column: 2/span 1;
  grid-row: 1/span 1;
}
.reasonsToTrustWrap .reasonsToTrust .reason--3 {
  grid-column: 3/span 1;
  grid-row: 1/span 1;
}

.pricingGetInTouch {
  padding: 10rem 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.9), rgba(44, 59, 88, 0.9)), url("../img/location2.png");
}
.pricingGetInTouch p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3.6rem;
  color: #f9f9f9;
  line-height: 160%;
  text-align: center;
  width: fit-content;
  max-width: 90%;
  margin: 0 auto;
}
.pricingGetInTouch p span {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 3.6rem;
}
.pricingGetInTouch a {
  display: block;
  width: fit-content;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 100%;
  font-size: 1.8rem;
  color: #f9f9f9;
  background-color: #EE851F;
  padding: 1rem 2.2rem;
  border: 2px solid #EE851F;
  border-radius: 5px;
  transition: all 0.5s ease;
  margin: 3rem auto 0 auto;
}
.pricingGetInTouch a:hover {
  cursor: pointer;
  border-color: #f9f9f9;
  background-color: #f9f9f9;
  color: #EE851F;
}

@media screen and (max-width: 956px) {
  .reasonsToTrustWrap {
    margin: 6rem auto 0;
  }
  .reasonsToTrustWrap__h1 {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 3rem;
    color: #2c3b58;
    line-height: 160%;
    text-align: center;
    width: fit-content;
    width: fit-content;
    max-width: 90%;
    margin: auto;
  }
  .reasonsToTrustWrap__h1:after {
    content: "";
    display: block;
    width: 5rem;
    height: 0;
    margin: auto;
    margin-bottom: 3rem;
    margin-top: 1rem;
    border-bottom: 4px solid #EE851F;
  }
  .reasonsToTrustWrap__h2 {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    color: #4D4C4C;
    line-height: 160%;
    width: fit-content;
    max-width: 90%;
    margin: auto;
    margin-bottom: 6rem;
    text-align: center;
  }
  .reasonsToTrustWrap .reasonsToTrust {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: max-content max-content max-content;
    grid-row-gap: 3rem;
  }
  .reasonsToTrustWrap .reasonsToTrust .reason--1 {
    grid-column: 1/span 1;
    grid-row: 1/span 1;
  }
  .reasonsToTrustWrap .reasonsToTrust .reason--2 {
    grid-column: 1/span 1;
    grid-row: 2/span 1;
  }
  .reasonsToTrustWrap .reasonsToTrust .reason--3 {
    grid-column: 1/span 1;
    grid-row: 3/span 1;
  }
  .pricingGetInTouch {
    padding: 10rem 0;
  }
  .pricingGetInTouch p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 2.4rem;
    color: #f9f9f9;
    line-height: 160%;
    text-align: center;
    width: fit-content;
    max-width: 90%;
    margin: 0 auto;
  }
  .pricingGetInTouch p span {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
  }
}
.locationsWrapper {
  padding: 6rem 0;
}
.locationsWrapper__h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: center;
  width: fit-content;
  width: fit-content;
  max-width: 90%;
  margin: auto;
}
.locationsWrapper__h1:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin: auto;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}
.locationsWrapper__h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  width: fit-content;
  max-width: 90%;
  margin: auto;
  margin-bottom: 6rem;
  text-align: center;
}

.locationsSection {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 3rem;
  grid-template-rows: max-content max-content max-content max-content;
  grid-row-gap: 3rem;
  justify-items: stretch;
  align-items: stretch;
}
.locationsSection__h {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 2.8rem;
  color: #2c3b58;
  grid-column: 1/span 3;
  grid-row: 1/span 1;
}
.locationsSection__p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  margin-bottom: 1rem;
  grid-column: 1/span 3;
  grid-row: 2/span 1;
}
.locationsSection--Scotland {
  padding-top: 6rem;
}
.locationsSection--EastOfEngland {
  padding-top: 6rem;
}

.locationCard {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
  background-color: white;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.locationCard__top {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: max-content max-content max-content;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.locationCard__top--westEnd1 {
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.8), rgba(44, 59, 88, 0.8)), url("../img/locations/london1.jpg");
}
.locationCard__top--city {
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.8), rgba(44, 59, 88, 0.8)), url("../img/locations/london2.jpg");
}
.locationCard__top--strand {
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.8), rgba(44, 59, 88, 0.8)), url("../img/locations/london3.jpg");
}
.locationCard__top--westEnd2 {
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.8), rgba(44, 59, 88, 0.8)), url("../img/locations/london4.jpg");
}
.locationCard__top--edin1 {
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.8), rgba(44, 59, 88, 0.8)), url("../img/locations/edinburgh1.jpg");
}
.locationCard__top--edin2 {
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.8), rgba(44, 59, 88, 0.8)), url("../img//locations/edinburgh2.jpg");
}
.locationCard__top--ipswich {
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.8), rgba(44, 59, 88, 0.8)), url("../img//locations/ipswich1.jpg");
}
.locationCard__location {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 140%;
  color: #f9f9f9;
  text-align: center;
  margin: 5rem 1rem 3rem 1rem;
}
.locationCard__pin {
  width: 3rem;
  margin: 0 auto 3rem auto;
}
.locationCard__address {
  margin: 0 auto;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 140%;
  text-align: center;
  color: #f9f9f9;
}
.locationCard__curve {
  width: 100%;
}
.locationCard__curve img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.locationCard__bottom {
  background-color: white;
  padding: 4rem 1rem;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.locationCard__bottom button {
  display: block;
  width: fit-content;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 100%;
  font-size: 1.8rem;
  color: #f9f9f9;
  background-color: #EE851F;
  padding: 1rem 2.2rem;
  border: 2px solid #EE851F;
  border-radius: 5px;
  transition: all 1s ease;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.locationCard__bottom button:hover {
  cursor: pointer;
  border-color: #2c3b58;
  background-color: #2c3b58;
  color: #f9f9f9;
}
.locationCard__bottom button img {
  width: 2rem;
  margin-right: 1rem;
}
.locationCard__bottom a {
  margin: 3rem auto 0 auto;
  width: fit-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #2c3b58;
  cursor: pointer;
  transition: all 0.5s ease;
}
.locationCard__bottom a:hover {
  color: #EE851F;
}
.locationCard__bottom a img {
  width: 1.6rem;
  margin-right: 1rem;
}

@media screen and (max-width: 1150px) {
  .locationsSection {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .locationsSection__h {
    grid-column: 1/span 2;
    grid-row: 1/span 1;
  }
  .locationsSection__p {
    grid-column: 1/span 2;
    grid-row: 2/span 1;
  }
}
@media screen and (max-width: 800px) {
  .locationsSection {
    display: grid;
    grid-template-columns: 1fr;
  }
  .locationsSection__h {
    grid-column: 1/span 1;
    grid-row: 1/span 1;
  }
  .locationsSection__p {
    grid-column: 1/span 1;
    grid-row: 2/span 1;
  }
}
.partnersInfoWrap {
  padding: 6rem 0 0 0;
}
.partnersInfoWrap .partnersInfo h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: left;
  width: fit-content;
}
.partnersInfoWrap .partnersInfo h1:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}
.partnersInfoWrap .partnersInfo p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 160%;
  color: #4D4C4C;
}
.partnersInfoWrap .partnersInfo p:not(:last-child) {
  margin-bottom: 3rem;
}

.partnersTypesWrap {
  padding: 6rem 0;
}
.partnersTypesWrap .partnersTypes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: max-content;
  grid-column-gap: 2rem;
}
.partnersTypesWrap .partnersBox {
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.partnersTypesWrap .partnersBox--bronze {
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.8), rgba(44, 59, 88, 0.8)), url("../img/bronze1.png");
}
.partnersTypesWrap .partnersBox--silver {
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.8), rgba(44, 59, 88, 0.8)), url("../img/silver1.png");
}
.partnersTypesWrap .partnersBox--gold {
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.8), rgba(44, 59, 88, 0.8)), url("../img/gold1.png");
}
.partnersTypesWrap .partnersBox--platinum {
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.8), rgba(44, 59, 88, 0.8)), url("../img/platinum1.png");
}
.partnersTypesWrap .partnersBox__head {
  padding: 4rem 1rem 0 2rem;
}
.partnersTypesWrap .partnersBox__head h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 2.8rem;
  color: #f9f9f9;
}
.partnersTypesWrap .partnersBox__head--bronze {
  background-color: #A4684F;
}
.partnersTypesWrap .partnersBox__head--silver {
  background-color: #A5A9AC;
}
.partnersTypesWrap .partnersBox__head--gold {
  background-color: #E7BE18;
}
.partnersTypesWrap .partnersBox__head--platinum {
  background-color: #5D5D5D;
}
.partnersTypesWrap .partnersBox__triangle img {
  width: 140%;
  height: auto;
  transform: translateX(-20%);
  transform: translateY(-3px);
}
.partnersTypesWrap .partnersBox__content {
  padding: 3rem 1rem 8rem;
}
.partnersTypesWrap .partnersBox__content .partners-required {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 160.19%;
  text-align: center;
  color: #f9f9f9;
}
.partnersTypesWrap .partnersBox__content .partners-discount {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 160.19%;
  text-align: center;
  color: #f9f9f9;
}

.partnersQuoteWrap {
  padding: 5rem 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.95), rgba(44, 59, 88, 0.95)), url("../img/partners2.png");
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 5rem;
  grid-template-rows: max-content 2rem;
  grid-row-gap: 2rem;
}
.partnersQuoteWrap .partnersQuoteInner {
  grid-column: 1/span 2;
  grid-row: 1/span 1;
  justify-self: center;
  width: 90%;
  max-width: 1200px;
  overflow: hidden;
}
.partnersQuoteWrap .partnersQuoteInner .partnersQuoteContainer {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  display: flex;
}
.partnersQuoteWrap .partnersQuoteInner .partnersQuoteContainer .partnersQuote {
  padding: 0 1rem;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
}
.partnersQuoteWrap .partnersQuoteInner .partnersQuoteContainer .partnersQuote__img {
  width: 4rem;
}
.partnersQuoteWrap .partnersQuoteInner .partnersQuoteContainer .partnersQuote__quote {
  padding: 0rem 2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 28px;
  line-height: 180.19%;
  text-align: center;
  color: #f9f9f9;
}
.partnersQuoteWrap .partnersQuoteInner .partnersQuoteContainer .partnersQuote__author {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 2rem;
  line-height: 180.19%;
  text-align: center;
  font-style: italic;
  color: #f9f9f9;
  padding-top: 4rem;
}
.partnersQuoteWrap .partnersQuoteInner .partnersQuoteContainer .partnersQuote__author span {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 2rem;
  line-height: 180.19%;
  color: #f9f9f9;
}
.partnersQuoteWrap__btn i {
  font-size: 2rem;
  color: #f9f9f9;
  cursor: pointer;
}
.partnersQuoteWrap__btn--prev {
  grid-column: 1/span 1;
  grid-row: 2/span 1;
  justify-self: end;
}
.partnersQuoteWrap__btn--next {
  grid-column: 2/span 1;
  grid-row: 2/span 1;
  justify-self: start;
}

.partnersFeaturesWrap {
  padding: 6rem 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: linear-gradient(0deg, rgba(242, 246, 251, 0.94), rgba(242, 246, 251, 0.94)), url("../img/call.png");
}
.partnersFeaturesWrap .partnersFeatures {
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  align-items: flex-start;
}
.partnersFeaturesWrap .partnersFeaturesCol h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: left;
  width: fit-content;
}
.partnersFeaturesWrap .partnersFeaturesCol h2:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}
.partnersFeaturesWrap .partnersFeaturesCol ul {
  list-style: none;
}
.partnersFeaturesWrap .partnersFeaturesCol li {
  max-width: 40rem;
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
}
.partnersFeaturesWrap .partnersFeaturesCol li img {
  width: 3rem;
  margin-right: 2rem;
}
.partnersFeaturesWrap .partnersFeaturesCol li:not(:last-child) {
  margin-bottom: 3rem;
}

.partnersContactWrap {
  padding: 6rem 0;
  background-color: white;
}
.partnersContactWrap__h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2.6rem;
  line-height: 140%;
  color: #2c3b58;
  text-align: center;
  width: fit-content;
  max-width: 90%;
  margin: auto;
  margin-bottom: 3rem;
}
.partnersContactWrap__h2 {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  text-align: center;
  width: 70rem;
  max-width: 90%;
  margin: auto;
  margin-bottom: 3rem;
}
.partnersContactWrap .partnersContact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: max-content max-content max-content max-content;
  grid-column-gap: 2rem;
  max-width: 70rem;
  margin: auto;
}
.partnersContactWrap .partnersContact__name {
  grid-column: 1/span 1;
  grid-row: 1/span 1;
}
.partnersContactWrap .partnersContact__email {
  grid-column: 1/span 1;
  grid-row: 2/span 1;
}
.partnersContactWrap .partnersContact__company {
  grid-column: 2/span 1;
  grid-row: 1/span 1;
}
.partnersContactWrap .partnersContact__phone {
  grid-column: 2/span 1;
  grid-row: 2/span 1;
}
.partnersContactWrap .partnersContact__message {
  grid-column: 1/span 2;
  grid-row: 3/span 1;
}
.partnersContactWrap .partnersContact__submit {
  grid-column: 1/span 2;
  grid-row: 4/span 1;
  justify-self: end;
  padding: 1.5rem 4rem !important;
}

@media screen and (max-width: 900px) {
  .partnersTypesWrap {
    padding: 6rem 0;
  }
  .partnersTypesWrap .partnersTypes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: max-content max-content;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }
  .partnersFeaturesWrap .partnersFeatures {
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .partnersFeaturesWrap .partnersFeaturesCol--2 {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 800px) {
  .partnersQuoteWrap .partnersQuoteInner .partnersQuoteContainer .partnersQuote__img {
    width: 2rem;
  }
  .partnersQuoteWrap .partnersQuoteInner .partnersQuoteContainer .partnersQuote__quote {
    padding: 0rem 1rem;
    font-size: 1.8rem;
  }
  .partnersQuoteWrap .partnersQuoteInner .partnersQuoteContainer .partnersQuote__author {
    font-size: 1.6rem;
    padding-top: 1.5rem;
  }
  .partnersQuoteWrap .partnersQuoteInner .partnersQuoteContainer .partnersQuote__author span {
    font-size: 1.6rem;
  }
  .partnersQuoteWrap__btn i {
    font-size: 2rem;
    color: #f9f9f9;
  }
}
@media screen and (max-width: 600px) {
  .partnersTypesWrap {
    padding: 6rem 0;
  }
  .partnersTypesWrap .partnersTypes {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: max-content max-content max-content max-content;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .partnersContactWrap .partnersContact {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: max-content max-content max-content max-content max-content max-content;
    grid-column-gap: 2rem;
    max-width: 70rem;
    margin: auto;
  }
  .partnersContactWrap .partnersContact__name {
    grid-column: 1/span 1;
    grid-row: 1/span 1;
  }
  .partnersContactWrap .partnersContact__email {
    grid-column: 1/span 1;
    grid-row: 2/span 1;
  }
  .partnersContactWrap .partnersContact__company {
    grid-column: 1/span 1;
    grid-row: 3/span 1;
  }
  .partnersContactWrap .partnersContact__phone {
    grid-column: 1/span 1;
    grid-row: 4/span 1;
  }
  .partnersContactWrap .partnersContact__message {
    grid-column: 1/span 1;
    grid-row: 5/span 1;
  }
  .partnersContactWrap .partnersContact__submit {
    grid-column: 1/span 1;
    grid-row: 6/span 1;
    justify-self: end;
    padding: 1.5rem 4rem !important;
  }
}
.mycoAppWrap {
  padding: 6rem 0;
}
.mycoAppWrap__h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: center;
  width: fit-content;
  width: fit-content;
  max-width: 90%;
  margin: auto;
}
.mycoAppWrap__h1:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin: auto;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}
.mycoAppWrap__h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  width: fit-content;
  max-width: 90%;
  margin: auto;
  margin-bottom: 6rem;
  text-align: center;
  margin-bottom: 10rem;
}
.mycoAppWrap .mycoApp {
  display: grid;
  grid-template-columns: 4fr 3fr;
  grid-column-gap: 1rem;
}
.mycoAppWrap .mycoApp .mycoAppText__h {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: left;
  width: fit-content;
}
.mycoAppWrap .mycoApp .mycoAppText__h:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}
.mycoAppWrap .mycoApp .mycoAppText__p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 201%;
  color: #4D4C4C;
  margin-bottom: 2rem;
}
.mycoAppWrap .mycoApp .mycoAppText ul {
  list-style: none;
}
.mycoAppWrap .mycoApp .mycoAppText ul li {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 160%;
  margin-bottom: 2rem;
  color: #4D4C4C;
}
.mycoAppWrap .mycoApp .mycoAppText ul i {
  font-size: 1.4rem;
  color: #EE851F;
  margin-right: 0.5rem;
}
.mycoAppWrap .mycoApp .mycoAppImg img {
  display: block;
  width: 100%;
}

.appsOurAppWrap {
  position: relative;
  background-color: #2c3b58;
  margin-top: 15rem;
}
.appsOurAppWrap::before {
  position: absolute;
  bottom: 100%;
  content: "";
  border-style: solid;
  border-width: 20rem 0 0 100vw;
  border-color: transparent transparent transparent #2c3b58;
}
.appsOurAppWrap .appsOurApp {
  padding: 2rem 0 5rem 0;
  display: grid;
  grid-template-columns: 3fr 4fr;
  grid-column-gap: 1rem;
  align-items: center;
}
.appsOurAppWrap .appsOurApp .appsOurAppImg img {
  display: block;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
.appsOurAppWrap .appsOurApp .appsOurAppText__h {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: left;
  width: fit-content;
  color: #f9f9f9;
}
.appsOurAppWrap .appsOurApp .appsOurAppText__h:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}
.appsOurAppWrap .appsOurApp .appsOurAppText__p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 201%;
  color: #f9f9f9;
  margin-bottom: 3rem;
}
.appsOurAppWrap .appsOurApp .appsOurAppText__buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.appsOurAppWrap .appsOurApp .appsOurAppText__buttons a img {
  height: 5rem;
}
.appsOurAppWrap .appsOurApp .appsOurAppText__buttons a:not(:last-child) {
  margin-right: 2rem;
}

.appKeyBenefitsWrap {
  padding: 6rem 0;
}
.appKeyBenefitsWrap__h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: center;
  width: fit-content;
  width: fit-content;
  max-width: 90%;
  margin: auto;
}
.appKeyBenefitsWrap__h1:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin: auto;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}
.appKeyBenefitsWrap__h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  width: fit-content;
  max-width: 90%;
  margin: auto;
  margin-bottom: 6rem;
  text-align: center;
}
.appKeyBenefitsWrap .appKeyBenefits {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  align-items: flex-start;
}
.appKeyBenefitsWrap .appKeyBenefits .benefit {
  width: 32%;
}
.appKeyBenefitsWrap .appKeyBenefits .benefit__img {
  display: block;
  width: 90%;
  max-width: 13rem;
  margin: auto;
  margin-bottom: 3rem;
}
.appKeyBenefitsWrap .appKeyBenefits .benefit__h {
  width: 100%;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  color: #2c3b58;
  margin-bottom: 3rem;
}
.appKeyBenefitsWrap .appKeyBenefits .benefit__p {
  width: 100%;
  max-width: 30rem;
  margin: auto;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 200%;
  color: #4D4C4C;
}

@media screen and (max-width: 1300px) {
  .mycoAppWrap .mycoApp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 4rem;
  }
  .appsOurAppWrap .appsOurApp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 4rem;
  }
}
@media screen and (max-width: 900px) {
  .mycoAppWrap .mycoApp {
    display: block;
  }
  .mycoAppWrap .mycoAppImg {
    display: none;
  }
  .appsOurAppWrap .appsOurApp {
    display: block;
  }
  .appsOurAppWrap .appsOurAppImg {
    display: none;
  }
}
@media screen and (max-width: 420px) {
  .appsOurAppWrap .appsOurApp .appsOurAppText__buttons {
    display: block !important;
  }
  .appsOurAppWrap .appsOurApp .appsOurAppText__buttons a {
    display: block;
  }
  .appsOurAppWrap .appsOurApp .appsOurAppText__buttons a img {
    height: 5rem;
  }
  .appsOurAppWrap .appsOurApp .appsOurAppText__buttons a:not(:last-child) {
    margin-right: 0rem;
    margin-bottom: 2rem;
  }
}
.covidWrap .covid__top {
  background-color: #2c3b58;
  padding: 2rem 0 1rem 0;
}
.covidWrap .covid__top h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #f9f9f9;
  text-align: center;
  margin-bottom: 0.8rem;
}
.covidWrap .covid__top h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 160%;
  color: #f9f9f9;
  text-align: center;
  margin-bottom: 1rem;
}
.covidWrap .covid__top i {
  font-size: 2rem;
  color: #f9f9f9;
  text-align: center;
  width: 100%;
  cursor: pointer;
  transition: all 0.8s ease;
}
.covidWrap .covid__bottom {
  padding-top: 6rem;
  display: none;
}
.covidWrap .covid__bottom .covid-faq__h {
  margin-bottom: 2rem;
  min-height: 13rem;
  background-color: #2c3b58;
  padding: 1rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.covidWrap .covid__bottom .covid-faq__h h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 2.3rem;
  line-height: 160%;
  color: #f9f9f9;
  width: 100%;
  text-align: center;
}
.covidWrap .covid__bottom .covid-faq__p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  line-height: 200%;
  text-align: justify;
}
.covidWrap .covid__bottom--close {
  display: none;
}
.covidWrap .covid__bottom--open {
  display: grid;
  animation: slideDown 1s;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 3rem;
}
@keyframes slideDown {
  0% {
    transform: translateY(-10px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.faqIntoWrap {
  padding: 6rem 0;
}
.faqIntoWrap .faqIntro {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 3rem;
}
.faqIntoWrap .faqIntro .faq__h3 {
  margin-bottom: 2rem;
  min-height: 13rem;
  background-color: #E8E8E8;
  padding: 1rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.faqIntoWrap .faqIntro .faq__h3 h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 2.3rem;
  line-height: 160%;
  color: #2c3b58;
  width: 100%;
  text-align: center;
}
.faqIntoWrap .faqIntro .faq__p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  line-height: 200%;
  text-align: justify;
}

.faqLinksWrap {
  padding-bottom: 6rem;
}
.faqLinksWrap .faqLinks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 2rem;
  align-items: stretch;
  justify-items: stretch;
}
.faqLinksWrap .faqLinks .link {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr max-content;
}
.faqLinksWrap .faqLinks .link__head {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: #f9f9f9;
  line-height: 160%;
  text-align: center;
  padding: 6rem 1rem 4rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.faqLinksWrap .faqLinks .link__head--1 {
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.85), rgba(44, 59, 88, 0.85)), url("../img/london3.png");
}
.faqLinksWrap .faqLinks .link__head--2 {
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.85), rgba(44, 59, 88, 0.85)), url("../img/london1.png");
}
.faqLinksWrap .faqLinks .link__head--3 {
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.85), rgba(44, 59, 88, 0.85)), url("../img/location1.png");
}
.faqLinksWrap .faqLinks .link__head--4 {
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.85), rgba(44, 59, 88, 0.85)), url("../img/rand3.png");
}
.faqLinksWrap .faqLinks .link__link {
  background-color: #EE851F;
  padding: 2rem 1rem;
}
.faqLinksWrap .faqLinks .link__link a {
  display: block;
  width: fit-content;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #f9f9f9;
  padding: 1rem 2rem;
  border: 2px solid #f9f9f9;
  border-radius: 5px;
  transition: all 0.5s ease;
  margin: auto;
}
.faqLinksWrap .faqLinks .link__link a:hover {
  border-color: #2c3b58;
  background-color: #2c3b58;
}

.faqPostalDepositWrap {
  padding-bottom: 6rem;
}
.faqPostalDepositWrap .faqPostalDeposit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 2rem;
  align-items: stretch;
  justify-items: stretch;
}
.faqPostalDepositWrap .faqPostalDeposit__left {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.85), rgba(44, 59, 88, 0.85)), url("../img/postal.png");
}
.faqPostalDepositWrap .PostalDeposit__h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: center;
  width: fit-content;
  max-width: fit-content;
  margin: auto;
  font-size: 2.4rem;
}
.faqPostalDepositWrap .PostalDeposit__h2:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin: auto;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}
.faqPostalDepositWrap .PostalDeposit__p1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  line-height: 200%;
  margin-bottom: 3rem;
  text-align: center;
}
.faqPostalDepositWrap .PostalDeposit__p1 span {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #2c3b58;
}
.faqPostalDepositWrap .PostalDeposit__p2 {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: start;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
}
.faqPostalDepositWrap .PostalDeposit__p2:not(:last-child) {
  margin-bottom: 2rem;
}
.faqPostalDepositWrap .PostalDeposit__p2 i {
  font-size: 1.3rem;
  color: #EE851F;
  padding: 0.6rem 1.5rem 0 3rem;
}

.faqMeetingRoomsWrap {
  padding-bottom: 6rem;
}
.faqMeetingRoomsWrap .faqMeetingRooms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  justify-items: stretch;
}
.faqMeetingRoomsWrap .faqMeetingRooms .meetingRooms {
  background-color: #2c3b58;
  padding: 5rem;
}
.faqMeetingRoomsWrap .faqMeetingRooms .meetingRooms__h {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: center;
  width: fit-content;
  color: #f9f9f9;
  font-size: 2.4rem;
  margin: auto;
}
.faqMeetingRoomsWrap .faqMeetingRooms .meetingRooms__h:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin: auto;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}
.faqMeetingRoomsWrap .faqMeetingRooms .meetingRooms__p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  color: #f9f9f9;
  margin-bottom: 3rem;
  text-align: center;
}
.faqMeetingRoomsWrap .faqMeetingRooms .meetingRooms__link {
  display: block;
  width: fit-content;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 100%;
  font-size: 1.8rem;
  color: #f9f9f9;
  background-color: #EE851F;
  padding: 1rem 2.2rem;
  border: 2px solid #EE851F;
  border-radius: 5px;
  transition: all 0.5s ease;
  margin: auto;
}
.faqMeetingRoomsWrap .faqMeetingRooms .meetingRooms__link:hover {
  cursor: pointer;
  border-color: #f9f9f9;
  background-color: #f9f9f9;
  color: #EE851F;
}
.faqMeetingRoomsWrap .faqMeetingRooms .meetingRooms-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../img/meetingRoom2.png");
}

.trustPilot1Wrap {
  padding-bottom: 6rem;
}
.trustPilot1Wrap .trustPilot {
  display: grid;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  justify-items: stretch;
}
.trustPilot1Wrap .trustPilot__image {
  padding: 13rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../img/trust-pilot.png");
}
.trustPilot1Wrap .trustPilot__widgetWrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-color: white;
}
.trustPilot1Wrap .trustPilot__widgetWrap::before {
  position: absolute;
  right: 100%;
  bottom: 0;
  content: "";
  border-style: solid;
  border-width: 0rem 0rem 26rem 10rem;
  border-color: transparent transparent white transparent;
}
.trustPilot1Wrap .trustPilot__widgetWrap .trustPilotWidget {
  width: 100%;
  height: fit-content;
}

@media screen and (max-width: 900px) {
  .faqIntoWrap .faqIntro {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-row-gap: 4rem;
  }
  .faqLinksWrap .faqLinks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    align-items: stretch;
    justify-items: stretch;
  }
  .faqMeetingRoomsWrap {
    padding-bottom: 6rem;
  }
  .faqMeetingRoomsWrap .faqMeetingRooms {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    align-items: stretch;
    justify-items: stretch;
  }
  .faqMeetingRoomsWrap .faqMeetingRooms .meetingRooms {
    padding: 2rem;
  }
}
@media screen and (max-width: 700px) {
  .faqPostalDepositWrap {
    padding-bottom: 6rem;
  }
  .faqPostalDepositWrap .faqPostalDeposit {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    grid-row-gap: 2rem;
  }
  .trustPilot1Wrap .trustPilot {
    display: block;
  }
  .trustPilot1Wrap .trustPilot__image {
    display: none;
  }
  .trustPilot1Wrap .trustPilot__widgetWrap {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background-color: white;
    padding: 5rem 2rem;
  }
  .trustPilot1Wrap .trustPilot__widgetWrap::before {
    display: none;
  }
  .trustPilot1Wrap .trustPilot__widgetWrap .trustPilotWidget {
    width: 100%;
    height: fit-content;
  }
}
@media screen and (max-width: 450px) {
  .faqLinksWrap .faqLinks {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    align-items: stretch;
    justify-items: stretch;
  }
}
.blogWrapper {
  padding: 6rem 0;
  display: grid;
  grid-template-rows: max-content 1fr;
  grid-template-columns: 2fr 1fr;
  grid-column-gap: 4rem;
  justify-items: stretch;
  align-items: start;
}
.blogWrapper__h1 {
  grid-column: 1/span 2;
  grid-row: 1/span 1;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: left;
  width: fit-content;
  margin-bottom: 6rem;
}
.blogWrapper__h1:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}

.latestPostsWrap {
  grid-column: 1/span 1;
  grid-row: 2/span 1;
}
.latestPostsWrap .latestPosts {
  display: block;
}
.latestPostsWrap .latestPosts .postIntro {
  background-color: #f9f9f9;
  padding: 4rem 0;
}
.latestPostsWrap .latestPosts .postIntro:first-child {
  padding-top: 0;
}
.latestPostsWrap .latestPosts .postIntro:last-child {
  padding-bottom: 0;
}
.latestPostsWrap .latestPosts .postIntro__heading {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 160%;
  color: #2c3b58;
  margin-bottom: 1rem;
}
.latestPostsWrap .latestPosts .postIntro__date {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 160%;
  color: #979797;
  margin-bottom: 1rem;
  margin-right: 2rem;
  display: inline-block;
}
.latestPostsWrap .latestPosts .postIntro__author {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 160%;
  color: #979797;
  margin-bottom: 2rem;
  display: inline-block;
}
.latestPostsWrap .latestPosts .postIntro__author span {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 160%;
  color: #979797;
  margin-bottom: 1rem;
  display: inline-block;
}
.latestPostsWrap .latestPosts .postIntro__author span a {
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 160%;
  color: #979797;
}
.latestPostsWrap .latestPosts .postIntro__image {
  position: relative;
  width: 100%;
  height: 32rem;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
  margin-bottom: 5rem;
}
.latestPostsWrap .latestPosts .postIntro__image img {
  display: block;
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
}
.latestPostsWrap .latestPosts .postIntro__image .imageOverlay {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(44, 59, 88, 0.5), rgba(44, 59, 88, 0.5));
  width: 100%;
  height: 100%;
}
.latestPostsWrap .latestPosts .postIntro__intro {
  margin-bottom: 2rem;
}
.latestPostsWrap .latestPosts .postIntro__intro p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
}
.latestPostsWrap .latestPosts .postIntro__readMore {
  display: block;
  width: fit-content;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 100%;
  font-size: 1.8rem;
  color: #f9f9f9;
  background-color: #EE851F;
  padding: 1rem 2.2rem;
  border: 2px solid #EE851F;
  border-radius: 5px;
  transition: all 1s ease;
}
.latestPostsWrap .latestPosts .postIntro__readMore:hover {
  cursor: pointer;
  border-color: #2c3b58;
  background-color: #2c3b58;
  color: #f9f9f9;
}
.latestPostsWrap .blogPagination {
  padding: 3rem 0;
}
.latestPostsWrap .blogPagination a {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  color: #EE851F;
  text-decoration: none;
  transition: all 0.5s ease;
}
.latestPostsWrap .blogPagination a:hover {
  cursor: pointer;
  color: #2c3b58;
}

.blogPostWrap {
  grid-column: 1/span 1;
  grid-row: 2/span 1;
}
.blogPostWrap .blogPost__heading {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 160%;
  color: #2c3b58;
  margin-bottom: 1rem;
}
.blogPostWrap .blogPost__date {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 160%;
  color: #979797;
  margin-bottom: 1rem;
  margin-right: 2rem;
  display: inline-block;
}
.blogPostWrap .blogPost__author {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 160%;
  color: #979797;
  margin-bottom: 2rem;
  display: inline-block;
}
.blogPostWrap .blogPost__author span {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 160%;
  color: #979797;
  margin-bottom: 1rem;
  display: inline-block;
}
.blogPostWrap .blogPost__content p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  margin-bottom: 3rem;
}
.blogPostWrap .blogPost__content img {
  display: block;
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
}
.blogPostWrap .blogPost__content a {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #EE851F;
  text-decoration: none;
  transition: all 0.5s ease;
}
.blogPostWrap .blogPost__content a:hover {
  cursor: pointer;
  color: #2c3b58;
}
.blogPostWrap .blogPost__content ul {
  list-style-type: circle;
}
.blogPostWrap .blogPost__content ul li {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
}
.blogPostWrap .blogPost__content h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #EE851F;
}
.blogPostWrap .blogPost__content h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: #EE851F;
}
.blogPostWrap .blogPost__content h3 h4 h5 h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #2c3b58;
}
.blogPostWrap .blogPost__goBack {
  display: block;
  width: fit-content;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 100%;
  font-size: 1.8rem;
  color: #f9f9f9;
  background-color: #EE851F;
  padding: 1rem 2.2rem;
  border: 2px solid #EE851F;
  border-radius: 5px;
  transition: all 1s ease;
}
.blogPostWrap .blogPost__goBack:hover {
  cursor: pointer;
  border-color: #2c3b58;
  background-color: #2c3b58;
  color: #f9f9f9;
}

.blogSideSectionWrap {
  grid-column: 2/span 1;
  grid-row: 2/span 1;
  padding: 4rem 2rem;
  background-color: #F2F3F5;
}
.blogSideSectionWrap .blogSearch {
  margin-bottom: 5rem;
}
.blogSideSectionWrap .blogSearch__h {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: left;
  width: fit-content;
  font-size: 2.4rem;
}
.blogSideSectionWrap .blogSearch__h:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}
.blogSideSectionWrap .blogSearch__h:after {
  border-bottom-width: 2px;
  margin-top: 0;
}
.blogSideSectionWrap .blogSearch__input {
  background-color: white;
}
.blogSideSectionWrap .recentBlogPosts {
  margin-bottom: 5rem;
}
.blogSideSectionWrap .recentBlogPosts__h {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: left;
  width: fit-content;
  font-size: 2.4rem;
}
.blogSideSectionWrap .recentBlogPosts__h:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}
.blogSideSectionWrap .recentBlogPosts__h:after {
  border-bottom-width: 2px;
  margin-top: 0;
}
.blogSideSectionWrap .recentBlogPosts__link {
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  color: #2c3b58;
  text-decoration: none;
  transition: all 0.4s ease;
}
.blogSideSectionWrap .recentBlogPosts__link:hover {
  color: #EE851F;
}
.blogSideSectionWrap .recentBlogPosts__link:not(:last-child):after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  margin: 1.5rem 0 3rem 0;
  border-bottom: 1px solid #E5E5E5;
}
.blogSideSectionWrap .otherServices {
  margin-bottom: 5rem;
}
.blogSideSectionWrap .otherServices__h {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: left;
  width: fit-content;
  font-size: 2.4rem;
}
.blogSideSectionWrap .otherServices__h:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}
.blogSideSectionWrap .otherServices__h:after {
  border-bottom-width: 2px;
  margin-top: 0;
}
.blogSideSectionWrap .otherServices__service {
  width: 100%;
  height: fit-content;
  padding: 2rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: linear-gradient(0deg, rgba(44, 59, 88, 0.4), rgba(44, 59, 88, 0.4)), url("../img/rand1.png");
}
.blogSideSectionWrap .otherServices__service h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 160%;
  color: #f9f9f9;
  margin-bottom: 2rem;
}
.blogSideSectionWrap .otherServices__service img {
  display: block;
  width: 100%;
  max-width: 16rem;
  margin-bottom: 3rem;
}
.blogSideSectionWrap .otherServices__service a {
  display: block;
  width: fit-content;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #f9f9f9;
  padding: 1rem 2rem;
  border: 2px solid #f9f9f9;
  border-radius: 5px;
  transition: all 0.5s ease;
}
.blogSideSectionWrap .otherServices__service a:hover {
  border-color: #2c3b58;
  background-color: #2c3b58;
}
.blogSideSectionWrap .tagsWrap__h {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #2c3b58;
  line-height: 160%;
  text-align: left;
  width: fit-content;
  font-size: 2.4rem;
}
.blogSideSectionWrap .tagsWrap__h:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0;
  margin-bottom: 3rem;
  margin-top: 1rem;
  border-bottom: 4px solid #EE851F;
}
.blogSideSectionWrap .tagsWrap__h:after {
  border-bottom-width: 2px;
  margin-top: 0;
}
.blogSideSectionWrap .tagsWrap .tags {
  display: flex;
  flex-wrap: wrap;
}
.blogSideSectionWrap .tagsWrap .tag {
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #4D4C4C;
  line-height: 160%;
  padding: 1rem;
  border: 1px solid #4D4C4C;
  text-align: center;
  transition: all 0.4s ease;
  margin: 0.5rem;
}
.blogSideSectionWrap .tagsWrap .tag:hover {
  color: #EE851F;
  border-color: #EE851F;
}

@media screen and (max-width: 950px) {
  .blogWrapper {
    grid-template-rows: max-content max-content max-content;
    grid-template-columns: 1fr;
  }
  .blogWrapper__h1 {
    grid-column: 1/span 1;
    grid-row: 1/span 1;
  }
  .latestPostsWrap {
    grid-column: 1/span 1;
    grid-row: 2/span 1;
  }
  .blogPostsWrap {
    grid-column: 1/span 1;
    grid-row: 2/span 1;
  }
  .blogSideSectionWrap {
    grid-column: 1/span 1;
    grid-row: 3/span 1;
    margin-top: 6rem;
  }
}

/*# sourceMappingURL=main.css.map */
