@font-face {
  font-family: "CustomFont";
  src: url("./font/Inter-VariableFont_slnt,wght.ttf");
}

@font-face {
  font-family: "CustomFont2";
  src: url("./static/Inter-Regular.ttf");
}

body {
  font-family: "CustomFont";
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  overflow-x: hidden;
}

.TeamImage1 {
  background-image: url("./images/founder2.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 680px;
  width: 90%;
  border-radius: 20px;
}

.TeamImage2 {
  background-image: url("./images/Legal Assistant.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 500px;
  width: 90%;
  border-radius: 20px;
}

.getStarted {
  padding: 10px 20px !important;
  width: 150px !important;
  color: white !important;
  background-color: rgba(171, 40, 48, 0.9) !important;
  border-radius: 8px;
  font-size: 15px;
  overflow: hidden;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin-top: 40px;
}

.getStarted:hover {
  color: rgba(255, 255, 255, 1) !important;
  background-color: rgba(171, 40, 48, 1);
}

.btn.getStarted i {
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.btn.getStarted:hover i {
  transform: translateX(5px);
}

.workingTime {
  width: 720px ;
  height: 150px; /* Adjust as needed */
  margin-top: -50px; /* Adjust as needed */
  margin-left: auto;
  margin-right: auto;
  background-color: #152023;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  border-radius: 10px;
  padding: 20px 10px 20px 10px;
  box-shadow: 0px 0px 35px 0px #00000040;
}

.workingTimeSub1 {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 60px;
  
}

.workingTimeSub1 > p:first-child,
.workingTimeSub2 > p:first-child {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.workingTimeSub2 {
  margin-left: 40px;
  padding-left: 40px;
}

.workingTimeSub1 > p:last-child,
.workingTimeSub2 > a {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.workingTimeSub1,
.workingTimeSub2 {
  flex: 1; /* Add this line */
}

.PersonDetails {
  display: flex;
  flex-direction: column;
  padding: 20px 20px 20px 20px;
}

.PersonDetails > p:nth-child(1) {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.PersonDetails > p:nth-child(2) {
  font-size: 26px;
  font-weight: 400;
  color: white;
}

.PersonDetails > p:nth-child(3) {
  font-size: 16px;
  font-weight: 100;
  color: rgba(255, 255, 255, 0.8);
  border-left: 2px solid #952b2c;
  padding-left: 10px;
}

.PersonDetails > p:nth-child(4) {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
}

.PersonDetails > div {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 20px;
}

.fourthSectionSub2Para {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fourthSectionSub2Para > div:nth-child(1) {
  font-size: 21px;
  font-weight: 500;
  color: #ab2830;
  padding-bottom: 10px;
  border-bottom: 2px solid #ab2830;
}

.contactUsFormInputSection > input {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 1);
  outline: none;
}

.contactUsFormInputSection > textarea {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 1);
  outline: none;
}

.contactUsFormInputSection > label {
  font-size: 18px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.8);
}

.SubmitButton {
  padding: 10px 20px !important;
  width: 150px !important;
  font-weight: 400;
  color: white !important;
  background-color: rgba(171, 40, 48, 0.9) !important;
  border-radius: 10px;
  font-size: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-top: 40px;
}

.SubmitButton:hover {
  color: rgba(255, 255, 255, 1) !important;
  background-color: rgba(171, 40, 48, 1);
}

.btn.SubmitButton i {
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.btn.SubmitButton:hover i {
  transform: translateX(5px);
}

.required {
  color: red;
}

input::placeholder,
textarea::placeholder {
  color: red;
  font-size: 13px;
}

#contactUs {
  position: relative;
}

.backToTopButton {
  position: absolute;
  bottom: 30px;
  right: 50px;
  border: none;
  background-color: white;
  border: 2px solid rgba(0, 0, 0, 0.2);
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  justify-content: center;
}

.arrow {
  border: solid rgba(0, 0, 0, 0.2);
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  transition: all 0.3s ease;
}

.backToTopButton:hover {
  border: solid rgba(0, 0, 0, 0.3);
}

.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}


@media (min-width: 1200px) {
  .navBarMobile {
    display: none;
  }

  .navBarDesktop {
    display: block;
  }

  .mainContainer {
    display: flex;
    flex-direction: column;
    gap: 0px;
  }

  .subContainers {
    height: 110vh;
    width: 100%;
  }

  /*-------------first Section Start -------------------*/

  .firstSection {
    background-image: url("./images/lj_background.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .navbar {
    position: absolute;
    width: 90%;
    top: 8vh;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(152, 49, 54, 0.918) !important;
    border-radius: 8px;
    height: 70px;
  }

  .navbar-brand > img {
    height:50px !important;
    width: auto !important;
  

  }

  .nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
    border-bottom: 0px solid transparent !important; /* Add this line */
    text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  }

  .nav-link:hover {
    color: rgba(255, 255, 255, 1) !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.6) !important;
  }

  .dropdown-menu {
    background-color: transparent !important;
    border: none !important;
    border-radius: 10px !important;
    margin-left: -10px !important;
    width: 200px !important;
   
  }

  .dropdown-item {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 14px;
    font-weight: 550;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    padding: 15px 17px;
  }

  .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-radius: 10px !important;
    color: rgba(255, 255, 255, 1) !important;
  }

  .AppointmentButton {
    text-decoration: none;
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 30px;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  }

  .AppointmentButton:hover {
    border: 2px solid rgba(255, 255, 255, 1) !important;
    color: rgba(152, 49, 55, 1);
  }

  .firstSectionText {
    width: 60%;
    position: absolute;
    top: 40%;
    left: 20%;
    transform: translate(-20%, -20%);
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: white !important;
    text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  }

  .firstSectionText h1 {
    color: rgba(255, 255, 255, 1) !important;
    font-size: 68px;
    font-weight: 400;
    letter-spacing: 1px;
      
  }

  .firstSectionText h2 {
    color: rgba(255, 255, 255, 1) !important;
    font-size: 30px;
    font-weight: 300;
    margin-top: 18px;
    letter-spacing: 1px;
      
  }

  .firstSectionText p {
    font-size: 16px;
    width: 450px;
    font-weight: 200;
    letter-spacing: 1px;
    margin-top: 20px;
    text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  }

  /*-------------first Section End -------------------*/

  /*-------------second Section Start -------------------*/
  .secondSection {
    height: 100vh;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-top: -15px;
    background-color: #f9f9f9;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20vh;
  }

  .whoAreWe {
    width: 75%;
    display: flex;
    flex-direction: row;
    margin-left: auto;
    margin-right: auto;
    color: #152023;
  }

  .whoAreWeHeading {
    flex: 1;
    font-size: 42px;
    font-weight: 400;
    color: #152023;
    text-decoration: none;
  }

  .whoAreWeHeading:hover {
    color: #152023;
    text-decoration: none;
  }

  .whoAreWepara {
    flex: 1.5;
    font-size: 20px;
    font-weight: 300;
    color: #152023;
  }

  .secondSection::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #1a1c1d !important;
    height: 75px;
    width: 100%;
    background: url("./borders/border2.png") repeat-x;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: none !important;
    outline: none !important;  
  }

  .workingTime {
    width: 60%;
    height: 170px; /* Adjust as needed */
    margin-top: -50px; /* Adjust as needed */
    margin-left: auto;
    margin-right: auto;
    background-color: #152023;
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    border-radius: 10px;
    padding: 30px 10px 30px 50px;
    box-shadow: 0px 0px 35px 0px #00000040;
  }

  .workingTimeSub1 {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .workingTimeSub1 > p:first-child,
  .workingTimeSub2 > p:first-child {
    font-size: 20px;
    font-weight: 200;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
  }

  .workingTimeSub2 {
    margin-left: 20px;
    width: 50%;
    margin-right: 20px;
  }

  .workingTimeSub1 > p:last-child,
  .workingTimeSub2 > a {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
  }

  .workingTimeSub1,
  .workingTimeSub2 {
    flex: 1; /* Add this line */
  }

  /*-------------second Section End ---------------------*/

  /*-------------third Section Start -------------------*/
  .thirdSection {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 150vh;
    background-color: #1a1c1d;
  }

  .thirdSection::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 60px;
    width: 100%;
    /*background-color: #1a1c1d !important;*/
    /*background: url("./borders/border1.png") repeat-x;*/
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: none !important;
    outline: none !important;

  }

  .meetTeam {
    font-size: 48px;
    font-weight: 400;
    margin-left: 10%;
    margin-bottom: 80px;
    margin-top: 3%;
    color: rgba(255, 255, 255, 0.9);
  }

  .meetTeam:hover {
    color: white;
    text-decoration: none;
  }

  .TeamDetails {
    margin-left: 60px;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    gap: 0vw;
  }

  .TeamDetailsSub {
    background-color: #1a1c1d;
    width: 35%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  /*-------------third Section End -------------------*/

  /*-------------fourth Section Start -------------------*/
  .fourthSection {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5vh;
  }

  .fourthSection::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    top: 2210px;
    height: 75px;
    width: 100%;
    background-color: white !important;
    background: url("./borders/border3.png") repeat-x;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: none !important;
    outline: none !important;
  }

  .fourthSectionSub1 {
    display: flex;
    flex-direction: row;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 150px;
    margin-bottom: 90px;
  }

  .fourthSectionSub1 > div:first-child {
    color: #ab2830;
    font-size: 42px;
    font-weight: 400;
    flex: 2;
  }

  .fourthSectionSub1 > div:last-child {
    flex: 1;
    font-size: 20px;
    font-weight: 300;
  }

  .fourthSectionSub2 {
    display: flex;
    flex-direction: row;
    gap: 7vw;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
  }

  .fourthSectionSub2 > div:nth-child(1) {
    flex: 1;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
  }

  .fourthSectionSub2Para > div:nth-child(1){
    font-size: 28px;
    font-weight: 400;
    color: #ab2830;
    padding-bottom: 10px;
    border-bottom: 2px solid #ab2830;
  }

  .fourthSectionSub2 > div:nth-child(2) {
    flex: 1;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
  }

  .fourthSectionSub2 > div:nth-child(3) {
    flex: 1;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
  }

  .fourthSectionSub3 {
    text-align: center;
    font-size: 38px;
    font-weight: 400;
    padding-bottom: 20px;
  }

  .fourthSectionSub4 {
    display: flex;
    flex-direction: row;
    gap: 2vw;
    width: 94%;
    margin-left: 50px;
    margin-right: auto;
  }

  .fourthSectionSubSection {
   
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #ab2830;
    border-radius: 20px;
    padding: 25px 30px 50px 30px;
    height: auto;
    color: white;
  }

  .fourthSectionSubSection > div:nth-child(1) {
   
    border-radius: 50px;
  
    width: 100%;
    margin-left: auto;
    text-align: center;
    padding: 2px;
    background-color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    
  }

  .fourthSectionSubSection > div:nth-child(2) {
    font-size: 28px;
    color: white;
    font-weight: 200 !important;
    text-align: center;
  }

  .fourthSectionSubSection h1 {
    font-size: 30px;
    color: white;
    font-weight: 400;
    
  }



  .fourthSectionSubSection > div:nth-child(3) {
    font-size: 14px;
    color: white;
    font-weight: 100;
  }

  .fourthSectionSubSection > div:nth-child(4) {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-weight: 300;
    padding-left: 5px;
  }

  .fourthSectionSubSection > div:nth-child(4) > div > img {
    margin-right: 10px;
  }

  .fourthSectionSub1 > div > a {
    text-decoration: none;
    color: rgba(171, 40, 48, 0.9);
  }

  .fourthSectionSub1 > div > a:hover {
    text-decoration: none;
    color: rgba(171, 40, 48, 1);
  }

  /*-------------fourth Section End -------------------*/

  /*-------------fifth Section Start -------------------*/

  .fifthSection {
    background-color: #1a1c1d;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
    flex-direction: row;
    color: white !important;
  }

  .fifthSectionSub {
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: 150px;
  }

  .fifthSectionSub1 {
    display: flex;
    flex-direction: column;
    gap: 8vh;
    width: 25vw;
  }

  .fifthSectionSub2 {
    display: flex;
    flex-direction: column;
    gap: 1vh;
    width: 40%;
  }

  .fifthSectionSub1Para1 {
    display: flex;
    flex-direction: column;
    gap: 5px;
   
  }


  .fifthSectionSub1Para1 > div:nth-child(1) {
    font-size: 30px;
    font-weight: 400;
  }

  

  .fifthSectionSub1Para1 > div:nth-child(2) {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
  }

  .fifthSectionSub1Para {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .fifthSectionSub1Para h1 {
    font-size: 38px;
    color: rgb(255, 255, 255);
    font-weight: 300;
  }

  .fifthSectionSub1Para p {
    font-size: 22px;
    font-weight: 100;
    
  }

  .fifthSectionSub1Para > div:nth-child(1) {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
  }

  .fifthSectionSub1Para > div:nth-child(2) {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
  }

  .fifthSectionSub2 > div:nth-child(1) {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    padding-bottom: 20px;
  }

  /*-------------fifth Section End -------------------*/

  /*-------------sixth Section Start -------------------*/
  .sixthSection {
    display: flex;
    flex-direction: row;
    height: 90vh;
    position: relative;
    z-index: 10;
  }

  .sixthSectionSub1 {
    font-size: 38px !important;
    font-weight: 400 !important;
    padding-left: 30px;
  }


  .contactUsForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom:auto;
  }

  .contactUsForm p {
    font-size: 20px;
  }

  .contactUsFormInputSection{
    font-size: 12px;
  }

  .contactUsForm > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .sixthSectionSub {
    margin: auto;
  }

  .sixthSectionSub1 {
    margin-top: 10%;
    width: 30%;
  }

  .sixthSectionSub2 {
    width: 40%;
  }

  /*-------------sixth Section End -------------------*/

  /*-------------seventh Section Start -------------------*/
  .seventhSection {
    height: 50vh;
    background-color: #1a1c1d;
  }

  .footerContainer {
    width: 80%;
    height: 50vh !important;
    margin-top: -5vh; /* Negative margin to pull the container up */
    margin-left: auto;
    margin-right: auto;
    background-color: #6d1c1b !important;
    position: relative;
    z-index: 1;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 50px;
  }

  .footerLogo > img {
    height: 120px !important;
    width: 180px !important;
  }

  .footerContainerSub1 {
    display: flex;
    flex-direction: row;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .footerContainerSub1 > div:nth-child(1) {
    flex: 1;
  }

  .footerContainerSub1 > div:nth-child(2) {
    flex: 1;
  }

  .footerContainerLinks {
    display: flex;
    flex-direction: row;
    gap: 50px;
    margin-top: auto;
    margin-bottom: auto;
  }

  .footerContainerLinks > a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 300;
    transition: all 0.3s ease;
  }

  .footerContainerLinks > a:hover {
    color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
  }

  .footerContainerSub1Para {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .footerContainerSub1Para > div:nth-child(2) {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    padding-top: 15px;
  }

  .socialMediaButtonSet {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }

  .socialMediaButtonSet > a > img:hover {
    transform: scale(1.1);
    transition: all 0.3s ease;
  }

  .socialMediaButtonSet > a > img {
    vertical-align: middle;
    border-style: none;
    height: 30px
  }

  .footerContainerSub2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footerContainerSub2 > div:nth-child(1) {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
  }

  .footerContainerSub2 > div:nth-child(2) {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
  }
}


@media (max-width: 1200px) and (min-width: 992px) {
  .navBarMobile {
    display: none;
  }

  .navBarDesktop {
    display: block;
  }

  .mainContainer {
    display: flex;
    flex-direction: column;
    gap: 0px;
  }

  .subContainers {
    height: 100vh;
    width: 100%;
  }

  /*-------------first Section Start -------------------*/

  .firstSection {
    background-image: url("./images/image1.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .navbar {
    position: absolute;
    width: 90%;
    top: 10vh;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(152, 49, 55, 0.7) !important;
    border-radius: 10px;
    height: 70px;
  }

  .navbar-brand > img {
    height: 60px !important;
    width: auto !important;
  }

  .nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 15px;
    font-weight: 550;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent !important; /* Add this line */
  }

  .nav-link:hover {
    color: rgba(255, 255, 255, 1) !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.6) !important;
  }

  .dropdown-menu {
    background-color: transparent !important;
    border: none !important;
    border-radius: 10px !important;
    margin-left: -10px !important;
    width: 200px !important;
  }

  .dropdown-item {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 15px;
    font-weight: 550;
    transition: all 0.3s ease;
  }

  .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-radius: 10px !important;
    color: rgba(255, 255, 255, 1) !important;
  }

  .AppointmentButton {
    text-decoration: none;
    background-color: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.7) !important;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
  }

  .AppointmentButton:hover {
    border: 2px solid rgba(255, 255, 255, 1) !important;
    color: rgba(152, 49, 55, 1);
  }

  .firstSectionText {
    width: 60%;
    position: absolute;
    top: 40%;
    left: 15%;
    transform: translate(-20%, -20%);
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: white !important;
  }

  .firstSectionText h1 {
    color: rgba(255, 255, 255, 1) !important;
    font-size: 68px;
    font-weight: 400;
    letter-spacing: 1px;
  }

  .firstSectionText p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 20px;
  }

  /*-------------first Section End -------------------*/

  /*-------------second Section Start -------------------*/
  .secondSection {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-top: -15px;
    background-color: #f9f9f9;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20vh;
  }

  .whoAreWe {
    width: 65%;
    display: flex;
    flex-direction: row;
    margin-left: auto;
    margin-right: auto;
    color: #152023;
  }

  .whoAreWeHeading {
    flex: 1;
    font-size: 42px;
    font-weight: 300;
    color: #152023;
    text-decoration: none;
  }

  .whoAreWeHeading:hover {
    color: #152023;
    text-decoration: none;
  }

  .whoAreWepara {
    flex: 1;
    font-size: 18px;
    color: #152023;
  }

  .workingTime {
    width: 60%;
    height: 150px; /* Adjust as needed */
    margin-top: -50px; /* Adjust as needed */
    margin-left: auto;
    margin-right: auto;
    background-color: #152023;
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    border-radius: 10px;
    padding: 20px 50px 20px 50px;
    box-shadow: 0px 0px 35px 0px #00000040;
  }

  .workingTimeSub1 {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .workingTimeSub1 > p:first-child,
  .workingTimeSub2 > p:first-child {
    font-size: 16px;
    font-weight: 00;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
  }

  .workingTimeSub2 {
    margin-left: 20px;
    width: 50%;
    margin-right: 20px;
  }

  .workingTimeSub1 > p:last-child,
  .workingTimeSub2 > a {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
  }

  .workingTimeSub1,
  .workingTimeSub2 {
    flex: 1; /* Add this line */
  }

  /*-------------second Section End ---------------------*/

  /*-------------third Section Start -------------------*/
  .thirdSection {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 230vh;
    background-color: #1a1c1d;
  }

  .thirdSection::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 60px;
    width: 100%;
    /*background-color: #1a1c1d !important;*/
    /*background: url("./borders/border1.png") repeat-x;*/
  }

  .meetTeam {
    font-size: 42px;
    font-weight: 500;
    margin-left: 5%;
    margin-top: 3%;
    color: rgba(255, 255, 255, 0.9);
  }

  .meetTeam:hover {
    color: white;
    text-decoration: none;
  }

  .TeamDetails {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    gap: 5vw;
  }

  .TeamDetailsSub {
    background-color: #1a1c1d;
    width: 35%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  /*-------------third Section End -------------------*/

  /*-------------fourth Section Start -------------------*/
  .fourthSection {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5vh;
    height: 260vh;
  }

  .fourthSection::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 60px;
    width: 100%;
    background-color: #1a1c1d !important;
    background: url("./borders/border3.png") repeat-x;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .fourthSectionSub1 {
    display: flex;
    flex-direction: row;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5%;
  }

  .fourthSectionSub1 > div:first-child {
    color: #ab2830;
    font-size: 42px;
    font-weight: 500;
    flex: 2;
  }

  .fourthSectionSub1 > div:last-child {
    flex: 1;
    font-size: 16px;
  }

  .fourthSectionSub2 {
    display: flex;
    flex-direction: row;
    gap: 10vw;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }

  .fourthSectionSub2 > div:nth-child(1) {
    flex: 1;
    font-size: 16px;
  }

  .fourthSectionSub2 > div:nth-child(2) {
    flex: 1;
    font-size: 16px;
  }

  .fourthSectionSub2 > div:nth-child(3) {
    flex: 1;
    font-size: 16px;
  }

  .fourthSectionSub3 {
    text-align: center;
    font-size: 28px;
    font-weight: 500;
  }

  .fourthSectionSub4 {
    display: flex;
    flex-direction: row;
    gap: 8vw;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }

  .fourthSectionSubSection {
    font-family: "CustomFont2";
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #ab2830;
    border-radius: 20px;
    padding: 35px;
    height: auto;
    color: white;
    min-width: 350px;
  }

  .fourthSectionSubSection > div:nth-child(1) {
    font-size: 12px;
    font-weight: 500;
    border-radius: 50px;
    color: black;
    width: 60%;
    margin-left: auto;
    text-align: center;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
  }

  .fourthSectionSubSection > div:nth-child(2) {
    font-size: 24px;
    color: white;
  }

  .fourthSectionSubSection > div:nth-child(3) {
    font-size: 14px;
    color: white;
  }

  .fourthSectionSubSection > div:nth-child(4) {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .fourthSectionSubSection > div:nth-child(4) > div > img {
    margin-right: 5px;
  }

  .fourthSectionSub1 > div > a {
    text-decoration: none;
    color: rgba(171, 40, 48, 0.9);
  }

  .fourthSectionSub1 > div > a:hover {
    text-decoration: none;
    color: rgba(171, 40, 48, 1);
  }

  /*-------------fourth Section End -------------------*/

  /*-------------fifth Section Start -------------------*/
  .fifthSection {
    background-color: #1a1c1d;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
    flex-direction: row;
    color: white !important;
  }

  .fifthSectionSub {
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .fifthSectionSub1 {
    display: flex;
    flex-direction: column;
    gap: 8vh;
    width: 25vw;
  }

  .fifthSectionSub2 {
    display: flex;
    flex-direction: column;
    gap: 1vh;
    width: 40%;
  }

  .fifthSectionSub1Para1 {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .fifthSectionSub1Para1 > div:nth-child(1) {
    font-size: 30px;
    font-weight: 400;
  }

  .fifthSectionSub1Para1 > div:nth-child(2) {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
  }

  .fifthSectionSub1Para {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .fifthSectionSub1Para > div:nth-child(1) {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
  }

  .fifthSectionSub1Para > div:nth-child(2) {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
  }

  .fifthSectionSub2 > div:nth-child(1) {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
  }

  /*-------------fifth Section End -------------------*/

  /*-------------sixth Section Start -------------------*/
  .sixthSection {
    display: flex;
    flex-direction: row;
    height: 90vh;
    position: relative;
    z-index: 10;
  }

  .sixthSectionSub1 {
    font-size: 42px !important;
    font-weight: 500 !important;
  }

  .contactUsForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .contactUsForm > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .sixthSectionSub {
    margin: auto;
  }

  .sixthSectionSub1 {
    margin-top: 10%;
    width: 30%;
  }

  .sixthSectionSub2 {
    width: 40%;
  }

  /*-------------sixth Section End -------------------*/

  /*-------------seventh Section Start -------------------*/
  .seventhSection {
    height: 50vh;
    background-color: #1a1c1d;
  }

  .footerContainer {
    width: 70%;
    height: 50vh !important;
    margin-top: -5vh; /* Negative margin to pull the container up */
    margin-left: auto;
    margin-right: auto;
    background-color: #6d1c1b !important;
    position: relative;
    z-index: 1;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 50px;
  }

  .footerLogo > img {
    height: 100px !important;
    width: 80px !important;
  }

  .footerContainerSub1 {
    display: flex;
    flex-direction: row;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .footerContainerSub1 > div:nth-child(1) {
    flex: 1;
  }

  .footerContainerSub1 > div:nth-child(2) {
    flex: 1;
  }

  .footerContainerLinks {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: auto;
    margin-bottom: auto;
  }

  .footerContainerLinks > a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .footerContainerLinks > a:hover {
    color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
  }

  .footerContainerSub1Para {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .footerContainerSub1Para > div:nth-child(2) {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    padding-top: 15px;
  }

  .socialMediaButtonSet {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }

  .socialMediaButtonSet > a > img:hover {
    transform: scale(1.1);
    transition: all 0.3s ease;
  }

  .footerContainerSub2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footerContainerSub2 > div:nth-child(1) {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
  }

  .footerContainerSub2 > div:nth-child(2) {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
  }
}

.border {
  display: none;
}

/*-------------seventh Section End -------------------*/




/*mobile*/ 

@media (max-width: 992px) {
  body {
    font-family: "CustomFont";
    margin: 0;
    padding: 0;
    border: 0;
    width: 100%;
    overflow-x: hidden;
  }

  .navBarDesktop {
    display: none !important;
  }
  .navBarMobile {
    display: block;
    width: 95vw;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    border-top: 10px solid transparent;
  }

  .navbar {
    height: 5% !important;
    border-radius: 10px;
    background-color: rgba(171, 40, 48, 0.7) !important;
  }

  .navbar-brand > img {
    height: 30px !important;
    width: auto !important;
  }

  .nav-item > a {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 15px;
    font-weight: 550;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent !important; /* Add this line */
  }

  .dropdown-menu {
    background-color: transparent !important;
    border: none !important;
    border-radius: 10px !important;
    margin-left: -10px !important;
    width: 200px !important;
  }

  .dropdown-item {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 15px;
    font-weight: 550;
    transition: all 0.3s ease;
  }

  .dropdown-item:hover {
    border-bottom: 2px solid rgba(255, 255, 255, 0.6) !important;
    color: rgba(255, 255, 255, 1) !important;
  }

  .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-radius: 10px !important;
    color: rgba(255, 255, 255, 1) !important;
  }

  .AppointmentButton {
    text-align: center;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
    margin-bottom: 10px;
  }

  .AppointmentButton:hover {
    color: rgba(255, 255, 255, 1) !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.6) !important;
  }

  .subContainers {
    height: auto;
    width: 100%;
  }

  .firstSection {
    background-image: url("./images/image1.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .firstSectionText {
    margin-top: 20vh;
    margin-left: 10%;
  }

  .firstSectionText > h1 {
    font-size: 7vw;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 1);
  }

  .firstSectionText > p {
    width: 75%;
    font-size: 2.8vw;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.8);
  }

  .getStarted {
    width: 120px !important;
    margin-bottom: 10vw;
    font-size: 12px;
    padding: 8px 2px !important;
  }

  .secondSection {
    height: auto !important;
    width: 100%;
  }

  .workingTime {
    margin-top: 0px;
    width: 100%;
    border-radius: 0px;
    position: relative;
    padding: 20px 0px 20px 25px;
  }

  .workingTimeSub1 {
    padding-right: 30px;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    /* margin-top: auto;
    margin-bottom: auto; */
  }

  .workingTimeSub1 > p:first-child {
    margin-top: 3.3vh;
    font-size: 3.2vw;
    color: rgba(255, 255, 255, 0.8);
  }

  .workingTimeSub2 > p:first-child {
    margin-top: 3.3vh;
    margin-bottom: 0px;
    font-size: 3.2vw;
    color: rgba(255, 255, 255, 0.8);
  }

  .workingTimeSub1 > p:last-child {
    font-size: 2.4vw;
    color: rgba(255, 255, 255, 0.8);
    padding: 0;
    margin: 0;
  }

  .workingTimeSub2 > a {
    font-size: 2.6vw;
    color: rgba(255, 255, 255, 0.8);
  }

  .whoAreWe {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    color: #152023;
    padding: 10vw;
  }

  .whoAreWeHeading {
    font-size: 36px;
    font-weight: 500;
    color: #152023;
    text-decoration: none;
    margin-bottom: 5vh;
  }

  .thirdSection {
    margin-top: -0.5%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5vh;
    background-color: #000000 !important;
    height: auto;
  }

  .meetTeam {
    font-size: 6.5vw;
    font-weight: 500;
    margin-left: 10%;
    margin-top: 5%;
    color: rgba(255, 255, 255, 0.9);
  }

  .meetTeam > div > br {
    display: none !important;
  }

  .border {
    display: none;
    background-color: #000000 !important;
    margin-top: 5vh;
  }

  .border > img {
    width: 100%;
    height: auto;
  }

  .TeamDetails {
    display: flex;
    flex-direction: column;
    gap: 5vw;
  }

  .TeamImage1 {
    margin-left: auto;
    margin-right: auto;
    height: 80vh;
  }

  .TeamImage2 {
    margin-left: auto;
    margin-right: auto;
    height: 60vh;
  }

  .PersonDetails {
    margin-left: 0.7vw;
    margin-top: 5vh;
    margin: 20px;
  }

  .border2 {
    outline: none;
    border: none;
    height: 3.2vh;
  }

  .fourthSection {
    display: flex;
    flex-direction: column;
    gap: 5vh;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .fourthSectionSub1 > div {
    /* margin-top: 5vh !important;
    margin-bottom: 2vh !important; */
  }

  .fourthSectionSub1 {
    margin-top: 3vh;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .fourthSectionSub1 > div > a {
    font-size: 7vw;
    font-weight: 500;
    color: #ab2830;
    text-decoration: none;
  }

  .fourthSectionSub2 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .fourthSectionSub2Para {
    margin-left: auto;
    margin-right: auto;
  }
  .fourthSectionSub2Para > div:nth-child(1) {
    font-size: 5vw;
    font-weight: 500;
    color: #ab2830;
    text-decoration: none;
  }

  .fourthSectionSub3 {
    text-align: center;
    font-size: 28px;
    font-weight: 500;
  }

  .fourthSectionSub4 {
    display: flex;
    flex-direction: column;
    gap: 5vw;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .fourthSectionSubSection {
    font-family: "CustomFont2";
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #ab2830;
    border-radius: 20px;
    padding: 20px;
    padding-bottom: 30px;
    margin-bottom: 5vh;
    height: auto;
    color: white;
  }

  .fourthSectionSubSection > div:nth-child(1) {
    text-align: center;
    margin-left: auto;
    font-size: 3.2vw;
    font-weight: 600;
    border-radius: 50px;
    color: black;
    background-color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px;
    width: 70%;
  }

  .fourthSectionSub4Para2 > div:nth-child(1) {
    width: 80%;
  }

  .fourthSectionSubSection > div:nth-child(2) {
    font-size: 6vw;
    color: white;
    font-weight: 500;
  }

  .fourthSectionSubSection > div:nth-child(3) {
    font-size: 3.5vw;
    color: white;
  }

  .fourthSectionSubSection > div:nth-child(4) {
    color: rgba(255, 255, 255, 0.9);
    font-size: 3vw;
    display: flex;
    flex-direction: column;
    gap: 2.5vh;
    width: 120%;
  }

  .fourthSectionSubSection > div:nth-child(4) > div > img {
    margin-right: 5px;
    width: 4.5vw;
    height: 4.5vw;
  }

  .fifthSection {
    display: flex;
    flex-direction: column;
    gap: 5vh;
    height: auto;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: #000000;
  }

  .fifthSectionSub {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 5vh;
  }

  .fifthSectionSub1Para {
    color: white;
  }

  .fifthSectionSub1Para {
    display: flex;
    flex-direction: column;
    gap: 1vh;
    width: 100%;
  }

  .fifthSectionSub1ParaHeading {
    font-size: 8vw !important;
    font-weight: 500;
    text-decoration: none;
    margin-top: 5vh;
    color: white !important;
  }

  .fifthSectionSub1Para > div:nth-child(1) {
    font-size: 4vw;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
  }

  .fifthSectionSub1Para > div:nth-child(2) {
    font-size: 3.4vw;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
  }
  .FifthTel > a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 3.4vw;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
  }

  .fifthSectionSub2 {
    display: flex;
    flex-direction: column;
    gap: 1vh;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .fifthSectionSub > div:nth-child(1) {
    font-size: 4vw;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
  }
  .googleMap {
    width: 100%;
    height: 50vh;
    margin-left: auto;
    margin-right: auto;
  }

  .border3 {
    position: relative;
    top: 6vh;
    width: 100% !important;
    background-color: white !important;
    outline: none !important;
    border: none !important;
    margin-top: 0 !important;
  }

  .sixthSection {
    display: flex;
    flex-direction: column;
    gap: 5vh;
    height: 94vh;
    width: 100%;
    background-color: white;
    /* background-color: yellow; */
  }

  .sixthSectionSub2 {
    display: flex;
    flex-direction: column;
    gap: 5vh;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .contactUsFormInputSection {
    display: flex;
    flex-direction: column;
    gap: 1vh;
  }

  .contactUsForm {
    display: flex;
    flex-direction: column;
    gap: 3vh;
  }

  .backToTopButton {
    position: absolute;
    float: right;
    bottom: 70px;
    right: 25px !important;
  }

  .SubmitButton {
    float: center;
  }

  .sixthSectionSub1 {
    font-size: 8vw !important;
    font-weight: 500 !important;
    margin-left: 10%;
    margin-top: 10%;
    color: rgba(0, 0, 0, 0.9);
  }

  .seventhSection {
    height: 75vh;
    background-color: #1a1c1d;
    display: flex;
    flex-direction: column;
    gap: 5vh;
  }

  .footerContainer {
    width: 90%;
    height: auto !important;
    margin-top: -5vh; /* Negative margin to pull the container up */
    margin-left: auto;
    margin-right: auto;
    background-color: #6d1c1b !important;
    position: relative;
    z-index: 1;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 5vh;
    padding: 30px 50px;
    text-align: left;
  }

  .footerContainerSub1Para {
    display: flex;
    flex-direction: column;
    gap: 2vh;
  }

  .footerContainerLinks {
    display: flex;
    flex-direction: column;
    gap: 1vh;
  }

  .socialMediaButtonSet {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }

  .footerContainerLinks > a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 3.3vw;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .footerContainerSub1Para > div:nth-child(2) {
    font-size: 4vw;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
  }
  .footerContainerSub2 {
    display: flex;
    flex-direction: column;
    gap: 1vh;
    color: rgba(255, 255, 255, 0.4);
    font-size: 2vw;
  }

  .backToTopButton {
    position: absolute;
    bottom: 70px;
    right: 20px;
    border: none;
    background-color: white;
    border: 2px solid rgba(0, 0, 0, 0.2);
    color: #fff;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    justify-content: center;
  }

  .navbar-toggler {
    border: none;
    background-color: transparent !important;
    outline: none;
    box-shadow: none;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.6)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
  }

  .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
  }
}



@media only screen and (min-width: 500px) and (max-width: 1920px) {
  .thirdSection {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 20px;
      height: auto;
      background-color: #1a1c1d;
  }
}

.fourthSection {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5vh;
  overflow-x: auto;
}

.fourthSection::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  top: 2030px;
  height: 75px;
  width: 100%;
  background-color: white !important;
  background: url(./borders/border3.png) repeat-x;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: none !important;
  outline: none !important;
}

@media only screen and (min-width: 500px) and (max-width: 1440px) {
  .thirdSection {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 20px;
      height: auto;
      background-color: #1a1c1d;
  }
}

.fourthSection {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5vh;
}

.fourthSection::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  top: 2030px;
  height: 75px;
  width: 100%;
  background-color: white !important;
  background: url(./borders/border3.png) repeat-x;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: none !important;
  outline: none !important;
}

.fifthSection {
  background-color: #1a1c1d;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  display: flex;
  flex-direction: row;
  color: white !important;
}

@media (max-width: 1440px) {
  .mainContainer{
  max-width: 100%;
  }
}

@media only screen and (max-width: 500px) {
  .firstSectionText h1 {
    /*display: none;*/
    font-size: 2rem;
  }

  .workingTime{
    width: auto;
    height: auto !important;
  }

  .footerLogo > img {
    width: 30% !important;
    height: auto !important;
  }

  .custom-social-media-icon{
    width: 100% !important;
    height: 32px !important;
  }

  .fourthSectionSub4{
    height: auto !important;
  }

  .fifthSection {
    margin-top: 0px;
    display: block;
    padding: 20px;
  }

  .fifthSectionSub{
    width: 100% !important;
  }

  .custom-header-icon{
    background-image: url('./images/gsp_logo_white_mobile.png') !important;
    background-size: contain;
    width: 200px;
    background-repeat: no-repeat;
    height: 32px
  }

  .custom-footer-icon{
    background-image: url('./images/gsp_logo_white_mobile.png') !important;
    background-size: contain;
    width: 200px;
    background-repeat: no-repeat;
    height: 52px
  }

  .fourthSection::after {
    display: none !important; /* Hide the ::after pseudo-element */
  }

  .custom-footer-sub-header {
    width: 40%;
  }

  .socialMediaButtonSet{
    margin-bottom: 40px;
  }

  .fifthSectionSub2{
    margin-top: 40px;
  }

  .sixthSection{
    display: block;
  }
}

.custom-header-icon{
  background-image: url(./images/gsp_logo_white_custom.png);
  background-size: contain;
    width: 200px;
    background-repeat: no-repeat;
    height: 52px
}

.custom-footer-icon{
  background-image: url(./images/gsp_logo_white_custom.png);

  background-size: contain;
    width: 64px;
    background-repeat: no-repeat;
    height: 64px
}

.custom-fourth-section-header{
  color: #ab2830;
  font-size: 30px;
}

@media only screen and (min-width: 500px) and (max-width: 1200px) {
  .custom-social-media-icon{
    width: 100%;
    height: 32px;
  }

  .googleMap{
    width: 100%;
  }
}

@media only screen and (min-width: 500px) and (max-width: 900px) {
  .fifthSection{
    flex-direction: column;
  }

  .fifthSectionSub2{
    text-align: center;
    padding-bottom: 20px;
  }
}

@media (max-width: 999px) {
  .fourthSection::after {
    /* Your styles here */
    display: none;
  }
}

#WhyWorkwithUs{
  height: 100%;
}