@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
body{
  box-sizing:border-box; 
  font-family: 'Roboto', sans-serif;
  margin: 0px;
  padding:0px;
}
body::-webkit-scrollbar {
  width: .5em;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #999;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  outline: 1px solid var(--primary-color);
}
html{
  scroll-behavior: smooth;
}
::-moz-selection {
    background:#333;
    color:#fff;
}
::-webkit-selection {
    background:#333;
    color:#fff;
}
::selection {
    background:#333;
    color:#fff;
}
:root {
  --primary-color:#cf000e;
  --secondary-color:#939598;
  --black-color:#000;
}
*,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  letter-spacing: 1px;
}
p{
    font-size: 18px;
}
ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}
a, button {
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}
a:hover
{
  text-decoration: none;
}
button:focus, input:focus, textarea:focus, select:focus, a:hover
{
  outline: none; box-shadow: none;
}
section{
  padding:70px 0;
}
.header{
  padding: 0px 0;
  position: fixed;
  top: 0px;
  z-index: 999;
  width: 100%;
}
.inlineHeader{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.leftLogo{
  width: 250px;
  transition: all 0.3s ease-in-out;
}
.leftLogo img{
  max-width: 100%;
}
.btnPhone{
  color: #fff;
  display: inline-block;
  padding:15px 35px;
  border:1px solid #fff;
  font-weight: 700;
  font-size: 16px;
  margin-right: 15px;
  border-radius: 40px;
}
.btnPhone:hover{
  background:#fff;
  color: #000;
}
.sticky .btnPhone{
  border-color: #000;
  color: #000;
}
.sticky .btnPhone:hover{
  background: #000;
  color: #fff;
}
.rightMenu {
  display: flex;
  align-items: center;
}
.rightMenu ul{
  display: flex;
  align-items: center;
  margin-right: 3vw;
}
.rightMenu ul li{
  position: relative;
}
.rightMenu ul li a{
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  color: #fff;
  padding:15px 15px;
  text-transform: uppercase;
}
.rightMenu ul li a i{
  font-size: 12px;
  transform: translateY(-2px);
}
.rightMenu ul li ul{
  position: absolute;
  display: inline-block;
  border-radius: 5px;
  padding:10px 0;
  top: 60px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  left: 0px;
  width: 300px;
  background: #fff;
}
.rightMenu ul li:hover ul{
  top: 45px;
  visibility: visible;
  opacity: 1;
}
.rightMenu ul li ul li a{
  font-size: 14px;
  padding:5px 15px;
  text-transform: capitalize;
  color: #000;
}
.rightMenu ul li ul li a:hover{
  color: var(--primary-color);
}
.btnTheme{
  display: inline-block;
  padding:15px 35px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 40px;
  text-transform: uppercase;
  font-weight: 700;
  border:none;
  font-size: 16px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.btnTheme:hover{
  color: #fff;
}
.btnTheme:after{
  content: '';
  position: absolute;
  top: 0px;
  left: auto;
  right: 0;
  width: 0px;
  height: 100%;
  transition: all 0.4s ease-in-out;
  background: var(--black-color);
  z-index: -1;
}
.btnTheme:hover:after{
  width: 100%;
  left: 0;
  right: auto;
}
.rightVideo{
  position: relative;
  z-index: 1;
}
.rightVideo:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}
.rightVideo video{
  width: 100%;
  object-fit: cover;
  height: 100vh;
}
.homeBanner{
  height: 100vh;
  overflow: hidden;
}
.cursor {
  position: fixed;
  height: 20px;
  width: 20px;
  pointer-events: none;
  border-radius: 50%;
  transition: all 0.1s ease-out;
  z-index: 999;
  transform: translateX(-50%) translateY(-50%);
}
.cursor:nth-child(1) {
  background: var(--primary-color);
  z-index: 9999;
  width: 8px;
  height: 8px;
}
.cursor:nth-child(2) {
  border:1px solid #000;
}
.leftBanner{
  padding:60px 40px 60px 60px;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.fontWeight100{
  font-weight: 100
}
.fontWeight300{
  font-weight: 300
}
.fontWeight500{
  font-weight: 500
}
.fontWeight600{
  font-weight: 600
}
.fontWeight700{
  font-weight: 700
}
.fontWeight800{
  font-weight: 800
}
.fontWeight900{
  font-weight: 900
}
.large_heading{
  font-size: 45px;
}
.extra_heading{
  font-size: 45px;
}
.heading{
  font-size: 40px;
}
.sub_heading{
  font-size: 36px;
}
.small_heading{
  font-size: 30px;
}
.heading_medium{
  font-size: 25px;
}
.title{
  font-size: 20px;
}
.titleBorder{
  position: relative;
  z-index: 1;
}
.titleBorder:before{
  content: '';
  position: absolute;
  top:50px;
  height: 10px;
  z-index: -1;
  width: 100%;
  background:#eb999e;
}
.leftBanner{
  margin-top: 40px;
}
/*.titleStroke{
    color: transparent;
  -webkit-text-stroke: 2px var(--primary-color) !important;
}*/
.circle{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border:1px dashed #222;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate 10s infinite linear;
}
.fill{
  background: var(--primary-color);
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
@keyframes rotate{
  0%{
    transform: rotate(0deg);
  }
  100%{
    transform: rotate(360deg);
  }
}
.lightGrey{
  background:#f3f3f3;
}
.header:after{
  content: '';
  position: absolute;
  top: -100%;
  transition: all 0.3s ease-out;
  left: 0px;
  height: 100%;
  width: 100%;
  z-index: -1;
  background:#fff;
}
.sticky.header:after{
  top: 0px;
}
.sticky .rightMenu ul li a{
  color: #333;
}
.sticky{
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
  border-bottom: 1px solid #e0e0e0;
}
.sticky .leftLogo{
  width: 200px;
}
.aboutLeft img{
  max-width: 100%;
  border-radius: 245px;
}
.aboutLeft{
  border:1px solid var(--secondary-color);
  padding:10px;
  border-radius: 245px;
}
.text_primary{
  color: var(--primary-color);
}
.textGrey{
  color: var(--secondary-color);
}
.rightAbout{
  padding-top: 40px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 40px;
}
.rightAbout ul{
  margin-top: 20px;
}
.rightAbout ul li{
  position: relative;
  padding:7px 20px;
  padding-left: 30px;
  font-weight: 600;
  color:#333;
  font-size:14px;
}
.rightAbout ul li a{
  color:#333;
}
.two li{
  width: calc(100% / 2);
}
.rightAbout ul li:before{
  content: '';
  position: absolute;
  width: 18px;
  border:1px dashed #222;
  border-radius: 50%;
  animation: rotate 5s infinite linear;
  left: 0px;
  top: 10px;
  height: 18px;
}
.logoIcon{
  position: absolute;
  bottom: 0px;
  right: 0px;
  opacity: .2;
}
.rightAbout ul li:after{
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-color);
  position: absolute;
  top: 14px;
  left: 4px;
}
.services1{
  height: 100vh;
  background:#f3f3f3 url(../images/bg/service1.jpg) no-repeat;
  background-attachment: fixed;
  background-size:47%;
  background-position: right; 
}
.services2{
  height: 100vh;
  background:url(../images/bg/services2.jpg) no-repeat;
  background-attachment: fixed;
  background-size:47%;
  background-position: right; 
}
.services3{
  height: 100vh;
  background:#f3f3f3 url(../images/bg/service3.jpg) no-repeat;
  background-attachment: fixed;
  background-size:47%;
  background-position: right; 
}
.services4{
  height: 100vh;
  background:url(../images/bg/service4.jpg) no-repeat;
  background-attachment: fixed;
  background-size:47%;
  background-position: right; 
}
.service{
  overflow: hidden;
  display: flex;
  align-items: center;
}
.paddingLeft{
  padding:0px 0 0 90px;
}
.paddingRight{
  padding:0px 90px 0 0px;
}
.titleCircle{
  position: relative;
  z-index: 1;
}
.titleCircle:after{
  content: '';
  position: absolute;
  width: 35px;
  border:1px dashed #222;
  border-radius: 50%;
  animation: rotate 5s infinite linear;
  left: -50px;
  top: 5px;
  height: 35px;
}
.titleCircle:before{
  content: '';
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--primary-color);
  position: absolute;
  top: 10px;
  left: -45px;
}
.serviceLeft p{
  margin-bottom: 15px;
}
.innerServicesSlider img{
  max-width: 100%;
  height: 373px;
  object-position: cover;
}
.innerServicesSlider{
  position: relative;
  z-index: 1;
}
.innerServicesSlider:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.5);
  z-index: 1;
}
.servicesText{
  position: absolute;
  left: 0px;
  width: 100%;
  text-align: center;
  bottom: 5px;
  padding: 15px;
  color: #fff;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}
.innerServicesSlider a{
  display: block;
  height: 100%;
  width: 100%;
}
.innerServicesSlider:hover:after{
  background: rgba(0,0,0,.7);
}
.innerServicesSlider:hover .servicesText{
  bottom: 0;
  top: 45%;
  padding: 0 15px;
}
.slick-slide {
  margin: 0 15px;
}
.slick-list {
  margin: 0px -15px 0px -15px;
}
.slick-next:before{
  content: '\f054' !important;
  left: 4px;
}
.slick-prev:before{
  content: '\f053' !important;
  right: -3px;
}
.slick-next:hover, .slick-prev:hover{
  background:var(--primary-color) !important;
}
.slick-next, .slick-prev{
  width: 40px !important;
  border-radius: 50px;
  height: 40px !important;
  background: #000 !important;
}
.slick-next {
  right: -1px !important;
  z-index: 99;
}
.slick-prev{
  left: 2px !important;
  z-index: 99;
}
.slick-next:before, .slick-prev:before{
  font-family: 'Font Awesome 5 Free' !important;
  font-size:22px !important;
  width: 40px !important;
  height: 40px !important;
  line-height: 44px !important;
  top: -2px !important;
  font-weight: 700;
  position: relative;
  color: #fff !important;
  opacity: 1 !important;
}
.leftElement, .rightElement{
  position: relative;
  z-index: 1;
}
.leftElement:before{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100px;
  height: 100%;
  background: var(--primary-color);
  z-index: -1;
}
.rightElement:after{
  content: '';
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100px;
  height: 100%;
  background: var(--primary-color);
  z-index: -1;
}
.leftProcess img{
  max-width: 100%;
  border-radius: 10px;
}
.procesBorder, .leftBorder{
  position: relative;
  z-index: 1;
}
.procesBorder:before{
  content: '';
  position: absolute;
  top: 37px;
  left: -28%;
  width: 50%;
  height: 2px;
  background: var(--primary-color);
}
.leftBorder:before{
  content: '';
  position: absolute;
  top: 37px;
  left: 0%;
  width: 40%;
  height: 2px;
  background: var(--primary-color);
}
.rightProcess ul{
  margin-top: 30px;
  margin-left: 10px;
  counter-reset: countNum;
}
.rightProcess ul li{
  padding:10px;
  position: relative;
  z-index: 1;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 7px;
  color: #333;
  padding-left: 55px;
  font-weight: 600;
  padding-right: 15px;
}
.rightProcess ul li:after{
  counter-increment: countNum;
  content: ""counter(countNum)"";
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  position: absolute;
  left: 0px;
  top: 10px;
  background:var(--primary-color);
  z-index: 1;
}
.rightProcess ul li:before{
  content: '';
  position: absolute;
  top: 5px;
  left: -5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border:1px dashed #333;
  animation: rotate 5s infinite linear;
  z-index: -1;
}
.rightProcess{
  margin-top:30px;
}
.missedCall{
  padding:0 20px;
}
.contactRightHome h5 a{
  color: var(--secondary-color);
}
.contactRightHome{
  margin-left: 20px;
  position: relative;
  padding-left: 20px;
}
.contactRightHome:before{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 5px;
  height: 100%;
  background: var(--primary-color);
}
.callActionBg{
  background: url(../images/bg/action.jpg) no-repeat;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.callActionBg:before{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: -1;
}
.callToAction{
  color: #fff;
}
.callToAction h4{
  line-height: 70px;
}
.btnWhite{
  display: inline-block;
  padding:15px 35px;
  background: #fff;
  color: #222;
  border-radius: 40px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.btnWhite:hover{
  color: #fff;
}
.btnWhite:after{
  content: '';
  position: absolute;
  top: 0px;
  left: auto;
  right:0;
  width: 0px;
  height: 100%;
  transition: all 0.4s ease-in-out;
  background: var(--primary-color);
  z-index: -1;
}
.btnWhite:hover:after{
  width: 100%;
  left: 0;
  right: auto;
}
.contactNumber a{
  color: #000;
}
.textHeight {
    height: 180px !important;
}
.form-floating>.form-control:focus, .form-select:focus, .form-floating>.form-control:not(:placeholder-shown)
{
  border-color: var(--primary-color);
  -webkit-box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
  box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
}
.formContact{
  margin-top:20px;
}
.formItem{
  margin-top: 20px;
}
.form-floating>label{
  padding: 1rem 1.5rem
}
.form-floating>.form-control{
  border-color: #999;
  padding-left: 1.5rem;
}
.rightCotnact img{
  max-width: 100%;
  border-radius: 245px;
}
.rightCotnact{
  padding-left: 20px;
  position: relative;
  transform: translateY(40px);
}
.footer{
  background: #000;
  padding: 60px 0 0px 0;
}
.footerLogo img{
  max-width: 60%;
}
.itemFooter p{
  margin-top: 30px;
  color: #999;
  font-size: 17px;
}
.itemFooter h4{
  color: #fff;
}
.itemFooter ul li a{
  font-size: 14px;
  color: #ccc;
  display: inline-block;
  padding:6px 5px;
}
.itemFooter ul li a:hover{
  color: #fff;
}
.itemFooter ul{
  margin-top: 20px;
}
.itemFooter p a{
  color: #fff;
}
.socialIcons ul{
  display: flex;
  align-items: center;
}
.socialIcons ul li a{
  width: 35px;
  height: 35px;
  background:#fff;
  color:#222;
  font-size: 18px;
  margin: 0 8px;
  display: inline-block;
  line-height: 26px;
  text-align: center;
  border-radius: 50%;
}
.socialIcons ul li a:hover{
  background: var(--primary-color);
  color: #fff;
}
.extraMenu{
  margin-top: 40px;
  border-top:1px solid #333;
  padding-top: 20px;
}
.extraMenu ul{
  display: flex;
  align-items: center;
  justify-content: center;
}
.extraMenu ul li a{
  font-size: 14px;
  color: #ccc;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding: 5px 10px;
}
.extraMenu ul li a:hover{
  color:#fff;
}
.copyRight{
  background:#fff;
  padding:10px 0;
  margin-top: 20px;
}
.copyRight p{
  font-size: 15px;
  font-weight: 500;
}
.copyRight p a{
  color: var(--primary-color);
}
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -200px;
  right: 10px;
  color: #fff;
  background-color: var(--primary-color);
  z-index: 999;
  width: 45px;
  text-align: center;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  font-size: 18px;
  -webkit-transition: .9s;
  transition: .9s;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
  box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
}
.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 50px;
}
.innerLogo{
  display: none;
}
.shortBanner{
  height: 90vh;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.shortBanner:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background:rgba(0,0,0,0.5);
  z-index: -1;
}
.bannerTitle{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 70vw;
  margin:0 auto;
}
.bannerTitle h1{
  text-transform: uppercase;
}
.bannerTitle p{
  color: #fff;
  margin-top: 15px;
  line-height: 40px;
}
.shape
{
  width: 100%;
  position: relative;
  top: auto;
  overflow: hidden;
  margin-top: -180px;
  left: 0;
  right: 0;
  z-index: 1;
  transform: translateZ(0);
}
.nectar-shape-divider {
  width: 100%;
  left: 0;
  bottom: 0;
  height: 100%;
  position: absolute;
}
.nectar-shape-divider-wrap[data-style="curve_opacity"] svg path:nth-child(1), .nectar-shape-divider-wrap[data-style="curve_opacity"] svg path:nth-child(2) {
  display: none;
}
.nectar-shape-divider path:last-child {
  fill: #fff;
}
.subTitle{
  padding:5px 20px;
  background: var(--primary-color);
  text-align: center;
  margin-top: 20px;
  color: #fff;
  position: relative;
}
.centerText h2{
  line-height: 65px;
}
.itemWhy{
  border:1px solid #e0e0e0;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
  padding:30px;
  position: relative;
  padding-bottom: 30px;
  border-radius: 5px;
  height: 100%;
}
.itemWhy:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
  width: 0px;
  height: 3px;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  background: var(--primary-color);
  transition: all 0.3s ease-in-out;
}
.itemWhy:hover:after{
  width: 100%;
  opacity: 1;
}
.iconWhy{
  background:#ffedea;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  padding:15px;
  margin:0 auto;
}
.iconWhy img{
  max-width: 100%;
}
.itemWhy h3{
  margin-top: 30px;
}
.btnCall{
  display: inline-block;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 600;
  padding:10px;
  color:var(--primary-color);
  text-transform: uppercase;
  position: relative;
}
.btnCall i{
  color: #fff;
  transform: translate(-2px, 1px);
  margin-right: 25px;
}
.btnCall:after{
  content: '';
  position: absolute;
  top: 0px;
  left: -5px;
  width: 43px;
  height: 100%;
  background: var(--primary-color);
  border-radius: 40px;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
.btnCall:before{
  content: '';
  position: absolute;
  top: -4px;
  left: -10px;
  width: 53px;
  height: 120%;
  border-radius: 40px;
  border:1px dashed #333;
  z-index: -1;
  animation: rotate 10s infinite linear;
}
.btnCall:hover{
  color: #000;
}
.btnCall:hover:after{
  background: #000;
}
.leftSub{
  margin-top: 30px;
  position: relative;
}
.webList ul li{
  font-size: 22px;
}
.webList ul{
  display: flex;
  flex-wrap: wrap;
}
.webList ul li{
  width: calc(100%/3 - 10px);
}
.zIndex{
  z-index: 1;
}
.itemDesign{
  border-radius: 10px;
  height: 100%;
  margin-bottom: 30px;
}
.iconDesignItem {
  width: 100px;
  margin-bottom: 10px;
}
.iconDesignItem img{
  max-width: 100%;
}
.leftContent h5{
  font-size: 28px;
  line-height: 38px;
}
.actionBg{
  background: url(../images/bg/action.jpg) no-repeat;
  background-attachment: fixed;
  background-size:cover;
  position: relative;
  z-index: 1;
}
.actionBg:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(0,0,0,.7);
}
.actionBg h3{
  line-height: 65px;
}
.bgWhite{
  background: #fff;
}
.leftContent .rightProcess ul li{
  font-size: 15px;
}
.itemContact{
  padding:60px 40px;
  height: 100%;
}
.bg1{
  background: #fff;
}
.bg2{
  background: #F4F4F4;
}
.bg3{
  background: #E4E4E4;
}
.iconContact{
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  margin:0 auto 40px;
}
.iconContact img{
  max-width: 100%;
}
.itemContact .small_heading{
  font-size: 26px;
}
.itemContact p a{
  color: #333;
}
.missionItem{
  padding:40px;
  border-radius: 10px;
  background:#fff;
  height: 100%;
}
.itemAbout{
  margin-bottom: 20px;
}
.itemCtv{
  padding:15px 15px 10px;  
  background: -moz-linear-gradient(top,  rgba(0,0,0,0.26) 0%, rgba(0,0,5,0) 66%, rgba(0,0,0,0) 100%);
  background: -webkit-linear-gradient(top,  rgba(0,0,0,0.26) 0%,rgba(0,0,5,0) 66%,rgba(0,0,0,0) 100%);
  background: linear-gradient(to bottom,  rgba(0,0,0,0.26) 0%,rgba(0,0,5,0) 66%,rgba(0,0,0,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#42cf000e', endColorstr='#00000000',GradientType=0 );
}
.ctvDescription{
  padding:15px;
  height: 110px;
}
.ctvImg{
  position: relative;
}
.ctvImg img{
  max-width: 100%;
}
.numberItem{
  position: absolute;
  bottom:10px;
  left: 15px;
  z-index: 1;
  color: rgba(255,255,255,.7);
}
.titleBorderRed{
  position: relative;
  z-index: 1;
}
.titleBorderRed:after{
  content: '';
  position: relative;
  width: 100%;
  height: 3px;
  position: absolute;
  bottom:0px;
  right: 0px;
  background: var(--primary-color);
}
.heightAuto{
  height: auto;
}
.imgRightDisplay{
  margin-top: 40px;
  padding-right: 20px;
}
.borderheading{
  border-bottom:2px solid var(--primary-color);
  text-transform: uppercase;
  color: var(--primary-color);
  padding:15px;
}
.customHeight{
    height:80px;
}
.headerContact{
    padding-top:25px;
    margin-top:25px;
}
.headerContact img{
    width:170px;
}
.headerContact ul li{
    padding:5px;
    padding-left:18px;
    font-size:14px;
    position:relative;
    z-index:1;
    padding-left: 25px;
}
.headerContact ul li a{
    font-size:14px;
    padding:0px;
    text-transform: lowercase;
}
.headerContact ul li:after{
    position:absolute;
    left:0px;
    font-size:15px;
    font-family: "Font Awesome 5 Free";
    font-weight:900;
    color:var(--primary-color);
}
.headerContact ul .map:after{
    content: "\f3c5";
    top:5px;
}
.headerContact ul .phone:after{
    content: "\f095";
    top:6px;
}
.headerContact ul .mail:after{
    content: "\f0e0";
    top:6px;
}
.socialIconsHead{
    margin-top:25px;
}
.socialIconsHead ul{
    display:flex !important;
    align-items:center;
    justify-content:center;
}
.socialIconsHead li{
    padding:0px !important;
}
.socialIconsHead li a{
    color:#333;
    margin:0 !important;
    padding:5px 10px !important;
}
.socialIconsHead li a i{
    color:#333;
    font-size:18px !important;
}
.rightProcess h4{
  margin-top: 40px;
}

.textGrey2{
  color: #666;
}
.itemIndustry{
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.itemIndustry img{
  max-width: 100%;
  transition: all 0.3s ease-out;
  border-radius: 10px;
}
.industryName{
  position: absolute;
  bottom:  0px;
  left: 0px;
  padding:20px;
  border-radius: 0 0 10px 10px;
  width: 100%;
  background: linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(0,0,0,.5) 51%,rgba(0,0,0,.5) 64%,rgba(0,0,0,.5) 100%); 
}
.itemIndustry:hover img{
  transform: scale(1.2);
}
.height2{
  height: 160px;
}
.height2 img, .height3 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.height3{
  height: 100%;
}
.inlineWhy{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.itemWhySo{
  width: calc(100% / 3 - 20px);
  margin:0 10px;
  margin-bottom: 20px;
}
.itemWhySo img{
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  max-width: 100%;
}
.whyTitle{
  background:#fff;
  padding:10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.iconPhase{
  width: 60px;
  height: 60px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
}
.bgPrimary{
  background: var(--primary-color);
}