@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@200;300;400;500;600;700;900&family=Red+Hat+Display:wght@400;500;600;700;800;900&display=swap');
body{
  box-sizing:border-box; 
  font-family: 'DM Sans', 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: #000;
  outline: 1px solid #000;
}
html{
  scroll-behavior: smooth;
}
:root {
  --primary-color:#AD0101;
  --secondary-color:#3383c3;
  --black-color:#212121;
}
*,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}
p{
  font-size: 16px;
  color: #222;
}
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 70px;
}
.fontHeading{
  font-family: "Red Hat Display",sans-serif;
}
.inlineHeader{
  display: flex;
  padding:0px 0;
  align-items: center;
  justify-content: space-between;
}
.large_heading{
  font-size:55px;
  line-height: 60px;
}
.heading{
  font-size: 40px;
  line-height: 55px;
}
.sub_heading{
  font-size: 34px;
}
.small_heading{
  font-size: 24px;
}
.title{
  font-size: 20px;
}
.text{
  font-size: 18px;
}
.fontWeight300{
  font-weight: 300;
}
.fontWeight400{
  font-weight: 400;
}
.fontWeight500{
  font-weight: 500;
}
.fontWeight600{
  font-weight: 600;
}
.fontWeight700{
  font-weight: 700;
}
.fontWeight800{
  font-weight: 800
}
.fontWeight900{
  font-weight: 900;
}
.text_primary{
  color: var(--primary-color);
}
.text_secondary{
  color: var(--secondary-color);
}
.text_black{
  color: var(--black-color);
}
.bgPrimary{
  background: var(--primary-color);
}
.bgSecondary{
  background: var(--secondary-color);
}
.bgBlack{
  background: var(--black-color);
}

.leftLogo{
  width: 220px;
}
.leftLogo img{
  max-width: 100%;
}
.rightMenu ul{
  display: flex;
  align-items: center;
}
.rightMenu ul li{
  position: relative;
}
.rightMenu ul li a{
  display: inline-block;
  padding:10px 15px;
  color: #222;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.rightMenu ul li a:hover{
  color: var(--primary-color);
}
.rightMenu ul li a i{
  font-size:13px;
}
.rightMenu ul li ul{
  position: absolute;
  top: 70px;
  visibility: hidden;
  opacity: 0;
  width: 300px;
  display: block;
  background:#fff;
  padding:10px;
  border-radius: 10px;
  border-bottom: 2px solid var(--primary-color);
  transition: all 0.2s ease-in-out;
  z-index: 9;
}
.rightMenu ul li ul li a{
  font-size: 15px;
  padding:5px 15px;
  text-transform: capitalize;
}
.rightMenu ul li:hover ul{
  top: 55px;
  visibility: visible;
  opacity: 1;
  top: 55px;
  z-index: 9;
}
.btnHeader a{
  display: inline-flex;
  align-items: center;
  border:1px solid var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  color: #333;
  padding: 10px 20px;
}
.btnHeader a span{
  display: inline-block;
  transition: all 0.5s ease-in-out;
  padding:6px 10px;
  border-radius: 5px;
  margin-right: 10px;
  background: var(--primary-color);
  color: #fff;
}
.btnHeader a:hover{
  background: var(--primary-color);
  border-color: transparent;
  color:#fff;
}
.btnHeader a:hover span{
  background: #fff;
  color: var(--primary-color);
}
.bannerSlider img{
  width: 100%;
  height:100vh;
  transition: all 0.3s ease-in-out;
  object-fit: cover;
}
.carousel-item.active img{
  transform: scale(1);
  animation: zoomer 7s ease-in-out;
}
@keyframes zoomer{
  to{
    transform: scale(1.1);
  }
}
.carousel-caption{
  left: 0px;
  width: 100%;
  top: 0px;
  bottom: auto;
  padding: 0 10vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: rgba(0,0,0,.7);
}
.btnBanner a{
  display: inline-block;
  padding:12px 25px;
  border:2px solid transparent;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 17px;
  font-weight: 700;
  margin-top: 30px;
  background: var(--primary-color);
}
.btnBanner a:hover{
  background: transparent;
  border-color: #fff;
}
.leftAbout span, .leftHeadingBorder{
  position: relative;
  padding-left: 30px;
  display: inline-block;
  z-index: 1;
}
.leftAbout span:before, .leftHeadingBorder:before{
  content: '';
  position: absolute;
  top: 0px;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--primary-color);
}
.rightAboutForm{
  border-radius: 10px;
  padding:40px;
  margin-top: -160px;
  background: #fff;
  position: relative;
  z-index: 9;
}
.formItem{
  position: relative;
  margin-bottom: 10px;
}
.formItem input, .formItem textarea{
  width: 100%;
  border:none;
  border-bottom:1px solid #999;
  padding:15px;
  font-size: 15px;
  font-weight: 500;
  padding-left: 30px;
}
.formItem textarea{
  height: 100px;
}
.formItem i{
  position: absolute;
  top: 17px;
  left: 4px;
  color: var(--primary-color);
}
.formItem input::placeholder, .formItem textarea::placeholder{
  color: #999;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.formItem input:focus, .formItem textarea:focus{
  border-color: var(--primary-color);
}
.formRight{
  margin-top: 20px;
}
.btnTheme {
  display: inline-block;
  padding: 0.9rem 2.3rem;
  font-size: 16px;
  background: var(--primary-color);
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 5px;
  letter-spacing: 1px;
  color: #fff;
  border: 1px solid transparent;
}
.btnTheme:hover{
  border-color: var(--primary-color);
  background: transparent;
  color: var(--primary-color);
}
.header.stricky-fixed {
    position: fixed;
    z-index: 999;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
    width: 100%;
    background:#fff;
    -webkit-animation-name: menu_sticky;
    animation-name: menu_sticky;
    -webkit-animation-duration: 0.60s;
    animation-duration: 0.60s;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}
@-webkit-keyframes menu_sticky {
  0%   {margin-top:-150px;}
  50%  {margin-top: -130px;}
  100% {margin-top: 0;}
}
@keyframes menu_sticky {
  0%   {margin-top:-150px;}
  50%  {margin-top: -130px;}
}
.leftAbout ul{
  margin-top: 20px;
  display: flex;
}
.leftAbout ul li{
  padding:10px 20px;
  color:var(--primary-color);
  font-weight: 700;
  position: relative;
}
.leftAbout ul li:before{
  content: '';
  position: absolute;
  top: 18px;
  left: 0px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color)
}
.bgGrey{
  background: #f1f1f1;
}
.textGrey{
  color: #666;
}
.itemServiceSlider img{
  max-width: 100%;
  border-radius: 5px;
}
.serviceSlider{
  margin-top: 30px;
}
.itemServiceSlider{
  position: relative;
}
.serviceName{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  overflow: hidden;
  padding: 15px 20px;
  background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.9) 65%, rgba(0,0,0,0.9) 100%);
  background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.9) 65%,rgba(0,0,0,0.9) 100%);
  background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.9) 65%,rgba(0,0,0,0.9) 100%); 
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#e6000000',GradientType=0 ); 
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.serviceName h4{
  color: #fff;
}
.slick-slide {
      margin: 0 15px;
}
.slick-list {
    margin: 0 -15px;
}
.serviceName a{
  font-size: 16px;
  margin-top: 20px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  color: #fff;
}
.serviceName a i{
  position: relative;
  top: 3px;
  margin-left: 5px;
}
.effectBox{
  transform: translateY(35px);
  transition: all .3s linear;
}
.itemServiceSlider:hover .effectBox{
  transform: translateY(0);
}
.itemServiceSlider:hover .serviceName a{
  margin-top: 15px;
}
.slick-arrow{
  width: 65px !important;
  height:65px !important;
  border-radius: 50%;
  background:#999 !important;
  z-index: 2 !important;
}
.slick-arrow i{
  color: #fff;
  font-size: 24px !important;
}
.slick-next:before, .slick-prev:before{
  display: none;
}
.slick-next{
  right: 2% !important;
}
.slick-prev{
  left: 86% !important;
}
.slick-next, .slick-prev{
  top: -21% !important;
}
.slick-arrow:hover{
  background:var(--primary-color) !important;
}

.bg1{
  background: #3580C1;
}
.bg2{
  background: #57B640;
}
.bg3{
  background: #EE6C25;
}
.bg4{
  background: #9B2579;
}
.bg5{
  background: #F6B138;
}
.leftIndustries{
  padding-right: 20px;
  display: flex;
  flex-wrap: wrap;
}
.itemSector{
  width: calc(100% / 3 - 20px);
  border-radius: 5px;
  margin:0 10px 20px 10px;
  transition: all 0.3s ease-in-out;
  text-align: center;
  padding:35px 20px;
}
.itemSector p{
  margin-top: 10px;
  color: #fff;
}
.iconSector{
  width: 70px;
  margin: 0 auto;
}
.iconSector img{
  max-width: 100%;
  filter: brightness(0) invert(1);
}
.itemSector:hover{
  transform: scale(1.1);
}
.callBtn{
  margin-top: 15px;
}
.callBtn a{
  display: inline-flex;
  align-items: center;
}
.btnPhone{
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  font-size: 20px;
  color: #fff;
  border-radius: 50%;
  margin-right: 15px;
}
.callBtn p{
  font-weight: 700;
  text-transform: uppercase;
  color: #444;
  font-size: 17px;
}
.bgRatio{
  background: url(../images/bg/number-ratio.webp) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}
.bgRatio:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background:rgba(0,0,0,0.5);
  z-index: -1;
}
.itemNumber h3{
  color: #fff;
}
.itemNumber p{
  color: #fff
}
.leftManagement img{
  max-width: 100%;
}
.leftManagement{
  position: relative;
  z-index: 1;
}
.expertBlock{
  position: absolute;
  right: -40px;
  bottom: -30px;
  padding: 60px 30px 60px 50px;
  width: 290px;
  background: var(--primary-color);
}
.expertBlock h4{
  color: #fff;
}
.rightManagement ul{
  margin-top: 15px;
}
.rightManagement ul li{
  padding:5px 15px;
  padding-left: 25px;
  font-size: 18px;
  font-weight: 600;
  position: relative;
}
.rightManagement ul li:before{
  content: '';
  position: absolute;
  top: 14px;
  left: 0px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
}
.imgLogo{
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 350px;
}
.imgLogo img{
  max-width: 100%;
  opacity: .1;
}
.itemWorkHow{
  background: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 3px 60px rgba(0,0,0,.04);
  height: 100%;
  -ms-box-shadow: 0 3px 60px rgba(0,0,0,.04);
  box-shadow: 0 3px 60px rgba(0,0,0,.04);
}
.itemWorkHow img{
  max-width: 100%;
}
.contentWork{
  padding: 40px 30px;
  text-align: center;
}
.contentWork a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 21px;
  margin-top: 20px;
  font-weight: 700;
  color: var(--black-color);
  z-index: 1;
}
.contentWork a span{
  position: relative;
  z-index: 1;
}
.contentWork a span:after{
  content: '';
  width: 0px;
  height: 3px;
  background: var(--black-color);
  position: absolute;
  bottom:-5px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}
.contentWork a:hover span:after{
  width: 100%;
}
.callAction{
  background:url(../images/bg/bg-call-action.webp) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}
.callAction:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background:rgba(0,0,0,0.5);
  z-index: -1;
}
.itemBlog img{
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}
.imgBlog{
  overflow: hidden;
}
.blogContent {
  margin-top: 15px;
}
.blogContent ul{
  display: flex;
}
.blogContent ul li{
  color: #666;
  font-size: 14px;
  font-weight: 600;
  padding:0 10px;
  position: relative;
}
.blogContent ul li:after{
  content: '';
  position: absolute;
  top: 50%;
  right: 0px;
  width: 1px;
  height: 12px;
  background: #666;
  transform: translateY(-50%);
}
.blogContent ul li:last-child:after{
  display: none;
}
.itemBlog:hover img{
  transform: scale(1.1);
}
.itemBlog h3{
  color: #222;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 60px;
}
.itemBlog:hover h3{
  color: #666;
}
.rightAc{
  text-align: right;
}
.rightAc a{
  display: inline-block;
  font-weight: 600;
  padding:15px 25px;
  text-transform: uppercase;
  margin-right: 10px;
  font-size: 14px;
  letter-spacing: 1px;
}
.btnWhite{
  background: #fff;
  color: #000;
}
.btnWhiteBorder{
  border:1px solid #fff;
  color: #fff;
}
.btnWhiteBorder:hover{
  border-color: transparent;
  background: #fff;
  color: #000;
}
.leftContact {
  padding: 40px;
  background: url(../images/bg/left-contact.jpg) no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
}
.leftContact:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(0,0,0,.7);
  border-radius: 10px;
}
.leftContact p {
  color: #fff;
  margin: 5px 0;
  font-weight: 500;
}
.leftContact p a {
  color: #fff;
}
.socialLinks ul {
  display: flex;
  margin-top: 20px;
  justify-content: center;
  align-items: center;
}
.socialLinks ul li a {
  width: 40px;
  height: 40px;
  margin: 0 5px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid #fff;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  color: #fff;
}
.address:after {
  content: "\f3c5";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  color: #fff;
  top: 0px;
  left: 0px;
}
.phone:after {
  content: "\f879";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  color: #fff;
  top: 0px;
  left: 0px;
}
.email:after {
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  color: #fff;
  top: 0px;
  left: 0px;
}
.address, .phone, .email {
    position: relative;
    padding-left: 30px;
}
p.address strong, p.phone strong, p.email strong{
  font-size:18px;
}
.rightContactForm {
    padding: 30px;
    padding-right: 50px;
}
.formBlock {
    margin-top: 30px;
}
.form-floating>.form-control{
  border-radius: 0px;
}
.formBlock .form-floating>.form-control:focus, .formBlock .form-select:focus, .form-control:focus {
    outline: none;
    box-shadow: none;
}
.formBlock .formItem .textHeight {
  height: 130px !important;
}
.footer{
  background:#222;
  padding:60px 0;
  padding-bottom: 20px;
}
.footer p{
  color: #999;
}
.socialLinks ul li a:hover {
  background: #fff;
  color: #000;
  border-color: transparent;
}
.shortBanner{
  height: 450px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.shortBanner:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: -1;
}
.text_grey{
  color: #555;
}
.rightService{
  position: relative;
  padding-left: 30px;
  height: 100%;
}
.rightService img{
  border-radius: 160px 10px 10px 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rightService:after{
  content: '';
  position: absolute;
  top: -20px;
  left: 0px;
  width: 95%;
  height: 100%;
  background: var(--secondary-color);
  border-radius: 160px 10px 10px 10px;
  z-index: -1;
}
.contactPhone{
  display: inline-flex;
  align-items: center;
  margin-top: 25px;
}
.iconPhone{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background:var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 20px;
  justify-content: center;
}
.contactPhone p{
  margin-left: 15px;
  text-transform: uppercase;
}
.listCheck{
  flex-wrap: wrap;
}

.itemSecurityServices{
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
  border-radius: 20px;
}
.imgSecurity{
  overflow: hidden;
}
.imgSecurity img{
  max-width: 100%;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}
.servicesDetails{
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.6);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column
}
.servicesDetails h4{
  color: #fff;
}
.serviceDescription p{
  color: #fff;
  font-weight:600;
  margin-top: 15px;
}
.serviceDescription{
  transform: translateY(135px);
  transition: all 0.3s ease-in-out;
}
.itemSecurityServices:hover .serviceDescription{
  transform: translateY(0);
}
.itemSecurityServices:hover .imgSecurity img{
  transform: scale(1.2);
}
.leftImgWhy{
  position: relative;
  z-index: 1;
}
.leftImgWhy:before{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
  width: 45%;
  height: 100%;
  background: url(../images/why-choose.jpg) no-repeat;
  background-size:cover;
}
.circleCheck{
  margin-top: 20px;
}
.circleCheck li{
  position: relative;
  z-index: 1;
  padding:8px 10px;
  font-size: 18px;
  font-weight: 600;
  padding-left:35px;
}
.circleCheck li:before{
  content: "\f00c";
  position: absolute;
  top: 11px;
  left: 0px;
  width: 20px;
  height: 20px;
  font-size: 12px;
  border-radius: 50%;
  background:var(--primary-color);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color:#fff;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mainForm{
  margin-top: 30px;
}
.mainForm .form-floating>.form-control:focus, .mainForm .form-select:focus, .mainForm .form-floating>.form-control:not(:placeholder-shown)
{
  border-color: var(--secondary-color);
  -webkit-box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
  box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
}
.messageHeight{
  height: 150px !important;
}
.borderLeftImg{
  padding-left: 35px;
  position: relative;
}
.borderRightImg{
  padding-right: 35px;
  position: relative; 
}
.borderRightImg:after{
  content: '';
  right: 0px;
  width: 15px;
  height: 100%;
  position: absolute;
  top: 0px;
  background:var(--secondary-color);
}
.borderLeftImg:after{
  content: '';
  left: 0px;
  width: 15px;
  height: 100%;
  position: absolute;
  top: 0px;
  background:var(--secondary-color);
}
.leftHomeContact img{
  max-width: 100%;
}
.leftHomeContact{
  padding: 50px 0 50px 50px;
  position: relative;
  z-index: 1;
}
.leftHomeContact:before{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  background:#57B640;
  width:30%;
  height: 100%;
  z-index: -1;
}
.footerLogo{
  width: 200px;
  margin-bottom: 20px;
}
.socialLink{
  margin-top: 25px;
  display: flex;
}
.socialLink li a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border:1px solid #999;
  color: #ccc;
  margin-right: 10px;
}
.socialLink li a:hover{
  background: var(--primary-color);
  border-color: transparent;
  color: #fff;
}
.footerAbout{
  padding-right: 20px;
}
.innerFooter h4{
  color: #ccc;
  letter-spacing: 1px;
}
.innerFooter ul{
  margin-top: 25px;
}
.innerFooter ul li a{
  color: #999;
  display: inline-block;
  padding:8px 15px;
  font-size:16px;
  font-weight: 600;
  position: relative;
}
.innerFooter ul li a:before{
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 2px;
  left: 0px;
  background:#999;
}
.innerFooter ul li a:hover{
  color: #fff;
}
.innerFooter p a{
  color: #ccc;
}
.innerFooter p a:hover{
  color: #fff;
}
.copyright{
  margin-top: 40px;
  padding-top:20px;
  text-align: center;
  border-top:1px solid #666;
}
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 20px;
  color: #fff;
  background-color: var(--secondary-color);
  z-index: 999;
  width: 30px;
  text-align: center;
  height: 30px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  font-size: 16px;
  -webkit-transition: .9s;
  transition: .9s;
  overflow: hidden;
}
.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}
.facilities{
  height: 100%
}
.facilities img{
  height: 100%;
  object-fit: cover;
}
.whySec{
  background-image: url(../images/bg/why-bg.jpg);
  background-size:cover; 
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}
.whySec h3, .whySec p{
  color: #fff;
}
.whySec:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: -1;
}
.btnOutlinePrimary{
  display: inline-block;
  padding:10px 20px;
  border-radius: 40px;
  border:1px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}
.btnOutlinePrimary:hover{
  background:var(--primary-color);
  color: #fff;
}
.leftTraffic ul li{
  padding:7px 20px;
  color:#333;
  font-weight: 700;
  font-size: 15px;
  position: relative;
}
.leftTraffic ul li:before{
  content: '';
  position: absolute;
  top: 14px;
  left: 0px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #333
}
.leftProcess{
  padding:10px;
  border-radius: 10px;
}
.leftProcess img{
  max-width: 100%;
}
.rightProcess{
  padding-left: 15px;
}
.rightProcess ul{
  margin-left: 10px;
}
.rightProcess ul li{
   padding:7px 20px;
  color:#333;
  font-weight: 700;
  font-size: 15px;
  position: relative;
}
.rightProcess ul li:before{
  content: '';
  position: absolute;
  top: 14px;
  left: 0px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #333
}
.step{
  text-align: center;
}
.iconStep{
  margin: 10px auto 30px;
  width: 70px;
}
.iconStep img{
  max-width: 100%;
}
.innerForm{
  padding:40px;
  padding-bottom: 10px;
}
.form-floating>.form-control:focus, .form-select:focus, .form-control:focus{
  box-shadow:0px 2px 10px rgb(102 102 104 / 65%);
  border-color: var(--secodary-color);
  outline: none;
}
.repeatItem{
  margin-bottom: 26px; 
}
.repeatItem .form-control{
  height:60px;
  padding: 1.2rem 1.3rem;
  font-size: 14px;
}
.form-floating>label{
  font-size: 15px;
  left: 0px;
}
.textAreaHeight{
  height: 100px !important;
}
.rightContactInner ul li {
  font-weight: 600;
  color: #000;
  position: relative;
  padding: 15px;
  padding-left: 50px;
}
.leftContact ul li:before, .rightContactInner ul li:before {
  content: '';
  position: absolute;
  font-family: "Font Awesome 5 Free";
  top: 10px;
  font-size: 25px;
  left: 10px;
  font-weight: 900;
  color: #000;
}
.rightContactInner li.iconAddress:before {
    content: '\f3c5';
}
.rightContactInner ul li.iconMobile:before {
    content: '\f879';
}
.rightContactInner li.iconMail:before {
    content: '\f0e0';
}
.socialLinked ul {
    display: flex;
}
.socialLinked ul li a.facebook {
    background: #1877F2;
}
.socialLinked ul li a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    margin-right: 15px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    border-radius: 50%;
}
.socialLinked ul li a.twitter {
    background: #00acee;
}
.socialLinked ul li a.linkedin {
    background: #0072b1;
}
.socialLinked ul li a.instagram {
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}
.aboutteam{
  position: relative;
}
.aboutteam img{
  max-width: 100%;
}
.aboutteamTitle{
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.aboutteamTitle h4{
  color: #fff;
  text-transform: uppercase;
}
.itemVeriAbout{
  text-align: center;
}
.aboutIcon{
  width: 70px;
  margin:0 auto 20px auto;
}
.aboutIcon img{
  max-width: 100%;
}
#refresh_captcha, #refresh_captcha2{
    cursor:pointer;
}
#refresh_captcha i, #refresh_captcha2 i{
    position:inherit;
    font-size:20px;
}
.btn-info i{
    position:inherit;
    color:#fff;
}
#cpatchaTextBox, #cpatchaTextBox2{
    padding-left:15px;
}
.capIn{
    border-radius:3px;
    padding:10px;
    width:100%;
    border:1px solid #ced4da;
}