:root {
    --body-color: #000000;
    --body-background: #F6F9FC;
    --button-color: #337D9C;
    --border-color: #F6F9FC;
    --primary-color: #337D9C;
    --white-color: #ffffff;
    --secondary-color: #ffffff;
    --black-color: #000000;
    --gradient-color-from:#02549a;
}

html,
body {
    padding: 0;
    margin: 0;
    scrollbar-width: thin;
    scroll-behavior: smooth;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background-color: var(--body-background);
    font-size: 14px;
}

.ubuntu-light {
    font-family: "Ubuntu", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.ubuntu-regular {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.ubuntu-medium {
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.ubuntu-bold {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-style: normal;
}

* {
    padding: 0;
    margin: 0;
}

p,
span,
strong,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
a,
div,
section,
article,
nav {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    height: 70px;
    align-items: center;
}

.nav-menu ul {
    display: flex;
    justify-content: end;
}

.nav-menu ul li {
    list-style: none;
}

.nav-menu ul li a {
    padding: 0 15px;
    line-height: normal;
    font-weight: 500;
    text-decoration: none;
    color: var(--body-color);
}

.nav-menu ul li a:hover {
    /* color: rgba(0, 0, 0, 0.5); */
    font-weight: 600;
}

.header-section {
    box-shadow: 0 4px 4px rgba(0, 0, 0, .05);
}

.header-nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.nav-menu ul {
    display: flex;
    justify-content: end;
    margin: 0;
    padding: 0;
}

.logo img {
    max-width: 145px;
    width: 100%;
}

/*End Header */

/* Footer */
.footer-area {
    display: flex;
    justify-content: space-between;
}

.footer-logo {
    width: 200px;
}

.section-footer {
    background-color: black;
    padding: 55px 0;
}

.company-info img {
    max-width: 119px;
    width: 100%;
}

.footer-content {
    display: flex;
    width: calc(100% - 200px);
    justify-content: space-between;
}

.footer-area .footer-box {
    min-width: 23%;
}

.footer-content-menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    max-width: 260px;
}

.footer-content p,
.footer-content a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
    display: block;
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
}

.footer-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.address p {
    padding-left: 55px;
    padding-right: 0px;
    position: relative;
}

.news-letter p {
    margin-bottom: 5px;
    color: white;
    text-transform: uppercase;
    font-size: 14px;
}

.news-letter input {
    border-radius: 0;
    padding-left: 0;
    border: 0;
    margin-bottom: 6px;
    font-size: 13px;
    max-width: 100%;
    width: 100%;
    height: 32px;
    background: transparent;
    border-bottom: 1px solid #F9F7F4;
    color: white;
    padding-right: 24px;
    outline: none;
}

.news-letter input::placeholder {
    color: white;
    opacity: 1;
}

.news-letter input:-ms-input-placeholder {
    color: white;
}

.news-letter input::-ms-input-placeholder {
    color: white;
}

.news-letter button {
    font-size: 14px;
    border: 0;
    border-radius: 0;
    width: auto;
    height: auto;
    line-height: normal;
    background-color: transparent;
    padding-bottom: 0;
    position: absolute;
    top: 6px;
    right: 2px;
}

.new-box-area {
    position: relative;
    width: 100%;
}

/* End Footer */
.contact-box {
    margin: 0 auto;
    background-color: #C3DCE5;
    padding: 40px;
    border-radius: 12px;
}

.contact-us {
    max-width: 575px;
    margin: 0 auto;
}

.contact-us .form-group {
    display: flex;
    justify-content: space-between;
}

.contact-us .form-group select,
.contact-us .form-group textarea,
.contact-us .form-group input {
    padding: 7px 15px;
    border-radius: 10px;
    outline: none;
    border: 0px solid #ACACAC;
    width: 100%;
    height: 40px;
    font-size: 14px;
    background-color: white;
}

.contact-us .form-group textarea {
    margin-bottom: 12px;
}

.contact-us .form-group input::placeholder,
.contact-us .form-group textarea::placeholder {
    color: #000000;
    opacity: 1;
}

.contact-us .form-group input::-ms-input-placeholder,
.contact-us .form-group textarea::-ms-input-placeholder {
    color: #000000;
}

.contact-us .form-group textarea {
    width: 100%;
    height: 115px;
}

.contact-box .input-group {
    margin-bottom: 12px;
}

.button {
    padding: 3px 25px;
    border-radius: 24px;
    border: 0;
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    height: 38px;
    line-height: 31px;
}

.primary-button {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 3px 25px;
    border-radius: 24px;
    border: 0;
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    height: 38px;
    line-height: 31px;
}

.secondary-button {
    background-color: var(--white-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.title h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.address_group a {
    padding-right: 0;
    display: block;
    width: auto;
    color: #ffffff;
    text-decoration: none;
}

.company-info ul li,
.company-info ul li a {
    color: #ffffff !important;
}

.mobile-menu {
    display: none;
}

.banner-box img {
    width: 100%;
}

.success-box {
    display: flex;
    justify-content: space-between;
    background-color: #ADCBD7;
    margin-top: 100px;
    padding: 0px 50px;
    height: 375px;
}

.success-image img {
    width: 100%;
}

.success-text-box {
    padding-left: 30px;
}

.success-image-box {
    max-width: 710px;
}

.success-text-box {
    padding-left: 30px;
    width: 47%;
    display: flex;
    align-items: center;
}

.success-image-box img {
    width: 100%;
    position: relative;
    top: -50px;
}

.bannerSwiper {
    height: 450px;
    overflow: inherit;
}

.success-image {
    position: absolute;
    top: -50px;
    width: 53%;
    padding-left: 50px;
}

.success-text-box .sub-title {
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
}

.success-text-box p {
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
}

.success-text-box h3 {
    font-size: 40px;
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
}

.success-story-section {
    margin-bottom: 70px;
}

.success-text {
    padding-bottom: 25px;
}

.satisfaction-list h2 {
    font-size: 50px;
    font-family: 'Ubuntu';
    font-weight: 600;
}

.success-content {
    position: relative;
}

.clients-image-box {
    width: 85px;
    margin: 0 auto;
    border-radius: 50%;
    height: 85px;
    overflow: hidden;
    position: absolute;
    top: 30px;
    margin-left: -42.5px;
    left: 50%;
}

.clients-box {
    background-color: #ADCBD7;
    padding: 30px;
    padding-top: 55px;
}

.clientsBox .swiper-slide {
    padding-top: 70px;
    background: transparent;
}

.client-title {
    text-align: center;
}

.client-title h3 {
    font-size: 36px;
}

.clients-text-box ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.clients-text-box ul li img {
    width: auto;
}

.our-services {
    display: flex;
    justify-content: space-between;
}

.our-services-left {
    width: 33%;
    padding-right: 22px;
}

.our-services-left img {
    width: 100%;
}

.our-services-right {
    width: 100%;
    margin: 0 auto;
}

.our-services-right ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.our-services-right ul li {
    width: calc(25% - 22.5px);
    margin-bottom: 20px;
    text-align: center;
    background: #f6f9fc;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.our-services-right ul li img {
    width: 100%;
    border-bottom-right-radius: 35px;
    border-top-left-radius: 35px;
}
.our-services-right ul .services-item:nth-child(4n + 1){
    margin-right: 15px;
}
.our-services-right ul .services-item:nth-child(4n + 2){
    margin-right: 15px;
    margin-left: 15px;
}
.our-services-right ul .services-item:nth-child(4n + 3){
    margin-right: 15px;
    margin-left: 15px;
}
.our-services-right ul .services-item:nth-child(4n + 4){
    margin-left: 15px;
}
.our-services-right ul .services-item img{
    max-width: 100px;
    mix-blend-mode: darken;
    background: #f6f9fc;
}
.our-services-right ul .view-more-box img{
    max-width: 100%;
    mix-blend-mode: darken;
    background: #f6f9fc;
}

.view-more-box {
    position: relative;
}

.view-more-box a {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -35px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-family: "Ubuntu", sans-serif;
}

.our-services-content h3 {
    margin-bottom: 25px;
}

.our-services-section {
    margin-bottom: 50px;
}

.business-process {
    display: flex;
    justify-content: space-between;
    padding: 50px 80px;
}

.services-image img {
    width: 100%;
}

.business-process {
    display: flex;
    justify-content: space-between;
    padding: 50px 80px;
}

.services-text {
    width: calc(100% - 320px);
    padding-left: 50px;
}

.services-text ul {
    padding-left: 20px;
}

.services-text ul li {
    list-style-type: disc;
}

.services-text p {
    padding-left: 3px;
}

.services-text .text-group {
    margin-top: 15px;
}

.services-section {
    margin-top: 50px;
}

.price-section {
    background-color: #E1ECF1;
    padding: 90px 0;
}

.price-box .title {
    text-align: center;
    padding-bottom: 50px;
}

.price-list {
    width: 1040px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.price-item-fill {
    background-color: #C3DCE5;
}

.price-item-white {
    background-color: #ffffff;
}

.price-item h4 {
    padding-left: 50px;
    line-height: 23px;
    position: relative;
    margin-bottom: 6px;
    font-size: 24px;
    font-family: 'Ubuntu';
    font-weight: 500;
}

.price-item h4 img {
    position: absolute;
    left: 0;
    top: 0;
}

.touch-button a {
    margin-top: 10px;
}

.price-list .price-item h6 {
    font-size: 20px;
    font-family: 'Open Sans';
    margin-bottom: 5px;
}

.get-quote {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .60);
}

.get-quote-popup {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.get-quote-popup form {
    background-color: #E1ECF1;
    padding: 40px;
    border-radius: 12px;
    width: 640px;
    margin: 0 auto;
    position: relative;
}

.get-quote-popup form .input-group {
    margin-bottom: 12px;
}

.get-quote-popup .close {
    position: absolute;
    right: 13px;
    top: 7px;
    width: 18px;
    height: 20px;
    text-align: center;
    cursor: pointer;
    outline: none;
    border: 0;
}

.get-quote-popup .close img {
    width: 16px;
}

.about-ttg-section .success-box {
    height: auto;
    padding: 0px 30px;
}

.about-ttg-section .success-text-box .sub-title {
    font-size: 36px;
    font-family: "Ubuntu", sans-serif;
}

.success-about-text {
    padding-top: 60px;
    padding-bottom: 60px;
}

.about-ttg-section .success-text-box h5 {
    text-transform: uppercase;
    margin: 5px 0;
    font-size: 14px;
    font-family: 'Open Sans';
}

.about-ttg-section .about-text {
    margin-bottom: 20px;
}

.about-ttg-section .about-text:last-child {
    margin-bottom: 0px;
}

.contact-body {
    display: flex;
    justify-content: space-between;
    background-color: #E1ECF1;
}

.contact-info {
    background-color: #337D9C;
    height: 100%;
    max-width: 35%;
    position: relative;
}

.contact-content {
    height: 100%;
}

.contact-info-box {
    color: white;
    padding: 100px 55px;
    text-align: left;
}

.contact-info-box h3 {
    font-size: 36px;
    font-family: "Ubuntu", sans-serif;
}

.contact-info-box .info-group {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
}

.contact-info-box .info-group img {
    position: absolute;
    left: 0;
    top: 0;
}

.contact-info-box .info-group ul {
    display: flex;
    list-style: none;
    margin-top: 10px;
}

.contact-info-box .info-group ul li {
    margin-right: 10px;
}

.contact-info-box .info-group ul img {
    position: relative;
    left: 0;
    top: 0;
}

.contact-body .contact-us h4 {
    text-align: center;
    width: 100%;
    margin-bottom: 15px;
    font-size: 30px;
    font-family: 'Ubuntu';
}

.contact-image {
    position: absolute;
    left: 100%;
    z-index: 2;
    top: 50%;
    margin-top: -100px;
    margin-left: -100px;
}

.contact-image img {
    width: 200px;
    border-radius: 12px;
}

.contact-info-title {
    margin-bottom: 15px;
}

.contact-us-box {
    margin: 60px 0;
}

.contact-us select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url(/static/icons/icon-down-arrow.svg);
    background-repeat: no-repeat;
    background-position: 98% center;
}

.blogs {
    background-color: #E1ECF1;
    padding: 50px;
    padding-bottom: 20px;
}

.alert {
    max-width: 450px;
    text-align: center;
    margin: 0 auto;
    position: fixed;
    top: 20%;
    left: 50%;
    margin-left: -225px;
    width: 100%;
}

.blogs-top {
    justify-content: start;
}

.blogs-top .tabs {
    display: flex;
    justify-content: center;
}

.blogs-top .tabs .tab {
    padding: 0 10px;
    cursor: pointer;
}

.blogs-section,
.blogs-details {
    margin: 50px 0;
}

.blogs-top .tabs .tab.active {
    text-decoration: underline;
}

.blog-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}

.blogs-list-area {
    margin-top: 30px;
}

.blog-item h5 {
    font-family: 'Open Sans';
    font-size: 15px;
    font-weight: 600;
    margin: 5px 0;
    margin-top: 15px;
    margin-bottom: 5px;
}
.blog-list .blog-item {
    margin-bottom: 25px;
}

.blog-image img {
    width: 100%;
}

.blog-item a {
    text-decoration: none;
    color: inherit;
}

.content-similar {
    width: 270px;
}

.content-details {
    width: calc(100% - 270px);
    padding-right: 50px;
}

.details-content-body {
    display: flex;
    justify-content: space-between;
}

.similar-list .blog-item {
    margin-bottom: 15px;
}

.similar-list .blog-item:last-child {
    margin-bottom: 25px;
}

.content-similar h4 {
    font-size: 24px;
    font-family: 'Open Sans';
    font-weight: 600;
    margin-bottom: 5px;
}

.details-content .title h2 {
    text-align: left;
}

.content-details img {
    width: 100%;
}

.content-details img {
    width: 100%;
}

.two-images {
    display: flex;
}

.two-images img {
    width: 50%;
}

.details-text p {
    text-align: justify;
}

.details-content {
    padding-bottom: 45px;
}

.similar-item a {
    text-decoration: none;
    color: inherit;
}

.similar-item img {
    width: 100%;
}

.similar-item {
    margin-bottom: 20px;
}

.blogs-top select {
    border: 1px solid #000000;
    width: 160px;
    background-color: transparent;
    padding: 0 8px;
    border-radius: 12px;
    outline: none;
    font-size: 14px;
}

.satisfaction-list {
    display: flex;
}


.success-story-section .success-image {
    transform: translateX(-100%);
    opacity: 0;
    animation: slideInFromLeft 1.5s ease forwards;
}

.success-story-section .success-text-box {
    transform: translateX(100%);
    opacity: 0;
    animation: slideInFromRight 1.5s ease forwards;
}
.services-image,
.our-services-left {
    transform: translateX(-100%);
    opacity: 0;
    animation: slideInFromLeft 1.5s ease forwards;
}
.services-text,
.our-services-right {
    transform: translateX(100%);
    opacity: 0;
    animation: slideInFromRight 1.5s ease forwards;
}
.reserve-popup-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
@keyframes slideInFromLeft {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}


/* Faqs */
.faqs-container {
    max-width: 768px;
    margin: 0 auto;
}
.faq-section {
    margin-bottom: 55px;
    margin-top: 60px;
}
.title-box h2 {
    font-size: 43px;
    text-transform: uppercase;
    font-family: "Ubuntu", sans-serif;
    color: #000000;
    font-weight: normal;
}
.title-box p {
    max-width: 75%;
    width: 100%;
}
.faqs-container {
    max-width: 768px;
    margin: 0 auto;
}

.faqs-content .form-group label {
    font-size: 16px;
    font-family: "Ubuntu", sans-serif;
    font-weight: normal;
}

.faqs-content .form-group label span {
    font-size: 16px;
    font-family: "Ubuntu", sans-serif;
    font-weight: normal;
}

.faqs-content .form-group label {
    font-size: 16px;
    font-family: 'Raleway-Bold';
    font-weight: normal;
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    cursor: pointer;
    line-height: 21px;
}

.circle-event {
    margin-left: 10px;
}

.circle-event span {
    width: 22px;
    display: inline-block;
    text-align: center;
    line-height: 20px;
}

.circle-event span img {
    width: auto;
}

.circle-event span.minus {
    display: none;
}

.faqs-content .form-group label.active .minus {
    display: inline-block;
}

.faqs-content .form-group label.active .plus {
    display: none;
}

.faqs-content {
    margin: 20px 0;
}

.faqs-content .tab-content p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 15px;
}

.customer-service .tab-content p {
    line-height: 20px;
    margin-bottom: 20px;
}

.terms_conditions .tab-content ul {
    line-height: 20px;
    margin-bottom: 20px;
    padding-left: 20px;
    list-style-type: decimal;
}

.terms_conditions .tab-content ul li {
    list-style-type: decimal;
    padding-left: 10px;
    margin-bottom: 20px;
}

.faqs-footer p {
    font-size: 14px;
    text-align: center;
}

.faqs-footer .faq-footer-subtitle {
    font-size: 20px;
    font-family: "Ubuntu", sans-serif;
    line-height: 26px;
}
/* faqs */


.services-item a {
    text-decoration: none;
    color: black;
    display: block;
    padding: 5px 8px;
    padding-top: 15px;
}
.services-item .view-more-box {
    padding: 5px 8px;
    padding-top: 15px;
}
.our-services-right ul .services-item:hover {
    background-color: #337D9C;
}
.our-services-right ul .services-item:hover p,
.our-services-right ul .services-item:hover h4,
.our-services-right ul .services-item:hover a{
    color: #ffffff;
    text-align: center;
}
.our-services-right ul .services-item:hover .default{
    display: none;
}
.our-services-right ul .services-item .hover{
    display: none;
}
.our-services-right ul .services-item:hover .hover {
    display: block;
    margin: 0 auto;
}

.read-more {
    margin-top: 20px;
    display: inline-block;
}
.services-item h4 {
    margin: 6px 0;
}
.career-title img {
    width: 100%;
    mix-blend-mode: darken;
}
.career-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 6, 17, .75);
    z-index: 1;
}
.career-top-box {
    position: relative;
    margin-bottom: 40px;
}
.job-title {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
    margin-top: -17px;
    color: #ffffff;
    z-index: 9;
}
.box-item .job-item {
    background: #f5f5f5;
    padding: 25px;
    opacity: .85;
    display: block;
    box-shadow: 2px 2px 5px 0 #00000030;
    text-decoration: none;
    color: inherit;
    margin-bottom: 20px;
}
.box-item .job-item:hover{
    background: #f5f5f5;
    opacity: 1;
}
.job-listing-item {
    max-width: 1024px;
    margin: 0 auto;
}
.title-box h4 {
    color: #02549a;
    margin-bottom: 8px;
}
.item-group img {
    width: 17px;
    margin-right: 10px;
}
.job-listing-item .item-group {
    display: flex;
    margin-bottom: 15px;
}
.more-details .job-more {
    color: #2192d0;
    display: inline-block;
    margin-top: 20px;
}
.details-box {
    max-width: 1024px;
    margin: 0 auto;
}
.department-name{
    font-size: 16px;
}
.job-description{
    padding: 50px 0;
}
.job-details{
    margin-bottom: 30px;
}
.job-details p{
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 15px;
}
.job-details h2,
.job-details h3{
    margin-bottom: 15px;
}
.job-apply-content .contact-us {
    max-width: 1024px;
}
.job-apply-content .contact-us .input-group{
    margin-bottom: 20px;
    width: calc(50% - 10px);
}
.job-apply-content .form-title {
    margin-bottom: 20px;
    font-size: 42px;
}
.upload-resume{
    margin-top: 5px;
}
.upload-resume label{
    width: 100%;
    margin-bottom: 20px;
}
.job-apply-content {
    border: 1px solid #ddd;
    padding: 30px;
    background-color: #337d9c08;
}
.job-apply-content .checkbox-check {
    justify-content: flex-start !important;
    margin-bottom: 5px;
}
.job-apply-content .checkbox-check input {
    width: 18px;
    position: relative;
    top: -10px;
}
.job-apply-content .checkbox-check label {
    text-align: left;
    position: relative;
    top: 0;
    margin-left: 7px;
}
.box-content-list{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 80px;
}
.box-content-list .item-box{
    text-align: center;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
    cursor: pointer;
}
/* .box-content-list .item-box{
    background-color: #fff;
    -webkit-box-shadow: 0 15px 55px rgba(138, 138, 138, .3);
    -khtml-box-shadow: 0 15px 55px rgba(138,138,138,.3);
    -moz-box-shadow: 0 15px 55px rgba(138,138,138,.3);
    -ms-box-shadow: 0 15px 55px rgba(138,138,138,.3);
    -o-box-shadow: 0 15px 55px rgba(138,138,138,.3);
    box-shadow: 0 15px 55px rgba(138, 138, 138, .3);
} */
.our-leader-list .item-box{
    background-color: #fff;
    -webkit-box-shadow: 0 15px 55px rgba(138, 138, 138, .3);
    -khtml-box-shadow: 0 15px 55px rgba(138,138,138,.3);
    -moz-box-shadow: 0 15px 55px rgba(138,138,138,.3);
    -ms-box-shadow: 0 15px 55px rgba(138,138,138,.3);
    -o-box-shadow: 0 15px 55px rgba(138,138,138,.3);
    box-shadow: 0 15px 55px rgba(138, 138, 138, .3);
}
.box-title .sub-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    font-family: 'Ubuntu';
    font-weight: 600;
}
.item--inner{
    position: relative;
}
.our-leader-list{
    color: inherit;
}
.item--image img {
    width: 100%;
    max-width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 2px solid #ffffff;
}
.our-leader-list .item--inner {
    box-shadow: 0 10px 50px rgba(132, 132, 132, .1);
    width: 100%;
}
.our-leader-list .item--holder {
    width: 100%;
    height: 100%;
    padding-bottom: 30px;
}
.our-culture-list .item-box,
.our-leader-list .item-box{
    height: auto;
    padding: 50px 0;
    border: 0 !important;
}
.item--image {
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
}
.item-outer-border {
    width: 100%;
    max-width: 136px;
    height: 136px;
    border-radius: 50%;
    border: 3px solid #5ac719;
}
.item--holder .item-title {
    margin-bottom: 7px;
}
.our-leaders-section{
    margin-bottom: 50px;
}
.sub-title span{
    color: #5ac719;
}
.our-culture-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 50px;
}
.culture-item-box img {
    width: 100%;
}
.award-winning-box{
    display: flex;
}
.award-winning-text{
    width: 100%;
    padding-right: 0px;
}
.award-container{
    padding: 20px;
}
.award-winning-media iframe{
    width: 100%;
}
.award-winning-media{
    width: 100%;
}
.award-winning-title h3 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}
.award-winning-text h4 {
    line-height: 24px;
    margin-bottom: 10px;
}
.lightbox{
    display: flex;
    justify-content: center;
    align-items: center;
}
.award-winning-section{
    padding-bottom: 50px;
}
.gallery-title h3 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}
@media screen and (min-width: 991px) {
    .award-container{
        padding-left: 75px;
    }
    .award-winning-box{
        display: flex;
    }
    .award-winning-text{
        width: calc(50% - 50px);
        padding-right: 50px;
    }
    .award-winning-media{
        width: 50%;
    }
    .our-culture-list .culture-item {
        width: calc(33% - 14px);
        margin-bottom: 20px;
    }
    .our-culture-list .culture-item:nth-child(3n + 1){
        margin-right: 10px;
    }
    .our-culture-list .culture-item:nth-child(3n + 2){
        margin-left: 10px;
        margin-right: 10px;
    }
    .our-culture-list .culture-item:nth-child(3n + 3){
        margin-left: 10px;
    }

    .box-content-list .item-box{
        width: calc(25% - 0px);
    }
    .box-content-list .item-box:nth-child(4n + 1){
        margin-right: 0px;
    }
    .box-content-list .item-box:nth-child(4n + 2){
        margin-left: 0px;
        margin-right: 0px;
    }
    .box-content-list .item-box:nth-child(4n + 3){
        margin-left: 0px;
        margin-right: 0px;
    }
    .box-content-list .item-box:nth-child(4n + 4){
        margin-left: 0px;
    }
    
    .our-leader-list  .item-box{
        width: calc(25% - 30px);
    }
    .our-leader-list .item-box:nth-child(4n + 1){
        margin-right: 20px;
    }
    .our-leader-list .item-box:nth-child(4n + 2){
        margin-left: 20px;
        margin-right: 20px;
    }
    .our-leader-list .item-box:nth-child(4n + 3){
        margin-left: 20px;
        margin-right: 20px;
    }
    .our-leader-list .item-box:nth-child(4n + 4){
        margin-left: 20px;
    }
    .nav-menu ul li .active {
        background-color: #337D9C;
        color: #ffffff;
        padding: 5px 20px;
        border-radius: 24px;
        font-family: 'MontserratSemiBold';
    }
    .blog-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: start;
    }
    
    .blog-list .blog-item:nth-child(4n + 1) {
        margin-right: 15px;
    }
    
    .blog-list .blog-item:nth-child(4n + 2) {
        margin: 0 15px;
    }
    
    .blog-list .blog-item:nth-child(4n + 3) {
        margin: 0 15px;
    }
    
    .blog-list .blog-item:nth-child(4n + 4) {
        margin-left: 15px;
    }
    
    .blog-list .blog-item {
        width: calc(25% - 22.5px);
    }

    .price-item:nth-child(3n + 1) {
        margin-right: 7px;
    }

    .price-item:nth-child(3n + 2) {
        margin: 0 7px;
    }

    .price-item:nth-child(3n + 3) {
        margin-left: 7px;
    }

    .price-list .price-item {
        width: calc(33.33% - 10px);
        margin-bottom: 14px;
        padding: 20px;
    }

    .text-box {
        height: 580px;
    }

    .get-quote-popup .input-group,
    .contact-box .input-group {
        width: calc(50% - 6px);
        margin-bottom: 12px;
    }

    .contact-box .input-group-full {
        width: 100%;
        margin-bottom: 12px;
    }

    .footer-content {
        padding-left: 20px;
    }

    .contact-section {
        margin: 50px 0;
    }

    .desktop {
        display: block !important;
    }

    .mobile {
        display: none !important;
    }

    .contact-body .contact-content {
        width: 65%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-body .contact-us {
        width: 543px;
    }

    .contact-body .contact-us .input-group {
        margin-bottom: 15px;
        width: calc(50% - 8px);
    }

    .satisfaction-item {
        width: 25%;
        text-align: center;
    }
}

@media screen and (max-width: 991px) {
    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 20px;
    }
    .blogs {
        padding: 20px;
        padding-top: 30px;
    }
    .success-story-section {
        margin-bottom: 30px;
    }
    .about-ttg-section .success-box {
        padding: 0px 20px;
    }
    .about-ttg-section .success-text-box .sub-title {
        font-size: 30px;
    }
    .about-ttg-section .success-text-box {
        padding-left: 0;
        padding-right: 0;
    }
    .about-ttg-section .success-box{
        margin-top: 70px;
    }
    .about-ttg-section .success-box,
    .about-ttg-section .success-image{
        position: relative;
    }
    .price-section {
        padding: 50px 0;
    }
    .title h2 {
        font-size: 30px;
        margin-bottom: 15px;
    }
    .touch-button {
        margin-top: 20px;
    }
    .services-section {
        margin-top: 50px;
        margin-bottom: 30px;
    }
    .input-group-full{
        margin-bottom: 15px;
    }
    .getIn-touch-service .contact-us {
        padding-top: 10px;
        padding-left: 0;
        padding-right: 0;
    }
    .services-text {
        width: calc(100%);
        padding-left: 0;
    }
    .services-image {
        position: relative;
        top: -50px;
    }
    .business-process {
        display: block;
        padding: 30px 20px;
        padding-top: 0;
        position: relative;
        top: 0;
        margin-top: 100px;
    }
    .about-ttg-section .success-text-box h5 {
        text-align: left;
    }
    .contact-info-box {
        padding: 100px 30px;
        text-align: left;
        padding-top: 45px;
    }
    .contact-us {
        max-width: 100%;
        margin: 0 auto;
        padding-top: 120px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .contact-us-box .contact-us {
        padding-bottom: 30px;
    }
    .contact-us-box {
        margin: 50px 0;
    }

    .contact-us .input-group {
        margin-bottom: 15px;
    }

    .contact-body {
        display: block;
    }

    .contact-info {
        max-width: 100%;
    }

    .contact-image {
        left: 50%;
        top: 100%;
    }

    .success-text-box h3 {
        font-size: 26px;
    }

    .price-list {
        width: 100%;
        display: block;
    }

    .price-list .price-item {
        width: calc(100% - 0px);
        margin-bottom: 14px;
        padding: 20px;
    }

    .our-services-right {
        width: 100%;
    }

    .our-services-right ul li {
        width: 100%;
        margin-bottom: 20px;
    }

    .our-services-right ul {
        display: block;
        column-count: 2;
    }

    .our-services-right ul li {
        width: 100%;
        margin-bottom: 20px;
    }

    .satisfaction-list h2 {
        font-size: 24px;
    }

    .success-box {
        display: block;
        padding: 0px 0px;
        height: auto;
        margin-top: -150px;
        padding-top: 150px;
    }

    .success-text-box {
        padding-left: 20px;
        width: 100%;
        padding-right: 20px;
        text-align: justify;
    }

    .success-image {
        position: relative;
        top: 50px;
        width: 100%;
        padding-left: 0;
    }

    .desktop {
        display: none !important;
    }

    .mobile {
        display: block !important;
    }

    .nav-menu ul li a {
        padding: 15px 20px;
        display: block;
        font-size: 14px;
        width: calc(100% - 20px);
        border-bottom: 1px solid #ddd;
    }
    .nav-menu ul li:last-child a {
        border-bottom: 0px solid #ddd;
    }

    .nav-menu ul {
        display: block;
        background-color: #f6f9fc;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .header-box {
        display: flex;
        justify-content: space-between;
    }

    .header-nav {
        display: block;
    }

    .contact-section {
        margin: 30px 0;
    }

    .mobile-menu {
        width: 25px;
        text-align: right;
        display: flex;
        justify-content: right;
        align-items: center;
    }

    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        padding-right: 20px;
        padding-left: 20px;
    }

    .contact-box .input-group {
        width: 100%;
    }

    .contact-us .form-group {
        display: block;
    }

    .getIn-touch-service .contact-box {
        padding: 30px 20px;
        border-radius: 12px;
        padding-right: 20px;
        padding-left: 20px;
        margin-bottom: 0;
    }

    .nav-menu {
        display: none;
        position: absolute;
        width: calc(100% + 20px);
        margin-left: -20px;
        top: 70px;
        border-top: 1px solid var(--border-color);
        z-index: 999;
        padding-top: 1px;
    }

    .logo img {
        height: 29px;
    }

    .footer-area {
        display: block;
    }

    .footer-area .footer-box {
        min-width: 23%;
        margin-bottom: 20px;
    }

    .footer-content-menu {
        width: 100%;
        max-width: 220px;
    }

    .footer-content {
        width: calc(100%);
    }

    .footer-area .news-letter-box {
        margin-bottom: 0;
    }

    .section-footer {
        padding: 30px 0;
    }

    .news-letter p {
        font-size: 13px;
    }
}