@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

:root {
  --primary-color: #5C6BC0;
  --primary-color-50: rgba(92, 107, 192, 0.05);
  --purple-color: #6F6C90;
  --primary-color-30: #F7F7FF;
  --secondary-color: #FFB74D;
  --secondary-color-60: rgba(255, 183, 77, 0.60);
  --light-color: #CDE0FB;
  --dark-color: #555555;
  --dark-color-2: #333333;
  --dark-color-3: rgba(85, 85, 85, 0.80);
  --dark-color-4: #222222;
  --text-color: #263238;
  --border-color: #d9d9d9;
  --white-color: #FFFFFF;
  --font-weight-300: 300;
  --font-weight-400: 400;
  --font-weight-500: 500;
  --font-weight-600: 600;
  --font-weight-700: 700;
  --font-weight-800: 800;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-primary-50 {
  background-color: var(--primary-color-50) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-light {
  background-color: var(--light-color) !important;
}

.bg-dark {
  background-color: var(--dark-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.text-secondary-60 {
  color: var(--secondary-color-60) !important;
}

.text-light {
  color: var(--light-color) !important;
}

.text-dark {
  color: var(--dark-color) !important;
}

.text-dark-2 {
  color: var(--dark-color-2) !important;
}

.text-dark-3 {
  color: var(--dark-color-3) !important;
}

.text-dark-4 {
  color: var(--dark-color-4);
}

.border-color {
  border-color: var(--border-color) !important;
}

body {
  font-family: "Roboto", sans-serif;
}

.fs-12 {
  font-size: 12px;
}

.fs-14 {
  font-size: 14px;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fw-500 {
  font-weight: var(--font-weight-500) !important;
}

.fw-600 {
  font-weight: var(--font-weight-600) !important;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--white-color);
  border-color: var(--secondary-color);
  font-weight: var(--font-weight-500);
}
.btn-primary:hover, .btn-primary:active {
  background-color: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.btn-primary:focus-visible, .btn-primary:focus {
  box-shadow: unset !important;
  outline: unset !important;
}

.btn-primary-outline {
  background-color: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
  font-weight: var(--font-weight-500);
}
.btn-primary-outline:hover, .btn-primary-outline:active {
  background-color: var(--secondary-color);
  color: var(--white-color);
  border-color: var(--secondary-color);
}
.btn-primary-outline:focus-visible, .btn-primary-outline:focus {
  box-shadow: unset !important;
  outline: unset !important;
}

.rounded {
  border-radius: 8px !important;
}

.navWrapper .navbar .container .navbar-brand img {
  max-width: 110px;
}
.navWrapper .navbar .container .navbar-nav {
  grid-gap: 2rem;
}
.navWrapper .navbar .container .navbar-nav .nav-item .nav-link {
  color: var(--dark-color);
  font-weight: var(--font-weight-400);
}
.navWrapper .navbar .container .navbar-nav .nav-item .nav-link::after {
  border: unset !important;
}
.navWrapper .navbar .container .navbar-nav .nav-item .nav-link:hover {
  color: var(--secondary-color);
}
.navWrapper .offcanvas {
  max-width: 100%;
  z-index: 99999;
}
.navWrapper .offcanvas ul li {
  border-top: 1.5px solid var(--white-color);
  padding-top: 0.75rem;
  width: 100%;
}
.navWrapper .offcanvas ul li:first-child {
  border-top: unset;
}
.navWrapper .offcanvas ul li li {
  width: calc(100% - 1rem);
  border-top: 1.5px solid var(--white-color) !important;
}
.navWrapper .offcanvas ul li li:first-child {
  margin-top: 0.75rem;
  width: 100% !important;
}
.navWrapper .offcanvas ul li #collapseBusinessTranslations ul li {
  width: 100% !important;
}
.navWrapper .offcanvas .arrow-icon img {
  filter: brightness(100);
  transform: rotate(-90deg);
}
.navWrapper .offcanvas .gap-0-75 {
  gap: 0.75rem;
}
.navWrapper .btn-close {
  width: 30px;
  height: 30px;
  background: unset !important;
  opacity: 1 !important;
}

.rotate img {
  transition: transform 0.3s;
}

.rotated {
  transform: rotate(180deg);
}

.arrow-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.rotate {
  transform: rotate(0deg);
}

.rotate-m {
  transform: rotate(90deg);
}

h2, .h2, h3, .h3 {
  font-family: "Roboto Slab", serif;
}

main {
  min-height: calc(100vh - 100px);
}

.testimonialsWrapper {
  background-color: var(--primary-color-50);
}
.testimonialsWrapper .testimonialCard .avatar img {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}
.testimonialsWrapper .slick-next {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  right: -3rem;
}
@media only screen and (min-width: 550px) and (max-width: 992px) {
  .testimonialsWrapper .slick-next {
    right: -2rem !important;
  }
}
@media only screen and (max-width: 549px) {
  .testimonialsWrapper .slick-next {
    right: -1rem !important;
  }
}
.testimonialsWrapper .slick-prev {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  left: -3rem;
}
@media only screen and (min-width: 550px) and (max-width: 992px) {
  .testimonialsWrapper .slick-prev {
    left: -2rem !important;
  }
}
@media only screen and (max-width: 549px) {
  .testimonialsWrapper .slick-prev {
    left: -1rem !important;
  }
}
.testimonialsWrapper .slick-next:before {
  content: url("../images/icons/right-arrow.svg");
}
.testimonialsWrapper .slick-prev:before {
  content: url("../images/icons/left-arrow.svg");
}

.faqsWrapper .accordion .accordion-item {
  border-radius: 16px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
}
.faqsWrapper .accordion .accordion-item .accordion-button {
  gap: 1rem;
  color: var(--dark-color-2);
}
.faqsWrapper .accordion .accordion-item .accordion-button:focus-visible, .faqsWrapper .accordion .accordion-item .accordion-button:focus {
  box-shadow: unset !important;
  outline: unset !important;
}
.faqsWrapper .accordion .accordion-item .accordion-button:after {
  content: "+";
  font-size: 24px;
  color: var(--purple-color);
  font-weight: var(--font-weight-300);
  width: 30px;
  background-image: unset !important;
  background-color: var(--primary-color-30);
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.faqsWrapper .accordion .accordion-item .accordion-button:not(.collapsed) {
  color: var(--dark-color-2);
  background-color: transparent !important;
  box-shadow: unset !important;
}
.faqsWrapper .accordion .accordion-item .accordion-button:not(.collapsed):after {
  content: "―";
  font-size: 16px;
  line-height: 1.8;
  color: var(--white-color);
  font-weight: var(--font-weight-300);
  width: 30px;
  background-image: unset !important;
  background-color: var(--primary-color);
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
@media only screen and (max-width: 992px) {
  .faqsWrapper .accordion .accordion-item .accordion-button {
    font-size: 16px !important;
  }
}
.faqsWrapper .accordion .accordion-item .accordion-body .text {
  font-family: "DM Sans", sans-serif;
}

.getTranslationWrapper .mainContent ul li::before {
  line-height: 0.1;
  content: url("../images/icons/tick.svg");
}
.getTranslationWrapper .mainContent .box {
  max-width: 80px;
}
.getTranslationWrapper .uscisCard {
  min-height: 400px;
  border-radius: 24px;
  background: rgba(92, 107, 192, 0.1);
}
@media only screen and (max-width: 992px) {
  .getTranslationWrapper .uscisCard {
    min-height: unset !important;
  }
}
.getTranslationWrapper .uscisCard .content ul li::before {
  line-height: 0.1;
  content: url("../images/icons/tick.svg");
}

.footerWrapper .container .about img {
  max-width: 110px;
}
.footerWrapper .container .about .social-links a:hover svg path {
  fill: var(--white-color) !important;
}
.footerWrapper .container .about .social-links a:hover svg rect {
  fill: var(--secondary-color) !important;
}
.footerWrapper .container .links ul {
  padding-inline-start: 17px !important;
}
.footerWrapper .container .links ul li {
  margin-bottom: 1rem;
}
.footerWrapper .container .links ul li::marker {
  color: var(--white-color);
}
.footerWrapper .container .links ul li a:hover {
  color: var(--secondary-color) !important;
  text-decoration: underline !important;
  text-underline-offset: 4px !important;
}
.footerWrapper .container .contact-information a:hover {
  color: var(--secondary-color) !important;
  text-decoration: underline !important;
  text-underline-offset: 4px !important;
}
.footerWrapper .container .contact-information a:hover svg {
  fill: var(--secondary-color) !important;
}
.footerWrapper .container .contact-information p:hover {
  color: var(--secondary-color) !important;
}
.footerWrapper .container .contact-information p:hover:hover svg {
  fill: var(--secondary-color) !important;
}

.processWrapper .title {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 1rem;
}
.processWrapper .title span {
  min-width: max-content;
}
.processWrapper .title:before {
  content: "";
  background: var(--secondary-color);
  width: 140px;
  height: 2px;
}
.processWrapper .title:after {
  content: "";
  background: var(--secondary-color);
  width: 140px;
  height: 2px;
}
.processWrapper .position-absolute.bottom {
  right: -4rem;
}
.processWrapper .position-absolute.top {
  top: -3rem;
  right: -3rem;
}
.processWrapper .border-top {
  width: 80%;
  border-top: 0.5px solid rgba(85, 85, 85, 0.6);
}
.processWrapper ul li::marker {
  color: var(--primary-color);
}
@media only screen and (max-width: 500px) {
  .processWrapper .processStep .h4 {
    font-size: 14px;
  }
}
@media only screen and (min-width: 501px) and (max-width: 767px) {
  .processWrapper .processStep .h4 {
    font-size: 18px;
  }
}

.btn {
  padding: 0.75rem 1.5rem !important;
}

.alternativeSection .h1 {
  font-family: "Roboto Slab", serif;
}
.alternativeSection .list-style {
  list-style: -moz-ethiopic-numeric;
}
.alternativeSection .whyChooseLegalCard {
  border: 1px solid #E1E4ED;
  box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.08);
}
.alternativeSection .whyChooseLegalCard .icon {
  width: 48px;
  height: 48px;
}
.alternativeSection .whyChooseLegalCard .text {
  color: rgba(85, 85, 85, 0.6);
}
.alternativeSection ul.list li::before {
  line-height: 0.1;
  content: url("../images/icons/tick.svg");
}
@media only screen and (max-width: 992px) {
  .alternativeSection .samples_image img {
    max-width: 130px !important;
  }
}

.page-title {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.page-title .h1 {
  font-family: "Roboto Slab", serif;
}

.statisticsHighlighting {
  border-radius: 16px;
  box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.08);
}
.statisticsHighlighting .container .h2 {
  font-family: "Roboto Slab", serif;
}
@media screen and (max-width: 992px) {
  .statisticsHighlighting .container .statisticsCard {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
}
@media screen and (max-width: 992px) {
  .statisticsHighlighting .container .statisticsCard .gap-3 {
    gap: 0.5rem !important;
  }
}
@media screen and (max-width: 992px) {
  .statisticsHighlighting .container .statisticsCard .d-flex {
    align-items: start !important;
  }
}
.statisticsHighlighting .container .statisticsCard .d-flex .icon {
  width: 60px;
  height: 60px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
@media screen and (max-width: 992px) {
  .statisticsHighlighting .container .statisticsCard .d-flex .icon {
    width: 30px !important;
    height: 30px !important;
  }
}
@media screen and (max-width: 992px) {
  .statisticsHighlighting .container .statisticsCard .d-flex .icon svg {
    width: 20px !important;
    height: 20px !important;
  }
}
.statisticsHighlighting .container .statisticsCard .d-flex .content .h5 {
  font-family: "Roboto", sans-serif;
}
.statisticsHighlighting .container .statisticsCard .d-flex .content .text {
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 992px) {
  .statisticsHighlighting .container .statisticsCard .d-flex .content .text {
    font-size: 14px !important;
  }
}

.getStartedWrapper .getStarted {
  border-radius: 15px;
  background: rgba(92, 107, 192, 0.05);
}

.stayInformedConnected .stayInformedCard {
  min-height: 415px;
  box-shadow: 1px -1px 14px 0px rgba(0, 0, 0, 0.12);
}
@media only screen and (max-width: 992px) {
  .stayInformedConnected .stayInformedCard {
    min-height: unset !important;
  }
}
.stayInformedConnected .stayInformedCard .image {
  min-height: 150px;
}
@media only screen and (max-width: 992px) {
  .stayInformedConnected .stayInformedCard .image {
    min-height: unset !important;
  }
}
.stayInformedConnected .stayInformedCard .image img {
  max-width: 90%;
}
.stayInformedConnected .stayInformedCard .h5 {
  font-family: "Roboto", sans-serif;
}
.stayInformedConnected .stayInformedCard .text {
  font-family: "Roboto", sans-serif;
  color: rgba(85, 85, 85, 0.6);
}

.hiringProcess .hiringProcessCard {
  padding-top: 3.5rem;
  border: 0.5px solid rgba(85, 85, 85, 0.6);
}
.hiringProcess .hiringProcessCard .position-absolute {
  top: -2.5rem;
  width: 72px;
  height: 72px;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
.hiringProcess .hiringProcessCard .h5 {
  font-family: "Roboto", sans-serif;
}
.hiringProcess .hiringProcessCard .text {
  font-family: "Roboto", sans-serif;
}
@media only screen and (min-width: 1400px) and (max-width: 1400px) {
  .hiringProcess .hiringProcessCard .text {
    font-size: 14px;
  }
}

.all-languages .row .border-top {
  border-color: #ccc !important;
  color: #4B4B4B;
}

.smaplesWrapper .nav-tabs-wrapper .nav-link {
  font-weight: 400;
  text-decoration: none;
  color: rgba(85, 85, 85, 0.6);
}
.smaplesWrapper .nav-tabs-wrapper .nav-link:focus, .smaplesWrapper .nav-tabs-wrapper .nav-link:focus-visible {
  outline: unset !important;
  box-shadow: unset !important;
  border: unset !important;
}
.smaplesWrapper .nav-tabs-wrapper .nav-link.active {
  color: var(--primary-color);
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  text-decoration-line: underline;
  text-underline-offset: 3px;
}
.smaplesWrapper .tab-content .sample-card {
  box-shadow: 6.948px 6.948px 21.058px 0px rgba(0, 0, 0, 0.1);
}
.smaplesWrapper .tab-content .sample-card .title {
  font-family: "Roboto", sans-serif;
}
.hero-section .h1 {
  font-family: "Roboto Slab", serif;
}
.hero-section .service {
  min-width: 90px !important;
  max-width: 90px !important;
}
@media only screen and (max-width: 992px) {
  .hero-section .service {
    min-width: 80px !important;
    max-width: 80px !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1399px) {
  .hero-section .service {
    min-width: 80px !important;
    max-width: 80px !important;
  }
}
@media only screen and (min-width: 1400px) {
  .hero-section .service {
    min-width: 100px;
    max-width: 100px;
  }
}
.hero-section .service .icon {
  width: 56px;
  height: 56px;
}
.hero-section .service .text {
  line-height: 1.2;
}

.partners-slider .service {
  min-width: 90px !important;
  max-width: 90px !important;
}
@media only screen and (max-width: 992px) {
  .partners-slider .service {
    min-width: 80px !important;
    max-width: 80px !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1399px) {
  .partners-slider .service {
    min-width: 80px !important;
    max-width: 80px !important;
  }
}
@media only screen and (min-width: 1400px) {
  .partners-slider .service {
    min-width: 100px;
    max-width: 100px;
  }
}
.partners-slider .service .icon {
  width: 56px;
  height: 56px;
}
.partners-slider .service .text {
  line-height: 1.2;
}

.formats-slider .box {
  filter: drop-shadow(0px 0.738px 2.952px rgba(25, 33, 61, 0.08));
  width: 72px;
  height: 72px;
}
.formats-slider .box span {
  font-family: "Roboto Slab", serif;
  color: #000;
}

.translation-services .nav .nav-link {
  border-radius: 6px;
  border: 1px solid #F1F3F7;
  background: var(--white-color);
  box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.08);
  color: rgba(51, 51, 51, 0.8);
}
.translation-services .nav .nav-link:hover, .translation-services .nav .nav-link.active {
  border: 1px solid #FFB74D;
  box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.08);
  color: var(--dark-color-2);
}
.translation-services .nav .nav-link:focus-visible, .translation-services .nav .nav-link:focus {
  box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.08) !important;
  outline: unset !important;
  color: var(--dark-color-2);
}
.translation-services .nav .nav-link .icon {
  width: 42px;
  height: 42px;
}
.translation-services .tab-content .detail-wrapper {
  display: none;
  border: 1px solid #E1E4ED;
  box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.08);
}
.translation-services .tab-content .detail-wrapper .content .h4 {
  font-family: "Roboto", sans-serif;
}
.translation-services .tab-content .detail-wrapper-new {
  border: 1px solid #E1E4ED;
  box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.08);
}
.translation-services .tab-content .detail-wrapper-new .content .h4 {
  font-family: "Roboto", sans-serif;
}

.conditional {
  display: none;
}

.pricingWrapper .title {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 1rem;
}
.pricingWrapper .title span {
  min-width: max-content;
}
.pricingWrapper .title:before {
  content: "";
  background: var(--secondary-color);
  width: 140px;
  height: 2px;
}
.pricingWrapper .title:after {
  content: "";
  background: var(--secondary-color);
  width: 140px;
  height: 2px;
}
.pricingWrapper .pricingCard {
  border-radius: 24px;
  border: 1px solid #D4D2E3;
}
.pricingWrapper .pricingCard .min-h {
  min-height: 400px;
}
.pricingWrapper .pricingCard .min-h ul li::before {
  line-height: 0.1;
  content: url("../images/icons/tick.svg");
}
.pricingWrapper .pricingCard .h2 {
  font-family: "Roboto Slab", serif;
}
.pricingWrapper .pricingCard .h2 span {
  font-family: "Roboto", sans-serif;
}
.pricingWrapper .pricingCard:hover, .pricingWrapper .pricingCard.active {
  background-color: var(--primary-color-50);
}
.pricingWrapper .recurringCard {
  border-radius: 15px;
}

.languagesWeOfferWrapper .title {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 1rem;
}
.languagesWeOfferWrapper .title span {
  min-width: max-content;
}
.languagesWeOfferWrapper .title:before {
  content: "";
  background: var(--secondary-color);
  width: 140px;
  height: 2px;
}
.languagesWeOfferWrapper .title:after {
  content: "";
  background: var(--secondary-color);
  width: 140px;
  height: 2px;
}
.languagesWeOfferWrapper .flag {
  max-width: 180px;
  border-radius: 3.602px;
  box-shadow: -0.45px -0.45px 3.602px 0px rgba(0, 0, 0, 0.08), 0.45px 0.45px 3.602px 0px rgba(0, 0, 0, 0.08);
  font-family: "Roboto", sans-serif;
}
.languagesWeOfferWrapper .flag img {
  max-width: 35px;
}

.whyChooseUsHome .whyChooseUsCards .h5, .whyChooseUsHome .whyChooseUsCards .text {
  font-family: "Roboto", sans-serif;
}
.whyChooseUsHome .whyChooseUsCards .icon {
  width: 48px;
  height: 48px;
  border-radius: 4px;
}

.navbar-nav .dropdown-menu {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15) !important;
  border: unset !important;
  border-radius: 8px !important;
}

.dropdown-item:active {
  color: var(--white-color);
  background-color: var(--primary-color) !important;
}

.dropdown-item:hover {
  color: var(--white-color);
  background-color: var(--primary-color) !important;
}

.dropdown-item:focus-visible {
  outline: unset !important;
}

@media only screen and (max-width: 1400px) {
  .conditional .inner_links {
    padding-right: 0.3rem !important;
    padding-left: 0.3rem !important;
    font-size: 12px !important;
  }
  .conditional .inner_links .icon {
    width: 30px !important;
    height: 30px !important;
  }
  .conditional .inner_links .icon svg {
    width: 15px !important;
    height: 15px !important;
  }
}
@media only screen and (max-width: 1400px) {
  .conditional .inner_links.gap-3 {
    gap: 0.4rem !important;
  }
}

.min-height {
  min-height: 520px;
}

.contact_card {
  border-radius: 10px;
  position: absolute;
  top: 0;
}
@media only screen and (min-width: 992px) {
  .contact_card {
    margin-bottom: 4rem;
  }
}
@media only screen and (max-width: 992px) {
  .contact_card {
    position: unset !important;
  }
}

/* Rotation class for the icon */
.rotate img {
  transition: transform 0.3s ease;
}

.dropdown:hover > .nav-link .rotate img {
  transform: rotate(180deg);
}

/* For the sub-dropdown within "Business Translations" */
.dropend:hover > .dropdown-toggle .rotate img {
  transform: rotate(180deg);
}

/* Existing styles for hover-based dropdown */
@media only screen and (min-width: 992px) {
  .navbar {
    line-height: 3rem;
  }
  .navbar .dropdown-menu {
    line-height: initial;
  }
  .dropdown .dropdown-menu {
    display: none;
  }
  .dropdown:hover > .dropdown-menu {
    display: block;
  }
  .dropend:hover > .dropdown-menu {
    display: block;
    position: absolute;
    top: -0.5rem;
    left: 100%;
    margin-left: 0;
  }
}
/* Initial rotation settings for nested arrow */
.arrow-icon img {
  transition: transform 0.3s ease;
}

/* Rotate only the nested arrow for #collapseBusinessTranslations */
[data-bs-target="#collapseBusinessTranslations"][aria-expanded=true] .arrow-icon img {
  transform: rotate(0deg);
}

.btn-check:active + .btn-primary, .btn-check:checked + .btn-primary, .btn-primary.active, .btn-primary:active, .show > .btn-primary.dropdown-toggle {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}

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