:root{
    --textColor: #777777;
    --buttonColor: #0177B5;
    --backgroundColor: #EDF1FF;
    --blackColor: #000000;
    --whiteColor: #FFFFFF;
}

@font-face {
    font-family: SF-Pro-Display-Bold;
    src: url(../fonts/SF-Pro-Display-Bold.ttf) format("truetype");
}

@font-face {
    font-family: SF-Pro-Display-Semibold;
    src: url(../fonts/SF-Pro-Display-Semibold.ttf) format("truetype");
}

@font-face {
    font-family: SF-Pro-Display-Medium;
    src: url(../fonts/SF-Pro-Display-Medium.ttf) format("truetype");
}

@font-face {
    font-family: SF-Pro-Display-Regular;
    src: url(../fonts/SF-Pro-Display-Regular.ttf) format("truetype");
}

* {
    font-family: "SF-Pro-Display-Regular";
}

p {
    font-size: 14px;
}

a {
  color: var(--buttonColor);
}

a:hover {
  color: var(--buttonColor);
  text-decoration: none;
}

ul {
    list-style: none;
}

button:focus {outline:0;}

html {
  scroll-behavior: smooth;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--buttonColor);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--textColor);
  border-top-color: var(--backgroundColor);
  border-bottom-color: var(--backgroundColor);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

.preload {
    width: 250px;
    height: 150px;
    padding: 10px;
    top: 40%;
    bottom: 40%;
    left: 40%;
    right: 40%;
    display: none;
    position: fixed;
    text-align: center;
    border-radius: 10px;
    z-index: 9999;
    background-color: var(--backgroundColor);
    color: var(--textColor);
}

.preload img {
    width: 60%;
    height: 60%;
}

.preload p {
    margin-top: 20px;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#header {
  transition: all 0.5s;
  background: var(--whiteColor);
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#header .logo {
  font-size: 22px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.5px;
}

#header .logo img {
  max-height: 50px;
}

.small_header_left {
    justify-content: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 15px;
}

.small_header_right {
    justify-content: flex-end;
}

.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > ul {
    display: flex;
}

.nav-menu > ul > li {
    padding: 5px 0 5px 20px;
    line-height: 3;
    position: relative;
}

.nav-menu a {
    display: block;
    position: relative;
    color: var(--BlackColor);
    transition: 0.3s;
    font-size: 16px;
    font-weight: 700;
    font-family: SF-Pro-Display-Bold;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
    color: var(--buttonColor);
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 25px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: var(--buttonColor);
}

.mobile-nav {
    position: fixed;
    top: 70px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    z-index: 9999;
    overflow-y: auto;
    background: var(--backgroundColor);
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    padding: 10px;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: var(--blackColor);
    padding: 10px 20px;
    outline: none;
    font-weight: 700;
    font-family: SF-Pro-Display-Bold;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
    color: var(--buttonColor);
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(10, 38, 58, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: var(--whiteColor);
}

.btn-custom {
    color: var(--whiteColor) !important;
    background-color: var(--buttonColor);
    font-size: 16px;
    transition: ease-in-out 0.3s;
    border-radius: 5px;
    padding: 7px 14px;
    font-weight: 700;
    font-family: SF-Pro-Display-Bold;
}

.btn-custom2 {
    color: var(--whiteColor) !important;
    background-color: transparent;
    font-size: 16px;
    transition: ease-in-out 0.3s;
    border-radius: 5px;
    padding: 5px 20px;
    font-weight: 500;
    font-family: SF-Pro-Display-Medium;
    border: 1px solid var(--whiteColor);
}

.btn-custom3 {
    color: #9A9A9A !important;
    background-color: transparent;
    font-size: 16px;
    transition: ease-in-out 0.3s;
    border-radius: 5px;
    padding: 5px 20px;
    font-weight: 500;
    font-family: SF-Pro-Display-Medium;
    border: 1px solid #9A9A9A;
}

.btn-custom:hover {
    color: var(--buttonColor) !important;
    background-color: var(--backgroundColor);
    transition: ease-in-out 0.3s;
}

.btn-custom2:hover {
    color: var(--whiteColor) !important;
    background-color: var(--buttonColor);
    border: 1px solid var(--buttonColor);
    transition: ease-in-out 0.3s;
}

.btn-custom3:hover {
    color: var(--whiteColor) !important;
    background-color: var(--buttonColor);
    border: 1px solid var(--buttonColor);
    transition: ease-in-out 0.3s;
}

.hideme {
    display: none;
}

section {
  padding: 40px 0;
  position: relative;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    font-family: SF-Pro-Display-Bold;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: var(--blackColor);
}

.section-title h5 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--buttonColor);
    font-weight: 400;
    position: relative;
    text-transform: uppercase;
}

.section-title h5:before  {
    display: inline-block;
    content: "";
    width: 70px;
    margin: 0px 5px;
    transform: translateY(-4px);
    border: 2px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(to right, #0177B5 20%, #FFFFFF 20%,#FFFFFF 30%, #0177B5 30%);
    border-top: none;
    border-left: none;
    border-right: none;
}

.section-title p {
    margin-bottom: 0;
    color: var(--blackColor);
}

#footer {
    background-color: var(--backgroundColor);
    color: var(--subtextColor);
    background-image: url(../images/footerbg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

#footer .footer_desc {
    padding: 40px;
}

#footer .footer_desc h3 {
    color: var(--blackColor);
    margin-bottom: 30px;
    font-weight: 700;
    font-family: SF-Pro-Display-Bold;
}

#footer .footer_desc ul {
    padding: 0px;
    list-style: disc;
}

#footer .footer_desc ul  li {
    color: #426084;
    font-size: 16px;
    margin: 10px;
    list-style: none;
}

#footer .footer_desc ul  li a {
    color: #426084;
    font-size: 16px;
    font-weight: 500;
    font-family: SF-Pro-Display-Medium;
}

#footer .footer_desc ul  li a:hover {
    text-decoration: underline;
}

#footer .footer_desc ul  li i {
    margin-right: 10px;
    color: var(--buttonColor);
    font-size: 32px;
}

#footer .footer_desc p {
    color: #426084;
    font-size: 16px;
    font-weight: 500;
    font-family: SF-Pro-Display-Medium;
}

.footer_desc img {
    width: 160px;
    height: auto;
    margin-bottom: 20px;
}

#footer .footer_social ul {
    padding: 0px;
    list-style: none;
}

#footer .footer_social ul  li {
    display: inline;
    margin: 5px;
}

#footer .info .detailbox {
    padding: 10px;
    margin-bottom: 10px;
}

#footer .info img {
    float: left;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    margin-left: 0px;
}

#footer .info p {
    padding: 0 0 0 40px;
    margin-bottom: 0;
    font-size: 16px;
    color: #426084;
    font-weight: 500;
    font-family: SF-Pro-Display-Medium;
}

.copyright {
    background-color: var(--whiteColor);
    text-align: center;
}

.copyright p {
    color: #426084;
    font-size: 16px;
    padding: 20px 10px;
    margin: 0px;
    font-weight: 500;
    font-family: SF-Pro-Display-Medium;
}

.homebanner {
    background-color: var(--backgroundColor);
    background-image: url(../images/homebanner.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    min-height: 100vh;
}

.homebanner .bannercontent {
    width: 80%;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.homebanner .bannercontent h2 {
    font-size: 60px;
    font-weight: 700;
    font-family: SF-Pro-Display-Bold;
    color: var(--whiteColor);
}

.homeservices {
    min-height: 200px;
}

.homeservices ul {
    width: 100%;
    text-align: center;
    position: absolute;
    top: -50px;
    margin: auto;
    padding: 0px;
}

.homeservices ul li {
    display: inline-block;
    margin: 10px 20px;
    background-color: var(--whiteColor);
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.2);
    border-radius: 14px;
    padding: 15px 20px;
}

.homeservices ul li img {
    width: 80px;
    height: 80px;
}

.homeservices ul li h5 {
    font-size: 16px;
    font-weight: 700;
    font-family: SF-Pro-Display-Bold;
    color: var(--buttonColor);
    margin: 15px 0px 0px 0px;
}

.homeaboutcontent {
    padding: 0px 8%;
    text-align: center;
}

.homeaboutcontent p {
    text-align: justify;
    font-size: 16px;
}

.homeculture {
    background-color: var(--backgroundColor);
    z-index: 2;
}

.homeculture:before  {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    background-image: url(../images/culturebgleft.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 30%;
    width: 18%;
}

.homeculture:after  {
    content: "";
    position: absolute;
    right: 0px;
    bottom: 0px;
    background-image: url(../images/culturebgright.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 15%;
    width: 25%;
    z-index: -1;
}

.homeculture .contentbox {
    background-color: var(--whiteColor);
    border-radius: 14px;
    padding: 25px;
    margin-bottom: 20px;
    min-height: 220px;
}

.homeculture img {
    float: left;
    width: 120px;
    height: 120px;
}

.homeculture h5 {
    padding-left: 140px;
    font-size: 16px;
    font-weight: 700;
    font-family: SF-Pro-Display-Bold;
}

.homeculture p {
    padding-left: 140px;
    text-align: justify;
    color: var(--textColor);
}

.hometestimonial {
    background-color: var(--whiteColor);
    background-image: url(../images/intersect.png);
    background-repeat: no-repeat;
    background-size: 100% 75%;
}

.hometestimonial .testimonialSlider ul {
    padding-top: 70px !important;
}

.hometestimonial .section-title h5:before  {
    display: inline-block;
    content: "";
    width: 70px;
    margin: 0px 5px;
    transform: translateY(-4px);
    border: 2px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(to right, #0177B5 20%, #F0F1F5 20%,#F0F1F5 30%, #0177B5 30%);
    border-top: none;
    border-left: none;
    border-right: none;
}

.hometestimonial .testimonialSlider .item {
    background-color: var(--whiteColor);
    border-radius: 24px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.hometestimonial .testimonialSlider .item h5 {
    font-size: 24px;
    font-weight: 700;
    font-family: SF-Pro-Display-Bold;
    color: var(--buttonColor);
    margin-bottom: 0px;
    margin-top: 50px;
}

.hometestimonial .testimonialSlider .item span {
    font-size: 14px;
    font-weight: 700;
    font-family: SF-Pro-Display-Bold;
    color: var(--blackColor);
}

.hometestimonial .testimonialSlider .item p {
    text-align: justify;
    padding: 20px;
    color: #7F91A6;
}

.hometestimonial .testimonialSlider .item .userlogo {
    width: 115px;
    height: 115px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: -70px;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    background-color: var(--whiteColor);
}


.hometestimonial .testimonialSlider .item .imgquat {
    width: 45px;
    height: 45px;
    margin: auto;
    margin-top: 20px;
}

.homeourwork {
    background-color: var(--buttonColor);
}

.homeourwork .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    font-family: SF-Pro-Display-Bold;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: var(--whiteColor);
}

.homeourwork .ourworktab {
    border: none;
}

.homeourwork .ourworktab li a {
    font-weight: 700;
    font-family: SF-Pro-Display-Bold;
    color: var(--whiteColor);
    font-size: 16px;
    border: none;
}

.homeourwork .ourworktab li a:hover {
    border: none;
}

.homeourwork .tab-content {
    margin-top: 20px;
}

.projectbox {
    margin-bottom: 25px;
    position: relative;
    cursor: pointer;
    background-color: var(--backgroundColor);
    min-height: 250px;
}

.projectbox .imageoverlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(10, 38, 58, 0.6);
    transition: ease-in-out 0.2s;
    z-index: 2;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
}

.projectbox img {
    display: block;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: var(--backgroundColor);
    z-index: 1;
    padding: 5px;
}

.projectbox .imageoverlay span {
    position: absolute;
    bottom: 5px;
    left: 10px;
    font-size: 14px;
    font-weight: 500;
    font-family: SF-Pro-Display-Medium;
    color: var(--whiteColor);
}

.projectbox .imageoverlay i {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: var(--buttonColor);
    padding: 15px;
    border-radius: 50%;
    color: var(--whiteColor);
}

.projectgallery .imggallery {
    margin-bottom: 25px;
    position: relative;
    cursor: pointer;
    text-align: center;
}

.aboutbanner {
    background-color: var(--buttonColor);
    min-height: 50vh;
}

.aboutbanner h2 {
    position: absolute;
    color: var(--whiteColor);
    font-weight: 700;
    font-family: SF-Pro-Display-Bold;
    font-size: 200px;
    bottom: -18%;
    text-align: center;
    width: 100%;
}

.aboutcompanycontent {
    padding: 0px 8%;
    text-align: center;
}

.aboutcompanycontent p {
    text-align: justify;
    font-size: 16px;
}

.aboutteam {
    background-color: var(--buttonColor);
}

.aboutteam .section-title h2 {
    color: var(--whiteColor);
}

.aboutteam .contentbox {
    background-color: var(--backgroundColor);
    padding: 15px;
    padding-bottom: 20px;
    margin-bottom: 25px;
    border-radius: 14px;
}

.aboutteam .contentbox img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    float: left;
}

.aboutteam .contentbox h5 {
    padding-top: 5px;
    padding-left: 75px;
    font-size: 20px;
    font-weight: 700;
    font-family: SF-Pro-Display-Bold;
    color: var(--buttonColor);
    margin: 0px;
}

.aboutteam .contentbox p {
    padding-left: 75px;
    font-size: 16px;
    color: var(--buttonColor);
    margin: 0px;
}

.abouteryus {
    background-color: var(--whiteColor);
    background-image: url(../images/intersect.png);
    background-repeat: no-repeat;
    background-size: 100% 75%;
}

.abouteryus .section-title h2 {
    margin-bottom: 10px;
}

.abouteryus .section-title p {
    color: var(--buttonColor);
    font-size: 18px;
}

.abouteryus .section-title {
    margin-bottom: 25px;
}

.abouteryus .contentbox {
    background: #FFFFFF;
    box-shadow: 0px 4px 39px rgba(0, 0, 0, 0.25);
    border-radius: 30px;
    padding: 25px;
    text-align: center;
}

.abouteryuscontent {
    text-align: left;
}

.abouteryuscontent h2 {
    font-size: 32px;
    font-weight: 700;
    font-family: SF-Pro-Display-Bold;
    margin-bottom: 0px;
    color: var(--buttonColor);
}

.abouteryuscontent p {
    color: var(--textColor);
    font-size: 16px;
}

.abouteryuscontent ul {
    list-style: disc;
    padding-left: 15px;
}

.abouteryuscontent ul li {
    list-style: disc;
    padding-left: 15px;
    font-size: 16px;
    color: var(--blackColor);
}

.abouteryuscontent ul li a {
    text-decoration: underline;
    color: var(--blackColor);
}

.services {
    background-color: var(--backgroundColor);
    z-index: 2;
}

.services:before  {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    background-image: url(../images/culturebgleft.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 30%;
    width: 18%;
}

.services:after  {
    content: "";
    position: absolute;
    right: 0px;
    bottom: 0px;
    background-image: url(../images/culturebgright.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 15%;
    width: 25%;
    z-index: -1;
}

.services .contentbox {
    background-color: var(--whiteColor);
    border-radius: 14px;
    padding: 25px;
    margin-bottom: 20px;
    min-height: 320px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.13);
}

.services img {
    float: left;
    width: 60px;
    height: 60px;
}

.services h5 {
    padding-left: 75px;
    font-size: 16px;
    font-weight: 700;
    font-family: SF-Pro-Display-Bold;
    color: var(--buttonColor);
}

.services p {
    padding-left: 75px;
    color: var(--textColor);
}

.contactletstalk {
    background-color: var(--whiteColor);
}

.contactletstalk .contactinfo {
    background-color: var(--buttonColor);
    padding: 40px 20px 20px 25px;
    border-radius: 24px;
    position: relative;
}

.contactletstalk .contactinfo:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px dashed var(--secondtextColor);
    top: 5px;
    left: 5px;
}

.contactletstalk .contactinfo .title {
    color: var(--whiteColor);
    font-size: 16px;
    letter-spacing: 1.5px;
}

.contactletstalk .contactinfo .subtitle {
    color: var(--whiteColor);
    font-size: 50px;
    font-weight: 700;
    font-family: SF-Pro-Display-Bold;
}

.contactletstalk .info {
    margin-top: 20%;
}

.contactletstalk .info .detailbox {
    padding: 10px;
    margin-bottom: 10px;
}

.contactletstalk .info img {
    float: left;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    margin-left: 0px;
    background-color: var(--whiteColor);
    padding: 5px;
    border-radius: 50%;
}

.contactletstalk .info p {
    padding: 0 0 0 45px;
    margin-bottom: 0;
    font-size: 16px;
    color: var(--whiteColor);
}

.contactletstalk .info a {
    color: var(--whiteColor);
}

.contactletstalk .contactform {
    padding: 25px;
}

.contactform .form-group input, .contactform .form-group textarea {
    height: 60px;
    background-color: var(--backgroundColor);
    border: 2px solid var(--shadowColor);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    border: 1px solid #426084;
    border-radius: 15px;
}

.contactform .form-group textarea {
    min-height: 150px;
}

.contactform .form-group input:focus, .contactform .form-group textarea:focus {
    box-shadow: none;
}

.contactletstalk .contactform .title {
    color: var(--buttonColor);
    font-size: 16px;
    font-weight: 700;
    position: relative;
    margin-bottom: 20px;
}

.contactletstalk .contactform .title:before  {
    display: inline-block;
    content: "";
    width: 60px;
    margin: 0px 5px;
    transform: translateY(-4px);
    border: 2px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(to right, #0177B5 20%, #FFFFFF 20%,#FFFFFF 30%, #0177B5 30%);
    border-top: none;
    border-left: none;
    border-right: none;
}

.contactletstalk .contactform .title span {
    position: absolute;
    top: -5px;
}

.contactletstalk .contactform .subtitle {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: SF-Pro-Display-Bold;
}

.portfolio {
    background-color: var(--backgroundColor);
}

.portfolio .ourworktab li a {
    color: var(--buttonColor);
}
.portfolio .ourworktab li a.active {
    color: var(--whiteColor);
    background-color: var(--buttonColor);
}

.languagebanner {
    background-color: var(--whiteColor);
    background-image: url(../images/webbg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    min-height: 60vh;
}

.languagebanner h2 {
    font-size: 32px;
    font-weight: 700;
    font-family: SF-Pro-Display-Bold;
    color: var(--whiteColor);
    position: absolute;
    left: 65%;
    top: 50%;
    -webkit-transform: translate(-65%, -50%);
    transform: translate(-65%, -50%);
}

.languageabout {
    background-color: var(--backgroundColor);
}

.languageabout p {
    text-align: justify;
    font-size: 16px;
    margin-top: 50px;
    color: var(--textColor);
}

.languageproject {
    background-color: var(--buttonColor);
}

.languageproject .section-title h2 {
    color: var(--whiteColor);
}

.languageprojectstep {
    background-color: var(--backgroundColor);
}

.languageprojectstep ul {
    width: 100%;
    text-align: center;
    margin: auto;
    padding: 0px;
}

.languageprojectstep ul li {
    display: inline-block;
    margin: 10px 20px;
    background-color: var(--whiteColor);
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.2);
    border-radius: 14px;
    padding: 15px 20px;
    min-height: 100px;
}

.languageprojectstep ul li img {
    width: 80px;
    height: 80px;
}

.languageprojectstep ul li h5 {
    font-size: 16px;
    font-weight: 700;
    font-family: SF-Pro-Display-Bold;
    color: var(--buttonColor);
    margin: 15px 0px 0px 0px;
}

.requestquotebanner {
    background-image: url(../images/requestquotebg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    min-height: 60vh;
}

.requestquotebanner h2 {
    font-size: 32px;
    font-weight: 700;
    font-family: SF-Pro-Display-Bold;
    color: var(--whiteColor);
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.requestquotestep {
    padding-bottom: 0px;
    margin-bottom: 40px;
}

#frmRequestQuote fieldset:not(:first-of-type) {
    display: none;
}

#frmRequestQuote fieldset {
    padding: 20px;
}

#frmRequestQuote .action-button {
    background-color: var(--buttonColor);
    font-weight: 700;
    font-family: SF-Pro-Display-Bold;
    color: var(--whiteColor);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    padding: 5px 20px;
    margin: 10px 5px;
}

#frmRequestQuote .action-button-previous {
    background-color: var(--whiteColor);
    font-weight: 700;
    font-family: SF-Pro-Display-Bold;
    color: var(--buttonColor);
    border: 1px solid var(--buttonColor);
    border-radius: 16px;
    cursor: pointer;
    padding: 5px 20px;
    margin: 10px 5px;
}

#frmRequestQuote #progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    padding: 0px;
}

#frmRequestQuote #progressbar .active {
    color: #000000;
}

#frmRequestQuote #progressbar li {
    list-style-type: none;
    font-size: 12px;
    width: 25%;
    float: left;
    position: relative;
    text-align: center;
}

.stepcount3 #frmRequestQuote #progressbar li {
    list-style-type: none;
    font-size: 12px;
    width: 33.33%;
    float: left;
    position: relative;
    text-align: center;
}

.stepcount2 #frmRequestQuote #progressbar li {
    list-style-type: none;
    font-size: 12px;
    width: 50%;
    float: left;
    position: relative;
    text-align: center;
}

#frmRequestQuote #progressbar #step1:before {
    content: "1";
}

#frmRequestQuote #progressbar #step2:before {
    content: "2";
}

#frmRequestQuote #progressbar #step3:before {
    content: "3";
}

#frmRequestQuote #progressbar #step4:before {
    content: "4";
}

#frmRequestQuote #progressbar li:before {
    width: 35px;
    height: 35px;
    line-height: 35px;
    display: block;
    font-size: 20px;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    color: var(--buttonColor);
    border: 1px solid var(--buttonColor);
    background-color: var(--whiteColor);
    font-weight: 700;
    font-family: SF-Pro-Display-Bold;
}

#frmRequestQuote #progressbar li:after {
    content: '';
    width: 100%;
    height: 5px;
    position: absolute;
    left: 0;
    top: 15px;
    z-index: -1;
    border-top: 1px solid var(--buttonColor);
    border-bottom: 1px solid var(--buttonColor);
}

#frmRequestQuote #progressbar li.active:before, #frmRequestQuote #progressbar li.active:after {
    background-color: var(--buttonColor);
    color: var(--whiteColor);
}

#frmRequestQuote #progressbar #step1:after {
    left: 50%;
    width: 50%;
}

#frmRequestQuote #progressbar #step4:after {
    width: 50%;
}

.stepcount3 #frmRequestQuote #progressbar #step3:after {
    width: 50%;
}

.stepcount2 #frmRequestQuote #progressbar #step2:after {
    width: 50%;
}

.requestquotemain .contentbox {
    margin-bottom: 20px;
    background-color: var(--whiteColor);
    box-shadow: 0px 6.0568px 60.568px rgba(0, 0, 0, 0.12);
    border-radius: 14px;
    padding: 15px 20px;
    text-align: center;
}

.requestquotemain .contentbox img {
    width: 80px;
    height: 80px;
}

.requestquotemain .contentbox h5 {
    font-size: 16px;
    font-weight: 700;
    font-family: SF-Pro-Display-Bold;
    color: var(--buttonColor);
    margin: 15px 0px 0px 0px;
}

.requestquotemain:before  {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    background-image: url(../images/culturebgleft.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 30%;
    width: 18%;
}

.requestquotemain:after  {
    content: "";
    position: absolute;
    right: 0px;
    bottom: 0px;
    background-image: url(../images/culturebgright.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 15%;
    width: 25%;
    z-index: -1;
}

.requestquoteaboutlang {
    background: linear-gradient(203.52deg, #049CEE 1.63%, #00486F 101.49%);
    border-radius: 24px;
    color: var(--whiteColor);
    padding: 5%;
}

.requestquoteaboutlang h4 {
    font-weight: 700;
    font-family: SF-Pro-Display-Bold;
}

.requestquoteaboutlang p {
    font-size: 18px;
    text-align: justify;
}

#frmRequestQuote fieldset .form-card .formcontrol {
    display: flex;
    margin-bottom: 20px;
}

#frmRequestQuote fieldset .form-card label {
    width: 90%;
    background: var(--backgroundColor);
    border: 1px solid var(--buttonColor);
    border-radius: 10px 0px 0px 10px;
    padding: 0px 20px;
    letter-spacing: 0.25px;
    color: var(--blackColor);
    font-size: 18px;
    height: 50px;
    margin: 0px;
    line-height: 3rem;
    border-right: none;
}

#frmRequestQuote fieldset .form-card select {
    width: 10%;
    background: var(--buttonColor);
    border-radius: 0px 10px 10px 0px;
    color: var(--whiteColor);
    height: 50px;
    font-size: 15px;
    margin: 0px;
    padding: 0px 10px;
}

#frmRequestQuote fieldset .form-card .form-control {
    background: var(--backgroundColor);
    border: 1px solid var(--buttonColor);
    border-radius: 10px;
    padding: 0px 20px;
    letter-spacing: 0.25px;
    color: var(--blackColor);
    font-size: 18px;
    height: 50px;
    margin: 0px;
}

#frmRequestQuote fieldset .form-card textarea {
    background: var(--backgroundColor);
    border: 1px solid var(--buttonColor);
    border-radius: 10px;
    padding: 5px 20px !important;
    letter-spacing: 0.25px;
    color: var(--blackColor);
    font-size: 18px;
    min-height: 120px;
    margin: 0px;
}

#frmRequestQuote fieldset .form-card textarea:focus,#frmRequestQuote fieldset .form-card .form-control:focus {
    box-shadow: none !important;
}

.thead-primary {
    background-color: var(--buttonColor);
    color: var(--whiteColor);
    font-weight: 700;
    font-family: SF-Pro-Display-Bold;
}

#frmRequestQuote .toggle-group label {
    width: auto !important;
    border: none !important;
    border-radius: 0px !important;
}

#frmRequestQuote .toggle-group label i {
    color: var(--buttonColor);
}

#frmRequestQuote .toggle-group .toggle-handle {
    background-color: var(--buttonColor);
}

#frmRequestQuote fieldset .form-card h6 {
    letter-spacing: 0.25px;
    color: var(--buttonColor);
    font-size: 14px;
    margin: 10px;
    font-weight: 700;
    font-family: SF-Pro-Display-Bold;
}

#frmRequestQuote fieldset .form-card span {
    color: var(--buttonColor);
    font-size: 14px;
}

#viewRecordModal .projectgallery a {
    opacity: 1;
}

.languagesolution {
    background-color: var(--buttonColor);
}

.languagesolution .section-title h2 {
    color: var(--whiteColor);
}

.languagesolution .contentbox {
    background-color: var(--whiteColor);
    border-radius: 14px;
    padding: 25px;
    margin-bottom: 20px;
    min-height: 150px;
}

.languagesolution img {
    float: left;
    width: 60px;
    height: 60px;
}

.languagesolution h5 {
    color: var(--buttonColor);
    padding-left: 75px;
    font-size: 16px;
    font-weight: 700;
    font-family: SF-Pro-Display-Bold;
}

.languagesolution p {
    padding-left: 75px;
    color: var(--textColor);
}

.languagewhychoose {
    background-color: var(--backgroundColor);
}

.languagewhychoose .contentbox {
    background-color: var(--whiteColor);
    border-radius: 14px;
    padding: 25px;
    margin-bottom: 20px;
    min-height: 220px;
}

.languagewhychoose img {
    float: left;
    width: 120px;
    height: 120px;
}

.languagewhychoose h5 {
    padding-left: 140px;
    font-size: 16px;
    font-weight: 700;
    font-family: SF-Pro-Display-Bold;
}

.languagewhychoose p {
    padding-left: 140px;
    color: var(--textColor);
}

.languagehosting {
    background-color: var(--buttonColor);
}

.languagehosting .section-title h2 {
    color: var(--whiteColor);
}

.languagehosting .contentbox {
    background-color: var(--whiteColor);
    border-radius: 14px;
    padding: 25px;
    margin-bottom: 20px;
    min-height: 150px;
    text-align: center;
}

.languagehosting img {
    width: 120px;
    height: 120px;
}

.languagehosting h5 {
    color: var(--buttonColor);
    font-size: 16px;
    font-weight: 700;
    font-family: SF-Pro-Display-Bold;
}

.languagehosting p {
    color: var(--textColor);
}