


/**************************************
            GLOBAL 
***************************************/

@font-face {
  font-family: 'primaryfonts';
  src: url('../fonts/opensans-light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'primaryfonts';
  src: url('../fonts/opensans-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'primaryfonts';
  src: url('../fonts/opensans-medium.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'primaryfonts';
  src: url('../fonts/opensans-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'primaryfonts';
  src: url('../fonts/opensans-extrabold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}


:root {
  --primary-bg-color: #ffffff;
  --secondary-bg-color: #f2f2f2;
  --primary-txt-color: #ffffff;
  --secondary-txt-color: #123b63;
  --link-txt-color: #123b63;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, :before, :after {
  box-sizing: inherit;

}
body {
  color: #333;
  font-size: 16px;
  font-family: primaryfonts;
  font-weight: 400;
  font-style: normal;
}
a, span {
  display: inline-block;
}
a {
  text-decoration: none;
  color: var(--link-txt-color);
  cursor: pointer;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}


h1, h2, h3, h4, h5, h6{
  color: var(--secondary-txt-color);
}
h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    text-transform: initial;
    letter-spacing: .33px;
    line-height: 40px;
}
p {
  line-height: 28px;
}
button {
  border: 0;
  outline: none;
  cursor: pointer;
}
img {
  max-width: 100%;
  height: auto;
}

strong{
    
}

/**************************************** 
           UTILITIES
*****************************************/

.main-container {
  max-width: 1240px;
  margin: auto;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.flex-evenly {
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

.align-first {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.align-baseline {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
}

.align-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.pv {
  padding: 60px 0;
}
.ph {
  padding: 30px 0;
}



/**********************************
         COMMON
**********************************/

.page-content-container section{
   padding: 80px 0;
}


/**** header ****/

.main-header {
    background-color: var(--primary-bg-color);
    position: relative;
    padding-top: 15px;
    border-bottom: 1px solid #d7d7d7;
    box-shadow: 0px -6px 20px rgb(172 172 172 / 57%);
}

.main-header.header-fixed {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 10;
    -webkit-transition: .2s linear;
    transition: .2s linear;
}

.top-bar {
  width: 100%;
  padding-bottom: 10px;
  
}
.logo img {
  width: 200px;
  height: auto;
}
.top-social-box {
  width: 22%;
}

.top_email_link {
    display: flex;
    align-items: center;
}

.top_email_link img {
    width: 28px;
    height: 26px;
    margin-right: 5px;
}

.top-social-box a {
    font-size: 15px;
    font-weight: 500;
}

.phone-number {
    padding-right: 15px;
    position: relative;
}

.phone-number:after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 22px;
    background-color: #cbc8c8;
    position: absolute;
    top: -1px;
    right: 5px;
}

.phone-number img {
  margin-right: 3px;
}
.top-social-box a img {
  margin-right: 7px;
}

.main-navbar {
    border-top: 1px solid #ececec;
  box-shadow: 0px -6px 20px #f9f9f9;
}


.toggle-navbar-box {
  display: none;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0 15px;
}
.navbar {
  margin: 0;
  height: 50px;
}

.navbar>.list-item {
    position: relative;
    width: 25%;
        height: 100%;
}
.navbar li a {
  font-size: 15px;
  font-weight: 600;
  position: relative;
}
.navbar>.list-item>a {
  display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 25px 0;
    height: 100%;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.fixedontop{
	background-color: #123b63;
    position: fixed;
    width: 100%;
    height: 60px;
    top: 0;
    z-index: 1000;
	display: none;
}
.drop-menu-open{
	 display: none;
}

.drop-menu-open i {
	  font-size: 20px;
    margin-left: 7px;
    margin-top: 1px;
    transform: rotate(90deg);
    color: #fff;
 
}
.header-submenu {
position: absolute;
    top: 49px;
    left: 0;
    width: 100%;
    box-shadow: 0 10px 10px -12px rgb(0 0 0 / 15%);
    background-color: #fff;
    border-top: 1px solid rgba(192, 190, 189, .4);
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
    -webkit-transition: all .3s;
    transition: all .3s;
    z-index: 100;
}
.opened:hover .header-submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.navbar>li>a:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 1000;
    display: block;
    width: 100%;
    height: 4px;
    background-color: #E41B2E;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.navbar>li.opened>a:after {
  opacity: 1;
  visibility: visible;
}

.nav-box {
  width: 30%;
  max-width: 256px;
  width: 100%;
  margin-right: 79px;
}

.nav-box p {
  color: var(--secondary-txt-color);
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 16px;
  padding-right: 30px;
}
.navlinks-arrow {
  padding: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.common-right-arrow {
  background-color: var(--secondary-txt-color);
  padding: 10px;
  color: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-indent: 2px;
  margin-left: 6px;
  -webkit-transition: .3s linear;
  transition: .3s linear;
}

.common-right-arrow i {
    line-height: 0;
}

.nav-box .secondary-submenu-title {
  color: var(--secondary-txt-color);
  font-weight: 600;
  margin: 0 !important;
}
.header-submenu-list li a {
   width: 100%;
    padding: 15px;
    color: #123b63;
    font-size: 15px;
    -webkit-transition: all .3s;
    transition: all .3s;
    font-weight: 500;
    
}
.header-submenu-list li a:hover {
  color: var(--primary-bg-color);
  background-color:var(--secondary-txt-color);
}

.close-all-nav {
    display: none;
}

.close-all-nav img{
  width: 13px;	
}

/********************************
             section 1
********************************/

#section1 {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 0;
}

#section1:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    opacity: .6;
    background-image: -webkit-gradient(linear,left top, left bottom,from(#4b122036),to(rgb(75 18 32 / 25%)));
    background-image: -webkit-linear-gradient(top,#4b122036,rgb(75 18 32 / 25%));
    background-image: linear-gradient(to bottom,#4b122036,rgb(75 18 32 / 25%));
}

.top-info {
    min-height: 570px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 53px 0 72px;
}

.item.common-bg {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.intro-wrap {
    position: relative;
    z-index: 3;
    max-width: 810px;
}

.top-intro-heading {
    color: #fff;
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -1.04px;
    margin: 0;
    margin-bottom: 12px;
    line-height: 60px;
}

.top-intro-txt {
    color: #fff;
    font-size: 17px;
    line-height: 28px;
    padding-right: 74px;
}

.top-info-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 41px;
    margin-bottom: -6px;
}


.top-info-buttons .btn {
    margin: 0 6px 6px 0;
}

.btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    cursor: pointer;
    background-color: #E41B2E;
    border-radius: 6px;
    padding: 15px;
    border: 2px solid #fff;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    white-space: nowrap;
    box-shadow: 0 4px 6px -2px rgb(0 0 0 / 10%), 0 0 6px 0 rgb(0 0 0 / 5%);
    max-width: 100%;
    -webkit-transition: all .3s;
    transition: all .3s;
    font-weight: 600;
}

.btn span {
    text-overflow: ellipsis;
    overflow: hidden;
}

.btn.btn-transparent {
    color: var(--primary-bg-color);
    background-color: transparent;
}



.mobile-hidden {
    margin-left: 5px;
}

.inline-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}


.btn-transparent .common-right-arrow {
    background-color: var(--primary-bg-color);
}

.btn-transparent .common-right-arrow i {
    color: var(--secondary-txt-color);
}

.top-info-buttons .btn:hover .common-right-arrow {
    background-color: #fff;
}


.top-info-buttons .btn:hover .common-right-arrow i{
    color: var(--secondary-txt-color);
}
/*.btn:hover {
    background-color: #123b63;
}*/

.btn.btn-transparent:hover {
    color: var(--secondary-txt-color);
    background-color: var(--primary-bg-color);
}

.btn.btn-transparent:hover .common-right-arrow {
    background-color: var(--secondary-txt-color);
}

.btn.btn-transparent:hover .common-right-arrow i {
     color: var(--primary-bg-color);
}


/*********************************
        section 2
*********************************/


.top-heading-container {
    text-align: center;
}

.top-heading {
    font-size: 35px;
    margin: 0;
    margin-bottom: 20px;
  color: #4b1220;
}

.text-description {
    font-size: 16px;
    max-width: 940px;
    margin: 0 auto;
    font-weight: 500;
  color: rgb(75, 18, 32);
}

#section2 ul {
    width: 80%;
    margin: 30px auto 40px;
}
#section2 ul li img {
    height: 185px;
    display: block;
    width: 200px;
    max-width: 100%;
    margin: 0 auto;
}

#section2 ul li {
    text-align: center;
}
.small-link-heading {
    margin: 20px 0 0;
    font-weight: 600;
    font-size: 18px;
  color: #E41B2E;
}


.btn-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.call-to-action {
    color: #fff;
    background-color: #E41B2E;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 6px; 
  border: 2.5px solid #fff;
  box-shadow: 0 2px 6px -2px rgb(0 0 0 / 10%), 0 0 6px 0 rgb(0 0 0 / 5%);
}

.btn-container .common-right-arrow {
    background-color: var(--secondary-txt-color);
    color: #fff;
    margin-left: 12px;
}

.btn:hover .common-right-arrow,.call-to-action:hover .common-right-arrow {
    background-color: #fff;
    color: var(--secondary-txt-color);
}

/**************************************
           section 3
***************************************/
section#section3 {
    background-color: #F4CFC9;
}


.common-inner .top-heading {
    margin-bottom: 40px;
    text-align: center;
}

.card-container {
    max-width: 940px;
    margin: auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.card-container .flex.cards {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 25px;
    width: 45%;
}

.card-container .img-container {
    margin-right: 20px;
}

.card-description {
    font-size: 16px;
    line-height: 27px;
    color: rgb(75, 18, 32);
}


.bg-icon {
    
    background-repeat: no-repeat;
    background-size: 55px;
    background-position: 6px 6px;
    padding-left: 75px;
}


.bg-icon:first-child{
  background-image: url(../img/beratung-home.svg);
}

.bg-icon:nth-child(2){
  background-image: url(../img/sicherheit-home.svg);
}

.bg-icon:nth-child(3){
  background-image: url(../img/kostenersparnis-home.svg);
}
.bg-icon:nth-child(4){
  background-image: url(../img/komfort-home.svg);
}
.bg-icon:nth-child(5){
  background-image: url(../img/verantwortung-home.svg);
}
.bg-icon:last-child{
  background-image: url(../img/zeitersparnis-home.svg);
}

.card-description  span {
    color: #4b1220;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
}

.card-description p {
    font-size: 15px;
    font-weight: 400;
}

.common-inner .btn-container {
    margin-top: 35px;
}



/* section 4 */

.top-secondary-heading {
    font-size: 32px;
    line-height: 40px;
    max-width: 620px;
    margin: 0;
    margin-bottom: 50px;
  color: #4b1220;
}
.about-box {
    width: 31%;
}

.about-box {
    width: 31.33%;
}

.about-box .img-container {
    margin-bottom: 24px;
    box-shadow: 0 2px 6px -2px rgb(0 0 0 / 10%), 0 0 6px 0 rgb(0 0 0 / 5%);
    border: 8px solid #fff;
}

.about-box-name {
    color: #4b1220;
    font-size: 20px;
    margin: 0;
    margin-bottom: 10px;
    font-weight: 600;
}
.typical-text p {
    color: rgb(75, 18, 32);
    font-size: 15px;
    line-height: 24px;
    margin: 0;
    margin-bottom: 15px;
}

.about-box-bottom .link-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 120px;
    font-weight: 600;
    font-size: 15px;
}

.about-wrap > .flex {
    padding-bottom: 60px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.about-box-bottom .common-right-arrow {
    background-color: #4b1220;
}

.about-box-bottom .link-arrow:hover .common-right-arrow {
    background-color: var(--secondary-txt-color);
}

/* section 5 */

#section5 {
    background: #E41B2E;
    
}



.carousel-wrap {
    width: 80%;
    margin: 0 auto;
    padding: 40px 20px 15px;
    position: relative;
    background-color: #fff;
}

.testimonial-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    position: relative;
}

.testimonial-card figure {
    margin: 0;
    width: 55px;
}

.testimonial-card figure img {
    width: auto;
}

.testimonial-card p {
    line-height: 20px;
    font-weight: 500;
    font-size: 13px;
    margin: 0;
    width: 70%;
    color: #4b1220;
}

.testimonial-card:after {
    height: 100%;
    width: 1px;
    background: #CACACA;
    position: absolute;
    content: "";
    right: -5px;
    top: 0;
}

/* fix blank or flashing items on carousel */
.owl-carousel .item {
  position: relative;
  z-index: 100; 
  -webkit-backface-visibility: hidden; 
}

/* end fix */
.owl-nav > div {
  margin-top: -26px;
  position: absolute;
  top: 50%;
  color: #cdcbcd;
}

.owl-nav i {
  font-size: 52px;
}

.owl-nav .owl-prev {
  left: -30px;
}

.owl-nav .owl-next {
  right: -30px;
}
.owl-dots {
    display: none;
}
.owl-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 15px 0 0;
}
.owl-nav button {
    background-color: transparent;
    border: 0;
    outline: none;
}
.owl-nav button i {
    font-size: 30px;
  color: #4b1220;
}

/*section 6*/

.contact-inner {
    width: 80%;
    margin: auto;
}

.contact-inner .flex {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}


.contact-heading {
    width: 50%;
}

.contact-form-box {
    width: 42%;
}


.contact-heading h2 {
    font-weight: 700;
    font-family: primaryfonts;
    margin: 0;
    margin-top: 10px;
}

.flex.input-field {
    margin-bottom: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.input-field input[type="text"], .input-field input.email {
    margin-right: 10px;

}

.contact-form-box .input-field input:last-child {
    margin-right: 0;
}

.contact-form-box .input-field input[type="text"]{
    width: 49%;
}

.contact-form-box .input-field input[type="email"]{
	width: 100%;
}

.contact-form-box .input-field textarea {
    padding: 10px;
    resize: none;
    min-height: 100px;
}

.btn.get-contact-btn {
    padding: 15px;
   
    
}

.input-field > span {
    color: #a6a3a1;
    font-size: 14px;
    display: inline-block;
    padding-left: 6px;
}

.input-field input[type="text"]::-webkit-input-placeholder, .input-field input.email::-webkit-input-placeholder {
    color: #4b1220;
    font-size: 14px;
    font-weight: 500;
}

.input-field input[type="text"]::-moz-placeholder, .input-field input.email::-moz-placeholder {
    color: #4b1220;
    font-size: 14px;
    font-weight: 500;
}

.input-field input[type="text"]:-ms-input-placeholder, .input-field input.email:-ms-input-placeholder {
    color: #4b1220;
    font-size: 14px;
    font-weight: 500;
}

.input-field input[type="text"]::-ms-input-placeholder, .input-field input.email::-ms-input-placeholder {
    color: #4b1220;
    font-size: 14px;
    font-weight: 500;
}

.input-field input[type="text"]::-webkit-input-placeholder,.input-field input.email::-webkit-input-placeholder {
    color: #4b1220;
    font-size: 14px;
    font-weight: 500;
}

.input-field input[type="text"]::-moz-placeholder,.input-field input.email::-moz-placeholder {
    color: #4b1220;
    font-size: 14px;
    font-weight: 500;
}

.input-field input[type="text"]:-ms-input-placeholder,.input-field input.email:-ms-input-placeholder {
    color: #4b1220;
    font-size: 14px;
    font-weight: 500;
}

.input-field input[type="text"]::placeholder,.input-field input.email::placeholder {
    color: #4b1220;
    font-size: 14px;
    font-weight: 500;
}

.contact-form-box .get-contact-btn {
    width: 100%;
    display: flex;
    justify-content: center;
}

.contact-form-box .get-contact-btn .common-right-arrow {
    margin-left: 10px;
}


/* section 7 */

#section7 {
    border-top: 1px solid #E41B2E;
  background: #F4CFC9;
}

.service-benefits {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.servicebox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 23%;
}

.icon-wrap {
    margin-top: 4px;
    margin-right: 15px;
}

.servicebox .icon-wrap a img {
    width: 35px;
}

.icon-wrap i {
        color: #E41B2E;
    font-size: 25px;
}
.servicebox p {
    margin: 0;
    color: #4b1220;
    font-size: 17px;
    font-weight: 600;
}

.servicebox p span {
    display: block;
    color: #4b1220;
    font-size: 13px;
    font-weight: 500;
}


/* footer */
footer {
    border-top: 1px solid #E41B2E;
    padding: 60px 0 0;
}
.footer-wrap .flex {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.footer-wrap {
    width: 90%;
    margin: auto;
}

.col-foot {
    width: 23%;
    padding-left: 35px;
}
.social-flex-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 5px;
}


.footer-heading {
         margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    color: #4b1220;
    letter-spacing: .33px;
    margin-bottom: 10px;
    text-transform: initial;
}

.col-foot ul {
    margin: 0;
}

.col-foot p {
    margin: 0;
}


.col-foot ul li a, .col-foot p, .col-foot a {
    font-size: 14px;
    color: rgba(75, 18, 32, 0.81);
    line-height: 26px;
}

.footer-bottom-box {
    background-color: #F5E9E2;
    padding: 15px 0 10px;
    margin-top: 60px;
}

.bottom-bar-link {
    color: #453e54;
    font-size: 13px;
    font-weight: 600;
    margin-right: 50px;
    letter-spacing: .33px;
}

.footer-bottom-box p {
    color: #453e54;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .33px;
}

.footer-bottom-box ul, .footer-bottom-box p {
    margin: 0;
}


.footer-bottom-box p a {
    color: #E41B2E;
}



/* removing */

footer ~ span {
    display: none !important;
}


/* contact us  */
.contact-page{
  line-height: 0;
}
.page-intro-with-bg {
    min-height: 350px;
    background-image: url('../img/demo_bg2.jpg');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.contact-page .page-intro-with-bg {
    background-size: cover;
    background-position: 100%;
   
}



.intro-box {
    position: absolute;
    left: 50%;
    top: 40%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    text-align: center;
}


.block-with-bg {
    background-color: #F4CFC9;
  
}

.page-intro-with-bg .top-heading , .page-intro-with-bg .sub-heading {
    color: #fff;
}
.contact-desc {
    width: 45%;
}

.address-box, .social-contact {
    width: 20%;
}

.contact-desc p {
    font-size: 17px;
    line-height: 35px;
  color: #4b1220;
}

.block-with-bg h2 {
    
    font-size: 17px;
  color: #4b1220;
    font-weight: 700;
}

.block-with-bg ul li, .block-with-bg ul li a {
    margin-bottom: 10px;
    line-height: 20px;
    font-style: normal;
    color: #4b1220;
}

.block-with-bg a {
    margin: 0;
}

.left-description {
    width: 30%;
}
.form-box {
    width: 60%;
}

.form-box form label {
    display: inline-block;
    color: #4b1220;
    font-size: 13px;
    font-weight: 600;
    line-height: 24px;
    margin: 9px 0;
}

input[type="text"],input[type="email"],input[type="number"],.text-areabox textarea,.single-field select,textarea {
width: 100%;
padding: 0 15px;
border-radius: 3px;
background-color: #fff;
border: 1px solid #4b1220;
color: rgb(75, 18, 32);
-webkit-transition: all .3s;
transition: all .3s;
outline: none;
font-size: 14px;
min-height: 48px;
    
}

input[type="text"]::-webkit-input-placeholder, input[type="email"]::-webkit-input-placeholder, input[type="number"]::-webkit-input-placeholder, .text-areabox textarea::-webkit-input-placeholder{
  font-size: 14px;
  border-radius: 6px;
  
}

input[type="text"]::-moz-placeholder, input[type="email"]::-moz-placeholder, input[type="number"]::-moz-placeholder, .text-areabox textarea::-moz-placeholder{
  font-size: 14px;
  border-radius: 6px;
  
}

input[type="text"]:-ms-input-placeholder, input[type="email"]:-ms-input-placeholder, input[type="number"]:-ms-input-placeholder, .text-areabox textarea:-ms-input-placeholder{
  font-size: 14px;
  border-radius: 6px;
  
}

input[type="text"]::-ms-input-placeholder, input[type="email"]::-ms-input-placeholder, input[type="number"]::-ms-input-placeholder, .text-areabox textarea::-ms-input-placeholder{
  font-size: 14px;
  border-radius: 6px;
  
}

input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
.text-areabox textarea::-webkit-input-placeholder{
  font-size: 14px;
  border-radius: 6px;
  
}

input[type="text"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
.text-areabox textarea::-moz-placeholder{
  font-size: 14px;
  border-radius: 6px;
  
}

input[type="text"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
.text-areabox textarea:-ms-input-placeholder{
  font-size: 14px;
  border-radius: 6px;
  
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="number"]::placeholder,
.text-areabox textarea::placeholder{
  font-size: 14px;
  border-radius: 6px;
  
}

.text-areabox textarea {
    padding: 15px;
    height: 148px;
   resize: none;
   
}



.form-box .single-field {
    width: 48.3%;
}

.form-box .single-field select {
        padding: 13px 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url(../img/select_arrow_icon.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 96% 14px;
}

.checkbox-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 15px 0 40px;
}

.main-contact-form .btn.get-contact-btn {
    width: auto;
}

.checkbox-wrap span {
    color: #4b1220;
    font-size: 16px;
    padding-left: 8px;
}


/* solutions page */

.solution-top-section {
    padding: 80px 0;
}

.flex.all-grid{
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.all-grid .about-box:first-child, .all-grid .about-box:nth-child(2), .all-grid .about-box:nth-child(3) {
    margin-bottom: 40px;
}

.top-left {
    width: 40%;
}

.top-right {
    width: 55%;
}

.top-right img {
    width: 100%;
}

.solution-top-section .top-secondary-heading {
    font-size: 50px;
    line-height: 60px;
}

.heading-ref {
    font-size: 18px;
    margin-bottom: 30px;
  font-weight: 700;
  color: #4b1220;
}

.top-left p {
    font-size: 15px;
    color: #4b1220;
    line-height: 25px;
    margin-bottom: 20px;
}

.benifits-block .flex{
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.benifit-cards {
    width: 32%;
}



.cards-box {
    background-color: #F4CFC9;
    padding: 15px;
  border-radius: 6px;
    box-shadow: 0px 38px 23px -20px rgba(228, 27, 46, 0.2);
    min-height: 410px;
    -webkit-transition: .3s linear;
    transition: .3s linear;
}


.cards-box:hover {
    background-color: #e41b2e;
}
.cards-box:hover li, .cards-box:hover li .iconbox i {
    color: #fff;
}

.cards-box:hover li .iconbox {
    border-color: #fff;
}



.cards-box li:not(:last-child) {
    margin-bottom: 15px;
}
.cards-box li {
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    line-height: 20px;
    transition: .3s linear;
}

.iconbox {
    border: 2px solid #E41B2E;
    margin-top: 4px;
    margin-right: 10px;
    display: inline-block;
    line-height: 10px;
    transition: .3s linear;
}

.iconbox i {
    color: #E41B2E;
    transition: .3s linear;
}

/* service page */



.vector_img_box {
    width: 40%;
    text-align: center;
}

.vector_img_box img {
    width: 350px;
}

.content_left_desc {
    width: 55%;
}

.content_left_desc h3 {
    color: #4b1220;
    font-size: 30px;
    line-height: 40px;
}

.content_left_desc p {
    font-size: 14px;
    color: #4b1220;
    line-height: 25px;
    padding-top: 15px;
}

.grid_box_container {
    margin: 80px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}



.grid_box_container a {
    width: 24%;
	height: auto;
    /*height: 200px;*/
    margin-bottom: 10px;
    margin-left: 11px;
    position: relative;
}

.grid_box_container a:after {
    content: '';
    display: inline-block;
    background-color: rgba(228, 27, 46, .5);
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    z-index: 1;
    left: 0;
    transition: .3s linear;
}

.grid_box_container a:hover:after {
    opacity: 1;
}


.grid_box_container img {
    height: 100%;
    width: 100%;
}






.get_contact_now {
    background-color: #f2f2f2;
    padding: 60px 0;
}

.contact_inner_box {
    width: 80%;
    margin: auto;
}

.flex.get_contact {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
}


.get_contact form {
    width: 65%;
}

.extra_info_right {
    width: 34%;
}

.field_leftbox, .field_rightbox {
    width: 50%;
}

.get_contact .input_field:not(:last-child) {
    margin-bottom: 10px;
}

.input_field {
    width: 97%;
}



.input_field textarea {
    resize: none;
    outline: none;
    display: block;
    border: 1px solid #4b1220;
    width: 100%;
    height: 105px;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 6px;
}

.field_rightbox .call-to-action {
    width: 97%;
    padding: 13px 0;
}

.get_contact .call-to-action {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

input.call_to_action {
    background-color: #4b1220;
    border: 0;
    outline: none;
    color: #fff;
    padding: 13px 15px;
    display: block;
    width: 97%;
}

.contact_inner_box h3 {
    color: #4b1220;
    font-size: 28px;
    text-transform: initial;
    margin-bottom: 18px;
}

.extra_info_right p {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 6px;
    font-weight: 600;
}

.extra_info_right a, .extra_info_right span {
    color: #000;
    font-size: 13px;
    font-weight: 600;
}

.extra_info_right span {
    display: block;
    margin-top: 8px;
}

/* about us  */

.about-page-grids {
    padding: 80px 0;
}

.about-page-grids .flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
.grid-boxes {
    background-color: #F4CFC9;
    width: 30%;
    min-height: 275px;
    padding: 60px 35px;
    box-shadow: 0px 38px 23px -20px rgba(228, 27, 46, 0.2);
    border-radius: 6px;
    transition: .3s linear;
}

.grid-boxes:hover {
    background-color: #e41b2e;
}

.grid-boxes:hover h4, .grid-boxes:hover p {
    color: #fff;
}

.grid-boxes:nth-child(2) {
    margin: 0 20px;
}

.grid-boxes h4 {
    color: #4b1220;
    line-height: initial;
    font-size: 15px;
    margin-bottom: 15px;
    transition: .3s linear;
}

.grid-boxes p {
    font-size: 14px;
    
  color: #4b1220;
  transition: .3s linear;
}

.about-page-grids .btn-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 40px;
}

/* privacy policy */

.privacy-page {
    background-color: #f2f2f2;
    padding: 35px;
}

h2.main-title {
    text-align: center;
    font-size: 35px;
    text-transform: uppercase;
    color: #4b1220;
}

.policy-inner h3 {
    color: #4b1220;
    font-weight: 600;
    font-size: 20px;
    margin: 15px 0;
}



.policy-inner p {
    font-size: 14px;
    text-align: justify;
    font-weight: 500;
  color: #4b1220;
}


.checkbox_common_wrap span,#kontaktfom span {
    font-size: 14px;
}


.after_process .flex:nth-child(4) {
    display: block;
}

.alert p {
    font-size: 14px;
    margin-bottom: 10px;
}

/* small view below 767 */

@media screen and (max-width: 767px) {

.page-content-container section {
        padding: 30px 15px;
}


.top-social-box .flex,.top-social-box.flex{
   display: flex;
}
.flex{
	display: block;
}

.mob-block {
    display: block;
    text-align: center;
}

 .top_email_link {
    display: none;
}

.phone-number:after {
    display: none;
  
}

.mob-block .top-social-box {
        width: auto;
        padding: 10px 0 0;
        justify-content: center;
}

.main-navbar.nav-slide-open.nav-slide-open {
        z-index: 1000;
        background-color: #f8f8f8;
        visibility: visible;
        transform: translateX(0);
}


.item.common-bg {

    background-position: 100%;
   
}



    .main-header {
        padding: 0;
    }
    .toggle-navbar-box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border-bottom: 1px solid #e6e5e5;
        padding-bottom: 12px;
    }
    .top-bar {
        padding: 15px;
    }
  
    .mob-block .top-social-box a {
        font-size: 13px;
        font-weight: 600;
    }
 
   .non_scroll {
        overflow-y: hidden;
}


    .main-navbar {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100vh;
    -webkit-transition: all .3s;
    transition: all .3s;
    visibility: hidden;
    border: 0;
    box-shadow: unset;
    transform: translateX(-100%);
    overflow-y: hidden;
    }

    .navbar {
        height: 100vh;
        display: block;
        padding-top: 60px;
        overflow-y: scroll;
    }
    .navbar>.list-item {
        height: auto;
    width: 100%;
    border-top: 1px solid #123b63;
    }

     .navbar>.list-item:last-child {
      
    border-bottom: 1px solid #123b63;
    }
.menu-dropdown a {
    width: 30%;
}

    .navbar>.list-item>a {
        padding: 15px;
    justify-content: flex-start;
    }
    .drop-menu-open {
          display: inline-block;
    position: absolute;
    right: 15px;
    top: 8px;
    background-color: #123b63;
    padding: 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    }
    .header-submenu {
            display: none;
    opacity: 1;
    visibility: visible;
    position: relative;
    top: 0;
    background-color: transparent;
    padding: 15px 20px;
    border: 0;
    box-shadow: unset;
    transform: translateY(0);
    }
  



.submenu_show {
    display: block;
}

    .nav-box {
        max-width: 100%;
    }
    a.navlinks-arrow {
        margin-top: 0;
        border-bottom: 1px solid #e6e5e5;
        padding-bottom: 20px !important;
        margin-bottom: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-weight: 600;
        font-size: 15px;
    }
    .common-right-arrow {
        margin-left: 12px;
        font-size: 14px;
    }
    .onestep-back {
        position: fixed;
        left: 18px;
        top: 21px;
        background-color: transparent;
        border: 0;
        outline: none;
        display: none;
        padding: 0;
    }
  
    .navbar>li>a:after {
        display: none;
    }


     .fixedontop {
    display: block;
}


    .nav-slide-open .close-all-nav {
       position: absolute;
    top: 16px;
    right: 15px;
    background-color: #fff;
    border: 0;
    outline: none;
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
    .visible-close-btn:after {
        content: '';
        display: inline-block;
        width: 100%;
        height: 64px;
        background-color: #fff;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 4;
        border-bottom: 1px solid #e6e5e5;
    }
    .visible-close-btn .onestep-back {
        display: block;
        z-index: 100;
    }
 
  
    .visible-close-btn .close-all-nav {
        z-index: 100;
        display: block;
    }
    .mob-navbtn {
        outline: none;
        cursor: pointer;
        position: relative;
        z-index: 102;
        overflow: hidden;
        width: 20px;
        height: 12px;
        font-size: 0;
        text-indent: -9999px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        box-shadow: none;
        border: none;
        background-color: transparent;
        cursor: pointer;
        -webkit-transition: all .3s;
        transition: all .3s;
    }
    .mob-navbtn span {
        display: block;
        position: absolute;
        top: 5px;
        left: 0;
        right: 0;
        height: 2px;
        background: #123b63;
        -webkit-transition: all .3s;
        transition: all .3s;
    }
    .active_btn span {
        background: 0 0;
        border: none;
    }
    .mob-navbtn span:before, .mob-navbtn span:after {
        position: absolute;
        display: block;
        left: 0;
        width: 20px;
        height: 2px;
        background: #123b63;
        content: "";
        -webkit-transition: all .3s;
        transition: all .3s;
    }
    .mob-navbtn span:before {
        top: -5px;
    }
    .active_btn span:before {
        top: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .mob-navbtn span:after {
        bottom: -5px;
    }
    .active_btn span:after {
        bottom: 0;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .nav-box .secondary-submenu-title {
        font-size: 14px;
        margin: 0 0 10px !important;
    }
    .header-submenu-list li:last-child {
        margin-bottom: 7px;
    }
    .close-all-nav {
        display: none;
    }
    .close-all-nav span:before, .close-all-nav span:after {
        content: '';
        width: 18px;
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        height: 2px;
        background: #123b63;
        -webkit-transition: all .3s;
        transition: all .3s;
    }
    .close-all-nav span {
        background: 0 0;
        border: none;
        display: none;
    }
    .visible-close-btn .close-all-nav span {
        display: block;
    }
    .close-all-nav span:before {
        top: 6px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .close-all-nav span:after {
        bottom: 12px;
        -webkit-transform: rotate(-47deg);
        transform: rotate(-47deg);
    }
    /* section 1 */
    .top-intro-heading {
        font-size: 20px;
        line-height: initial;
    }
    .top-intro-txt {
        font-size: 13px;
        line-height: initial;
        padding-right: 0;
    }
    .btn {
        padding: 11px;
        width: 100%;
    justify-content: center;
    }
    .mobile-hidden {
        display: none;
    }
    .top-info {
        padding: 20px;
        min-height: auto;
    }

   .top-info-buttons{
   	margin-top: 20px;
   }


.top-heading,.common-inner .top-heading {
    font-size: 22px;
    line-height: initial;
}

.text-description {
    font-size: 15px;
    line-height: 25px;
    text-align: justify;
}

#section2 ul {
    width: 90%;
    margin: 10px auto 25px;
}

#section2 ul li:not(:last-child) {
    margin-bottom: 25px;
}

#section2 ul li img {
    width: 80px;
    height: 80px;
   
}

.about-wrap > .flex {
    padding-bottom: 30px;
}

.small-link-heading {
    margin: 0;
   
}
.common-inner .top-heading {
	margin-bottom: 20px;
}

.card-container .flex.cards {
    width: auto;
}


.top-secondary-heading {
    font-size: 22px;
    line-height: initial;
    text-align: center;
}


.about-box {
    width: auto;
    text-align: center;
}


.about-box:not(:last-child) {
    margin-bottom: 24px;
}

.top-secondary-heading {
    margin-bottom: 20px;
}

.about-box-bottom {
    text-align: center;
}
.about-box-bottom .link-arrow {
    width: 135px;
    margin: auto;
    justify-content: center;
}
.carousel-wrap {
	width: 100%;
}


.contact-inner {
    width: 100%;
}

.contact-form-box .input-field input[type="text"], .contact-form-box .input-field input[type="email"] {
    width: 100%;
    margin-bottom: 15px;
}

.contact-form-box .input-field textarea{
  margin-top: 15px;

}

.flex.input-field {
    margin-bottom: 0;
  
}
.contact-form-box .get-contact-btn {
    width: 100%;
}

.mob-flex {
    display: flex;
    align-items: center;
    margin-top: 18px;
}

.mob-flex span{
  font-size: 12px;
}

.contact-heading h2 {
    margin-bottom: 20px;
}

.service-benefits {
    display: block;
}

.servicebox {
    display: block;
    text-align: center;
    width: 100%;
}
.servicebox:not(:last-child){
	padding-bottom: 20px;
}

footer {
    padding: 20px 0 0;
}

.col-foot {
    width: 100%;
    padding: 0;
}

.col-foot:not(:last-child) {
    margin-bottom: 20px;
}

.social-flex-box {
    justify-content: flex-start;
}

.social-flex-box a {
    margin-right: 20px;
}

.footer-bottom-box {
    margin-top: 15px;
}

.footer-bottom-box .main-container > .flex {
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.footer-bottom-box .main-container > .flex ul.flex {
    display: flex;
}

.bottom-bar-link {
    margin-right: 8px;
    font-size: 11px;
}

.footer-bottom-box p {
    font-size: 11px;
}


/* about us page */

.solution-top-section, .animate-container, .about-page-grids {
    padding: 30px 15px;
}

.about-page-grids {
    padding-top: 0;
}

.top-left, .top-right, .vector_img_box, .content_left_desc, .grid-boxes,#kontaktfom, .field_leftbox, .field_rightbox,.extra_info_right,.input_field {
    width: auto;
}


.field_leftbox {
    margin-bottom: 10px;
}
.get_contact form {
    margin-bottom: 15px;
}

.solution-top-section .top-secondary-heading {
    font-size: 30px;
    line-height: 30px;
}

.heading-ref {
    display: block;
    text-align: center;
    font-size: 15px;
    margin-bottom: 10px;
}

.top-left p {
    font-size: 14px;
    margin-bottom: 15px;
}

.vector_img_box img {
    width: 150px;
}

.content_left_desc h3 {
    font-size: 25px;
    line-height: initial;
    text-align: center;
    margin: 20px 0 0;
}

.content_left_desc p {
    font-size: 13px;
    line-height: 22px;
}

.grid-boxes {
    padding: 20px;
    min-height: auto;
    
    box-shadow: unset;
}

.grid-boxes:not(:last-child){
   margin-bottom: 20px;

}

.grid-boxes:nth-child(2) {
        margin: 0;
    margin-bottom: 20px;
}

.get_contact_now {
    padding: 30px 0;
}
.contact_inner_box h3 {
    font-size: 21px;
    line-height: initial;
    text-align: center;
}


/* service page */


.link-btn {
    display: block;
    width: 100%;
    margin-bottom: 15px;
}
.benifit-cards:not(:last-child) {
    margin-bottom: 15px;
}
.benifit-cards {
    width: auto;
    padding: 0 15px;
}

.cards-box {
    min-height: auto;
    box-shadow: unset;
}

/* service single  */

.grid_box_container {
    margin: 0 0 20px;
    padding: 0 15px;
}
.grid_box_container a {
    display: block;
    width: 100%;
    margin: 0;
    height: auto;
    margin-bottom: 10px;
}


/* contact page */

.contact-page .page-intro-with-bg {
    background-image: none;
    background-color: #E41B2E;
    min-height: auto;
}

.contact-page .page-intro-with-bg .top-heading {
    margin: 0;
}

/*.contact-page .page-intro-with-bg .sub-heading{
  display: none;
}*/


.contact-page .intro-box{
    position: relative;
    padding: 20px;
}

.block-with-bg {
    padding: 20px 15px;
}

.contact-desc,.address-box, .social-contact{
  width: auto;
  text-align: center;
}

.contact-desc p {
    font-size: 14px;
    line-height: 28px;
}

.block-with-bg ul li{
    line-height: 16px;

    font-size: 14px;
}

.block-with-bg ul li a {
    margin: 0;
}
.main-contact-form {
    padding: 20px 15px;
}

.left-description {
    width: auto;
}

.main-contact-form .left-description .top-secondary-heading {
    margin-bottom: 5px;
}

.main-contact-form .left-description p {
    font-size: 14px;
    text-align: center;
}

.form-box,.form-box .single-field {
    width: auto;
}

.checkbox-wrap {

    align-items: flex-start;
    padding: 20px 0;
    
}

.checkbox-wrap input[type="checkbox"] {
    margin-top: 5px;
}
.checkbox-wrap span {

    font-size: 13px;

    line-height: initial;
}


.main-contact-form .btn.get-contact-btn {
  width: 100%;
}

/*privacy policy*/

.privacy-page {
    padding: 20px;
}

.privacy-page .main-title {
    font-size: 25px;
}

.policy-inner h3 {
    margin: 10px 0 6px;
    font-size: 20px;
    line-height: initial;
}

.contact-heading p {
    font-size: 14px;
    line-height: 22px;
    text-align: center;
}

.address-box, .social-contact {
  
    margin-top: 14px;
}


.contact-form-box, .contact-heading {
    width: 100%;
}

.contact-form-box .input-field input[type="email"] {

    margin: 0 !important;
}

.contact-form-box .input-field textarea {
    margin: 15px 0;
}

.checkbox_common_wrap {
    margin-bottom: 12px !important;
}

}



@media screen and (min-width: 768px) and (max-width: 1200px){

.main-header .top-bar {
    padding-bottom: 10px;
}
	
	.top-bar.mob-block {
    padding-left: 20px;
    padding-right: 20px;
}

.top-social-box {
    width: auto;
}

.main-container {
    padding: 0 20px;
}

.solution-top-section,.about-page-grids,.get_contact_now{
	padding: 30px 0; 
}

#section2 ul{
	width: 95%;
}

.about-page .solution-top-section .main-container > .flex, .solution-page .solution-top-section .main-container > .flex,.service-page .solution-top-section .main-container > .flex{
    align-items: flex-start;
}

.solution-top-section .top-secondary-heading {
        margin-bottom: 10px;
    font-size: 32px;
    line-height: initial;
}

.heading-ref {
    line-height: 25px;
    margin-bottom: 15px;
}
.contact_inner_box {
    width: 90%;
    
}

.contact_inner_box .flex.get_contact {
    justify-content: space-between;
}
.get_contact form {
    width: 64%;
}

.extra_info_right {
    width: 32%;
}

.benifits-block .benifit-cards .cards-box {
    min-height: 544px;
}

.about-wrap .top-secondary-heading {
    margin-bottom: 25px;
}

#section4 {
    padding: 30px 0;
}

.grid_box_container a {
    width: 18%;
    margin-left: 13px;

}

.grid_box_container {
    margin: 30px 0;

}

.contact-page .page-intro-with-bg{
   min-height: 160px;
}

.contact-page .intro-box {
    top: 20%;
}

.contact-page .intro-box .top-heading {
    margin-bottom: 5px;
}

.contact-page .block-with-bg {
    padding: 20px 0;
}

.contact-page .contact-desc p {
    font-size: 15px;
    line-height: 23px;
}

.contact-page .address-box, .contact-page .social-contact {
    width: 24%;
}

.contact-page .block-with-bg h2 {
    font-size: 16px;
    line-height: initial;
    margin-bottom: 8px;
}

.contact-page .block-with-bg ul li {
    line-height: 22px;
    font-size: 14px;
}

.contact-page .block-with-bg ul li a {
    margin: 0;
}

.contact-page .main-contact-form .tabed_block {
    display: block;
}
.contact-page .left-description ,.form-box{
  width: auto;
}

.tabed_block .top-secondary-heading {
    margin-bottom: 10px;
}

.contact-page .main-contact-form {
    padding: 25px 0;
}

 #section7 {
    padding: 42px 0 38px;
}

.servicebox {
    width: 23%;
}

.servicebox:last-child {
    width: 30%;
}

footer{
	padding: 35px 0 0;
}

.footer-wrap {
    width: 100%;
}

.footer-wrap .col-foot {
    width: 25%;
    padding-left: 20px;
}

.footer-bottom-box {
    margin-top: 25px;
}

.contact-form-box .input-field input[type="email"] {

    margin: 0 !important;
}
.contact-form-box .input-field textarea {
    margin: 15px 0;
}

.checkbox_common_wrap {
    margin-bottom: 12px !important;
}

}

