@charset "UTF-8";
/* Importing Google Font for use in the project */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
/* Defining color variables for easy access throughout the stylesheet */
:root {
  --primary-color: #fc4622;
  --secondary-color: #171717;
  --white-color: #ffffff;
  --grey-color: #707070;
  --grey-background-color: #f8f8f8;
}

/* Universal reset to ensure consistent styling across all elements */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling with custom font and overflow control */
body {
  font-family: "Outfit", sans-serif;
  overflow-x: hidden;
}

/* Styling anchor links */
a {
  transition: all 0.5s ease-in-out;
  text-decoration: none;
}

/* Button focus styling */
button:focus {
  outline: 0;
  box-shadow: none;
}

/* List styling */
ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

/* Ensuring images scale properly */
img {
  max-width: 100%;
}

/* Adjusting main content layout */
/* Styling the title section with position and text styles */
.title {
  position: relative;
  margin-bottom: 20px;
}
.title h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
}
.title h2 span {
  color: var(--primary-color);
}
.title h3 {
  position: absolute;
  top: -28px;
  font-size: 36px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.05);
  text-transform: uppercase;
}
.title p {
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}

/* Ensuring header elements use the secondary color */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--secondary-color);
}

/* Styling paragraph text with smaller font size and grey color */
p {
  color: var(--grey-color);
  font-size: 16px;
}

/* Media Queries */
@media screen and (max-width: 991px) {
  .title h2 {
    font-size: 26px;
  }
  .title h3 {
    font-size: 28px;
    top: -17px;
  }
  .title p {
    max-width: 100%;
  }
  p {
    font-size: 14px;
  }
}
/* Importing other modular SCSS files */
.paddingTop50 {
  padding-top: 50px;
}

.paddingBottom50 {
  padding-bottom: 50px;
}

.paddingTop100 {
  padding-top: 100px;
}

.paddingBottom100 {
  padding-bottom: 100px;
}

.paddingTop150 {
  padding-top: 150px;
}

.paddingBottom150 {
  padding-bottom: 150px;
}

@media screen and (max-width: 767px) {
  .paddingTop50,
  .paddingBottom50,
  .paddingTop100,
  .paddingBottom100,
  .paddingTop150,
  .paddingBottom150 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.topNav {
  background-color: var(--primary-color);
  padding: 5px 0;
}
.topNav span {
  margin-right: 15px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white-color);
}
.topNav ul li {
  display: inline-block;
  vertical-align: super;
  margin: 0 5px;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
}
header .navbar .container {
  align-items: center;
}
header .navbar .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--secondary-color);
}
header .navbar .nav-link:hover {
  color: var(--primary-color);
}
header .navbar .nav-item.hasChild {
  position: relative;
}
header .navbar .nav-item.hasChild:hover::before {
  background-image: url("../images/MenuArrow.svg");
  transform: rotate(180deg);
  transition: all 0.5s ease-in-out;
}
header .navbar .nav-item.hasChild:hover .subMenu {
  visibility: visible;
  opacity: 1;
}
header .navbar .nav-item.hasChild:hover .nav-link {
  color: var(--primary-color);
}
header .navbar .nav-item.hasChild::before {
  content: "";
  background-image: url("../images/MenuArrowBlack.svg");
  background-position: center;
  background-repeat: no-repeat;
  width: 10px;
  height: 6px;
  position: absolute;
  right: 10px;
  top: 18px;
  transition: all 0.5s ease-in-out;
}
header .navbar .nav-item.hasChild .subMenu {
  position: absolute;
  top: 40px;
  background-color: var(--white-color);
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 10px 0px 10px 0px;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
  visibility: hidden;
}
header .navbar .nav-item.hasChild .subMenu li {
  border-bottom: 1px solid rgba(23, 23, 23, 0.6);
  padding: 10px 10px 10px 33px;
}
header .navbar .nav-item.hasChild .subMenu li:last-child {
  border-bottom: none;
}
header .navbar .nav-item.hasChild .subMenu li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary-color);
  white-space: nowrap;
  position: relative;
}
header .navbar .nav-item.hasChild .subMenu li a:hover {
  color: var(--primary-color);
}
header .navbar .nav-item.hasChild .subMenu li a:hover::before {
  background-color: var(--primary-color);
}
header .navbar .nav-item.hasChild .subMenu li a::before {
  content: "";
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  position: absolute;
  left: -17px;
  top: 5px;
  transition: all 0.5s ease-in-out;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-left: 32px;
  padding-right: 32px;
}

.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}

@media screen and (max-width: 991px) {
  header .navbar-brand {
    display: flex;
  }
  header .navbar-brand img {
    max-width: 110px;
  }
  header .navbar-expand-lg .navbar-nav {
    margin-top: 15px;
  }
  header .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0;
    padding-right: 0;
  }
  header .navbar .nav-item.hasChild:hover::before {
    transform: rotate(0deg);
    background-image: url("../images/MenuArrowBlack.svg");
  }
  header .navbar .nav-item.hasChild:hover .nav-link {
    color: var(--secondary-color);
  }
  header .navbar .nav-item.hasChild .subMenu {
    visibility: visible;
    opacity: 1;
    position: initial;
    width: 100%;
    padding: 0;
    display: none;
  }
  header .navbar .nav-item.hasChild::before {
    transform: rotate(0deg);
  }
  header .navbar .nav-item.hasChild.rotate::before {
    transform: rotate(180deg);
  }
  header .navbar .buttonPrimary {
    width: 100%;
    text-align: center;
  }
  header .navbar .navbar-toggler[aria-expanded=true] {
    padding: 0;
  }
  header .navbar .navbar-toggler[aria-expanded=true] .navbar-toggler-icon {
    background-image: url("../images/CloseIcon.svg");
  }
  header .navbar .navbar-toggler[aria-expanded=false] {
    padding: 0;
  }
  header .navbar .navbar-toggler[aria-expanded=false] .navbar-toggler-icon {
    background-image: url("../images/HamBurger.svg");
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1280px;
  }
}
.buttonPrimary {
  background-color: var(--primary-color);
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  color: var(--white-color);
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
}
.buttonPrimary:hover {
  background-color: var(--secondary-color);
  border-bottom-right-radius: 10px;
  border-top-left-radius: 10px;
}

@media screen and (max-width: 991px) {
  .buttonPrimary {
    font-size: 14px;
  }
}
.buttonSecondary {
  background-color: var(--secondary-color);
  color: var(--white-color);
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
}
.buttonSecondary:hover {
  background-color: var(--white-color);
  color: var(--secondary-color);
  border-bottom-right-radius: 10px;
  border-top-left-radius: 10px;
}

.buttonLink {
  color: var(--white-color);
  text-decoration: underline;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
}
.buttonLink:hover {
  color: var(--secondary-color);
}

@media screen and (max-width: 991px) {
  .buttonPrimary,
  .buttonSecondary,
  .buttonLink {
    font-size: 14px;
  }
}
.heroBanner {
  position: relative;
  height: 590px;
}
.heroBanner__scrolltoTop {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
}
.heroBanner__scrolltoTop img {
  animation: rotating 10s linear infinite;
}
.heroBanner__slider {
  position: relative;
}
.heroBanner__slider .slick-dots {
  position: absolute;
  right: 80px;
  bottom: 20px;
}
.heroBanner__slider .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.heroBanner__slider .slick-dots li.slick-active button {
  width: 35px;
  background-color: var(--primary-color);
}
.heroBanner__slider .slick-dots li button {
  transition: all 0.5s ease-in-out;
  color: transparent;
  height: 10px;
  width: 10px;
  background-color: var(--white-color);
  border: none;
}
.heroBanner__slider__slide {
  background-image: url("../images/BannerBG.png");
  background-size: cover;
  height: 590px;
  text-align: center;
  position: relative;
}
.heroBanner__slider__slide::before {
  content: "";
  background-color: #171717;
  height: 100%;
  width: 100%;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.heroBanner__slider__slide__content {
  padding: 125px 0px 177px;
  z-index: 1;
  position: relative;
}
.heroBanner__slider__slide__content h1 {
  font-size: 56px;
  color: var(--white-color);
  font-weight: 700;
}
.heroBanner__slider__slide__content h1 span {
  display: block;
}
.heroBanner__slider__slide__content p {
  color: var(--white-color);
  padding: 15px 0px 30px 0px;
  max-width: 40%;
  margin: auto;
}
.heroBanner__slider__slide__content__badges {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin: auto;
  max-width: 576px;
}
.heroBanner__slider__slide__content__badges span {
  background-color: var(--primary-color);
  padding: 10px 12px;
  border-radius: 34px;
  font-size: 16px;
  color: var(--white-color);
  font-weight: 700;
  display: block;
}

@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@media screen and (max-width: 991px) {
  .heroBanner__scrolltoTop img {
    max-width: 60px;
  }
  .heroBanner__slider .slick-dots {
    right: 10px;
  }
  .heroBanner__slider__slide__content h1 {
    font-size: 34px;
  }
  .heroBanner__slider__slide__content p {
    max-width: 100%;
  }
  .heroBanner__slider__slide__content__badges span {
    font-size: 12px;
  }
}
.logoSlider__slider .slick-track {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .logoSlider .slick-slide img {
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: 90px;
  }
}
.aboutUs {
  position: relative;
}
.aboutUs::before {
  content: "";
  background-image: url("../images/dotsOrange.svg");
  width: 228px;
  height: 58px;
  position: absolute;
  left: 0;
  bottom: 20px;
  background-repeat: no-repeat;
}
.aboutUs__imageArea {
  position: relative;
}
.aboutUs__imageArea img {
  width: 100%;
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.aboutUs__imageArea__badge {
  background-color: var(--secondary-color);
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
  position: absolute;
  max-width: 274px;
  right: -50px;
  bottom: -50px;
  padding: 20px 30px;
}
.aboutUs__imageArea__badge h4 {
  font-size: 30px;
  color: var(--white-color);
  font-weight: 700;
  position: relative;
}
.aboutUs__imageArea__badge h4::before {
  content: "";
  background-color: var(--white-color);
  height: 3px;
  width: 40%;
  position: absolute;
  bottom: -10px;
}
.aboutUs__imageArea__badge h4 span {
  display: block;
  color: var(--primary-color);
}
.aboutUs__content {
  padding-left: 80px;
}
.aboutUs__content__missionVision {
  padding: 66px 0 34px;
}
.aboutUs__content h4 {
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .aboutUs::before {
    display: none;
  }
  .aboutUs.paddingTop50 {
    padding-top: 0;
  }
  .aboutUs__imageArea__badge h4 {
    font-size: 18px;
  }
  .aboutUs__imageArea__badge h4 span {
    display: initial;
  }
  .aboutUs__imageArea__badge {
    position: initial;
    margin: 20px 0px;
    width: 100%;
    max-width: 100%;
    border-radius: 0px;
  }
  .aboutUs__content {
    padding-left: 0;
  }
  .aboutUs__content__missionVision {
    padding: 18px 0px;
  }
}
.sourcingProcessSummary {
  background-color: var(--secondary-color);
  position: relative;
  background-image: url("../images/SPSImage1.svg"), url("../images/SPSImage2.svg"), url("../images/SPSImage3.svg");
  background-position: left center, top center, right bottom;
  background-repeat: no-repeat;
}
.sourcingProcessSummary::before {
  content: "";
  background-image: url("../images/dotsOrange.svg");
  width: 228px;
  height: 58px;
  position: absolute;
  right: 0;
  top: 150px;
  background-repeat: no-repeat;
}
.sourcingProcessSummary .title {
  position: relative;
  margin-bottom: 20px;
  text-align: center;
}
.sourcingProcessSummary .title h2 {
  color: var(--white-color);
}
.sourcingProcessSummary .title h2 span {
  color: var(--primary-color);
}
.sourcingProcessSummary .title h3 {
  position: absolute;
  color: rgba(255, 255, 255, 0.1);
  left: 0;
  right: 0;
}
.sourcingProcessSummary .title p {
  color: var(--white-color);
}
.sourcingProcessSummary__blocks {
  margin-top: 90px;
}
.sourcingProcessSummary__blocks__image {
  background-color: var(--white-color);
  border-radius: 40%;
  padding: 16px;
  height: 72px;
  width: 72px;
  display: flex;
}
.sourcingProcessSummary__blocks h5 {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 600;
  margin: 25px 0 8px;
}
.sourcingProcessSummary__blocks p {
  font-size: 15px;
  color: var(--white-color);
}
.sourcingProcessSummary__blocks ul li {
  position: relative;
  font-size: 15px;
  color: var(--white-color);
  margin: 3px 0px;
  padding-left: 12px;
}
.sourcingProcessSummary__blocks ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 15px;
  color: var(--white-color);
}

@media screen and (max-width: 991px) {
  .sourcingProcessSummary::before {
    display: none;
  }
  .sourcingProcessSummary__blocks {
    margin-top: 40px;
  }
}
.areasOfExpertise {
  position: relative;
  background-color: #f9f9f9;
}
.areasOfExpertise::before {
  content: "";
  background-image: url("../images/dotsOrange.svg");
  width: 228px;
  height: 58px;
  position: absolute;
  right: 0;
  top: 80px;
  background-repeat: no-repeat;
}
.areasOfExpertise::after {
  content: "";
  background-image: url("../images/dotsOrange.svg");
  width: 228px;
  height: 58px;
  position: absolute;
  left: 0;
  bottom: 80px;
  background-repeat: no-repeat;
}
.areasOfExpertise .title {
  text-align: center;
  margin-bottom: 42px;
}
.areasOfExpertise .title h3 {
  left: 0;
  right: 0;
}
.areasOfExpertise__card {
  background-color: var(--white-color);
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  border: 1px solid #d9d9d9;
  padding: 45px 40px;
  position: relative;
  height: 100%;
  z-index: 1;
}
.areasOfExpertise__card img {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.areasOfExpertise__card h5 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.areasOfExpertise__card h5 span {
  color: var(--primary-color);
}
.areasOfExpertise__card h6 {
  font-size: 22px;
  font-weight: 500;
  margin: 35px 0 33px;
}
.areasOfExpertise__card ul li {
  font-size: 22px;
  font-weight: 500;
  color: var(--secondary-color);
  margin: 15px 0px;
  position: relative;
  padding-left: 16px;
}
.areasOfExpertise__card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 22px;
  color: var(--secondary-color);
}

@media screen and (max-width: 1199px) {
  .areasOfExpertise__card h5 {
    font-size: 22px;
  }
  .areasOfExpertise__card h6 {
    font-size: 18px;
    margin: 15px 0px;
  }
  .areasOfExpertise__card img {
    max-width: 140px;
  }
}
@media screen and (max-width: 991px) {
  .areasOfExpertise::before {
    display: none;
  }
  .areasOfExpertise::after {
    display: none;
  }
  .areasOfExpertise__card {
    padding: 20px;
    margin-bottom: 20px;
    height: auto;
  }
  .areasOfExpertise__card h5 {
    font-size: 20px;
  }
  .areasOfExpertise__card h6 {
    font-size: 16px;
    margin: 15px 0px;
  }
  .areasOfExpertise__card ul li {
    font-size: 16px;
  }
  .areasOfExpertise__card img {
    max-width: 75px;
  }
}
.ourServices {
  position: relative;
  background-image: url("../images/dotsBlack.svg"), url("../images/dotsBlack.svg"), url("../images/dotsOrange.svg"), url("../images/dotsBlack.svg");
  background-position: left top 80px, left -100px center, right 10px center, right -110px bottom 323px;
  background-repeat: no-repeat;
}
.ourServices .title {
  text-align: center;
  margin-bottom: 42px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.ourServices .title h3 {
  left: 0;
  right: 0;
}
.ourServices .title p {
  max-width: 100%;
}
.ourServices__linesVector {
  position: absolute;
  top: -30px;
  right: 15%;
}
.ourServices__info {
  margin-top: 24px;
  margin-bottom: 80px;
  position: relative;
}
.ourServices__info:last-child {
  margin-bottom: 0;
}
.ourServices__info::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 80%;
  background-color: var(--secondary-color);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.ourServices__info__details {
  margin-top: 40px;
  display: flex;
  align-items: center;
}
.ourServices__info__details__methodInfo {
  max-width: 630px;
  padding: 47px 27px 43px 33px;
  border-radius: 12px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  background-color: var(--white-color);
}
.ourServices__info__details__methodInfo h4 {
  text-transform: uppercase;
  font-weight: 700;
}
.ourServices__info__details__methodInfo h4 span {
  color: var(--primary-color);
}
.ourServices__info__details__methodInfo p {
  margin-top: 20px;
}
.ourServices__info__details .d-flex {
  align-items: center;
}
.ourServices__info__details .d-flex .line {
  display: block;
  width: 222px;
  height: 1px;
  background-color: var(--secondary-color);
}
.ourServices__info__details .d-flex span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  background-color: var(--primary-color);
  font-size: 56px;
  font-weight: 400;
  color: var(--white-color);
  border-radius: 50%;
}
.ourServices__info__details.flex-sm-row-reverse .d-flex span {
  background-color: var(--secondary-color);
}

@media screen and (max-width: 1200px) {
  .ourServices {
    background-image: none;
  }
  .ourServices__info {
    margin-bottom: 60px;
  }
  .ourServices__info__details__methodInfo {
    padding: 47px 26px 43px 26px;
  }
  .ourServices__info__details__methodInfo ul {
    margin-top: 20px;
  }
  .ourServices__info__details__methodInfo p {
    margin-top: 25px;
  }
  .ourServices__info__details .d-flex .line {
    width: 120px;
  }
  .ourServices__info__details .d-flex span {
    width: 66px;
    height: 66px;
    font-size: 40px;
  }
  .ourServices__background img {
    max-width: 700px;
  }
}
@media screen and (max-width: 767px) {
  .ourServices__linesVector {
    position: absolute;
    top: -20px;
    right: 0;
    max-width: 180px;
  }
  .ourServices__info {
    margin-top: 16px;
    margin-bottom: 40px;
  }
  .ourServices__info::after {
    height: 60%;
  }
  .ourServices__info__details {
    margin-top: 30px;
  }
  .ourServices__info__details__methodInfo {
    padding: 30px 24px;
  }
  .ourServices__info__details__methodInfo p {
    margin-top: 5px;
  }
  .ourServices__info__details .d-flex .line {
    width: 80px;
  }
  .ourServices__info__details .d-flex span {
    width: 44px;
    height: 44px;
    font-size: 26px;
  }
  .ourServices .d-flex.justify-content-center .buttonPrimary {
    text-align: center;
  }
  .ourServices__background {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .ourServices__info {
    margin-top: 0;
  }
  .ourServices__info__details {
    margin-top: 25px;
    flex-direction: column-reverse;
  }
  .ourServices__info__details__methodInfo {
    padding: 25px 12px 31px 12px;
  }
  .ourServices__info__details__methodInfo ul li {
    font-size: 14px;
    padding-left: 12px;
  }
  .ourServices__info__details__methodInfo ul li::after {
    width: 5px;
    height: 5px;
    top: 6px;
  }
  .ourServices__info__details .d-flex {
    flex-direction: column-reverse;
  }
  .ourServices__info__details .d-flex .line {
    width: 1px;
    height: 24px;
  }
  .ourServices__info__details .d-flex span {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }
}
.ourGlobalPresence {
  background-color: var(--grey-background-color);
}
.ourGlobalPresence h5 {
  margin-bottom: 45px;
}
.ourGlobalPresence h6 {
  font-weight: 700;
}
.ourGlobalPresence iframe {
  width: 90%;
  height: 100%;
}
.ourGlobalPresence ul li {
  padding-left: 20px;
  margin-block: 15px;
  position: relative;
}
.ourGlobalPresence ul li::before {
  content: "•";
  font-size: 24px;
  position: absolute;
  left: 0;
  top: -5px;
  color: var(--primary-color);
}

@media screen and (max-width: 991px) {
  .ourGlobalPresence iframe {
    width: 100%;
  }
  .ourGlobalPresence .title {
    margin-top: 25px;
  }
}
.contact {
  position: relative;
}
.contact__linesVector {
  position: absolute;
  top: -30px;
  right: 15%;
}
.contact__form {
  max-width: 973px;
  position: relative;
  margin-left: auto;
}
.contact__form__details {
  z-index: 1;
  max-width: 355px;
  padding: 38px 20px 32px 13px;
  background-color: var(--primary-color);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  position: absolute;
  top: 52px;
  left: -227px;
}
.contact__form__details__content {
  padding-left: 8px;
}
.contact__form__details__chat {
  padding-left: 8px;
  margin-top: 25px;
}
.contact__form__details__chat h5 {
  font-size: 22px;
}
.contact__form__details__chat h6 {
  font-weight: 700;
}
.contact__form__details h5 {
  font-size: 28px;
  font-weight: 700;
  color: var(--white-color);
}
.contact__form__details h6 {
  color: var(--white-color);
  line-height: 24px;
}
.contact__form__details__address {
  padding-left: 36px;
  margin-top: 46px;
}
.contact__form__details__address li {
  font-size: 18px;
  font-weight: 600;
  color: var(--white-color);
  position: relative;
}
.contact__form__details__address li img {
  position: absolute;
  left: -26px;
  top: 8px;
}
.contact__form__details__address li a {
  color: var(--white-color);
}
.contact__form__details__address li + li {
  margin-top: 17px;
}
.contact__form__details__socialLink {
  display: flex;
  align-items: center;
  gap: 19px;
  padding-left: 17px;
  margin-top: 217px;
}
.contact__form__details__socialLink li a {
  display: block;
}
.contact__form__details__socialLink li a img {
  max-width: 29px;
  transition: all 0.5s ease-in-out;
}
.contact__form__details__socialLink li a:hover img {
  transform: scale(1.1);
}
.contact__form__info {
  padding: 96px 66px 66px 190px;
  background-color: var(--secondary-color);
  margin-bottom: 36px;
  position: relative;
}
.contact__form__info::before {
  content: "";
  background-image: url("../images/circle.svg");
  width: 120px;
  height: 120px;
  right: -50px;
  top: 50px;
  position: absolute;
}
.contact__form__info h4 {
  font-size: 28px;
  font-weight: 600;
  color: var(--white-color);
}
.contact__form__info h6 {
  font-weight: 600;
  color: var(--white-color);
}
.contact__form__info form {
  margin-top: 18px;
}
.contact__form__info__inputBox {
  position: relative;
  padding-top: 22px;
  margin-top: 34px;
  padding-right: 11px;
}
.contact__form__info__inputBox input {
  width: 100%;
  padding-bottom: 5px;
  border: 0;
  outline: none;
  box-shadow: none;
  background: transparent;
  border-bottom: 1px solid var(--white-color);
  opacity: 1;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  color: var(--white-color);
  z-index: 1;
}
.contact__form__info__inputBox input:focus {
  opacity: 1;
  color: var(--white-color);
  border-bottom-color: var(--white-color);
}
.contact__form__info__inputBox input:focus ~ label {
  top: 5px;
  font-size: 12px;
  color: var(--white-color);
}
.contact__form__info__inputBox input:not(:-moz-placeholder-shown) + label {
  top: 5px;
  font-size: 12px;
  color: var(--white-color);
  border-bottom-color: var(--white-color);
}
.contact__form__info__inputBox input:focus + label,
.contact__form__info__inputBox input:not(:placeholder-shown) + label {
  top: 5px;
  font-size: 12px;
  color: var(--white-color);
  border-bottom-color: var(--white-color);
}
.contact__form__info__inputBox label {
  position: absolute;
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  color: var(--white-color);
  top: 26px;
  left: 0;
  opacity: 1;
  transition: all 0.5s;
}
.contact__form__info__selectBox {
  margin-top: 56px;
  position: relative;
}
.contact__form__info__selectBox::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  top: 50%;
  right: 4px;
  background: url("../images/downArrow.svg") no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  transition: var(--transition);
}
.contact__form__info__selectBox select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  padding: 0px 20px 4px 0;
  border: 0;
  outline: none;
  box-shadow: none;
  background: transparent;
  border-bottom: 1px solid var(--white-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  color: var(--white-color);
}
.contact__form__info__selectBox select option {
  width: 100%;
  font-size: 16px;
  background-color: var(--secondary-color);
}
.contact__form__info__selectBox.focus::after {
  transform: translateY(-50%) rotate(180deg);
}
.contact__form__info__messageBox {
  padding-bottom: 54px;
  position: relative;
  margin-top: 44px;
}
.contact__form__info__messageBox textarea {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  outline: none;
  box-shadow: none;
  background: transparent;
  border-bottom: 1px solid var(--white-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  color: var(--white-color);
}
.contact__form__info__messageBox textarea::-moz-placeholder {
  color: var(--white-color);
}
.contact__form__info__messageBox textarea::placeholder {
  color: var(--white-color);
}
.contact__form__info__messageBox input[type=submit] {
  margin-top: 50px;
  display: inline-block;
  padding: 23px 22px;
  border-radius: 12px;
  background-color: var(--primary);
  font-size: 18px;
  font-weight: 700;
  color: var(--white-color);
  line-height: 126%;
  border: 0;
  outline: none;
  box-shadow: none;
  background-image: linear-gradient(0, var(--white-color), var(--white-color));
  background-size: 0;
  background-repeat: no-repeat;
  transition: var(--transition);
}
.contact__form__info__messageBox input[type=submit]:hover {
  color: var(--primary);
  background-size: 100%;
}

@media screen and (max-width: 1400px) {
  .contact {
    padding-top: 80px;
  }
  .contact__form {
    max-width: 873px;
  }
}
@media screen and (max-width: 1200px) {
  .contact {
    padding-top: 60px;
  }
  .contact__form {
    max-width: 750px;
  }
  .contact__form__details {
    max-width: 300px;
    left: -190px;
  }
  .contact__form__info {
    padding-left: 150px;
  }
}
@media screen and (max-width: 991px) {
  .contact__linesVector {
    display: none;
  }
  .contact {
    padding-top: 40px;
  }
  .contact__form {
    max-width: 100%;
  }
  .contact__form__details {
    position: initial;
    max-width: 100%;
    min-height: auto;
    gap: 50px;
  }
  .contact__form__details h5 {
    font-size: 20px;
  }
  .contact__form__details ol {
    margin-top: 30px;
  }
  .contact__form__details ol li {
    font-size: 16px;
  }
  .contact__form__details__socialLink {
    margin-top: 80px;
  }
  .contact__form__info {
    padding: 40px 26px;
    padding-bottom: 90px;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .contact__form__info::before {
    display: none;
  }
  .contact__form__info h4 {
    font-size: 22px;
  }
  .contact__form__info__inputBox {
    position: relative;
    padding-top: 22px;
    margin-top: 28px;
    padding-right: 0px;
  }
  .contact__form__info__inputBox input {
    font-size: 14px;
  }
  .contact__form__info__inputBox label {
    font-size: 14px;
  }
  .contact__form__info__selectBox {
    margin-top: 50px;
  }
  .contact__form__info__selectBox select {
    font-size: 14px;
  }
  .contact__form__info__selectBox select option {
    font-size: 14px;
  }
  .contact__form__info__messageBox {
    margin-top: 40px;
    padding-bottom: 0px;
  }
  .contact__form__info__messageBox textarea {
    font-size: 14px;
  }
  .contact__form__info__messageBox p {
    position: initial;
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .contact {
    padding-top: 30px;
    padding-bottom: 20px;
  }
  .contact__form {
    max-width: 100%;
  }
  .contact__form__info {
    padding: 40px 26px;
    margin-top: 40px;
    margin-bottom: 24px;
  }
  .contact__form__info__inputBox {
    position: relative;
    padding-top: 18px;
    margin-top: 20px;
  }
  .contact__form__info__selectBox {
    margin-top: 28px;
  }
  .contact__form__info__messageBox {
    margin: 28px 0px;
  }
}
@media screen and (max-width: 576px) {
  .contact__form__details__socialLink {
    margin-top: 46px;
  }
  .contact__form__info__inputBox {
    position: relative;
    padding-top: 18px;
    margin-top: 5px;
  }
  .contact__form__info__inputBox label {
    font-size: 12px;
  }
  .contact__form__info__selectBox {
    margin-top: 23px;
  }
  .contact__form__info__selectBox select {
    font-size: 12px;
  }
  .contact__form__info__selectBox select option {
    font-size: 12px;
  }
  .contact__form__info__messageBox {
    margin: 23px 0px;
  }
  .contact__form__info__messageBox textarea {
    font-size: 12px;
  }
}
footer {
  background-color: var(--secondary-color);
  padding-bottom: 30px;
}
footer h4 {
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 46px;
}
footer h4::before {
  content: "";
  height: 1px;
  width: 25%;
  left: 0;
  top: 12px;
  position: absolute;
  background-color: var(--primary-color);
}
footer h4::after {
  content: "";
  height: 1px;
  width: 25%;
  right: 0;
  top: 12px;
  position: absolute;
  background-color: var(--primary-color);
}
footer h6 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white-color);
}
footer li {
  font-size: 14px;
  color: var(--white-color);
}
footer li a {
  font-weight: 700;
  color: var(--primary-color);
}
footer li a:hover {
  color: var(--white-color);
}
footer h5 {
  color: var(--primary-color);
  font-size: 16px;
  text-transform: uppercase;
}
footer ul.listing li a {
  font-size: 14px;
  color: var(--white-color);
  font-weight: 500;
}
footer ul.listing li a:hover {
  color: var(--primary-color);
}
footer .d-flex {
  justify-content: space-between;
  align-items: center;
  margin-top: 46px;
}
footer .d-flex ul li {
  display: inline-block;
  height: 50px;
  width: 50px;
  border: 1px solid rgba(239, 239, 239, 0.3215686275);
  border-radius: 50%;
  text-align: center;
  padding: 13px;
  margin-right: 12px;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}
footer .d-flex ul li:hover {
  border-radius: 0px;
}
footer .d-flex div a {
  color: var(--white-color);
}
footer .d-flex div a:hover {
  color: var(--primary-color);
}
footer .d-flex p {
  font-size: 16px;
  color: var(--white-color);
}

@media screen and (max-width: 1199px) {
  footer h4 {
    max-width: 70%;
  }
}
@media screen and (max-width: 991px) {
  footer h4 {
    font-size: 18px;
    max-width: 100%;
  }
  footer h4::before {
    display: none;
  }
  footer h4::after {
    display: none;
  }
  footer .col {
    flex: 0 0 50%;
    width: 50%;
    margin-bottom: 30px;
  }
  footer li {
    font-size: 12px;
  }
  footer .d-flex {
    margin-top: 0;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  footer .d-flex ul li {
    height: 30px;
    width: 30px;
    padding: 4px 6px 6px 6px;
    margin-right: 2px;
  }
  footer .d-flex p {
    margin: 0;
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */