@import url('https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,300;0,400;0,700;0,900;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&family=Sintony&display=swap');

@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css");
html, body {
    height: 100%;
    overflow: hidden;
}

.orange {
    color: #FF2A00;
}

.blue {
    color: #132D7D;
}

.white {
    color: #ffffff;
}



.intro {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    background: rgb(8,46,164);
    background: radial-gradient(circle, rgba(8,46,164,1) 8%, rgba(19,45,125,1) 100%);
    top: 0;
}
#address{
    padding-top: 150px;
    width: 150px;
    
    
}
.intro.about-us {
    background: transparent;
    
}

.intro-text {
    position: absolute;
    margin: 0px auto;
    text-align: center;
    opacity: 0;
    width: 100%;
    transition: opacity 1s linear;
    top: 50%;
}

.intro-text.loaded {
    opacity: 1;
}

.intro-text .top {
    font-family: 'Source Sans Pro';
    font-weight: 900;
    letter-spacing: 5px;
    opacity: 0.4;
    color: #fff;
    font-size: 8em;
    margin: 0px auto;
}

.intro-text .middle {
    font-family: 'Source Sans Pro';
    font-weight: 900;
    color: #fff;
    font-size: 100px;
    position: relative;
    top: -60px;
    margin: 0px auto;
}

.intro-text .bottom {
    font-family: 'Source Sans Pro';
    font-weight: 900;
    color: #FF2A00;
    font-size: 100px;
    position: relative;
    top: 0px;
    transition: top 0.5s linear;
    margin: 0px auto;
}

.intro-text.loaded .bottom {
    top: -60px;
}

.intro-text2 {
    position: absolute;
    width: 100%;
    z-index: 1000;
    text-align: left;
    opacity: 0;
    top: 20%;
    transition: opacity 1s linear;
}

.intro-text2.loaded {
    opacity: 1;
}

.intro-text2 .top {
    font-family: 'Chivo';
    color: #132D7D;
    font-weight: 900;
    font-size: 50px;
    padding-left: 50px;
}

.intro-text2 .middle,
.intro-text2 .bottom {
    font-family: 'Chivo';
    transition: top 0.3s linear;
    position: relative;
    top: 20px;
    padding-left: 50px;
}


.intro-text2 .middle {
    font-weight: 500;
    font-size: 20px;
    padding-top: 20px;
    line-height: 27px;
}

.intro-text2 .bottom {
    font-weight: 500;
    font-size: 18px;
    padding-top: 10px;
    line-height: 20px;
}

.intro-text2.loaded .middle,
.intro-text2.loaded .bottom {
    top: 0px;

}

.intro-text2 .vertical-line {
    height: 400px;
    width: 0;
    margin: 0px auto;
    left: 0;
    position: relative;
    opacity: 0;
    transition: opacity 0.3 linear;
    border-left: 5px dashed #FF2A00;
}

.intro-text2.loaded .vertical-line {
    opacity: 1;
}

.intro-text2 .and {
    padding: 20px;
    font-family: 'Chivo';
    font-weight: 700;
    font-size: 30px;
    color: #132D7D;
    background-color: #fff;
    position: relative;
    top: -400px;
    width: 100px;
    left: 50%;
    margin-left: -60px;
    text-align: center;
}

@-webkit-keyframes AnimationScroll {
    0%{top: -40px}
    50%{top: -35px}
    100%{top: -40px}
}
@-moz-keyframes AnimationScroll {
    0%{top: -40px}
    50%{top: -35px}
    100%{top: -40px}
}
@keyframes AnimationScroll {
    0%{top: -40px}
    50%{top: -35px}
    100%{top: -40px}
}

.intro-text .scroll {
    height: 60px;
    width: 60px;
    background-image: url('../images/scroll.svg');
    background-size: 60px 60px;
    background-repeat: no-repeat ;
    font-size: 11px;
    padding-top: 10px;
    font-family: 'Source Sans Pro';
    top: 0;
    color: #fff;
    position: relative;
    transition: top 0.8s linear, opacity 0.3s linear;
    margin: 0px auto;
    opacity: 0;
    -webkit-animation: AnimationScroll 1s ease infinite;
    -moz-animation: AnimationScroll 1s ease infinite;
    animation: AnimationScroll 1s ease infinite;
}

.intro-text .scroll:hover {
    -webkit-animation: none;
    -moz-animation: none;
    animation: none;
}

.intro-text.loaded .scroll {
    top: -40px;
}

@-webkit-keyframes AnimationTopBottom {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes AnimationTopBottom {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes AnimationTopBottom {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

@-webkit-keyframes AnimationLeftRight {
    0%{background-position:50% 0%}
    50%{background-position:50% 100%}
    100%{background-position:50% 0%}
}
@-moz-keyframes AnimationLeftRight {
    0%{background-position:50% 0%}
    50%{background-position:50% 100%}
    100%{background-position:50% 0%}
}
@keyframes AnimationLeftRight {
    0%{background-position:50% 0%}
    50%{background-position:50% 100%}
    100%{background-position:50% 0%}
}


.loader-animation {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: transparent;
}

.loader-animation div {
    position: absolute;
}

.loader-animation .left,
.loader-animation .right {
    background: linear-gradient(180deg, #ffffff, #f65720, #00980a, #d4cc02, #cb00d1);
    background-size: 1000% 1000%;
    width: 0;
    height: 100%;
    top: 0;
    transition: width 0.3s linear;
    -webkit-animation: AnimationLeftRight 4s ease infinite;
    -moz-animation: AnimationLeftRight 4s ease infinite;
    animation: AnimationLeftRight 4s ease infinite;
} 

.loader-animation .left.in-animation,
.loader-animation .right.in-animation {
    width: 15px;
}


.loader-animation .top,
.loader-animation .bottom {
    background: linear-gradient(270deg, #ffffff, #f65720, #00980a, #d4cc02, #cb00d1);
    background-size: 1000% 1000%;
    width: 100%;
    height: 0;
    transition: height 0.3s linear;
    left: 0;
    -webkit-animation: AnimationTopBottom 4s ease infinite;
    -moz-animation: AnimationTopBottom 4s ease infinite;
    animation: AnimationTopBottom 4s ease infinite;
}

.loader-animation .top.in-animation,
.loader-animation .bottom.in-animation {
    height: 15px;
}

.loader-animation .left {
    left: 0;
}

.loader-animation .right {
    right: 0;
}

.loader-animation .top {
    top: 0;
}

.loader-animation .bottom {
    bottom: 0;
}




.nav-panel {
    display: flex;
    position: fixed;
    top: -85px;
    height: 80px;
    width: 100%;
    z-index: 2000;
    transition: top 0.4s linear;
    background-color: #fff;
    -webkit-box-shadow: 0px 2px 11px 0px rgba(0,0,0,0.25);
-moz-box-shadow: 0px 2px 11px 0px rgba(0,0,0,0.25);
box-shadow: 0px 2px 11px 0px rgba(0,0,0,0.25);
}

#nav-opanel {
    display: flex;
    position: fixed;
    top: 0px;
    height: 80px;
    width: 100%;
    z-index: 2000;
    /* transition: top 0.4s linear; */
    background-color: #fff;
    -webkit-box-shadow: 0px 2px 11px 0px rgba(0,0,0,0.25);
-moz-box-shadow: 0px 2px 11px 0px rgba(0,0,0,0.25);
box-shadow: 0px 2px 11px 0px rgba(0,0,0,0.25);
}

.hamburger-container {
    display: none;
}



.nav-panel.visible {
    top: 0px;
}

.nav-panel .logo {
    width: 25%;
    min-width: 100px;
}

.nav-panel .logo a img {
    height: 40px;
    margin: 15px;
    margin-left: 40px;
    display: inline-block;
}

.nav-list {
    width: 75%;
    text-align: right;
}

.nav-list li {
    display: inline-block;
}

.nav-list li a {
    text-decoration: none;
    font-family: Chivo;
    display: inline-block;
    margin: 20px 10px;
    padding: 10px 10px;
    font-size: 18px;
    color: #132D7D;
    font-weight: 700;
    vertical-align: middle;
}

.nav-list li a:hover,
.nav-list li a.active {
    border-bottom: 3px solid #132D7D;
    padding-bottom: 7px;
}

.nav-list li a.btn {
    background-color: #132D7D;
    color: #fff;
}

.content {
    width: 100%;
}
.wrapper {
    box-sizing: border-box;
    padding: 0px 10%;
}
.wrapper.nopadding {
    padding: 0;
}


.wrapper h1 {
    font-family: 'Chivo';
    font-weight: 700;
    font-size: 40px;
}

.wrapper p {
    padding-top: 10px;
    font-family: 'Chivo';
    font-size: 25px;
}

.wrapper.blue-background {
    background-color: #132D7D;
}

#wrapper-1 h1{
    padding-top: 150px;
}

#wrapper-1 a , .short-heading a{
    font-family: 'Chivo';
    background-color: #132D7D;
    display: inline-block;
    padding: 10px;
    font-size: 20px;
    font-weight: 700;
    margin-top: 30px;
    color: #fff;
    text-decoration: none;
}

#wrapper-1 a img, .short-heading a img{
    height: 20px;
    width: auto;
}

.short-heading a {
    margin: 10px auto;
}

#wrapper-2 h1 {
    padding-top: 100px;
    text-align: center;
}

#wrapper-3 {
    padding-top: 100px;
}

#wrapper-5 {
    box-sizing: border-box;
    padding: 50px;
}

#wrapper-6 {
    padding-top: 60px;
}

#wrapper-7 {
   box-sizing: border-box;
   padding: 100px 50px 100px 50px;
}

#wrapper-7 #top1{
    font-family: 'Chivo';
    font-style: normal;
    font-weight: 900;
    font-size: 105px;
    line-height: 98px;
}

#wrapper-7  #medium1{
    font-family: 'Chivo';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 22px;
    color: #FFFFFF;
}


#wrapper-7 p {
    font-size: 15px;
    text-align: left;
    padding-top: 10px;
    padding-bottom: 20px;
}

#wrapper-8{
    box-sizing: border-box;
    padding: 100px 50px 100px 50px;
    
}
#wrapper-8 .banner .heading  h1 {
    padding-top: 14%;
    text-align: center;
    font-family: 'Chivo';
    font-style: normal;
    font-weight: 800;
    font-size: 70px;
    line-height: 80px;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #FFFFFF;
    color: #FF2A00;
}

#wrapper-8 p{
    padding-top: 5px;
    font-family: 'Chivo';
    font-style: normal;
    font-weight: 600;
    font-size: 50px;
    line-height: 60px;
    padding-bottom: 15%;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
    color: #FF2A00;
}
#wrapper-9{
    padding-top: 10%;
    text-align: center;
}

#wrapper-10 {
    width: 98vw;
    overflow: hidden;
    position: relative;
    --v-offset: 60px;
    --curve-height: 120px;
  }
  #wrapper-10:before,#wrapper-10:after {
    content: "";
    display: block;
    background: white;
    width: calc(100vw +2 * var(--v-offset));
    height: var(--curve-height);
    position: absolute;
    border-radius: 50%;
    left: calc(-1 * var(--v-offset));
    right: calc(-1 * var(--v-offset));
  }
  #wrapper-10:before {
    top: calc(-0.6 * var(--curve-height));
  }
  #wrapper-10:after {
    bottom: calc(-0.6 * var(--curve-height));
  }


#wrapper-10 .scrollimg{
    display: flex;
    justify-content: center;
    
    display: grid;
    grid-template-rows: 300px;
    grid-auto-flow: column;
    grid-gap: 24px;
    overflow: auto;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
   
}


#wrapper-10 .scrollimg .img2{
    scroll-snap-align: center;
}

#wrapper-11{
    padding-top: 5%;
    text-align: center;
    padding-bottom: 8%;
}
.wrapper-12{
    display: flex;
    overflow: hidden;
    font-family: "industry";
}
#wrapper-13{
    box-sizing: border-box;
    padding: 100px 50px 100px 50px;
}
#wrapper-15{
    padding: 50px 50px;
}


.banner {
    display: block;
    width: 100%;
    box-shadow: 0px 4px 31px rgba(0, 0, 0, 0.53);
}

.banner .heading .top,
.banner .heading .middle,
.banner .heading .bottom {
    font-size: 60px;
    line-height: 63px;
    width: 430px;
    font-family: 'Chivo';
    font-weight: 900;
    margin: 0px auto;
}

.banner .heading .top {
    padding-top: 100px;
}

.banner .heading .middle {
    text-align: center;
}

.banner .heading .bottom {
    text-align: right;
}

.banner .heading p {
    font-size: 15px;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 100px;
}
#decoration{
    text-decoration: none;
}


.img-boxes {
    display: block;
    width: 100%;
    padding-top: 50px;
}

.img-boxes > img{
    display: inline-block;
    width: 28%;
    margin: 0px 2%;
    height: auto;
    box-sizing: border-box;
    box-shadow: 0px;

}

.img-boxes > div {
    display: inline-block;
    width: 30%;
    margin: 0px 2%;
    height: 200px;
    box-sizing: border-box;
    box-shadow: 0px 4.33846px 17.3538px rgba(0, 0, 0, 0.26);
}

.img-boxes > div:first-child {
    margin-left: 0;
}

.img-boxes > div:last-child {
    margin-right: 0;
}

.wrapper > .heading {
    background-color: #FF2A00;
    color: #fff;
    font-family: 'Chivo';
    padding-top: 100px;
    font-size: 20px;
    line-height: 58px;
    font-size: 60px;
    font-weight: 900;
    padding-left: 10%;
    padding-bottom: 5px;
}

.wrapper > .tagline {
    background-color: #132D7D;
    color: #fff;
    font-family: 'Chivo';
    font-size: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 5%;
    margin-left: 5%;
}

.img-layout {
    display: flex;
}
.img-layout #slideshow1{
    overflow: hidden;
}

.img-layout .img-layout-left,
.img-layout .img-layout-right {
    width: 50%;
    padding: 50px 10px;
    box-sizing: border-box;
}

.img-layout .image img{
    max-width: 300px;
    display: inline-block;
}

.img-layout .description {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.img-layout .description .description-heading {
    padding-top: 20px;
    color: #FF2A00;
    font-size: 40px;
    font-family: 'Chivo';
    font-weight: 900;
    padding-bottom: 10px;
}
.img-layout .description.img-layout-left {
    text-align: right;
}

.img-layout .image.img-layout-left {
    text-align: right;
    margin-right: 20px;
}

.img-layout .image.img-layout-right {
    text-align: left;
    margin-left: 20px;
}

.img-layout .description .description-tag > span {
    display: inline-block;
    font-family: 'Chivo';
    padding: 5px 10px;
    background-color: #132D7D;
    font-size: 20px;
    color: #fff;
    font-weight: 900;
}

.img-layout .description .description-text {
    padding-top: 10px;
    color: #132D7D;
    font-family: 'Chivo';
    font-size: 20px;
    line-height: 25px;
}

.img-boxes > div.flip-card {
    box-shadow: none;
    width: 32.5%;
    margin: 0px 0.25%;
    height: 300px;
    background-color: transparent;
    perspective: 1000px;
}

.img-boxes > div.flip-card:first-child {
    margin-left: 0px;
}

.img-boxes > div.flip-card:last-child {
    margin-right: 0px;
}
  
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}
  
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}
  
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-front .flip-card-content,
.flip-card-back .flip-card-content {
    display: block;
    width: 100%;
}

.flip-card-front .flip-card-content img,
.flip-card-back .flip-card-content img{
    display: block;
    width: 40%;
    margin: 0px auto;
}

.flip-card-front .flip-card-content p {
    font-size: 20px;
    font-weight: 700;
    padding-top: 40px;
}

.flip-card-back .flip-card-content {
    box-sizing: border-box;
    padding: 20px;
}

.flip-card-back .flip-card-content p:first-child {
    font-size: 18px;
    line-height: 22px;
}

.flip-card-back .flip-card-content p:last-child {
    font-size: 20px;
    line-height: 25px;
    font-weight: 700;
}

.flip-card-back .flip-card-content .divider {
    width: 70%;
    margin: 20px auto;
    margin-top: 40px;
    display: block;
    height: 2px;
    background-color: #fff;
}
  
.flip-card-front {
    background-color: #fff;
}
  
.flip-card-back {
    background-color: #FF2A00;
    color: white;
    transform: rotateY(180deg);
}
#footer{
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-around;
    color: #FFFFFF;
    box-sizing: border-box;
    padding: 50px;
}
#footer label{
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 900;
    font-size: 28px;
    line-height: 51px;

}
.foot{
   padding-top: 5%;
    font-family: 'Sintony';
    font-style: normal;
    font-weight: 100;
    font-size: 12px;
    line-height: 44px;
    /* or 293% */
    color: #F4F4F4;
}
.foot .firstclm{
    line-height: 25px;
}
.footergap{
    padding-top: 50px;
}

.img-layout .img-layout-left.profile {
    box-sizing: border-box;
    padding: 20px;
    text-align: right;
    display: flex;
    justify-content: right;
    align-items: center;
    flex-direction: row;
}

@media screen and (max-width: 700px) {
    

    #footer {
      flex-direction: column;
    }
     #infobox #redbox > #resheading{
        font-size: 30px;
        width: 50%;
    }
    .banner .heading .top,
    .banner .heading .middle,
    .banner .heading .bottom {
        font-size: 25px;
        line-height: 25px;
        width: 70%; 
        max-width: 250px;
        min-width: 200px;
        font-family: 'Chivo';
        font-weight: 900;
        margin: 0px auto;
    }
    .foot #address{
        padding-top: 50px;
        width: 150px;
        
    }
  }

#infobox{
    display: flex;
}

#infobox .redbox{
    background-color: #FF2A00;
    color: #FFFFFF;
    width: 40%;

}

#redbox{
    background-image: url("../images/letsconnect.png");
    background-size: 100% 100%;
    z-index:5;
}

.redbox .heading{
    padding-top: 20px;
}
#infobox .whitebox{
    background-color: #FFFFFF;
    width: 60%;
}
.whitebox .data,  .whitebox textarea{
    
    font-family: 'Chivo';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    padding: 10px 0px;
    line-height: 22px;
    border: 0;
    display: block;
    width: 80%;
    margin: 10px auto;
    border-bottom: 2px solid #FF2A00;
    
    /* or 168% */
    
    
    color: #000;
}

.whitebox textarea {
    border: 2px solid #FF2A00;
    resize: none;
    box-sizing: border-box;
    padding: 10px;
}

.whitebox .line{
    background-color: #FF2A00;
    width: 90%;
    height: 0px;
    opacity: 0.6;
}

.whitebox .databox{
    margin-top: 20px;
    box-sizing: border-box;
    width: 90%;
    height: 200px;
    border: 1px solid #FF2A00;
}


#sendbutton{
    font-family: 'Chivo';
    background-color:#FF2A00;
    display: inline-block;
    padding: 10px;
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
    color: #fff;
    border: 0;
    cursor: pointer;
    text-decoration: none;
}

.short-heading {
    background-color:#FF2A00;
    padding: 40px 20%;
    box-sizing: border-box;
    text-align: center;
}

.short-heading h1 {
    color: #fff;
    font-family: 'Chivo';
    font-weight: 700;
    text-align: center;
    text-transform: capitalize;
    line-height: 40px;
    font-size: 30px;
}

#testimonial{
    margin-top: -20px;
    margin-bottom: -10px;
    text-align: start;
}
/* testimonial */

#menu-overlay {
    display: none;
}

#menu-overlay .overlay-nav-list {
    display: none;
}

#menu-overlay .bar {
    display: none;
}

.hide {
    display: none;
}

.show {
    display: block;
}

.banner .heading p.last {
    font-size: 25px;
    line-height: 30px;
}




.clearfix {
    display: block;
    width: 100%;
    height: 0;
    clear: both;
}


#upimg{
    height:56px;
    width:56px;
    position:fixed;
    bottom: 20px;
    right: 30px;
    cursor:pointer;
    transition: top 1.4s linear;
    z-index: 3000;
    scroll-behavior: smooth;
}

.social-links:hover{
    background-color: #EA2903;
    border-radius: 50%;
}

#wrapper-8 p.know-more {
    text-align: right;
    box-sizing: border-box;
    padding-right: 1%;
    padding-bottom: 0;
}

#wrapper-8 p.know-more a {
    color: #FF2A00;
    font-size: 25px;
    text-decoration: underline;
}

.testimonial-slide {
    width: 100%;
    display: flex;
}

.testimonial-slide.other {
    height: auto;
}

.testimonial-slide .left,
.testimonial-slide .right {
    width: 15%;
    background-color: #FF2A00;
}

.testimonial-slide .right {
    background-color: #132D7D;
}

.testimonial-slide .center {
    width: 70%;
    box-sizing: border-box;
    padding: 0px 5%;
    background-color: #F4F4F4;
    text-align: center;
    padding-bottom: 30px;
}

.testimonial-slide .center p {
    color: #132D7D;
    font-size: 15px;
    line-height: 18px;
    text-align: justify;
    max-width: 400px;
    margin: 10px auto;
    font-weight: 500;
}

.testimonial-slide .center .author {
    margin-top: 30px;
}

.testimonial-slide .center .author p {
    margin-top: 0px;
    padding-top: 0px;
    color: #FF2A00;
}

.carousel-control.left, .carousel-control.right {
    background: none;
    background-image: none;
}

@media screen and (max-width: 900px) {
    .img-layout .img-layout-left,
    .img-layout .img-layout-right {
        width: 100%;
    }

    .img-layout .img-layout-left.profile {
        justify-content: center;

    }

    .nav-panel .logo a img {
        height: 40px;
    }
    .nav-panel {
        height: 60px;
    }
    .nav-panel .nav-list {
        display: none;
    }
    .intro-text .bottom {
        font-size: 70px;
    }
    #infobox .redbox {
        display: none;
    }
    #infobox .whitebox{
        width: 100%;
    }

    .hamburger {
        display: inline-block;
        height: 30px;
        width: 30px;
        margin: 20px 10px;
        margin-right: 50px;
        cursor: pointer;
    }
    .hamburger > div {
        background-color: #FF2A00;
        height: 4px;
        margin: 6px 0px;
        border-radius: 2px;
    }

    .hamburger > div:first-child {
        margin-top: 0px;
    }
    
    .hamburger-container {
        width: 75%;
        display: block;
        text-align: right;
    }

    .img-boxes {
        display: block;
    }

    .img-boxes > div {
        width: 100%;
        margin: 20px 0px;
    }

    .img-boxes > img {
        width: 100%;
        height: auto;
    }

    .img-boxes > div.flip-card {
        width: 100%;
        margin: 20px 0px;
    }

    .img-layout{
        display: block;
        flex-direction: column;
    }
    .hide {
        display: block;
    }
    .show {
        display: none;
    }
    .img-layout > .description {
        width: 100%;
    }

    #menu-overlay.active {
        background-color: #132D7D;
        display: block;
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 4000;
    }

    #menu-overlay.active .overlay-nav-list {
        position: relative;
        display: block;
        top: 30%;
    }

    #menu-overlay.active .overlay-nav-list li {
        display: block;
        text-align: center;
    }

    #menu-overlay.active .overlay-nav-list li a {
        color: #fff;
        padding: 15px 20px;
        box-sizing: border-box;
        font-weight: 900;
        text-align: center;
        font-family: 'Chivo';
        font-size: 20px;
        display: block;
    }

    #menu-overlay.active .overlay-nav-list li a.btn {
        display: inline-block;
        padding: 10px 20px;
        margin-top: 10px;
        background-color: #FF2A00;
    }

    #menu-overlay.active .overlay-nav-list li a:hover {
        text-decoration: none;
        color: #FF2A00;
    }

    #menu-overlay .bar {
        display: block;
        height: 70px;
        font-family: 'Chivo';
        color: #fff;
    }

    #menu-overlay .bar .cross {
        float: right;
        color: #FF2A00;
        font-size: 30px;
        padding: 20px;
        font-weight: bold;
        padding-right: 50px;
        cursor: pointer;
    }

    #wrapper-8 .banner .heading  h1 {
        font-size: 30px;
        line-height: 40px;
    }

    #wrapper-8 p {
        font-size: 20px;
        line-height: 30px;
    }

    .banner .heading p.last {
        font-size: 17px;
        line-height: 20px;
    }
    .testimonial-slide .left,
    .testimonial-slide .right {
        display: none;
    }
    .testimonial-slide .center {
        width: 100%;
        text-align: left;
    }

    .testimonial-slide .center p {
        text-align: left;
    }
    
}
