/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.content {
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.07) 2px,
      transparent 2px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 2px, transparent 2px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
  background-position: -2px -2px, -2px -2px, -1px -1px, -1px -1px;
}



:root {
  --primary:#E32C17;
  --secondary:#001E2C;
  --dark :#1A1A1A;
  --white:#FFFFFF;
}


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

.container{
  width:100%;
  max-width:1668px;
  padding:0 16px;
  margin:0 auto;
}

body{
  font-family: 'Iro Sans','sans-serif';
  scroll-behavior: smooth;
}

a{
  display:inline-block;
  text-decoration:none;
}

li{
  list-style:none;
}

.h1,h1{

  font-size:58px;

}

.h2,h2{
  font-size:48px;
}

.h3,h3{
  font-size:34px;
}

.h4,h4{
  font-size:24px;
}

.h5,h5{
  font-size:20px;
}

.h6,h6{
  font-size:18px;
}

p,.body-text{
  font-size:18px;
}

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

.text-secondary{
  color:var(--secondary);
}

.text-dark{
  color:var(--dark);
}

.text-white{
  color:var(--white);
}


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

.bg-secondary{
  background-color:var(--secondary);
}

.bg-dark{
  background-color:var(--dark);
}

.bg-white{
  background-color:var(--white);
}

.richtext > *:not(h1,h2,h3,h4,h5,h6){
  font-size:18px;
  line-height:1.3;
  color:var(--dark);
}

a{
 color:white
}

.richtext > strong{
   font-weight:800;
}

.richtext a{
  color:#fff !important;
}

/* Button CSS Start  */

.btn,
.hs-button{
  display:inline-block;
  font-size:16px;
  line-height:1.2;
  text-align:center;
  padding:14px 24px;
  font-weight:bold;
  font-family: 'Iro Sans','sans-serif';
}

.btn-primary,
.hs-button{
  background-color:var(--primary);
  border:2px solid var(--primary);
  color:var(--white);
  transition: all 300ms ease-in-out;
  min-width:246px;
}

.btn-primary:hover,
.hs-button:hover{
  background-color:var(--white);
  color:var(--primary);
}


/* Button CSS End  */


/* form css */

form fieldset.form-columns-2{
  display:flex;
  align-items:center;
  gap:14px;
}

form fieldset.form-columns-1 .input input.hs-input:not([type=checkbox]):not([type=radio]),
form fieldset.form-columns-1 .input textarea.hs-input:not([type=checkbox]):not([type=radio]){
   width:100%;
}

form fieldset.form-columns-2,
form fieldset.form-columns-1{
  margin-bottom:15px;
  max-width: unset;
}
.hero-banner form .input input{
  appearance: none;
  background-color: #FFFFFF;
  border: transparent;
  padding: 18px;
  appearance: none;
  border-radius:8px;
  border:1px solid var(--dark);
  width: 100%;
}

.hs-form-field{
   position:relative;
}

form .hs-error-msgs {
  position: absolute;
  font-size: 12px;
  color: #fff;
  top: 100%;
}

form .hs_error_rollup{
  display:none;
}

form fieldset.form-columns-1 .hs-form-field .input,
form fieldset.form-columns-2 .hs-form-field .input{
   margin:0;
}

.hero-banner form .input input:focus-visible,
.hero-banner form .input input:focus{
  outline: none;
}
.hero-banner form .actions .hs-button{
  font-size:16px;
  line-height:1.1;
  color:var(--white);
  padding:16px 24px; 
  border:2px solid var(--white);
  background-color:transparent;
  font-family: 'Iro Sans','sans-serif';
  min-width: 180px;
}

.inline-block{
   display:inline-block;
}


/* end form css */

/* form css start */
.hs_contact_request_type{
   text-align:start;
}

.hs_contact_request_type .inputs-list{
  display: flex;
  flex-direction: column;
  gap: 20px;
  color:var(--white);
}

.hs_contact_request_type .inputs-list .hs-form-checkbox label{
  display: flex;
  align-items: center;
  gap: 15px;
}

form .input input:focus-visible,
form .input input:focus,
form .input textarea:focus,
form .input textarea:focus-visible{
  outline: none;
}

.contact-us form .input input:not([type=checkbox]):not([type=radio]),
.contact-us form .input textarea{
  appearance: none;
  background-color: #FFFFFF;
  border: transparent;
  padding: 18px;
  appearance: none;
  border:1px solid var(--dark);
  width: 100%;
  font-family: 'Iro Sans','sans-serif';
}

.hs-fieldtype-checkbox > *:first-child{
    display:none;
}

.contact-us .hs-submit .actions .hs-button{
  font-family: 'Iro Sans','sans-serif';
  min-width: 246px;
  text-transform: uppercase;
}

.contact-us .hs-submit .actions{
  display: flex;
  justify-content: start;
}

/* form css end  */

.main-hero-content{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding:72px 0;
  gap:20px;
  position:relative;
  z-index:1;
}

.hero-content h1 div {
  display:inline-block;
}

.hero-content h3 div {
  display:inline-block;
}

.hero-content{
  grid-column: span 2 / span 2;
  max-width:800px;
}

.hero-content h1{
  margin-bottom:24px;
}

.hero-content h3{
  margin-bottom:38px;
}

.hero-form{
  grid-column: span 1 / span 1;
  padding:50px 30px;
  border-radius:20px;
  overflow:hidden;
  text-align:center;
}

.hero-form h3{
   margin-bottom:18px;
}
.hero-form p{
  font-weight:400;
}

.contact-us{
    padding:112px 0;
}

.contact-us .logo-contact{
  display:flex;
  align-items:center;
  gap:40px;
  justify-content: center;
  margin-bottom:34px;
}

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

.contact-us-header-content h3{
   color:var(--primary);
   font-weight:bold;
   margin-bottom:24px;
   line-height:1.2;
}

.contact-us-header-content{
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.contact-us .container{
   position:relative;
   z-index:5;
}

.contact-us-header-content .richtext h1,h2,h3{
   color:var(--primary);
}

.content-slider{
   padding:38px 0;
}
.content-slide strong{ 
  display:inline-block;
  color:var(--primary);
}

.content-slide{
   text-align:center;
}
.content-slide h3{
   margin-bottom:15px; 
}



@media only screen and (max-width:1199px){
  .contact-us{
    padding:40px 0;
  }
}

@media only screen and (max-width: 1200px){
  .contact-us .logo-contact{
   flex-wrap: wrap;
    row-gap:20px;
  }
}



@media only screen and (max-width: 1199px){
  .main-hero-content{
     grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .hero-content{
    grid-column: span 1 / span 1;
  }
  
  .hero-content h1{
    margin-bottom:16px;
  }
  
  .hero-content h3{
    margin-bottom:24px;
  }
  
  .main-hero-content{
     padding:48px 0;
  }
  
}

header{
  padding-top:23px;
  padding-bottom:23px;
  position: sticky;
  top:0;
  z-index:999;
  background-color:var(--white);
  box-shadow: 0px 3px 6px rgb(0 0 0 / 29%);
}

.main-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.info-contact{
  display:flex;
  align-items:center;
  gap:16px;
}

.brand-logo img{
  width: 100% !important;
  max-width: 195px;
}

.info-img img{
  max-width:60px;
}

.info-content{
  text-align:center;  
}

.info-content h5{
  font-weight: 600;
  line-height:1.1;
}

.info-content a{
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}

.centered-content{
  padding:70px 0;
}

.centered-icon{
  margin-bottom:16px;
}
.centered-icon img{
  max-width:70px;
  display: block;
  margin: 0 auto;
}

footer{
  padding:97px 0;
  background-color:var(--secondary);
}

.footer-logo{
   max-width:140px;
   margin:0 auto;
   margin-bottom:30px;
}

.footer-content h4{
   color:var(--primary);
   text-align: center;
   max-width: 290px;
   margin-left:auto;
   margin-right:auto;
   margin-bottom:40px;
}
 
.footer-content h5{
  color:var(--white);
  font-weight:bold;
  text-align: center;
  margin-bottom: 21px;
}

.social-media{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.social-media-icon{
  width:50px;
  height:50px;
}

.social-media-icon img{
  width:100%;
  height:100%;
}

.footer-content{
   padding-bottom:40px;
   border-bottom:1px solid #003F5D;
}


.footer-logo-bottom{
  display: flex;
  align-items: center;
  justify-content:space-between;
  max-width: 1180px;
  margin-left:auto;
  margin-right:auto;
  margin-top:40px;  
  gap: 20px;
}

.footer-logo-bottom a{
   display:inline-block; 
   
}

.footer-logo-bottom a img{
  max-width:85px;
}

.logo-slder-module{
  padding:100px 0;
}

.logo-slider{
  position:relative;
}

.logo-slder-module h5{
   margin-bottom:24px;
}

.logo-img img{
   max-width:110px;
}

.title-and-caption{
  max-width:400px;
  margin:0 auto;
  text-align: center;
}

.title-and-caption h5{
   line-height:1.2;
   color:var(--primary);
   font-weight:600;
}

.title-and-caption h3{
   line-height:1.2;
   color:var(--secondary);
   font-weight:bold;
   margin-bottom:23px;
}

.logo-image-with-content{
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo-image{
  max-width:160px;
  max-height:84px;
}
.logo-slider .splide__list{
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-image-with-content{
  max-width:530px;
  margin-left:auto;
  margin-right:auto;
  margin-bottom:50px;
}
.logo-slider{
  padding-left:80px;
  padding-right:80px;
}

.logo-slider .splide__arrow.splide__arrow--prev img{
  transform: rotate(180deg);
}

.logo-slider .splide__arrow img{
   width:48px;
   height:48px;
}

.logo-slider .splide__arrow{
  background-color:transparent;
}


.btn-repeater{
  display:flex;
  align-items:center;
  gap:18px;
  justify-content: center;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.tab-single-grid{
   display:inline-block;
   color:var(--dark);
}

.tab-btn{
  font-size:16px;
  font-weight:bold;
  padding:16px 24px;
  border:2px solid var(--primary);
  color:var(--primary);
  background-color:var(--white);
  border-radius:50px;
  line-height: 1;
  min-width: 182px;
  text-align: center;
}

.btn-repeater li.active .tab-btn{
  background-color:var(--primary);
  color:var(--white);
}

.tabs h5{
  color:var(--primary);
  text-align:center;
  margin-bottom:24px;
}

.tab-content{
  max-width:665px;
  margin:0 auto;
}

.image-with-content{
  max-width:532px;
  margin-left:auto;
  margin-right:auto;
  margin-bottom:56px;
  text-align: center;
}

.tab-content h3{
  color:var(--primary);
  text-align:center;
  margin-bottom:36px;
}
.tab-img{
  margin-bottom:36px;
}

.tab-img img{
  width:100%;
}

/*  accordion  */
.accordion-item:not(:last-child){
   margin-bottom:5px;
}

.accordion-collapse{
  display: none;
}

.accordion-header{ 
  cursor: pointer;
  align-items: center;
  display: flex;
  justify-content: space-between;
  background-color:var(--primary);
  padding:10px 24px;
}

.accordion-button{
  appearance: none;
  background-color: transparent;
  border: transparent;
  color:var(--white);
  font-weight:bold;
  font-size:18px;
  text-align: start;
  padding-right: 20px;
  font-family: 'Iro Sans','sans-serif';
}
.accordion-icon{
  position: relative;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.accordion-icon:before {
  content: "";
  position: absolute;
  height: 25px;
  width: 2px;
  background-color: #fff;
  transition: all 300ms ease-in-out;
}

.accordion-icon:after {
  content: "";
  position: absolute;
  height: 25px;
  width: 2px;
  background-color: #fff;
  transform: rotate(-90deg);

}

.accordion-item.show .accordion-icon:before{
    transform: rotate(90deg);
}

.accordion-body{
  background-color:var(--white);
  padding:16px 24px;
}

.accordion-body h4{
   margin-bottom:10px;
}

.accordion-body.richtext >*:not(h1,h2,h3,h4,h5,h6){
  color:var(--secondary);
}

.accordion-body > .img-grid:not(:last-child){
  margin-bottom:32px;
}

.inner-accordion-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));  
  column-gap: 80px;
}
.grid-acco-img img{
  max-height:128px;
  max-width:160px;
}
.grid-acco-img{
   margin-bottom:12px;
}

.tab-single-grid h5{
  font-size:18px;
  text-align:center;
  font-weight:400;
}

.main-two-col{
  display:flex;
  gap:20px;
  justify-content:space-between;
  align-items:start;
}

.col-content{
  width:30%;
  max-width:420px;
  margin-right:auto;
  margin-left: auto;
  align-self: center;
  padding:20px;
}

.col-img-main{
  width: calc(100vw - 35%);
}

.col-content h5{
   margin-bottom:16px;
}

.col-content h2{
   margin-bottom:23px;
}

.col-content .richtext{
  margin-bottom:24px;
}


.col-content-icon{
  max-width:200px;
  margin-bottom:23px;
}

.col-content-icon img{
  width:100%;
}

.col-img-main{
  padding: 80px;
  background-color: #F5F5EC;
}

.two-col-img img{
  width: 100%;
  max-width: 890px;
  margin: 0 auto;
  display: block;
}

.two-col-list li:not(:last-child){
   margin-bottom:20px;
  
}

.two-col-list li > h5{
   color:var(--primary);
   font-weight:700;
   margin-bottom:5px;
}

.two-col-list li  a{
  font-size:18px;
  color:var(--secondary);
  font-weight:400;
  margin-bottom:5px;
  display:block;
  transition: all 300ms ease-in-out;
}

.two-col-list li  a:hover{
  color:var(--primary);
}

.col-img-grid{
  display:grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap:5px;
}

.main-two-col-grid{
  display:flex;
  gap:20px;
  justify-content:space-between;
  align-items:start;
}

.col-content-grid{
  width:30%;
  max-width:420px;
  align-self: center;
  padding:20px 16px;
  margin-left: auto;
  margin-left: auto;
  margin-right: auto;
}

.two-col-img-grid img{
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.col-img-grid div:first-child{
  grid-column: span 1 / span 1;  
  grid-row: span 1 / span 1;
}

.col-img-grid div:nth-child(2) {
  grid-column: span 2 / span 2;  
  grid-row: span 1 / span 1;
}

.col-img-grid div:nth-child(3) {
  grid-column: span 2 / span 2; 
  grid-row: span 2 / span 2;
}
.col-img-grid div:nth-child(3) img{
  object-position: 75%;
}
    
.col-img-grid div:nth-child(4) {
  grid-column: span 3 / span 3;     
  grid-row: span 1 / span 1;
}


.col-img-main-grid{
  width: calc(100vw - 35%);
}

.col-content-grid h5{
   margin-bottom:16px;
}

.col-content-grid h2{
   margin-bottom:23px;
}

.col-content-grid .richtext{
  margin-bottom:24px;
}


.col-content-grid-icon{
  max-width:200px;
  margin-bottom:23px;
}

.col-content-grid-icon img{
  width:100%;
}

.two-col-list li:not(:last-child){
   margin-bottom:20px;
  
}

.two-col-list li > h5{
   color:var(--primary);
   font-weight:700;
   margin-bottom:5px;
}

.two-col-list li  a{
  font-size:18px;
  color:var(--secondary);
  font-weight:400;
  margin-bottom:5px;
  display:block;
  transition: all 300ms ease-in-out;
}

.two-col-list li  a:hover{
  color:var(--primary);
}

@media only screen and (min-width:992px){
  /* row-reverse css */
  .main-two-col-grid.two-row-reverse{
    flex-direction: row-reverse;
  }
}

@media only screen and (max-width:991px){
  .main-two-col-grid{
    flex-direction:column-reverse;
    row-gap:40px;
  }
  .col-content-grid{
    width:100%;
    max-width:unset;
  }

  .col-img-main-grid{
    width:100%;
  }
}

@media only screen and (min-width:992px){
  /* row-reverse css */
  .main-two-col.two-row-reverse{
    flex-direction: row-reverse;
  }
}

@media only screen and (max-width:991px){
    .col-img-main{
      padding:50px;
    }
  .main-two-col{
    flex-direction:column-reverse;
    row-gap:40px;
  }
  .col-content{
    width:100%;
    max-width:unset;
  }

  .col-img-main{
    width:100%;
  }

}

@media only screen and (max-width:767px){
  .inner-accordion-grid{
    column-gap:40px;
    grid-template-columns: repeat(2, minmax(0, 1fr));  
  }
}

@media only screen and (max-width:575px){
  
  .img-grid h4{
    text-align:center;
  }
  
  .tab-single-grid img{
    width: 100%;
    max-width: 230px;
    height: 100%;
    max-height: unset;
    display: block;
    margin: 0 auto;
  }
    
  .inner-accordion-grid{
    grid-template-columns: repeat(1, minmax(0, 1fr)); 
    column-gap:0;
  }

}


@media only screen and (max-width: 991px){
  .footer-logo-bottom::-webkit-scrollbar {
    display: none;
  }
  .footer-logo-bottom{
     overflow-x:auto;
      -ms-overflow-style: none;  /* IE and Edge */
      scrollbar-width: none
     gap:40px;
  }
  .footer-logo-bottom a img{
    width:80px;
  }
}

@media only screen and (max-width: 767px){
  .centered-content{
    padding:40px 0;
  }
}

@media only screen and (max-width: 767px){
  .info-content h5,
  .info-content a{
    font-size:16px;
  }
  .info-img img {
    max-width: 30px;
  }
  .brand-logo img{
    max-width:150px;
  }
}

@media only screen and (max-width: 991px){
  .main-hero-content{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
  .hero-content h1{
     font-size:46px;
  }
  .hero-form h3{
    font-size:24px;
  }
  
}


@media only screen and (max-width:767px){
  
  .main-header .info-img{
    display:none;
  }
  
  .hero-form{
     padding:40px 15px;
  }
  p,.body-text{
    font-size:16px;
  }
}