/*=== google fonts ===*/

@font-face {
    font-family: 'ITCAvantGardePro';
    src: url('../webfonts/ITCAvantGardePro-Md.ttf');
    font-weight: 500;
}

@font-face {
    font-family: 'ITCAvantGardePro';
    src: url('../webfonts/ITCAvantGardePro-bold.otf');
    font-weight: 700;
}

@font-face {
    font-family: 'MYRIADPRO';
    src: url('../webfonts/MYRIADPRO-REGULAR.OTF');
}

:root {
    --primary-font: "Arial", sans-serif;
    --secondary-font: "ITCAvantGardePro";
    --third-font: "MYRIADPRO";
    --bg-black: #000;
    --bg-white: #fff;
    --white: #fff;
    --black: #000;
    --primary-color: #F2DC26;
}

/*=== Basic css ===*/
html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: none;
}

a {
    text-decoration: none;
    display: inline-block;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    -ms-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

body {	
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 400;    
    background: #020001;
    color: #fff;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 34px;
    border-radius: 50%;
    background: var(--primary-color); 
    text-align: center; 
    font-size: 16px;
    color: var(--black);
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    z-index: 8888;    
}

.scrolltotop i {
    color: var(--black);
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 9px;
    left: -6px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: var(--primary-color); 
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear; 
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

.button {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    padding: 12px 24.23px;
    border-radius: 100px;
    background-color: var(--primary-color);
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.button:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    left: 50%;
    background-color: var(--title-color);
    z-index: -1;
    transition: 0.4s all ease;
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.4s all ease;
    -ms-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
}

.button:before {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    right: 50%;
    background-color: var(--title-color);
    z-index: -1;
    transition: 0.4s all ease;
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.4s all ease;
    -ms-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
}

.button:hover:after,
.button:hover:before {
    width: 50%;
}

.button:hover {
    color: var(--white);
}

/*=== Header area start ===*/

.header-area {
    background-image: url(../images/header-bg.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    padding: 40px 0 120px;
}

.header-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    max-width: 100%;
}

.header-navigation-link ul {
    display: flex;
    align-items: center;
}

.header-navigation-link ul li a {
    color: #fff;
    font-size: 16.78px;
    font-weight: 400;
    margin-left: 40px;
}

.header-navigation-link ul li a:hover {
    color: var(--primary-color);
}

.header-navigation-link ul li:last-of-type a {
    font-size: 12.57px;
    width: 130px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3474C7;
    position: relative;
}

.header-navigation-link ul li:last-of-type a::before {
    content: '';
    position: relative;
    width: 8.4px;
    height: 8.4px;
    display: block;
    background-color: #34C75D;
    margin-right: 10px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.hamburger {
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    border-radius: 4px;
    display: block;
    background: #fff;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.hamburger span:nth-of-type(2) {
    margin: 6px 0;
}

.hamburger:hover span {
    background: var(--primary-color);
}

/*=== offcanvas start ===*/

.offcanvas-start {
    width: 300px;
    border: none;
    background: #020001; 
}

.offcanvas-body {
    padding: 30px 20px;
}

.side-menu-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.side-menu-logo img {
    max-width: 100%;
}

.side-menu-logo .close {
    cursor: pointer;
    width: 25px;
    height: 25px;
}

.side-menu-logo .close span {
    width: 25px;
    height: 3px;
    display: block;
    background: #fff;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.side-menu-logo .close:hover span {
    background: var(--primary-color);
}

.side-menu-logo .close span:nth-of-type(1) {
    transform: rotate(45deg);
    margin-top: 13px;
}

.side-menu-logo .close span:nth-of-type(2) {
    transform: rotate(-45deg);
    margin-top: -3px;
}

.side-menu-link ul {
    flex-direction: column;
    align-items: start;
}

.side-menu-link ul li a {
    margin: 0 0 15px;
}

.banner-item {
    padding-top: 140px;
}

.banner-item h2 {
    font-family: var(--secondary-font);
    font-size: 100.34px;
    color: #f5efef;
    font-weight: 700;
}

.banner-item h2 span {
    display: block;
    color: #ECCE2A;
}

.banner-item-inner {
    max-width: 690px;
}

.banner-item-inner > p {
    font-size: 12.65px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 42px;
}

.banner-item-inner-second {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    flex-wrap: wrap;
}

.banner-item-inner-second div {
    margin-bottom: 20px;
}

.banner-item-inner-second h3 {
    font-family: var(--secondary-font);
    font-size: 30.74px;
    color: #F6DC38;
    font-weight: 700;
    margin-bottom: 7px;
}

.banner-item-inner-second p {
    font-size: 18.45px;
    color: #fff;
    font-weight: 400;
}

.banner-item-inner-third ul {
    display: flex;
    align-items: center;
}

.banner-item-inner-third ul li a {
    font-size: 18.97px;
    color: #fff;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 242px;
    height: 53px;
    border: 2.5px solid #FFFFFF;
}

.banner-item-inner-third ul li:nth-of-type(1) a {
    color: #000000;
    width: 221px;
    border-color: #F6DC38;
    background-color: #F6DC38;
    margin-right: 48px;
}

.banner-item-inner-third ul li a:hover {
    color: #000000;
    border-color: #F6DC38;
    background-color: #F6DC38;
}

/*=== smarter area start ===*/

.smarter-area {
    padding-top: 60px;
}

.smarter-title {
    text-align: center;
    margin-bottom: 66px;
}

.smarter-title h2 {
    font-family: var(--secondary-font);
    font-size: 56px;
    font-weight: 700;
    color: #fff;
}

.smarter-title h2 span {
    color: #F6DC38;
}

.smarter-item {
    display: flex;
    flex-wrap: wrap;
}

.smarter-item-content {
    width: calc(100% - 514px);
    padding-top: 12px;
    padding-right: 38px;
}

.smarter-item-content p {
    font-size: 18.97px;
    font-weight: 400;
    color: #fff;
    text-align: right;
    margin-bottom: 20px;
}

.smarter-item-content-button {
    padding-top: 5px;
    text-align: center;
}

.smarter-item-content-button a {
    font-family: var(--third-font);
    font-size: 18.97px;
    font-weight: 400;
    color: #fff;
    width: 242px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 2.5px solid #F6DC38;
}

.smarter-item-content-button a:hover {
    color: #000000;  background-color: #F6DC38;
}

.smarter-item-image {
    width: 514px;
}

.smarter-item-image img {
    width: 100%;
}

/*=== detection area start ===*/

.detection-area {
    background-image: url(../images/detection-bg.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: left bottom;
    padding: 70px 0 100px;
}

.detection-item {
    display: flex;
    flex-wrap: wrap;
}

.detection-item-left {
    width: calc(100% - 514px);
}

.detection-item-left h2 {
    font-family: var(--secondary-font);
    font-size: 98.26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 377px;
}

.detection-item-left h2 span {
    display: block;
    color: #F6DC38;
}

.detection-item-right {
    width: 514px;
}

.detection-item-right-inner {
    display: flex;
    align-items: center;
    margin-bottom: 48px;
}

.detection-item-right > div.detection-item-right-inner:last-of-type {
    margin-bottom: 0;
}

.detection-item-right-inner div:nth-of-type(1) {
    width: 72px;
    padding-right: 16px;
}

.detection-item-right-inner img {
    max-width: 100%;
}

.detection-item-right-inner div:nth-of-type(2) {
    width: calc(100% - 72px);
}

.detection-item-right-inner h2 {
    font-family: var(--secondary-font);
    font-size: 19.69px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 6px;
}

.detection-item-right-inner p {
    font-size: 13.67px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 6px;
}

.detection-item-right-inner h6 {
    font-size: 13.67px;
    font-weight: 400;
    color: #FADB46;
}

/*=== industry area start ===*/

.industry-area {
    position: relative;
    z-index: 99;
}

.industry-item-inner ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 60px;
}

.industry-item-inner ul li a {
    font-family: var(--third-font);
    font-size: 19.98px;
    font-weight: 400;
    color: #fff;
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2.5px solid #F6DC38;
}

.industry-item-inner ul li.ui-state-active a {
    color: #000000;  background-color: #F6DC38;
}

.industry-item-inner-second {
    padding-top: 30px;
}

.industry-item-inner-third {
    padding: 40px 35px;
    border: 2px solid #f6dc38;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    background-color: #000;
}

.industry-item-inner-four {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 10px;
    padding-right: 100px;
}

.industry-item-inner-four div {
    margin-bottom: 30px;
}

.industry-item-inner-five h2 {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 25px;
}

.industry-item-inner-five h2 span {
    color: #f6dc38;
    margin-left: 20px;
}

.industry-item-inner-five p {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
}

.industry-item-inner-six {
    text-align: center;
}

.industry-item-inner-six h2 {
    font-size: 28px;
    font-weight: 400;
    color: #f6dc38;
    margin-bottom: 5px;
}

.industry-item-inner-five p {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
}

.industry-item-inner-seven {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
}

.industry-item-inner-eight {
    width: 42%;
}

.industry-item-inner-nine {
    margin-bottom: 30px;
}

.industry-item-inner-nine h3 {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
}

.industry-item-inner-nine ul li {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 8px;
}

.industry-item-inner-nine ul li::before {
    content: '';
    position: relative;
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    display: block;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #f6dc38;
    margin-right: 16px;
}

.industry-item-inner-ten {
    padding: 20px;
    border: 1px solid #002a49;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.industry-item-inner-ten h4 {
    font-size: 18px;
    font-weight: 400;
    color: #005c79;
    margin-bottom: 16px;
}

.industry-item-inner-ten p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.industry-item-inner-eleven {
    width: 58%;
    padding-left: 65px;
}

.industry-item-inner-twelve {
    padding: 25px 20px;
    border: 1px solid #f6dc38;
}

.industry-item-inner-twelve h3 {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
}

.industry-item-inner-twelve ul li {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    display: flex;
    align-items: center;
    margin-bottom: 7px;
}

.industry-item-inner-twelve ul li span {
    width: 35px;
    flex: 0 0 35px;
    height: 35px;
    color: #000;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    background-color: #f6dc38;
}















.industry-item-inner-third img {
    width: 100%;
}

.industry-shadow-image {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.industry-shadow-image img {
    max-width: 100%;
}

/*=== studies area start ===*/

.studies-area {
    padding-top: 135px;
    position: relative;
    z-index: 91;
}

.studies-item {
    display: flex;
    flex-wrap: wrap;
}

.studies-item-left {
    width: calc(100% - 990px);
    position: relative;
}

.studies-item-left h2 {
    font-family: var(--secondary-font);
    font-size: 160.6px;
    font-weight: 700;
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 80px;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    direction: rtl;
    height: 1200px;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.studies-item-left h2 span {
    color: #F8DB40;
}

.studies-item-right {
    width: 990px;
    position: relative;
}

.studies-item-right-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 90px;
    grid-row-gap: 65px;
}

.studies-item-right-inner-third {
    padding: 21px 0;
    border-top: 1px solid #f6dc37;
    text-align: center;
}

.studies-item-right-inner-third h2 {
    font-size: 31.32px;
    font-weight: 500;
    color: #F8DB40;
}

.studies-item-right-inner-four {
    width: 100%;
}

.studies-item-right-inner-five {
    text-align: center;
    padding-top: 25px;
}

.studies-item-right-inner-five a {
    font-size: 21.63px;
    font-weight: 400;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 45px;
    background-color: #F8DB40;
    margin: 0 auto;
}

.studies-item-right-inner-five a:hover {
    opacity: 0.8;
}

.studies-item-right-arrow {
    position: absolute;
    top: 50%;
    left: -55px;
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
}

.studies-item-right-arrow img {
    max-width: 100%;
    cursor: pointer;
}

.studies-item-right-arrow-second {
    left: auto;
    right: -43px;
}















/*=== faq area start ===*/

.faq-area {
    padding-top: 96px;
    position: relative;
    z-index: 9;
}

.faq-title {
    text-align: center;
    margin-bottom: 54px;
}

.faq-title h2 {
    font-family: var(--secondary-font);
    font-size: 50.6px;
    font-weight: 700;
    color: #fff;
}

.faq-title h2 span {
    color: #F6DC38;
}

.faq-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 70px;
    position: relative;
}

.faq-item::after {
    content: '';
    position: absolute;
    width: 1.2px;
    height: 101%;
    display: block;
    top: 0;
    left: 50%;
    background-color: #F8DB40;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.accordion-item {
    background-color: transparent;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #F8DB40;
}

.accordion-title {
    padding: 20px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.accordion-title h2 {
    font-size: 25.3px;
    font-weight: 700;
    color: #fff;
}

.accordion-title img {
    max-width: 100%;
    margin-left: 5px;
}

.accordion-title img:nth-of-type(2) {
    display: none;
}

.accordion-title.active img:nth-of-type(1) {
    display: none;
}

.accordion-title.active img:nth-of-type(2) {
    display: block;
}

.accordion-body {
    padding: 0px 10px 20px;
    display: none;
}

.accordion-body p {
    font-size: 14.76px;
    font-weight: 400;
    color: #fff;
}

/*=== touch area start ===*/

.touch-area {
    padding: 100px 0 130px;
    position: relative;
    z-index: 91;
}

.touch-item {
    display: flex;
    flex-wrap: wrap;
    max-width: 1170px;
    margin: 0 auto;
    padding-top: 30px;
}

.touch-item-left {
    width: calc(100% - 550px);
    padding-right: 90px;
    padding-top: 30px;
}

.touch-item-left h2 {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 25px;
}

.touch-item-left-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 25px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 20px;
}

.input-group input,
.input-group select,
.input-group textarea {
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    padding: 0 16px;
    width: 100%;
    height: 45px;
    background-color: transparent;
    border: 1px solid #000034;
    border-top: none;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    appearance: none;
}

.input-group textarea {
    height: 120px;
    resize: none;
    padding: 16px;
}

.touch-item-left form button {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ceb93b;
    border: none;
    margin-top: 40px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.touch-item-left form button:hover {
    opacity: 0.8;
}

.touch-item-right {
    width: 550px;
}

.touch-item-right-inner {
    padding: 20px;
    border: 1px solid #001f5b;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    margin-bottom: 40px;
}

.touch-item-right-inner h3 {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
}

.touch-item-right-inner ul li {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    display: flex;
    align-items: center;
    margin-bottom: 7px;
}

.touch-item-right-inner ul li span {
    width: 35px;
    flex: 0 0 35px;
    height: 35px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    background-color: #008fc0;
}

.touch-item-right-inner-second {
    padding-left: 20px;
    margin-bottom: 80px;
}

.touch-item-right-inner-second h3 {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
}

.touch-item-right-inner-second ul {
    padding-left: 20px;
}

.touch-item-right-inner-second ul li {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    display: flex;
    align-items: center;
    margin-bottom: 7px;
    position: relative;
}

.touch-item-right-inner-second ul li::before {
    content: '';
    position: relative;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: block;
    margin-right: 10px;
    background-color: #31d23e;
}

.touch-item-right-inner-third {
    padding-left: 10px;
}

.touch-item-right-inner-third h3 {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
}

.touch-item-right-inner-third ul li {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.touch-item-right-inner-third ul li span:nth-of-type(1) {
    color: #738a99;
}

/*=== footer area start ===*/

.footer-area {
    padding-top: 60px;
}

.footer-area .container {
    max-width: 1390px;
}

.footer-item {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.footer-item-logo,
.footer-item-link {
    margin-bottom: 30px;
}

.footer-item-logo img {
    max-width: 100%;
}

.footer-item-logo ul {
    display: flex;
    align-items: center;
    padding-top: 40px;
}

.footer-item-logo ul li a {
    font-size: 18px;
    color: #fff;
    margin-right: 16px;
}

.footer-item ul li a:hover {
    color: #f2dc26;
}

.footer-item-link h2 {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
}

.footer-item-link ul li a {
    font-size: 16px;
    font-weight: 400;
    color: #818792;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-item-link ul li:last-of-type a {
    margin-bottom: 0;
}

.copyright-item {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #111214;
}

.copyright-item p {
    font-size: 18px;
    font-weight: 400;
    color: #818792;
}