@font-face {
  font-family: "Satoshi";

  src: url("../fonts/Satoshi-Variable.woff2") format("woff2"),
    url("../fonts/Satoshi-Variable.woff") format("woff"),
    url("../fonts/Satoshi-Variable.ttf") format("truetype");

  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "libra_serif";

  src: url("../fonts/libra-serif-modern.regular.woff2") format("woff2"),
    url("../fonts/libra-serif-modern.regular.woff") format("woff");

  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Cambria";

  src: url("Cambria.woff2") format("woff2"), url("Cambria.woff") format("woff"),
    url("Cambria.ttf") format("truetype");

  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  text-decoration: none;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Satoshi";
  color: #000;
  letter-spacing: 2px;
}

.container {
  width: 70%;
  margin: 0 auto;
}

nav {
  width: 50vw;
  height: 100%;
  background-color: #222222;
  position: fixed;
  left: -100%;
  z-index: 99;
  transition: left 600ms linear;
}

nav .wrap {
  padding: 96px 0 0 64px;
}

nav .wrap ul li a {
  color: #fff;
  font-weight: 400;
}

nav .wrap ul.main li a {
  font-size: 56px;
  font-family: "Cambria";
}

nav .wrap ul.sub {
  margin-top: 1rem;
}

nav .wrap ul.sub li a {
  font-size: 24px;
  line-height: 48px;
}

nav .close {
  position: absolute;
  top: 24px;
  right: 24px;

  width: 30px;
  height: 30px;
  cursor: pointer;
}

/* make a close button for navbar */
nav .close:before,
nav .close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%) rotate(45deg);
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
}

nav .close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.landing {
  display: flex;
  width: 100%;
  height: 100%;
}

.statue,
.menu {
  position: relative;
  height: 100%;
  width: 50%;
}

.menu {
  background-color: #cfc7ba;
}

.statue .img-holder {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.statue .img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.menu .top {
  width: 100%;
  position: absolute;
}

.menu .bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
}

.menu .top h1,
.menu .bottom h1{
  font-family: "libra_serif";
  font-size: 10.5vw;
  text-align: center;
  font-weight: 400;
}

.menu .top h1 {
  line-height: 8vw;
}

.menu .top h1 span {
  display: block;
  font-size: 4vw;
  text-align: left;
  margin-left: 9vw;
  line-height: 10vh;
  font-weight: 700;
}

.menu .mid {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* animated border in home page*/
.menu .mid ul li,
nav .wrap ul li a,
.footer .col ul li a {  
  position: relative;
  margin:0;
  list-style: none;
}

.menu .mid ul li:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background-color: #f6ea09;
  transition: width 400ms ease-in-out;
  -webkit-transition: width 400ms ease-in-out;
  -moz-transition: width 400ms ease-in-out;
  -ms-transition: width 400ms ease-in-out;
  -o-transition: width 400ms ease-in-out;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.menu .mid ul li:hover:after {
  width: 80%;
}

.menu .mid ul li a {  
  text-decoration: none;
  display: block;
  padding: 8px 24px;
  color: #222;
  font-weight: 700;
  font-size: 1.6vw;
}

nav .wrap ul li a:after,
.footer .col ul li a:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #f6ea09;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

nav .wrap ul li a:is(:hover, :focus):after,
.footer .col ul li a:hover:after {
  width: 100%;
}

a {
  color: #222;
}

/* footer icon remove hover effect */
.footer .social {
  /* position: relative; 
   width: 0%; */
}

.footer .social  a:hover:after {
  width: 0% !important;
}

#popupFirst {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99;

  justify-content: center;
  align-items: center;
  background-color: #222;
  display: none;
}

#popupFirst .text {
  color: #fff;
  font-size: 84px;
  font-weight: 400;
  line-height: 114px;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

header {
  position: fixed;
  top: 0;
  left: 0;

  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 64px;
  z-index: 9;
}

header.inner {
  background-color: #fff;
  box-shadow: 0px 0px 24px rgba(0,0,0,0.08);
}

.nav-btn {
  width: 48px;
  height: 48px;
  position: absolute;

  left: 24px;
  top: 12px;
  overflow: hidden;
  border-radius: 50%;
  cursor: pointer;
}

.nav-btn img,
.nav-btn .video {
  position: absolute;
  left: 0;
  top: 0;

  z-index: 1;
  width: 100%;
  height: 100%;
}

.nav-btn .video {
  z-index: 0;
}

.logo-wrap {
  display: flex;
  padding: 16px 24px 16px 0;
  cursor: pointer;
}

.outer {
  position: relative;
  width: 20px;
  height: 28px;
  font-size: 24px;
  font-weight: bold;
  overflow: hidden;
  transition: width 700ms linear;

  display: inline-flex;
  margin-left: 16px;
}

.logo-wrap:hover .premier-wrap {
  width: 104px;
}

.logo-wrap:hover .lawyer-wrap {
  width: 100px;
}

.logo-wrap:hover .coach-wrap {
  width: 104px;
}

.outer .head {
  position: absolute;
  left: 0;
}

.outer .inner {
  width: 85px;
  text-align: right;
  position: absolute;
  right: 0;
  height: 28px;
  display: flex;
  justify-self: flex-end;
}

.mobile-logo {
  display: none;
  font-size: 24px;
  font-weight: bold;
  margin-right: 24px;
}

.logo-wrap .inner span {
  opacity: 0;
  transition: opacity 150ms linear;
}

.line-space {
  width: 100%;
  height: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.line-space:after {
  content: "";
  width: 3px;
  height: 136px;
  background-color: #d3cb36;
}

.services,
.interview,
.career,
.blogs,
.about,
.pricing,
.contactpg,
section.privacy  {
  padding-top: 96px;
}

.heading h1 {
  font-size: 64px;
  font-weight: 700;
}

.subHead {
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.subHead h3 {
  font-size: 36px;
  margin: 8px 0;
  width: auto;
  font-weight: 700;
}

.para-img {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.para-img .image {
  width: calc((100% / 12) * 4);
  cursor:pointer;
  position: relative;
}

.para-img .image img {
  width: 100%;
  filter: grayscale(1);
}

.para-img .image:after {
  content: "";
  position: absolute;
  left: -30px;
  top: -30px;
  width: 3px;
  height: 196px;
  background-color: #d3cb36;
}

.para-img .image:before {
  content: "";
  position: absolute;
  left: -30px;
  top: -30px;
  width: 196px;
  height: 3px;
  background-color: #d3cb36;
}

.para-img .image.right {
  position: relative;
}

.para-img .image.right:after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 3px;
  height: 196px;
  background-color: #d3cb36;
}

.para-img .image.right:before {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 196px;
  height: 3px;
  background-color: #d3cb36;
}

.para-img .text {
  width: calc((100% / 12) * 7);
  justify-self: flex-end;
}

.para-img .text h2{
  margin-bottom:1.5rem;
}

.para-img h2 {
  font-size: 36px;
  
  font-weight: bold;
  text-transform: uppercase;

  margin-bottom: 30px !important;
}

.interview .multi-para,
.para-img p,
.text-wrap p,
.privacy p,
.privacy li{
  text-align:justify;
}

.para-img p,
.career .text-wrap,
.interview .text-wrap {
  font-size: 30px;
  font-weight: 500;
  line-height: 45px;
  letter-spacing: 2px;
}


.career .text-wrap,
.interview .text-wrap {
  margin-top:.5rem;
}

.services .para-img p {
  width: calc((100% / 12) * 7);
}

.para-img span,
.career .container span,
.interview .container span {
  font-size: 35px;
  font-weight: 500;
  cursor: pointer;
}

.bold-para {
  width: 84%;
  margin: 0 auto;
  text-transform: uppercase;
  font-size: 36px;
  font-weight: 700;
  line-height: 58px;
  text-align: center;
}

.bold-para-2 {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  line-height: 48px;
}

.contact {
  text-align: center;
  margin-bottom: 112px;
}

.contact h3 {
  margin-top: 1rem;
}

.contact h3 a,
.contactpg .contact h3 {
  margin: 24px 0 0;
  font-size: 30px;
  font-weight: 700;
  color: #d3cb36;
}

.footer {
  width: 100%;
  height: 286px;
  background-color: #cfc7ba;
  padding-top: 3rem;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer .col {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.footer .container .col p strong {
  margin-top: .5rem;
  display: block;
  font-size:1.2rem;
  font-weight: 800;
}

nav li,
.footer li{
  list-style: none;
}

.footer ul li a {
  line-height: 36px;
}

.footer li.social {
  padding-top: .7rem;
}

.footer .social a:hover{
  text-decoration: none;
}

.featured-img {
  width: calc(100% / 12 * 10);
  text-align: center;
  position: relative;
  margin: 0 auto;
}

.featured-img img {
  width: 100%;
}

.featured-img:before{
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 220px;
  height: 220px;
  border-bottom: 2px solid #d3cb36;
  border-left: 2px solid #d3cb36;
}

.featured-img:after {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 220px;
  height: 220px;
  border-top: 2px solid #d3cb36;
  border-right: 2px solid #d3cb36;
}

.interview .bg-para p {
  width: 84%;
  margin: 0 auto;
  text-transform: uppercase;
  font-size: 36px;
  font-weight: 700;
  line-height: 58px;
}

.multi-para {
  display: flex;
}

.multi-para p {
  font-size: 24px;
  font-weight: 500;
  line-height: 45px;
}

.para-img p,
.text-wrap p{
  font-size: 24px;
}

.multi-para p.left,
.multi-para p.right {
  margin-left: 48px;
}

.blog-wrap {
  width: calc((100% / 12) * 10);
  margin: 0 auto;
}

.blog p {
  font-size: 24px;
  font-weight: 500;
  line-height: 48px;
}

.blog .cite {
  font-size: 20px;
  font-weight: 500;
  line-height: 36px;
  text-align: right;
  margin-left: auto;
  margin-top: 48px;
}

.featured-img-full {
  position: relative;
  width: calc((100% / 12) * 10);
  margin: 0 auto;
}

.featured-img-full img {
  width: 100%;
}

.featured-img-full:after {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 220px;
  height: 220px;
  border-top: 2px solid #d3cb36;
  border-right: 2px solid #d3cb36;
}

.featured-img-full:before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: -30px;
  width: 220px;
  height: 220px;
  border-left: 2px solid #d3cb36;
}

.bg-para {
  width: 100%;
  padding: 80px 0px;
  background-color: #f1eeea;
  text-align: center;
}

.bg-para p,
.about .bg-para p {
  font-size: 26px;
  font-weight: 500;
  line-height: 45px;
  margin-bottom: 20px;
}

.about .para-img {
  width: calc((100% / 12) * 10);
  margin: 0 auto;
  justify-content: space-around;
}

.about .para-img .image {
  position: relative;
  width: calc((100% / 12) * 3);
  margin-top: 7rem;
}

.about .para-img .text {
  width: calc((100% / 12) * 7);
}

.about .para-img .text h2 {
  position: relative;
  margin-bottom: 20px;
}

.about .text-wrap{
  width: calc((100% / 12) * 10);
  margin: 0 auto;
}

.about .text-wrap .name {
  margin-left: auto;
  text-align: right;
  font-size: 26px;
  font-weight: 600;
}

.pricing .heading h1 {
  position: relative;
  display: inline-block;
}

.pricing .heading h1:after {
  content: "";
  position: absolute;
  top: -6px;
  right: 133px;
  font-size: 72px;
  font-weight: bold;
}

.pricing .bg-para h2 {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 56px;
  text-transform: uppercase;
}

.pricing .bg-para p {
  width: calc((100% / 12) * 10);
  margin: 0 auto;
}

.pricing .box-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 196px;
}

.pricing .box-wrap .box {
  width: calc((100% / 12) * 4);
  margin: 15px;
  padding: 36px;
  border: 1px solid #cfc7ba;
  text-align: center;
  position: relative;
}

.pricing .box-wrap .box h1 {
  font-size: 48px;
  font-weight: bold;
  margin: 8px 0;
}

.pricing .box-wrap .box h4 {
  font-size: 24px;
  font-weight: bold;
  margin: 8px 0;
}

.pricing .box-wrap .box.recommended:before {
  content: "Recommended";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -24px;
  padding: 10px 20px;
  background-color: #cfc7ba;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.pricing .box-wrap .box:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -69px;
  width: 3px;
  height: 69px;
  background-color: #d3cb36;
}

.pricing .box-wrap .box.mid:after {
  top: auto;
  bottom: -69px;
}

.pricing .paragraph {
  width: calc((100% / 12) * 10);
  margin: 0 auto;
}

.pricing .paragraph p {
  font-size: 24px;
  font-weight: 500;
  line-height: 48px;
  margin-bottom: 36px;
}

.career-popup {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  display: none;
}

.career-popup .popup {
  width: 80%;
  max-height: 80vh;
  background-color: #fff;
  padding: 84px;
  font-size: 24px;
  font-weight: 500;
  line-height: 45px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow-y: auto;
  overflow-x: hidden;
}

.career-popup .popup ul {
  margin: 0;
  list-style: none;
}

.career-popup .popup li {
  margin-bottom: 24px;
  padding-left: 36px;
  background-image: url(../img/list-bullet.svg); 
  background-position: left top 17px;
  background-repeat: no-repeat;
}

.career-popup .popup .close {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.career-popup .popup .close:before {
  content: "";
  width: 48px;
  height: 3px;
  background-color: #000000;
  transform: rotate(45deg);
  position: absolute;
}

.career-popup .popup .close:after {
  content: "";
  width: 48px;
  height: 3px;
  background-color: #000000;
  transform: rotate(-45deg);
  position: absolute;
}

.career-popup .popup .senior,
.career-popup .popup .graduate,
.career-popup .popup .mid-level {
  display: none;
}

.contactpg .form {
  width: 40%;
}

.contactpg .form .col {
  width: 100%;
  padding: 8px;
}

.contactpg .form .col input,
.contactpg .form .col textarea {
  width: 100%;
  padding: 8px 16px;
  border: 1px solid #afa89e;
  background-color: #fff;
  font-size: 24px;
  color: #222;
  font-family: inherit;
  outline: none;
}

.contactpg .form .col input::placeholder,
.contactpg .form .col textarea::placeholder {
  font-size: 24px;
  font-weight: 400;
  font-family: inherit;
  color:#222;
  letter-spacing: 2px;
}

.contactpg .form .col button {
  background: #cfc7ba;
  padding: 8px 24px;
  display: inline-block;
  border: none;
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 1rem;
  cursor: pointer;
}

.contact-wrap {
  display: flex;
  justify-content: space-around;
}

.contactpg .details {
  font-size: 24px;
  font-weight: 500;
  line-height: 45px;
}

.contactpg .details p:first-child {
  margin-top: 0;
}

.name_error,
.email_error,
.phone_error,
.message_error {
  color: #fff;
  font-size: 16px;
  margin-top: 5px;
  background: #cfc7ba;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
}

.send-email-msg {
  text-align: center;
  background: #5fad3b;
  color: #fff;
  padding: 10px 0px;
  margin: 0 10px;
  border-radius: 10px;
}

.privacy-wrap {
  font-size: 20px;
  line-height: 36px;
}

.privacy-wrap h2 {
  font-size: 30px;
  margin: 48px 0 10px 0;
}

.privacy-wrap p:first-child {
  text-align: center;
  font-weight: 700;
}

.privacy-wrap .pad {
  padding-left: 2rem;
}

.privacy ul{
  list-style-type: disc;
}

.privacy ol{
  list-style-type:none;
}

.privacy a[target="_blank"]{
  color:#d3cb36;
  word-wrap: break-word;

  &:hover{
    text-decoration: underline;
  }
}

.success-subs,
.fail {
  color: red;
  font-size: 14px;
}

.success-subs {
  color: green;
}

@media screen and (max-width: 1366px) {
  .container {
    width: 80%;
    margin: 0 auto;
  }

  .multi-para p {
    font-size: 22px;
    line-height: 45px;
  }

  .para-img p,
  .career .text-wrap,
  .interview .text-wrap {
    font-size: 26px;
    margin-top: 8px;
    line-height: 45px;
  }

  .bg-para p,
  .interview .bg-para p {
    font-size: 30px;
    line-height: 45px;
  }

  .bold-para-2 {
    font-size: 26px;
    width: 78%;
    line-height: 45px;
  }

  .para-img h2 {
    font-size: 30px;
    line-height: 48px;
  }

  .heading h1 {
    margin-bottom: 0px;
    font-size: 56px;
  }

  .pricing .heading h1:after {
    top: -8px;
    right: 118px;
    font-size: 64px;
  }

  .pricing .paragraph p {
    line-height: 45px;
  }

  .line-space {
    height: 264px;
  }

  .blog p {
    line-height: 45px;
  }

  .contactpg .form {
    width: 50%;
  }

  .para-img p,
  .text-wrap p{
    font-size: 22px;
  }
}

@media screen and (max-width: 1024px) {
  .container {
    width: 90%;
    margin: 0 auto;
  }

  .footer .col {
    font-size: 17px;
  }  

  .pricing .box-wrap .box h1 {
    font-size: 40px;
  }

  .contactpg .details {
    font-size: 20px;
  }

  .menu .mid ul li a {
      font-size: 3.6vw;
  }

  .logo-wrap {
    display: none;
  }

  .mobile-logo {
    display: block;
  }

  #popupFirst .text {
    font-size: 58px;
    line-height: 96px;
  }

  #popupFirst .text br {
    display: none;
  }

  .career-popup .popup {
    font-size: 20px;
    line-height: 36px;
    width: 90%;
    max-width: 90vh;
  }
}

@media screen and (max-width: 800px) {
  .para-img .text h2{
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  nav {
    width: 80%;
  }

  nav .wrap {
    padding: 96px 0 0 36px;
  }

  nav .wrap ul.main li a {
    font-size: 48px;
    line-height: 64px;
  }

  .container {
    width: 100%;
    padding: 0px 16px;
  }

  .menu .top h1 span {
    font-size: 5vw;
    margin-left: 8vw;
  }  

  .footer {
    height: auto;
    padding-bottom: 36px;
  }

  .footer .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }

  .contact {
    width: 100%;
    padding: 0px 16px;
  }

  .contact img {
    width: 100%;
  }

  .contactpg .details a:last-child{
    font-size: 18px;
    line-height: 4rem;
    margin-top:-1rem;
  }

  .para-img {
    flex-direction: column;
  }

  .para-img .image {
    width: 80%;
    margin: 0 auto 24px;
    order: 1;
  }

  .para-img .text {
    width: 100%;
    order: 2;
  }

  .services .para-img p {
    width: 96%;
    margin: 0 auto;
    order: 2;
  }

  .para-img p,
  .career .text-wrap,
  .interview .text-wrap{
    font-size: 20px;
    line-height: 34px;
  }

  .subHead h3 {
    font-size: 24px;
  }

  .bg-para p {
    font-size: 24px;
    line-height: 34px;
    margin: 0 10px;
  }

  .career .bg-para p,
  .services .bg-para p {
    text-align: justify;
  }

  .bold-para {
    font-size: 30px;
    line-height: 52px;
  }

  .bold-para-2 {
    font-size: 24px;
    width: 96%;
    line-height: 40px;
  }

  .interview .bg-para p {
    font-size: 24px;
    line-height: 45px;
    width: 96%;
  }

  .multi-para {
    flex-direction: column;
  }

  .multi-para p.left {
    margin-right: 0px;
  }

  .multi-para p.left,
  .multi-para p.right {
    margin:10px 0px;
  }

  .multi-para p {
    font-size: 19px;
    line-height: 38px;
  }

  .featured-img:before,
  .featured-img:after,
  .featured-img-full:before,
  .featured-img-full:after {
    width: 64px;
    height: 64px;
  }

  .para-img .image.right:before,
  .para-img .image:before {
    width: 64px;
    height: 3px;
  }

  .para-img .image.right:after,
  .para-img .image:after {
    width: 3px;
    height: 64px;
  }

  .about .para-img .image {
    width: 80%;
    margin: 0 auto 24px;
  }

  .about .para-img .text,
  .about .text-wrap,
  .about .para-img,
  .career .text-wrap,
  .interview .text-wrap {
    width: 100%;
    padding: 0;
  }

  .about .para-img .text h2{
    text-align: center;
  }

  .pricing .heading h1 {
    margin-bottom: 0px;
    font-size: 46px;
  }

  .pricing .heading h1:after {
    top: -6px;
    right: 96px;
    font-size: 53px;
  }

  .pricing .box-wrap {
    flex-direction: column;
  }

  .pricing .box-wrap .box {
    width: 80%;
    margin: 0 auto 36px;
  }

  .pricing .box-wrap .box.mid:after,
  .pricing .box-wrap .box:after {
    display: none;
  }

  .pricing .bg-para p span {
    font-size: 1rem;
  }

  .blog-wrap {
    width: 100%;
    padding: 0 1.5rem;
    line-height: 3rem;
    font-size: 1.25rem;
  }

  .contact-wrap {
    flex-direction: column;
  }

  .contactpg .form {
    width: 100%;
  }

  .para-img p,
  .text-wrap p{
    font-size: 19px;
  }

  #popupFirst .text {
    font-size: 36px;
    line-height: 48px;
    padding: 0 6px;
  }

  .career-popup .popup {
    font-size: 20px;
    line-height: 30px;
    width: 90%;
    max-width: 90vh;
    padding: 18px;
  }

  .career-popup .popup ul {
    padding: 0px;
  }

  .career-popup .popup li {
    padding-left: 24px;
    background-position: left -1px top 10px;
  }

  .career-popup .popup .close {
    width: 36px;
    height: 36px;
    top: 8px;
    right: 8px;
  }

  .career-popup .popup .close:before,
  .career-popup .popup .close:after {
    width: 36px;
  }
}