/* Custom CSS Variables */
:root {
    --primary-color: #DB633F;
    --secondary-color: #000;
    --primary-bg: #ECF7FF;
    --black: #000000;
    --white: #ffffff;
    --dark-grey: #506B7F;
    --primary-font: "Raleway", sans-serif;
}

.error {
    color: #F70101;
}

*{margin: 0;
padding: 0;
box-sizing: border-box;}

ul{list-style: none;}

body {
    font-family: var(--primary-font);
    color: var(--secondary-color);
    line-height: 1.5;
    overflow-x: hidden;
    font-size: 15px;
}

button,input{font-family: var(--primary-font); border: 0;}
input,textarea{border: solid 1px #C0C0C0; border-radius: 8px; padding: 12px 15px;
    font-family: var(--primary-font); font-size: 15px;
}
textarea{resize: none;}

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

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.main-wrapper p,
.main-wrapper ul{margin-bottom: 20px;
    line-height: 1.7;
}

/* global style */

.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding{ padding: 70px 0;}

.g-1{ gap: 10px !important;}
.g-2{ gap: 20px !important;}
.g-3{ gap: 30px !important;}
.g-4{ gap: 40px !important;}
.g-5{ gap: 50px !important;}
.g-10{ gap: 100px !important;}

.mb-0{margin-bottom: 0 !important;}
.mb-1{margin-bottom: 10px !important;}
.mb-2{margin-bottom: 20px !important;}
.pb-0{padding-bottom: 0 !important;}

.p-0{padding: 0px !important;}
.pt-2{padding-top: 20px !important;}

.d-flex{ display: flex !important;}
.align-items-center{ align-items: center !important; }
.justify-center{justify-content: center !important;}
.justify-between{ justify-content: space-between !important; }

.text-center{ text-align:  center !important;}

h2 b, h4 b{ color: var(--primary-color); font-weight: inherit;}
h3{font-size: 20px; margin-bottom: 20px;}
h4{font-size: 20px; font-weight: bold; margin-bottom: 20px;}

/* Header style */

header {
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.header {
    z-index: 1000;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    background-color: var(--white);
}

.header-strip{
    background-color: var(--primary-color);
    color: white;
    padding: 8px 0;
}
.header-strip a { color: var(--white);}

.contactLinks,
.socialLinks{display: flex; gap: 10px; align-items: center;}

.contactLinks a{margin-left:  6px;}
.socialLinks a img{display: block;}

.header-main{
    padding: 10px 0;
}

.header-main .logo{
    width: 55px;
}
.header-main .logo *{
    display: block;
}

.menu-container li {
    list-style: none;
}

.menu-container li a {
    color: #000;
    display: block;
    font-weight: 500;
}
.menu-container li a:hover {
    color: var(--primary-color);
}

#menu-main-menu {
    display: flex;
    gap: 3rem;
}

.menu-item-has-children {
    position: relative;
    padding-right: 13px;
}

.menu-item-has-children::after {
    display: inline-block;
    content: "";
    border: 1px solid black;
    border-top-color: transparent ;
    border-left-color: transparent ;
    transition: transform 0.2s ease;
    position: absolute;
    right: 0;
    top: 6px;
    height: 5px;
    width: 5px;
    transform: rotate(45deg);
}
.menu-item-has-children:hover::after {
    color: var(--primary-color);
}

.menu-item-has-children .menu-item-has-children::after{
    transform: rotate(-90deg);
    top: 14px;
}

#menu-main-menu > li > ul.sub-menu {
    padding-top: 20px;
}

.menu-container ul.sub-menu {
    position: absolute;
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    left: 0;
    top: 100%;
    width: 200px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.menu-container ul.sub-menu ul.sub-menu {
    left: 100%;
    top: 0;
}

.menu-container ul.sub-menu li {font-size: 14px; white-space: nowrap;}
.menu-container ul.sub-menu a{padding: 5px 0px;}

.menu-container ul.sub-menu {display: none;}
.menu-container li:hover > ul.sub-menu {display: block;}

body .btn:active,
body .btn:focus-visible {
    color: white !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 25px;
  justify-content: space-between;
}

.hamburger span {
  height: 4px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(10px, -8px);
}
/****************************************************************/
.form-message-box {
    display: none;
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    font-weight: 500;
}

.form-message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

/****************************************************************/
/* Custom Buttons */
.btn{
    color: #fff;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 25px;
    position: relative;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    line-height: 27px;
    white-space: nowrap;
}

.btn::after {
    content: "";
    display: block;
    background: white url('../images/icon-arrow-right.svg') center center no-repeat;
    background-size: 11px auto;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    transform: rotate(-45deg);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary::after {
    background-image: url('../images/icon-arrow-right-orange.svg');
}

.btn-primary:hover {
    background-color: var(--dark-grey);
    border-color: var(--dark-grey);
}

.btn-secondary {
    background-color: var(--dark-grey);
    border-color: var(--dark-grey);
    color: var(--white);
}

.btn-secondary::after {
    background-image: url('../images/icon-arrow-right-grey.svg');
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* top Banner section  */
.topBanner-section {
    padding: 80px 0;
    min-height: 474px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    position: relative;
}

.topBanner-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.55);
}

.topBanner-section>.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 40px;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-head {
    padding-bottom: 35px;
}

.section-head .section-title {
    margin: 0;
    padding: 0;
}

/* breadCrumb */

.breadcrumb-wrapper {}

.breadcrumb-wrapper>nav {
    background-color: var(--primary-color);
    border-radius: 8px;
    padding: 10px 20px;
    color: white;
}

.breadcrumb-wrapper>nav ol {
    margin: 0;
}

.breadcrumb-wrapper>nav .breadcrumb-item.active,
.breadcrumb-wrapper>nav a {
    color: white;
}

.breadcrumb-wrapper>nav .breadcrumb-item {
    font-size: 13px;
    text-transform: uppercase;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '';
    height: 10px;
    width: 10px;
    border: solid 1px white;
    border-bottom-color: transparent;
    border-left-color: transparent;
    transform: rotate(45deg) scale(0.7);
    position: relative;
    left: -6px;
    top: 5px;
    display: block;
}


.main-wrapper{padding-top: 133px;}


/* Footer style */

.footer-wrapper {
    background-color: var(--black);
    color: var(--white);
}

.footer-wrapper a{
    color: var(--white);
}

.footer-middle {
    padding: 40px 0;
}

.footer-middle .container{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-middle .container > * {
    flex: 1;
}

.footer-middle .container .footer-col-logo {
    flex: unset;
    width: 32%;
    padding-right: 50px;
}

/* .footer-middle .footer-logo img {
    mix-blend-mode: darken;
    max-width: 120px;
} */

.footer-col-logo .footer-logo {
    width: 75px;
    display: block;
    margin-bottom: 20px;
}

.footer-col-logo strong{
    font-size: 24px;
    display: block;
    line-height: 1.4;
}
.footer-middle h4 {
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: bold;
}

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

.footer-link li {
    margin-bottom: 8px;
}

.footer-middle li a {
    color: #ABABAB;
}

.footer-middle a:is(:hover, :focus) {
    color: var(--white);
}

.footer-col-contact a{
    color: #ABABAB;
}

.footer-col-contact .phoneNo{
    margin-bottom: 20px;
}
.footer-col-contact .phoneNo a{
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
}

.footer-bottom .container{
    border-top: solid 1px  #ABABAB;;
    color: #ABABAB;
    padding: 15px 0;
    font-size: 13px;
    position: relative;
    text-align: center;
}

.tag-line{
    display: inline-flex;
    margin-bottom: 12px;
    gap: 6px;
    align-items: center;
}
.tag-line::before{
    content: "";
    height: 6px;
    width: 6px;
    display: block;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.section-head .section-title h2{
    font-size: 52px;
    color: var(--secondary-color);
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
}

.section-head .section-title h2 b{
    font-weight: inherit;
    color: var(--primary-color);
}

.section-head .section-title h2.small-heading{
    font-size: 39px;
    line-height: 1.2;
}

.section-head .section-title p{
    margin: 18px 0 0;
    font-size: 17px;
}

.highlight-text{
    color: var(--primary-color);
}

/* about section */

.about-section{padding: 60px 0;}

.imageWrapper{ position: relative;}

.aboutInfo{
    margin-top: -150px;
    margin-left: 50%;
    box-shadow: 0px 5px 19px #44444429;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    z-index: 3;
    background-color: var(--white);
}
.aboutInfo p{margin-bottom: 15px;}
.aboutInfo p:last-child{margin: 0;}

.about-section .section-content{
    position: relative;
    z-index: 2;
}

.about-section .section-content::after{
    content: "";
    background: url(../images/fire-icon.png) no-repeat;
    background-size: contain;
    width: 150px;
    height: 150px;
    position: absolute;
    bottom: -65px;
    z-index: 1;
}

/* Peek section */

.defaultSlider{ }
    
.defaultSlider .slick-dots{ position: static; 
    display: flex; 
    flex: 1; 
    height: 38px;
    align-items: center;
    width: calc(100% - 100px);
    margin-top: 20px;
    margin-bottom: 0;
}
.defaultSlider .slick-dots li{ margin: 0; flex: 1;}
.defaultSlider .slick-dots li button{ width: 100%; 
    border-radius: 0; 
    height: 3px; 
    padding: 0;
    font-size: 0;
    background: #ccc;
    border: 0;
}

.defaultSlider .slick-prev,
.defaultSlider .slick-next{
    right: 48px;
    left: auto;
    bottom: 0;
    top: auto;
    transform: none;
    position: absolute;
    border: 0 none;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    background: var(--primary-color) url(../images/icon-arrow-right.svg) center center no-repeat;
    font-size: 0;
    cursor: pointer;
}

.defaultSlider .slick-prev{
    transform: rotate(180deg);
}

.defaultSlider .slick-next{
    right: 0;
}

.defaultSlider .slick-arrow.slick-disabled{
    background-color: var(--dark-grey);
    cursor: default;
}

.slick-dots li.slick-active button {
    background: var(--primary-color);
}

.slider-item {position: relative;}
.slider-item > a.slider-item-textWrapper {position: relative;}
.slider-item .slider-item-text{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 2;
    background-color: rgba(234, 89, 33, 0.7);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: all 0.5s ease;
}

.slider-item:hover .slider-item-text{
    opacity: 1;
}

.slider-item img{
    width: 100%;
    position: relative;
    z-index: 1;
    display: block;
}

/* brand section  */
.brand-section {
    padding: 40px 0;
}
.brand-section .brand-item { padding:  0 60px 0 0;}
.brand-section .brand-item img{ 
    max-height: 45px;
    height: auto;
    object-fit: contain;
    display: inline-block;
}


.light-bg{
    background-color: var(--primary-bg);
}
.viewGallery-section{
    padding: 60px 0;
}



.tabs-component .tablist-wrapper {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding: 8px 0;
  scroll-behavior: smooth;
  margin-bottom: 20px;
}

.tabs-component button {
  flex: 0 0 auto;
  padding: 10px 20px;
  background: transparent;
  border: solid 1px #506B7F;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
  color: #506B7F;
}

.tabs-component button[aria-selected="true"] {
  background: var(--primary-color);
  color: var(--white);
  border: solid 1px var(--primary-color);
}

.tabs-component button:focus {
  border: solid 1px var(--primary-color);
}

.tabs-component .defaultTab-panel {
  display: none;
  margin-top: 15px;
}

.tabs-component .defaultTab-panel.active {
  display: block;
}


.masonry-grid {
  display: flex;
  flex-wrap: wrap;
  margin: -7.5px;
}

.masonry-item {
  width: 33.3333%; /* 3-column */
  padding: 7.5px;
  box-sizing: border-box;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.whatWeDo-section {
    padding: 70px 0;
}

.whatWeDo-section .section-head{
    position: relative;
}

.whatWeDo-section .section-head::after{
    content: "";
    position: absolute;
    width: 296px;
    height: 272px;
    background: url(../images/weDo-icon.png) no-repeat;
    background-size: contain;
    top: -82px;
    left: 50%;
    z-index: 0;
}

.whatWeDo-section .section-head > *,
.whatWeDo-section .section-content{
    position: relative;
    z-index: 2;
}

.whatWeDo-section .section-title{max-width: 500px;}

.whatWeDo-gallery{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.testimonial-section{
    padding: 70px 0;
}

.testimonial-item{display: flex; gap: 40px; align-items: center; padding: 0 7rem 0 60px;}

.testimonial-item .testimonial-img{
    width: 45%;
    position: relative;
    padding: 0 0 20px 25px;
}

.testimonial-item .testimonial-img::before{
    content: "";
    width: calc(100% - 25px);
    height: calc(100% - 20px);
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #506B7F;
    border-radius: 15px;
    z-index: 2;
}

.testimonial-item .testimonial-img img{border-radius: 15px; position: relative; z-index: 2;}

.testimonial-content{flex: 1;}

.testimonial-content::before{
    content: "";
    background: url(../images/quote-icon.png) no-repeat;
    background-size: contain;
    height: 70px;
    width: 70px;
    display: block;
    margin-bottom: 12px;
}

.testimonial-quote{
    padding-bottom: 20px;
}

.testimonial-author strong{display: block; margin-bottom: 10px;}

.circle-dots .slick-dots{
    position: absolute;
    left: 10px;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.circle-dots .slick-dots button{
    border: 0;
    background-color: var(--dark-grey);
    height: 10px;
    width: 10px;
    border-radius: 50%;
    font-size: 0;
    line-height: 0;
    display: block;
    cursor: pointer;
    position: relative;
}

.circle-dots .slick-dots .slick-active button::before{
    content: "";
    position: absolute;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}


.workTogether-section{
    padding: 70px 0;
}

.workTogether-section .section-head{
    position: relative;
}

.workTogether-section .section-head::after{
    content: "";
    position: absolute;
    width: 296px;
    height: 272px;
    background: url(../images/icon-movieClipArt.png) no-repeat;
    background-size: contain;
    top: -68px;
    left: 50%;
    z-index: 0;
}

.workTogether-section .section-head > *,
.workTogether-section .section-content{
    position: relative;
    z-index: 2;
}

.contact-info{
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-info div span{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.contact-info div a{
    color: var(--black);
    font-weight: bold;
}
.contact-info div a:hover{
    text-decoration: underline;
}


/* main banner */

.main-banner{ 
    background-size: cover;
    background-position: center;
    padding: 70px 0;
    min-height: 480px;
    display: flex;
}

.main-banner.p-0{
    padding: 0;
    min-height: auto;
}

.main-banner h1{
    font-size: 50px;
    color: white;
    line-height: 1.4;
    max-width: 850px;
    margin: 0 auto 30px;
}

.main-banner .container{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.main-banner .buttons-set{
    display: inline-flex;
    gap: 20px;
}

.marquee-wrapper {
    padding: 50px 0;
}

.marquee-carousel .slick-slide{
    padding: 20px 35px 20px 0;
    font-size: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 35px;
}

.marquee-carousel .slick-slide::before{
    content: "";
    display: block;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

/* About Us Page */

.about-section .left-column{
    width: 48%;
}

.about-section .right-column{
    flex: 1;
}

.different-section{
    padding: 70px 0;
}

.light-halfBG{ position: relative;}

.light-halfBG::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 60%;
    left: 0;
    top: 0;
    background-color: var(--primary-bg);
    z-index: 0;
}

.light-halfBG > *{
    position: relative;
    z-index: 2;
}


.vision-mission-section {
    padding: 0 0 70px;
}

.vision-mission-section .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.vision-mission-section .cards:hover{
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.29);
}

.vision-mission-section .card {
  flex: 1 1 250px;

    background-position: center;
    min-height: 455px;
    background-repeat: no-repeat;
    background-size: cover;

    padding: 30px 40px;
    text-align: center;
    position: relative;
}

.vision-mission-section .card h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-size: 40px;
}

.vision-mission-section .card .highlight {
  color: #e76f51;
}

.vision-mission-section .card p {
  font-size: 16px;
  color: #000;
  margin-bottom: 20px;
  padding: 0 10px;
  font-weight: 500;
}

.vision-mission-section .card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.consultancy-section{
    padding: 70px 0;
}

.consultancy-section .section-title p{
    max-width: 500px;
}


.license-qualifications-section {
    padding: 70px 0;
}

.license-qualifications-section .section-content{
    display: flex;    
    gap: 40px;
}

.license-qualifications-section .license-left{ width: 60%; }

.default-list li{position: relative; padding-left: 16px; line-height: 1.5; margin-bottom: 7px;}
.default-list li::before{
    content: "";
    background-color: var(--primary-color);
    height: 6px;
    width: 6px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 9px;
}

/*  Safety Management */


/*Gallery Page Section*/

.gallery-block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
 }

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-block:nth-child(even) .gallery-item:nth-child(3) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-block:nth-child(even) .gallery-item:first-child {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/*Video page css*/

.Check-Out-section{
    padding: 35px 0 50px;
}

.video-search {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 10px 16px;
  width: 240px;
  background: #fff;
  gap: 8px;
}

.video-search input {
  border: none;
  outline: none;
  flex: 1;
}

.search-icon { 
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 8px;
  width: 30px;
}

.search-icon::after{
    position: absolute;
    content: "";
    width: 1px;
    height: 16px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--dark-grey);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.video-card {
  background: #fff;
}

.video-thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}

.video-thumb img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

/* .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: white;
  background: rgba(0, 0, 0, 0.5) url(../images/icon-videoPlay.png) center center no-repeat;
  background-size: 30px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
} */

.video-card a{
    color: var(--secondary-color);
}

.video-card h4 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 8px;
}

.video-card p {
  margin: 0;
}

.main-banner.small-text h1{
    font-size: 40px;
    max-width: 600px;
}

.training-section .section-content {
    display: flex ;
    gap: 40px;
}
.training-section .training-left {
    width: 60%;
}
.training-section .training-right{flex: 1;}


/* contact section */
.contact-section{position: relative; z-index: 2; padding-bottom: 100px;}
.contact-section .cotact-left{
    width: 58%;
}
.contact-right{flex: 1; border-radius: 20px;
    background-color: var(--primary-color);
    padding: 30px 25px;
}

.contact-right *,.contact-right .contact-info div a{color: white;}
.contact-right .contact-info{text-align: left;}
.contact-right .contact-info div span{ flex-direction: column; align-items: flex-start;}

.default-form{display: flex; flex-direction: column; gap: 20px;
align-items: flex-start;
}

.default-form .form-group{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
        width: 100%;
}

.default-form .form-group label{display: block; margin-bottom: 6px;}
.default-form .form-group .form-col input,
.default-form .form-group .form-col textarea{ width: 100%;}

.actionConsultancy-section{
    position: relative;
    z-index: 1;
}

.actionConsultancy-section .section-head::after{
    content: "";
    width: 270px;
    height: 180px;
    background: url(../images/icon-contactBG.png) no-repeat;
    background-size: contain;
    right: 0;
    top: -150px;
    position: absolute;
}

.checkbox-text{
    display: flex; 
    gap: 10px;
    align-items: flex-start;
}

.checkbox-text [type="checkbox"]{
    margin-top: 5px;
}

.main-banner.video-banner{
    padding: 0;
}
video.fullWidth {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.centerMode-slider{}
.centerMode-slider .slick-track{padding: 50px 0;}
.centerMode-slider .slider-item{padding: 0 10px; position: relative; z-index: 1;}
.centerMode-slider img {transition: all 0.2s ease;}
.centerMode-slider .slick-current{z-index: 2;}
.centerMode-slider .slick-current img{ transform: scale(1.4);}