:root {
  --mainColour: #CDE730;
  --secondaryColour: #0056b3;
  --tertiaryColour: #0056b3;
}

/* Site framework */
body {font-family: "Poppins", sans-serif; font-size: 14px; background: #fff; overflow-x: hidden;}
html {overflow-x: hidden; overflow-y: scroll; scroll-behavior: smooth; }
.contentDiv { min-height: 600px;}

/*System edit controls*/
.AB-editContentContainer { display: flex; align-items: flex-end; }
.AB-editing .__contentbox { z-index: 3000; }

.site_body *{box-sizing: border-box;}
.site_header{position: relative; z-index: 3000;}

/*Sticky Header*/
body.site_body.sticky .header_wrap{position: fixed; width: 100%; left: 0; top: 0;}
body.site_body.sticky .AB-parent ~ .site_header .header_wrap{top: 50px;}
body.site_body.sticky .content_wrap{margin-top: 80px;}

/* Header */
.top_header{height: 34px; padding-bottom: 3px; position: relative; background: #fff; position: relative;}
.top_header::after{content: ""; height: 3px; width: 50vw; background: #F2F7F9; position: absolute; right: 0; 
  bottom: 0;}
.top_header > div{padding:  0 10px; height: 100%; display: flex; justify-content: flex-end; 
  align-items: center; gap:15px;}
.top_menu{padding: 0; margin: 0; list-style: none; display: flex; gap:20px;}
.top_menu li{padding: 0; }
.top_menu li a{color: #000F36; font-size: 12px; line-height: 20px; font-weight: 500;}
.social{display: flex; gap:10px; align-items: center;}
.social a{height: 14px; width: 14px; background-size: contain; background-position: center; 
  background-repeat: no-repeat;}
.social a.in{background-image: url(../images/linkedin.svg);}
.social a.tw{background-image: url(../images/twitter.svg);}
.social a.fb{background-image: url(../images/facebook.svg);}

.header_wrap{height: 80px; border-bottom: 1px solid #F1F1F1; background: #fff;}
.header_wrap > div{height:100%; padding: 0 10px; display: flex; align-items: center; 
  justify-content: space-between;}
.header_right{display: flex; gap:20px; height: 100%; text-align: center;}
.header_button{display: flex; align-items: center;}
.header_button a{font-size: 13px; line-height: 30px; color: #000F36; font-weight: 500; padding: 0 10px;
  display: flex; gap:15px; background: #CDE730; border-radius: 8px; align-items: center;}
.header_button a::after{content: ""; height: 6px; width: 33px; flex-shrink: 0;
  background: url(../images/arrow.svg) center no-repeat;}

/*Menu wrap*/
.menu_wrap { display: flex; align-items: center; height:100%; }
.menu_wrap>ul { display: flex; align-items: center; gap: 20px; height: 100%; }
.menu_wrap ul { list-style: none; padding: 0; margin: 0; }
.menu_wrap ul li { list-style: none; padding: 0; margin: 0; position: relative; display: flex; align-items: center; }
.menu_wrap>ul>li { height: 100%; display: flex; align-items: center; }
.menu_wrap ul li a { color: #000F36; position: relative; font-size: 12px; transition: ease-in-out all .2s; text-align: left;}
.menu_wrap>ul>li>a { height: 100%; display: flex; align-items: center; font-size: 15px; line-height: 24px; font-weight: 500; }
.menu_wrap ul li ul { position: absolute; left: 0; top: calc(100% - 20px); background: #fff; padding: 15px; 
  width: 256px; display: flex; flex-direction: column; border: 1px solid #F1F1F1;}
.menu_wrap ul li ul li ul { left: 100%; top: 0; }
.menu_wrap ul li ul li{border-bottom: 1px solid #F2F7F9;}
.menu_wrap ul li ul li a { display: flex; align-items: center; padding: 10px 0; }
.menu_wrap ul li a:hover { color: #2C54DC;}

.menu_wrap ul li.active > a { color: #2C54DC;}
.menu_wrap ul li.menu_open > a{color: #2C54DC;}

/*Effect on sub menu*/
.main_menu ul { visibility: hidden; opacity: 0; transition: ease-in-out all .4s; transform: translateY(20px); padding: 0; z-index: -1; }
.main_menu li.has-children:hover>ul { visibility: visible; opacity: 1; z-index: 1000; transform: translateY(0); }

/*Overlay*/
.overlay { background: rgba(0, 0, 0, .6); position: fixed; top: 0; height: 100vh; width: 100%; left: 0; z-index: -1; visibility: hidden; opacity: 0; transition: ease-in-out all .4s; }
.overlay.hover { visibility: visible; opacity: 1; z-index: 999; }


/* Button Classes */
.button-primary, .button-secondary, .button-tertiary{padding: 16px 32px; font-size: 17px; font-weight: 600; 
  transition: 0.2s ease-in all; font-family: var(--secondaryFont); line-height: 1; display: inline-flex; align-items: center; 
  justify-content: center; text-decoration: none; border: 2px solid transparent; margin: 5px 10px 5px 0;}

.button-primary{color: var(--tertiaryColour); background: var(--mainColour); border-color: var(--mainColour); }
.button-primary:hover{border-color: var(--tertiaryColour); color: #fff; background:var(--tertiaryColour); }
.button-secondary{color: #fff; background: var(--secondaryColour); border-color: var(--secondaryColour);} 
.button-secondary:hover{background: var(--fourthColour); border-color: var(--fourthColour); color: #fff;}
.button-tertiary{border-color: var(--mainColour) !important; color: #fff; background: none;}
.button-tertiary:hover{color: var(--tertiaryColour); background: var(--mainColour);}

/* Footer */
.site_footer{background: #0C1A3F;}

.footer_wrap{padding: 100px 0 60px 0;}
.footer_wrap > div{padding: 0 10px; box-sizing: border-box; display: flex; gap:100px;}
.footer_wrap > div > div{width:25%;}

.footer_intro{display: flex; gap:35px; flex-direction: column;}
.footer_logo{}
.footer_numbers{display: flex; flex-direction: column; gap:5px;}
.footer_numbers a{display: flex; font-size: 14px; color: #fff;}
.footer_numbers strong{width: 90px;}
.footer_numbers span{}

.footer_wrap .social {gap:15px;}
.footer_wrap .social a{height: 23px; width: 23px;}
.footer_wrap .social a.in{background-image: url(../images/linkedin_white.svg);}
.footer_wrap .social a.tw{background-image: url(../images/twitter_white.svg);}
.footer_wrap .social a.fb{background-image: url(../images/facebook_white.svg);}

.footer_menu{display: flex; flex-direction: column; gap:10px;}
.footer_menu span{font-size: 12px; font-weight: 800; color: #fff; padding:30px 0 15px 0; 
  border-bottom: 1px solid #fff;}
.footer_menu nav{display: flex; flex-direction: column; gap:10px; align-items: flex-start;}
.footer_menu nav li{list-style: none; padding: 0; margin: 0;}
.footer_menu nav li a{font-size: 12px; line-height: 20px; color: #fff;}
.footer_menu nav li ul{display: none;}

/* Byline */
.byline_wrap{padding: 60px 0;}
.byline_wrap > div{padding:  0 10px; box-sizing: border-box; display: flex; justify-content: space-between;}
.byline_left{display: flex; gap:30px;}
.byline_left > div{color: #fff; font-size: 14px;}
.byline_left > div > a{color: #fff;}
.byline_left nav{display: flex; align-items: center; gap:30px;}
.byline_left nav li{padding: 0; list-style: none; margin: 0;}
.byline_left nav li a{color: #fff; text-transform: uppercase; font-weight: bold; font-size: 14px;}
.byline_right{font-size: 14px; font-weight: bold; color: #fff; line-height: 22px;}

/* Fonts */

a {text-decoration :none; color: #2C54DC;}
a:hover{text-decoration: none;}

h1,h2,h3,h4,h5,h6{display:block; padding: 0; margin: 0 0 10px 0; font-weight: normal; color: #000F36;}
h1{font-size: 60px; line-height: 66px;}
h2{font-size:50px; line-height: 56px;}
h3{font-size: 40px; line-height: 46px;}
h4{font-size: 30px; line-height: 36px;}
h5{font-size: 26px; line-height: 32px;}
h6{font-size: 20px; line-height: 26px;}

p {padding: 5px 0 20px 0; font-size:14px; margin: 0; color:#1A1818; line-height:22px; }

ul {list-style-position: outside; padding: 5px 0 20px 20px; font-size:14px; color:1A1818; list-style-type:disc; line-height:24px; }
ul li {padding:0 0 15px 0; line-height:20px;}
ul li a:hover{text-decoration: none;}

ol {list-style-position: outside; padding: 5px 0 20px 20px; font-size:14px; color:1A1818; list-style-type:circle; line-height:24px; }
ol li {padding:0 0 5px 0;}

hr {color:#dadbdc; background:#dadbdc; height:1px; border:0; margin-bottom:20px;}

strong{font-weight: bold;}

/*Custom Button*/
.btn_p{font-size: 13px; font-weight: 500; color: #000F36; line-height: 30px; display: inline-flex; align-items: center; gap:20px; background: #CDE730; 
  border-radius: 8px; border: 1px solid #CDE730; padding: 0 14px; margin: 5px 10px 5px 0; transition: ease-in-out all .3s;}
.btn_p::after{content: ''; height: 6px; width: 33px; background: url(../images/arrow.svg) center no-repeat;}
.btn_p:hover{background: #fff; color: #000F36;}

.hidden {display: none;}
.clear{clear: both;display: block;overflow: hidden; visibility: hidden; width: 0; height: 0;}
.full-width-fix {width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw;}

.flexslider {
	transition: all 0.3s ease-in-out 0s;
	height: auto;
}
.flex-viewport {height: 100% !important;}
.flexslider .slides {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  min-height: 100px;

}
.flexslider .slides {height: 100%;}
.flexslider .slides > li.flex-active-slide {display: flex !important; flex-direction: column}
.flexslider .slides > li > a {display: block;}

.flexslider .slides > li > img, .flexslider .slides > li > a > img {
  width: 100%;
  display: block;
  z-index: 4;
}
.flexslider .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .flexslider .slides {
  display: block;
}
* html .flexslider .slides {
  height: 1%;
}
.no-js .flexslider .slides > li:first-child {
  display: block;
}

.flexSliderContainer.arrow {
  position: relative;
}
.flexSliderContainer.arrow .flexslider {
  margin-bottom: -30px;
}
.flexSliderContainer.arrow .slides > li, .flexSliderContainer.arrow .slides > li > a {
  clip-path: polygon(0 calc(100% - 30px),calc(50% - 30px) calc(100% - 30px), calc(50% - 1px) 100%, calc(50% + 1px) 100%, calc(50% + 30px) calc(100% - 30px), 100% calc(100% - 30px),100% 0, 0 0);
  -webkit-clip-path: polygon(0 calc(100% - 30px),calc(50% - 30px) calc(100% - 30px), calc(50% - 1px) 100%, calc(50% + 1px) 100%, calc(50% + 30px) calc(100% - 30px), 100% calc(100% - 30px),100% 0, 0 0);
}

.flex-caption {display: flex; flex-direction: column; height: 100%; margin: 0 auto;}
.flex-caption > div {display: flex; flex-direction: column; justify-content: center; box-sizing: border-box; height: auto;}
.flex-caption > div.background {background: rgba(255, 255, 255, .7); padding: 20px 60px; }
.flex-caption:empty {display:none;}

.flex-caption.halign-right {align-items: flex-end; }
.flex-caption.halign-left {align-items: flex-start;}
.flex-caption.halign-center {align-items: center;}

.flex-caption.valign-top {justify-content: flex-start; }
.flex-caption.valign-center {justify-content: center;}
.flex-caption.valign-bottom {justify-content: flex-end;}

.flex-caption .fs-button{border: 1px solid #0f71b5; width: 192px; height: 50px;}
.flex-caption .fs-button a{color: #fff; font-weight: bold; width: 192px; height: 50px; display: inline-block; text-align: center; line-height: 50px;}

.flex-caption .fs-button a:hover{ background: #0f71b5; transition: ease all .5s;}

.flex-control-paging {position: absolute; bottom: 15px; display: flex; width: 100%; left: 0; align-items: center; justify-content: center; z-index: 1000}
.flex-control-paging {list-style: none; display: flex; align-items: center; margin:0; padding: 0;}
.flex-control-paging > li {padding: 0; margin: 0; font-size: 0; display: flex; align-items: center; justify-content: center;}
.flex-control-paging > li > a {width: 33px; height: 6px; border-radius: 8px; border: 1px solid #CDE730; margin: 0 6px; transition: ease-in-out all .3s;}
.flex-control-paging > li > a.flex-active {background: #CDE730;}

/*Contact Form*/

.contact-form {background: #fff; border: 1px solid #ebebeb; border-radius: 5px; padding: 10px 15px;}
.contact-form .cf-input {line-height: 30px; padding-bottom: 10px;}
.contact-form .cf-select {line-height: 30px; padding-bottom: 10px;}
.contact-form label {width: 100%; color: #49494a; font-size: 16px; font-weight: bold;}
.contact-form input, .contact-form textarea, .contact-form select {width: 100%; height: 38px; font-size: 16px; text-indent: 10px; border: 1px solid #ebebeb; border-radius: 3px; box-sizing:border-box; padding: 0 5px;}
.contact-form label span {color: #565757; font-size: 14px;}
.contact-form textarea {resize: none; height: 90px;}
.contact-form .cf-buttons {line-height: 0; font-size: 0; text-align: right; margin-top: 5px;}
.contact-form .cf-buttons a {line-height: 40px; padding: 0 35px; color: #000F36; font-size: 15px; display: inline-block; text-transform: uppercase; margin-left: 20px; font-weight: bold; border-radius: 5px; background:#CDE730; }
.contact-form .cf-reset{display: none !important;}
.contact-form .cf-validation {text-align: center; height: 0; padding: 10px 0; box-sizing: border-box; font-size: 16px; color: #ee660b; font-weight: bold; transition: all 2s ease-in-out 0s;}
.contact-form .cf-text{color: #49494a; font-size: 16px; border-bottom: 1px solid #ebebeb; padding: 10px 0 20px 0;  margin-bottom: 10px; width: 100%; font-weight: normal;}
.contact-form .denotes{float: left; font-size: 12px; color: #49494a; font-weight: bold;}
.contact-form .cf-buttons a:hover{text-decoration: none;}

.custom-button{text-align: center; margin: 20px 0;}
.custom-button a{display: block; color: #fff !important; font-size: 18px; text-transform: uppercase; line-height: 60px;}
.custom-button img{vertical-align: baseline; margin-left: 15px;}
.bg-secondary-colour{background: #89c440;}
.bg-main-colour{background: #1b75b9;}

/* -- SPACING MODULE -- */
.spacing_module { display: flex; align-items: center; justify-content: center; background: transparent; position: relative; z-index: 1; transition: 0.2s ease-in-out all; }
.spacing_module span { opacity: 0; text-align: center; font-size: 24px; font-weight: bold; transition: 0.2s ease-in-out all; }
.spacing_module.admin_logged:hover { background: #efefef; }
.spacing_module.admin_logged:hover span { opacity: 1; }

/*************Additional Modules****************/

/*Layout Block Module*/
.block_layout_module{display: flex; flex-direction: column; background: #FFFFFF;}
.block_layout_module .layout_block { margin: 0; display: flex;}
.block_layout_module .layout_image { width: 50%; padding: 100px 15px; position: relative; z-index: 5; display: flex; 
    align-items: center; justify-content: flex-end;}
.block_layout_module .layout_image img{max-width: 100%;}
.block_layout_module .layout_content { width: 50%; display: flex; position: relative; }
.block_layout_module .layout_inner { width: 570px; padding: 100px 15px; display: flex; flex-direction: column; 
    align-items: flex-start; position: relative; gap: 15px; z-index: 10; justify-content: center;}
.block_layout_module .layout_heading{display: flex; flex-direction: column; gap:10px;}
.block_layout_module .layout_heading h1 {font-size:30px; line-height:36px; position: relative; display: flex; font-weight: 800; color: #000F36;
    align-items: flex-start; margin: 0;}
.block_layout_module .layout_content :is(p, li){font-size: 13px; color: #000F36; margin: 0; line-height: 22px;}
.block_layout_module .layout_content p:last-of-type{padding: 0;}

/*Layout Button*/
.block_layout_module .layout_buttons{display: flex; align-items: center; flex: wra; gap:20px;}
.block_layout_module .layout_buttons > a{transition: ease-in-out all .3s; line-height: 30px; border-radius: 8px; font-weight: 500; padding: 0 14px;
  display: flex; gap:20px; align-items: center; color: #000F36;}
.block_layout_module .layout_buttons > a::after{content: ""; flex-shrink: 0; height: 6px; width: 34px; background: url(../images/arrow.svg) center no-repeat;} 

/*Layout Position*/
.block_layout_module .layout_pos_left { flex-direction: row-reverse;}
.block_layout_module .layout_pos_left .layout_image{justify-content: flex-start;}
.block_layout_module .layout_pos_left .layout_content { justify-content: flex-end;}
.block_layout_module .layout_pos_right .layout_content { justify-content: flex-start;}

/*Layout Theme*/
.layout_theme_grey{background: #F2F7F9;}
.layout_theme_grey .layout_buttons > a{background: #CDE730; }
.layout_theme_lime{background: #CDE730;}
.layout_theme_lime .layout_buttons > a{background: #fff; }

/*Image Button Module*/
.image_button_module{ position: relative; }
.image_button_module .ib_rows{display: flex; flex-direction: column; align-items: flex-start; width: 100%; gap:30px;}
.image_button_module .ib_row{display: flex; flex-direction: row; align-items: flex-start; width: 100%; gap:30px;}
.image_button_module .ib_block_container{flex: 1; position: relative;}
.image_button_module .ib_block{height: 365px; transition: ease-in-out all .3s; background-size: cover; background-repeat: no-repeat; 
    position: relative; background-position: center; z-index: 10; overflow: hidden;}
.image_button_module .ib_content{position: relative; z-index: 10; display: flex; flex-direction: column; gap:10px; 
   background: #000F36; padding: 20px 15px; position: absolute; right: 0; bottom: 15px; width: 335px;  
   transition: ease-in-out all .3s; }
.image_button_module .ib_title{font-size: 28px; line-height: 34px; font-weight: 800; color: #fff; display: flex; align-items: center;
  justify-content: space-between; gap:20px;}
.image_button_module .ib_title::after{content: ""; height: 42px; width: 42px; flex-shrink: 0;
  background: url(../images/plus_module.svg) center no-repeat; background-size: contain;}
.image_button_module .ib_overlay{display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start;
  transition: ease-in-out all .3s; opacity: 0; position: absolute; bottom: 15px; left: 15px; top: 15px; right: 0; padding: 20px; 
  background: rgba(0, 15, 54, .8);}
.image_button_module .ib_overlay > div{display: flex; flex-direction: column; gap:10px;}
.image_button_module .ib_overlay span{font-size: 28px; line-height: 34px; font-weight: 800; color: #fff;}
.image_button_module .ib_overlay .ib_description{font-size: 13px; line-height: 23px; color: #fff; transition: ease-in-out all .3s;
  overflow: hidden; display: -webkit-box;-webkit-line-clamp: 7;-webkit-box-orient: vertical;}
.image_button_module .ib_overlay > a{color: #000F36; font-weight: 500; padding: 0 14px; background: #CDE730; display: flex; gap:10px; 
  align-items: center; border-radius: 8px; line-height: 30px;}
.image_button_module .ib_overlay > a::after{content: ""; height: 6px; width: 34px; background: url(../images/arrow.svg) center no-repeat;}

/*Hover Effect*/
.image_button_module .ib_block_container:hover .ib_content{opacity: 0;}
.image_button_module .ib_block_container:hover .ib_overlay{opacity: 1; z-index: 10;}

/*FAQ Module*/
.faq_module { margin:20px 0; }
.faq_module>div { padding: 0;}
.faq_module .faq_items { display: flex; flex-direction: column;}
.faq_module .faq_item {padding:20px 0; border-bottom: 1px solid #000F36;}
.faq_module .faq_title { font-size: 16px; color: #000F36;  line-height: 28px; font-weight: 800; cursor: pointer; position: relative; 
  transition: ease-in-out all .3s; display: flex; align-items: center; justify-content: space-between; gap:10px;}
.faq_module .faq_inner{display: none;}
.faq_module .faq_description p { font-size: 13px; line-height: 23px; color: #000F36; }

.faq_module .faq_title::after {content: ""; height: 40px; width: 40px; background: url(../images/plus_module.svg) center no-repeat; 
    transition: ease-in-out all .3s; flex-shrink: 0; background-size: contain;}
.faq_module .faq_title.active::after {background-image: url(../images/minus_module.svg);}

/*Testimonial Module*/
.testimonial_module{position: relative; background: radial-gradient(circle, rgba(33,124,230,1) 0%, rgba(32,43,228,1) 100%);
  width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; padding: 45px 0;}
.testimonial_module > div{display:flex; flex-direction:column; gap:20px; padding: 0 15px;}

.tm_items{display: flex; align-items: center; width: 100%;}
.tm_inner{display: flex; align-items: center; gap:35px;}
.tm_image{height: 450px; width: 450px; flex-shrink: 0; background-size: contain; background-position: center; background-repeat: no-repeat;}
.tm_info{display: flex; flex-direction: column;}
.tm_description{border-bottom: 1px solid #CDE730; padding-bottom: 30px; margin-bottom: 30px; display: flex; flex-direction: column; gap:30px;}
.tm_description::before{content: ""; height: 64px; width: 64px; background: url(../images/quote.svg) center no-repeat;}
.tm_description p{font-size: 30px; line-height: 40px; font-style: italic; color: #fff; padding: 0;}
.tm_author{font-size: 30px; color: #CDE730; line-height: 40px; font-style: italic; font-weight: bold;}
.tm_source{font-size: 20px; color: #fff; text-transform: uppercase; line-height: 24px;}

.testimonial_module .swiper-wrapper{align-items: center;}
.tm_pagination{display: flex; align-items: center; justify-content: center; gap:6px;}
.tm_pagination span{height: 6px; width: 34px; border-radius: 8px; transition: ease-in-out all .3s; 
    opacity: 1; background: none; border: 1px solid #CDE730; margin: 0 !important; padding: 0;}
.tm_pagination span.active{background: #CDE730;}

/*Icon List Module*/
.icon_list_module{position: relative; width: 100vw; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; margin-top: 30px;}
.icon_list_module > div{padding: 0 15px; display: flex; flex-direction: column; gap:60px; padding: 0 300px 100px 10px; 
  background: url(../images/leaf.svg) bottom right no-repeat;}
.il_heading{margin-bottom: 0; display: flex; flex-direction: column; gap:15px; font-size: 50px; line-height: 56px; font-weight: 800; color: #2C54DC;}
.il_heading::after{content: ""; height: 7px; width:160px; background:#CDE730; }
.icon_list_module .il_items{ display: flex; flex-direction: column; gap:30px;}
.il_inner{display: flex; gap:20px; align-items: flex-start;}
.il_image{flex-shrink: 0;}
.il_image img{max-width: 40px; height: auto;}
.il_info{display: flex; flex-direction: column; gap:15px;}
.il_title{font-size: 16px; color: #000F36; line-height: 24px; font-weight: 800;}
.il_description p{font-size: 13px; color: #000F36; line-height: 23px;}
.il_description p:last-of-type{padding: 0;}

/*KPI*/
.kpi_module{background: #F2F7F9; position: relative; width: 100vw; left: 50%; right: 50%;
 margin-left: -50vw; margin-right: -50vw; padding: 100px 0 70px 0;}
.kpi_module > div{padding: 0 15px;}
.km_items{display: flex; justify-content: center; flex-wrap: wrap; row-gap: 60px;}
.km_item{padding: 0 40px; border-right: 1px solid #CBCBCB; display: flex; flex-direction: column;
  justify-content: center;}
.km_item:last-of-type{border: 0;} 
.km_inner{display: flex; flex-direction: column; gap:15px; align-items: center; width: 470px; text-align: center;}
.km_image{height: 210px; width: 210px; display: flex; align-items: center; justify-content: center;}
.km_image img{max-width: 100%; max-height: 100%; height: auto; width: auto;}
.km_info{display: flex; flex-direction: column; gap:20px; align-items: center;}
.km_title{font-size: 20px; text-transform: uppercase; color: #2C54DC; font-weight: 800; line-height: 26px;}
.km_time, .km_fraction{display: flex; gap:10px; font-weight: 800; font-size: 100px; color: #CDE730; 
   justify-content: center;}
.km_byline{color: #000F36; font-size: 16px; font-weight: 800;}

/*Tiled Gallery*/
.tiled_gallery_module{padding: 60px 0; background: #F2F7F9; position: relative; width: 100vw; left: 50%; right: 50%;
 margin-left: -50vw; margin-right: -50vw;}
.tiled_gallery_module > div{padding: 0 15px; box-sizing: border-box;}
.tg_container{display: flex; flex-direction: column; gap:30px;}
.tg_items {width: 100%;}
.tg_item {background: #fff; padding: 25px; box-sizing: border-box;}
.tg_inner{display: flex; flex-direction: column; gap:15px; cursor: pointer;}
.tg_item .tg_image{height: 260px; width: 100%; background-size: cover; background-repeat:no-repeat; 
  background-position:center; }
.tg_item .tg_caption{display: -webkit-box; -webkit-line-clamp: 1; overflow: hidden; 
  -webkit-box-orient: vertical; font-size: 13px; color: #000F36;}

.tg_pagination {display: flex; justify-content: center; align-items: center;}
.tg_pagination span{margin: 0; height: 5px; width: 32px; border: 1px solid #000F36; border-radius: 8px; opacity: 1;
  transition: ease-in-out all .3s; background:none;}
.tg_pagination span.active{background: #000F36;}

/*Infographic module*/
.infographic_module{position: relative; width: 100vw; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw;
  background: #3980D6; padding: 70px 0;}
.infographic_module > div{padding: 0 15px; box-sizing: border-box; display: flex; flex-direction: column; gap:20px;}
.infographic_module h1{display: flex; flex-direction: column; gap:20px; font-size: 48px; line-height: 52px; 
  font-weight: bold; color: #fff;}
.infographic_module h1::after{content: ""; height: 3px; width: 30px; background: #CCE530;}
.ig_inner{display: flex; justify-content: space-between; align-items: flex-start;}
.ig_step{width: 220px; display: flex; flex-direction: column; gap:10px; align-items: center; text-align: center; position: relative;}
.ig_step h4{margin: 0; font-size: 13px; line-height: 20px; color: #CCE530; font-weight: 800;}
.ig_step span{background: #2133DB; font-size: 16px; color:#fff; font-weight:800; padding:4px 8px; }
.ig_step p{padding: 0; color: #fff; font-size: 12px; line-height: 18px;}

#ig_step_1{margin-top: 79px;}
#ig_step_2{margin-top: 214px;}
#ig_step_4{margin-top: 215px;}
#ig_step_5{margin-top: 43px;}

.ig_step small{content: ""; height: 150px; width: 230px;}
.ig_step#ig_step_1 small{background: url(../images/arrow_up_curve.svg) center no-repeat; background-size: contain; position: absolute; left: 0; bottom: -55px;}
.ig_step#ig_step_2 small{background: url(../images/arrow_down.svg) center no-repeat; background-size: contain; position: absolute; left: 5px; top: -50px;}
.ig_step#ig_step_3 small{background: url(../images/arrow_up.svg) center no-repeat; background-size: contain; position: absolute; left: 5px; bottom: -50px;}
.ig_step#ig_step_4 small{background: url(../images/arrow_down.svg) center no-repeat; background-size: contain; position: absolute; left: 5px; top: -50px;}
.ig_step#ig_step_5 small{background: url(../images/arrow_up.svg) center no-repeat; background-size: contain; position: absolute; left: 5px; bottom: -50px;}

/*---------DESKTOP < 1199px---------*/

@media (min-width: 992px) {
  .footer_menu > span{pointer-events: none !important;}
  .footer_menu nav{display: flex !important;}
}

/* Responsive states */
@media only screen and (min-width: 1200px) {
  .mobile:not(.desktop-large), 
  .tablet:not(.desktop-large), 
  .desktop:not(.desktop-large) {display: none !important;}


}

/*---------DESKTOP < 1199px---------*/

@media (min-width: 992px) and (max-width:1199px) {
  .mobile:not(.desktop), 
  .tablet:not(.desktop), 
  .desktop-large:not(.desktop) {display: none !important;}

  /*Image Buttons*/
  .image_button_module .ib_rows{gap:20px;}
  .image_button_module .ib_row{gap:20px;}
  .image_button_module .ib_block{ height: 250px;}
  .image_button_module .ib_title{font-size: 20px; line-height: 26px; gap:10px;}
  .image_button_module .ib_title::after{width: 30px; height: 30px;}
  .image_button_module .ib_content{width: 285px; padding: 15px 10px;}
  .image_button_module .ib_overlay span{font-size: 16px; line-height: 20px;}
  .image_button_module .ib_overlay .ib_description{font-size: 13px; line-height: 20px;}
  .image_button_module .ib_overlay{left: 10px; top:10px; bottom:10px; padding: 10px;}
  .image_button_module .ib_overlay > div{gap:5px;}

  /*Testimonial*/
  .tm_image{width: 300px; height: 300px;}
  .tm_description p, .tm_author{font-size: 26px; line-height: 36px;}
  .tm_source{font-size: 18px;}

  /*Icon List Module*/
  .icon_list_module > div{background-size: 250px; padding-right: 250px;}
  .il_heading{font-size: 40px; line-height: 46px;}

  /*KPI Module*/
  .km_inner{width: 380px;}
  .km_time, .km_fraction{ font-size: 80px;}

  /*Tiled Gallery*/
  .tg_item .tg_image{height: 220px;}

  /*Infrographic*/
  .ig_step small{height: 156px; width: 195px;}
  #ig_step_1{margin-top: 56px;}
  #ig_step_2{margin-top: 234px;}
  #ig_step_4{margin-top: 232px;}
  #ig_step_5{margin-top: 60px;}

}

/*---------Tablet & Mobile---------*/
@media (max-width:991px){

  /*Header*/
  body.site_body.sticky .content_wrap{margin-top: 70px;}
  .header_wrap{height: 70px;}
  .top_header{height: 0;}
  .header_wrap > div{max-width: 100%;}
  .header_button a{height: 30px; width: 30px; background: url(../images/phone.svg) center no-repeat;}
  .header_button a::after{content: none;}

  /*Menu Toggle*/
  .menu_toggle{ height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;}
  .menu_toggle > div{width: 36px; height:24px; transition: ease-in-out all .3s; display: flex; flex-direction: column; justify-content: space-between;}
  .menu_toggle > div > div{height: 4px; width: 100%; background: #303B42;}
  .menu_toggle > div::before, .menu_toggle > div::after{content: ""; height: 4px; width: 100%; background: #303B42;}
  .menu_toggle.active > div{transform: rotate(90deg);}

  /*Menu*/
  .responsive_menu_wrap { position: absolute; background: #fff; top: 100%; right: 0; z-index: 1000; height: initial; width: 100%; 
    transition: ease-in-out all .3s; padding: 0; box-sizing: border-box; flex-direction: column; box-shadow: 0px 3px 6px #00000029; }
  .responsive_menu { list-style: none; padding: 0; margin: 0; max-height: 320px; overflow-y: scroll;}
  .responsive_menu li { list-style: none; padding: 0; margin: 0; position: relative;}
  .responsive_menu li a { font-size: 12px; text-transform: capitalize; color: #010F36; font-weight: 500; display: block; 
    padding: 10px;  border-bottom: 1px solid #F2F7F9; }
  .responsive_menu li.has-children > a{padding-right: 65px;}
  .responsive_menu li ul { list-style: none; padding: 0; margin: 0; display:none; }
  .responsive_menu li ul li {}
  .responsive_menu li ul li a {border: 0; padding-left: 20px;}

  .toggle_sub{width: 65px; height: 41px; position: absolute; right: 0; top: 0; border-left: 1px solid #F2F7F9;}
  .toggle_sub::after{content: ""; height: 12px; width: 12px; border: solid #C4D82D; border-width: 0 3px 3px 0; transform: rotate(45deg);
    position: absolute; transition: ease-in-out all .3s; left: 25px; top: 13px;}
  .responsive_menu li.open > .toggle_sub::after{transform: rotate(225deg); top:18px;}

  .responsive_menu_wrap header { height: 60px; display: flex; align-items: center; border-bottom: 1px solid #F2F7F9; padding: 0 10px;}
  .menu_phone {color: #000F36; font-size:11px; padding: 0 15px; background: #CDE730; line-height: 30px; 
    border-radius: 8px; font-weight: 500; display: flex; gap:10px; align-items: center;}
  .menu_phone::after{content: ""; height: 6px; width: 33px; background: url(../images/arrow.svg) center no-repeat;}

  .responsive_menu_wrap footer{display: flex; flex-direction: column; gap:20px; align-items: center; padding: 20px 0;}
  .menu_extra_links{display: flex; justify-content: center; gap:15px; align-items: center;}
  .menu_extra_links > a{font-weight: bold; font-size: 10px; line-height: 20px; color: #000F36;}
  .menu_extra_links > ul{list-style: none; padding: 0; margin: 0; display: flex; gap:15px;}
  .menu_extra_links > ul li{list-style: none; padding: 0;}
  .menu_extra_links > ul li a{font-size: 10px; color: #000F36; line-height: 20px;}

  .menu_close{font-size: 10px; color: #010F36;}

  /*Menu Effect*/
  .responsive_menu_wrap { visibility: hidden; opacity: 0; transition: ease-in-out all .4s; z-index: -1; transform: translateY(40px); }
  .responsive_menu_wrap.open { visibility: visible; opacity: 1; z-index: 3000; transform: translateY(0); }

  /*Footer*/
  .footer_wrap{padding: 25px 0;}
  .footer_wrap > div{flex-direction: column; gap:0;}
  .footer_wrap > div > div{width: 100%;}
  .footer_intro{padding-bottom: 25px; border-bottom: 1px solid #fff;}
  .footer_menu > span{padding: 18px 0; background: url(../images/open.svg) center right no-repeat; transition: ease-in-out all .3s;}
  .footer_menu.active > span{background-image: url(../images/close.svg);}
  .footer_menu > nav{display: none;}

  .byline_wrap{padding: 15px 0 50px 0;}
  .byline_left{flex-direction: column; gap:20px;}
  .byline_wrap > div {flex-direction: column; gap:20px;}


  /********** Modules **********/

  

  /*Testimonial*/
  .testimonial_module{padding: 25px 0 50px 0;}
  .testimonial_module > div{gap:30px;}
  .tm_inner{flex-direction: column; }
  .tm_image{width: 290px; height: 290px;}
  .tm_description{align-items: center;}
  .tm_description p, .tm_author{font-size: 24px; text-align: center; line-height: 34px;}
  .tm_source{font-size: 18px; text-align: center;}

  /*Icon List Module*/
  .icon_list_module > div{background-size: 150px; padding-right: 10px; gap:35px;}
  .il_heading{font-size: 32px; line-height: 40px;}
  .il_inner{gap:10px;}
  .il_image img{max-width: 30px;}

  /*Infographic Module*/
  .infographic_module{padding: 45px 0;}
  .infographic_module h1{align-items: center; font-size: 38px; gap:15px;}
  .ig_inner{flex-direction: column; align-items: center; gap:20px;}
  .ig_step{margin: 0 !important; width: 275px; transition-delay:unset !important;}
  .ig_step img{transition-delay:unset !important; height: auto; width: 80px; order: 1;}
  .ig_step h4{order:2;}
  .ig_step span{order: 3; font-size: 17px; padding: 4px 16px;}
  .ig_step p{order: 4;}
  .ig_step::after{content: ""; height: 46px; width: 44px; background: url(../images/arrow_down_mobile.svg) center no-repeat; order: 5;}
  .ig_step:last-of-type::after{content: none;}


}

/*---------TABLET < 959px---------*/

@media (min-width: 768px) and (max-width:991px){
  .mobile:not(.tablet), 
  .desktop:not(.tablet), 
  .desktop-large:not(.tablet) {display: none !important;}
  .tablet-hidden { display:none !important;}

  /*Footer*/
  .footer_intro{position: relative;}
  .footer_intro .social{position: absolute; right: 0; top: 10px;}

  /*Gallery*/
  .full-width-fix .flex-caption .halign-left{left: calc(50% - 325px); right:initial; width: 385px; max-width: 100%; text-align: left;}
  .full-width-fix .flex-caption .halign-right{right: calc(50% - 325px); left:initial; width: 385px; max-width: 100%; text-align: right;}
  .flex-caption{padding: 20px}

  /*Image Buttons*/
  .image_button_module .ib_rows{gap:10px;}
  .image_button_module .ib_row{gap:10px;}
  .image_button_module .ib_block{ height: 230px;}
  .image_button_module .ib_title{font-size: 14px; line-height: 20px; gap:10px;}
  .image_button_module .ib_title::after{width: 23px; height: 23px;}
  .image_button_module .ib_content{width: 210px; padding: 15px 10px;}
  .image_button_module .ib_overlay span{font-size: 14px; line-height: 20px;}
  .image_button_module .ib_overlay .ib_description{font-size: 12px; line-height: 20px;}
  .image_button_module .ib_overlay{left: 10px; top:10px; bottom:10px; padding: 10px;}
  .image_button_module .ib_overlay > div{gap:5px;}
  .image_button_module .ib_overlay > a{font-size: 11px; line-height: 20px;}
  .image_button_module .ib_overlay .ib_description{-webkit-line-clamp: 6;}

  /*KPI Module*/
  .km_item{padding: 0 20px;}
  .km_inner{width: 290px;}
  .km_time, .km_fraction{ font-size: 60px;}
  .km_title{font-size: 18px;}
  .km_byline{font-size: 14px;}

  /*Layout Block*/
  .block_layout_module .layout_image, .block_layout_module .layout_inner{padding: 40px 5px;}
  

}

/*---------MOBILE < 767px---------*/

@media (max-width: 767px) {
  .tablet:not(.mobile), 
  .desktop:not(.mobile), 
  .desktop-large:not(.mobile) {display: none !important;}

  img {max-width: 100%; vertical-align: middle;}

  h1 {font-size: 56px; line-height: 62px;}
  h2 {font-size: 46px; line-height: 52px;}
  h3 {font-size: 36px; line-height: 42px;}
  h4 {font-size:28px; line-height:34px; }
  h5 {font-size: 24px; line-height: 30px;}
  h6 {font-size: 18px; line-height:24px; }

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

  /* Fullscreen Gallery*/
  .full-width-fix .flex-caption.halign-center{left: calc(50% - 150px); right:initial; width: 300px; max-width: 100%; text-align: center;}
  .full-width-fix .flex-caption.halign-left{left: calc(50% - 150px); right:initial; width: 300px; max-width: 100%; text-align: center;}
  .full-width-fix .flex-caption.halign-right{left: calc(50% - 150px); right:initial; width: 300px; max-width: 100%; text-align: center;}
  .flex-caption > div{padding: 20px;}

  /*Layout Block*/
  .block_layout_module .layout_block {flex-direction: column !important;}
  .block_layout_module .layout_image, .block_layout_module .layout_content{width: 100%;  justify-content: center !important;}
  .block_layout_module .layout_image{padding: 50px 0 20px 0;}
  .block_layout_module .layout_inner{padding: 0 15px 70px 15px; width: 100%;}
  .block_layout_module .layout_heading h1{font-size: 28px; line-height: 34px;}

  /*Image Button*/
  .image_button_module .ib_rows{gap:10px;}
  .image_button_module .ib_row{flex-direction: column; gap:10px; align-items: center;}
  .ib_block_container {width: 310px;}
  .image_button_module .ib_block{ height: 207px;}
  .image_button_module .ib_title{font-size: 14px; line-height: 20px; gap:10px;}
  .image_button_module .ib_title::after{width: 23px; height: 23px;}
  .image_button_module .ib_content{width: 254px; padding: 15px 10px;}
  .image_button_module .ib_overlay span{font-size: 14px; line-height: 20px;}
  .image_button_module .ib_overlay .ib_description{font-size: 12px; line-height: 20px;}
  .image_button_module .ib_overlay{left: 5px; top:5px; bottom:5px; padding: 10px;}
  .image_button_module .ib_overlay > div{gap:5px;}
  .image_button_module .ib_overlay > a{font-size: 11px; line-height: 20px;}
  .image_button_module .ib_overlay .ib_description{-webkit-line-clamp: 6;}

  /*KPI Module*/
  .kpi_module{padding: 50px 0;}
  .km_item{padding: 0 0 40px 0; margin-bottom: 40px; border-right: 0; border-bottom: 1px solid #CBCBCB;}
  .km_image{height: 170px; width: 170px;}
  .km_items{row-gap: 0;}
  .km_item{width: 100%;}
  .km_inner{width: 100%;}
  .km_title{font-size: 16px;}
  .km_time, .km_fraction{font-size: 70px;}
  .km_byline{font-size: 12px;}

  /*Tiled Gallery*/
  .tiled_gallery_module{padding: 30px 0;}
  .tiled_gallery_module > div{display: flex; justify-content: center;}
  .tg_container{width: 290px;}
  .tg_item{padding: 10px;}
  .tg_item .tg_image{height: 250px;}

}
