html,
body {
  width: 100vw;
  padding: 0;
  margin: 0;
  background-color: #ffffff;
  font-family: 'brandon-grotesque', sans-serif;
  font-size:18px;
  overflow-x: hidden;
}

.

.top-menu-padding{
    padding-top: 80px;
}

.navbar-brand{
    width:300px;
}

.img,
.img img {
    max-width: 100%;
    height: auto;
}

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


a{
   color: rgba(29,103,173,1);
   text-decoration:  none; 
}
a:hover{
   color: rgba(29,103,173,0.8);
   text-decoration:  underline; 
}
/*TYPOGRAPHY*/
h1,h2,h3,h4,h5,h6,.md-hero-title,.hero-title,.sml-hero-title{
    font-family: 'brandon-grotesque', sans-serif;
    font-weight:bold;
}

.text-brandon-grotesque{
    font-family: 'brandon-grotesque', sans-serif ;
}

.hero-title{
    font-size: 36px;
    line-height: 36px;
}

.md-hero-title{
    font-size: 24px;
    line-height: 24px;
}

.sml-hero-title{
    font-size: 18px;
}

/*COLOURS*/

.background-white{
    background-color: #ffffff;
}

.background-blue{
    background-color: #1d67ad;
}

.bg-black{
    background-color: #000000;
}

.bg-primary-colour{
    background-color: #c99d66;
}

.bg-blue{
    background-color: rgba(29,103,173,1);
}

.bg-red{
    background-color: #e53935;
}

.bg-ghost{
    
    background-color: rgba(255,255,255,0.25);
}

.border-img{
    border:3px solid #ffffff;
}

.border-blue{
    border-color: rgba(29,103,173,1) !important;
}

.border-red{
    border-color: #e53935 !important;
}

.border-green{
    border-color: #7cb342 !important;
}

.border-white{
    border-color: #ffffff !important;
}

.text-ghost{
    
    color: rgba(255,255,255,0.6);
}

.text-white svg,
.text-white path{
    fill: rgba(255,255,255,1);
}

.text-primary-colour{
    color: rgba(201,157,102,1);
}

.text-orange{
    color: rgba(245,133,51,1);
}

.text-black{
    color: rgba(0,0,0,1);
}

.text-blue svg,
.text-blue path,
.text-blue polygon{
    fill: rgba(29,103,173,1);
}

.text-blue-ghost{
    color: rgba(29,103,173,0.6);
}

.text-black-ghost{
    color: rgba(0,0,0,0.6);
}

.hr-ghost {
    border-top: 1px solid rgba(255,255,255,0.6);
}

.hr-blue-ghost {
    border-top: 1px solid rgba(29,103,173,0.6);
}


.ghost-hover{
    
}

.ghost-hover:hover .text-ghost{
    -webkit-transition : color transform 500ms ease-out;
    -moz-transition : color transform 500ms ease-out;
    -o-transition : color transform 500ms ease-out;
    transition: color 500ms ease-out;
    color: rgba(255,255,255,1);
}

/* DIGIONAL DIVIDER */
.section-diagonal-divider {
    background: linear-gradient(to left bottom, #ffffff 50%, #c99d66 50%);
    height:250px; 
}

/*DIAGIONAL LINES BG header*/
.diagional-bg-header {
  animation:diagional-slide-header 3s ease-in-out infinite alternate;
  background-image: linear-gradient(-65deg, rgb(201,157,102) 50%, rgba(201,157,102,0) 50%);
  bottom:0;
  left: 55%;
  opacity:.5;
  position:absolute;
  right:0;
  top:0;
  z-index:0;
  width:100%;
}
.diagional-bg-header:nth-child(1) {
  opacity:1;
}
.banner-microsite::before{
  display:block;
  position: absolute;
  content:'';
  width: 50%;
  height: 1000px;
  left:0px;
  background-color: #F68634;
}
.diagional-bg2-header {
  animation-direction:alternate-reverse;
  animation-duration:4s;
}
.diagional-bg3-header {
  animation-duration:5s;
}
@keyframes diagional-slide-header {
  0% {
    transform:translateX(-5%);
  }
  100% {
    transform:translateX(5%);
  }
}

/*page lists*/
.list-group.page-list{
    background-clip: border-box;
    border: none;
    
}

.page-list .page-list-item {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 0;
    padding: 0 0 20px 0;
    -webkit-transition : background-color 500ms ease-out;
    -moz-transition : background-color 500ms ease-out;
    -o-transition : background-color 500ms ease-out;
    transition : background-color 500ms ease-out;
    background-color: rgba(29,103,173,0);
}

.page-list .page-list-item:first-child {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.page-list .page-list-item:last-child {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.page-list .page-list-item:hover {
    background-color: rgba(29,103,173,0.1);
}

.page-image-list .text-overlay{
    color: #ffffff;
    background-color: rgba(0,0,0,0.6);
    width: 100%;
    -webkit-transition : background-color 500ms ease-out;
    -moz-transition : background-color 500ms ease-out;
    -o-transition : background-color 500ms ease-out;
    transition : background-color 500ms ease-out;
}

.page-image-list:hover .text-overlay{
    background-color: rgba(29,103,173,0.4);
}

/*Pagination*/
.page-item:first-child .page-link {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 0;
}

.page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
}

.page-item .page-link{
    border-color: rgba(0,0,0,0.1);
    border-top: 0;
    font-weight: bold;
    color: rgba(29,103,173,1);
}

.page-item .page-link svg{
    fill: rgba(29,103,173,1);
}
.page-link:hover, 
.page-link.active {
    z-index: 2;
    color: rgba(29,103,173,1);
    background-color: rgba(29,103,173,0.1);
    border-color: rgba(29,103,173,1);
}


/*Styled Lists */
.round-tick-list li,
.round-tick-list-banner li,
.round-tick-list-white li{
    display: block;
    list-style-type: none;
    line-height: 36px;

}

.round-tick-list-banner li:before { 
    position: relative; 
    content:"";
    background: url(../icons/tick-primary.svg) no-repeat left center;
    padding-right: 24px; 
    margin-right: 10px; 
    margin-left:-34px;
}

.round-tick-list-banner li{
    font-size:28px;
}

.round-tick-list li:before { 
    position: relative; 
    content:"";
    background: url(../icons/tick-primary.svg) no-repeat left center;
    padding-right: 24px; 
    margin-right: 10px; 
    margin-left:-34px;
}


.round-tick-list-white li:before { 
    position: relative; 
    content:"";
    background: url(../icons/tick-white.svg) no-repeat left center;
    padding-right: 24px; 
    margin-right: 10px; 
    margin-left:-34px;
}



.on-page-link-list li{
    margin-left: -50px;
}

.footer-social svg, a:hover .footer-social svg{
    height:  15px;
    fill: #ffffff !important;
}

.disclaimer-links{
    text-decoration: none;
}
/*HEADER*/
.site-header{
    position: absolute;
    top: 0;
    z-index: 2;
    width: 100%;
}
.navbar-logo img{
    width: 150px;
    width: 30vw;
    height: 30vw;
    max-width: 150px;
    max-height: 75px;
    margin-left: 20px;
}


/*CARDS*/

.card {
    background-color: #fad02c;
    background-clip: border-box;
    border: 3px solid #ffffff;
    border-radius: 10px;
    
}

.card-ghost {
    background-color: rgba(255,255,255,0.2);
    background-clip: border-box;
    border: none;
    border-radius: 0px;
    
}

.card-header:first-child ,
.card-img-top {
    width: 100%;
    border-radius: 10px;
    height: auto;
}

.card-footer:last-child {
    border-radius: 10px;
    border-top: none;
}

.floating-card{
    position: absolute;
    top: -200px;
}


/*FORMS*/
.mega-menu-form input{
    background: transparent;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    border-bottom:  1px solid #ffffff;
    color: rgba(255,255,255,1);
    font-weight:  bold;
}

.mega-menu-form select{
    background: transparent;
    color: rgba(255,255,255,1);
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom:  1px solid #ffffff;
    font-weight:  bold;
}

.mega-menu-form option{
    background: #000000;
    color: rgba(255,255,255,1);
}

.mega-menu-form .input-group-text{
    background: transparent;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    border-bottom:  1px solid #ffffff;
    color: rgba(255,255,255,1);
}

.mega-menu-form .input-group-text svg{
    fill: #ffffff;
}
.mega-menu-form {
    color: #ffffff;
}

.mega-menu-form ::placeholder{
    font-weight:  normal;
    color:#cccccc;
}

.mega-menu-form .form-control:focus {
    color: rgba(255,255,255,1);
    background-color: rgba(255,255,255,0.3);
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
}

.webo-email-error svg,
.webo-phone-error svg{
    fill: #e53935 !important;
}

.webo-email-success svg,
.webo-phone-success svg{
    fill: #7cb342 !important;
}

/*BUTONS*/
.btn-outline-white{
    color:rgba(255,255,255,1) ;
    background-color:transparent ;
    background-image:none;
    border:3px solid rgba(255,255,255,1);
    font-weight: bold;
}
.btn-outline-white:hover{
    color:rgba(255,255,255,1);
    background-color:rgba(255,255,255,0.3);
    border-color:rgba(255,255,255,1)
}
.btn-outline-white:focus,
.btn-outline-white.focus{
    box-shadow:0 0 0 .2rem rgba(0,128,128,0.5)
}
.btn-outline-white.disabled,
.btn-outline-white:disabled{
    color:rgba(255,255,255,1);
    background-color:transparent
}
.btn-outline-white:not(:disabled):not(.disabled):active,
.btn-outline-white:not(:disabled):not(.disabled).active,
.show>.btn-outline-white.dropdown-toggle{
    color:#fff;
    background-color:#009a9a;
    border-color:rgba(255,255,255,1)
}
.btn-outline-white:not(:disabled):not(.disabled):active:focus,
.btn-outline-white:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-white.dropdown-toggle:focus{
    box-shadow:0 0 0 .2rem rgba(0,128,128,0.5)
}

.btn-outline-primary-colour{
    color:rgba(201,157,102,1) ;
    background-color:transparent ;
    background-image:none;
    border: 3px solid rgba(201,157,102,1);
    font-weight: bold;
}
.btn-outline-primary-colour:hover{
    color:rgba(201,157,102,1);
    background-color:rgba(201,157,102,0.3);
    border-color:rgba(201,157,102,1)
}
.btn-outline-primary-colour:focus,
.btn-outline-primary-colour.focus{
    box-shadow:0 0 0 .2rem rgba(0,128,128,0.5)
}
.btn-outline-primary-colour.disabled,
.btn-outline-primary-colour:disabled{
    color:rgba(43,172,203,1);
    background-color:transparent
}
.btn-outline-primary-colour:not(:disabled):not(.disabled):active,
.btn-outline-primary-colour:not(:disabled):not(.disabled).active,
.show>.btn-outline-primary-colour.dropdown-toggle{
    color:#fff;
    background-color:#c99d66;
    border-color:rgba(201,157,102,1)
}
.btn-outline-primary-colour:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary-colour:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-primary-colour.dropdown-toggle:focus{
    box-shadow:0 0 0 .2rem rgba(0,128,128,0.5)
}
/*Accordions*/
.accordion{
    --bs-accordion-bg: transparent;
}
.accordion-button{
    font-weight:700;
}
.accordion-button::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "";
    background-image:   url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='blue'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    transform: var(--bs-accordion-btn-icon-transform);
}
.accordion-button,
.accordion-body{
    color:#ffffff;
}

/*BACKGROUND ANIMATIONS*/
.slg-shape{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slg-shape li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: slg-shape-animate 25s linear infinite;
    bottom: -150px;
    
}



.slg-shape li{
    background: url(../images/bg-shape.svg) no-repeat center center;
    
}


.slg-shape li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.slg-shape li:nth-child(2){
    left: 10%;
    width: 150px;
    height: 150px;
    animation-delay: 2s;
    animation-duration: 42s;
}

.slg-shape li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.slg-shape li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.slg-shape li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.slg-shape li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.slg-shape li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.slg-shape li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.slg-shape li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.slg-shape li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 31s;
}

@keyframes slg-shape-animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1500px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}

@media (min-width: 992px) {
    /*LAYOUT*/
    .main-splash {
        overflow: hidden;
    }

    .top-menu-padding{
        padding-top: 200px;
    }
    .position-lg-absolute {
        position: absolute!important;
    }

    .h-lg-25 {
      height: 25% !important;
    }

    .h-lg-50 {
      height: 50% !important;
    }

    .h-lg-75 {
      height: 75% !important;
    }

    .h-lg-100 {
      height: 100% !important;
    }

    .h-lg-auto {
      height: auto !important;
    }

    .translate-lg-middle-y {
        transform: translateY(-50%)!important;
    }

    /*TYPOGRAPHY*/
    .hero-title{
        font-size: 72px;
        line-height: 72px;
    }

    .md-hero-title{
        font-size: 40px;
        line-height: 40px;
    }

    .sml-hero-title{
        font-size: 36px;
    }

    /*HEADER*/
    .navbar-logo img{
        width: 270px;
        width: 50vw;
        height: 50vw;
        max-width: 270px;
        max-height: 150px;
        margin-left: 50px;
    }

    .header-padding-lg{
        padding-top: 150px !important;
        padding-bottom: 150px !important;
    }

    .header-padding-portfolio-design{
        padding-top: 400px !important;
    }

    .header-padding-base-lg{
        padding-top: 150px !important;
        padding-bottom: 400px !important;
    }

    
   

}

@media (max-width: 1279px) and (min-width: 769px) {
    .top-menu-padding{
        padding-top: 100px;
    }
    .hero-title{
        font-size: 60px;
        line-height: 60px;
    }

    .md-hero-title{
        font-size: 36px;
        line-height: 36px;
    }

    .sml-hero-title{
        font-size: 24px;
    }

    /*HEADER*/
.site-header{
    position: absolute;
    top: 0;
    z-index: 2;
    width: 100%;
}
.navbar-logo img{
    width: 150px;
    width: 30vw;
    height: 30vw;
    max-width: 150px;
    max-height: 75px;
    margin-left: 20px;
}


}

@media (max-width: 991px){
    /*INFOGRAOHICS*/
    .infographic-next-blue::after {
        display: block;
        position: absolute;
        bottom: 7%;
        left: 33%;
      content: url('../images/infographic-linear-next-blue.svg');
      width: 68%;
      
      
    }

    .infographic-next-red::after {
        display: block;
        position: absolute;
        bottom: 7%;
        left: 33%;
      content: url('../images/infographic-linear-next-red.svg');
      width: 68%;
      
      
    }

    .infographic-next-green-end::after {
        display: block;
        position: absolute;
        bottom: 7%;
        left: 33%;
      content: url('../images/infographic-linear-next-green-end.svg');
      width: 68%;
      
      
    }

    .header-padding-sm{
        padding-top: 100px;
    }

    .header-padding-base-sm{
        padding-bottom: 100px;
    }

    .navbar-brand{
        width:200px;
    }
}

@media (max-width: 1199px){
   
}

@media (max-width: 768px) {
    .overlay-sm-dark{
        position: absolute;
        background: rgba(0,0,0,0.6);
        top:0;
        width:200%;
        
        height: 100%;
       
    }

    .overlay-sm-light{
        position: absolute;
        background: rgba(255,255,255,0.8);
        top:0;
        max-width:100%;
        width: 200%;
        height: 100%;
       
    }
    .header-padding-sm{
        padding-top: 100px;
    }

    .header-padding-base-sm{
        padding-bottom: 100px;
    }

    .splash-carousel-footer-padding-sm{
        padding-bottom: 200px;
    }

    .splash-carousel .carousel-item{
        padding-bottom:100px
    }

    .splash-carousel .carousel-indicators{
        margin-bottom:50px;
    }

    .carousel-indicators  .aside-anchor::before {
  
      display:none;
    }

    .end-0.banner-bg-image img {
        width: auto;
        max-width: none;
        height: 100%;
        position: absolute;
        right: 0;
    }



    
    .navbar-brand{
        min-width:200px;
    }

    

}

/* BOOTSTRAP FRAMEWORK ADDITIONS*/
/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
    .w-sm-100 {
        width: 100% !important;
    }

    .w-sm-75 {
        width: 75% !important;
    }

    .w-sm-50 {
        width: 50% !important;
    }

    .w-sm-25 {
        width: 25% !important;
    }

    .w-sm-auto {
        width: auto !important;
    }

    .h-sm-100 {
        height: 100% !important;
    }

    .h-sm-75 {
        height: 75% !important;
    }

    .h-sm-50 {
        height: 50% !important;
    }

    .h-sm-25 {
        height: 25% !important;
    }

    .h-sm-auto {
        height: auto !important;
    }
}


/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .w-md-100 {
        width: 100% !important;
    }

    .w-md-75 {
        width: 75% !important;
    }

    .w-md-50 {
        width: 50% !important;
    }

    .w-md-25 {
        width: 25% !important;
    }

    .w-md-auto {
        width: auto !important;
    }

    .h-md-100 {
        height: 100% !important;
    }

    .h-md-75 {
        height: 75% !important;
    }

    .h-md-50 {
        height: 50% !important;
    }

    .h-md-25 {
        height: 25% !important;
    }

    .h-md-auto {
        height: auto !important;
    }
}

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
    .w-lg-100 {
        width: 100% !important;
    }

    .w-lg-75 {
        width: 75% !important;
    }

    .w-lg-50 {
        width: 50% !important;
    }

    .w-lg-25 {
        width: 25% !important;
    }

    .w-lg-auto {
        width: auto !important;
    }

    .h-lg-100 {
        height: 100% !important;
    }

    .h-lg-75 {
        height: 75% !important;
    }

    .h-lg-50 {
        height: 50% !important;
    }

    .h-lg-25 {
        height: 25% !important;
    }

    .h-lg-auto {
        height: auto !important;
    }
}

/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
    .w-xl-100 {
        width: 100% !important;
    }

    .w-xl-75 {
        width: 75% !important;
    }

    .w-xl-50 {
        width: 50% !important;
    }

    .w-xl-25 {
        width: 25% !important;
    }

    .w-xl-auto {
        width: auto !important;
    }

    .h-xl-100 {
        height: 100% !important;
    }

    .h-xl-75 {
        height: 75% !important;
    }

    .h-xl-50 {
        height: 50% !important;
    }

    .h-xl-25 {
        height: 25% !important;
    }

    .h-xl-auto {
        height: auto !important;
    }
}

/* Extra large devices (large desktops, 1400px and up)*/
@media (min-width: 1400px) {
    .w-xxl-100 {
        width: 100% !important;
    }

    .w-xxl-75 {
        width: 75% !important;
    }

    .w-xxl-50 {
        width: 50% !important;
    }

    .w-xxl-25 {
        width: 25% !important;
    }

    .w-xxl-auto {
        width: auto !important;
    }

    .h-xxl-100 {
        height: 100% !important;
    }

    .h-xxl-75 {
        height: 75% !important;
    }

    .h-xxl-50 {
        height: 50% !important;
    }

    .h-xxl-25 {
        height: 25% !important;
    }

    .h-xxl-auto {
        height: auto !important;
    }
}

/* Extra large devices (large desktops, 1570px and up)*/
@media (min-width: 1570px) {
    .w-xxxl-100 {
        width: 100% !important;
    }

    .w-xxxl-75 {
        width: 75% !important;
    }

    .w-xxxl-50 {
        width: 50% !important;
    }

    .w-xxxl-25 {
        width: 25% !important;
    }

    .w-xxxl-auto {
        width: auto !important;
    }

    .h-xxxl-100 {
        height: 100% !important;
    }

    .h-xxxl-75 {
        height: 75% !important;
    }

    .h-xxxl-50 {
        height: 50% !important;
    }

    .h-xxxl-25 {
        height: 25% !important;
    }

    .h-xxxl-auto {
        height: auto !important;
    }
}

