@font-face {
    font-family: 'Nunito';
    font-weight: 400;
    src: url(../fonts/Nunito/Nunito-Regular.ttf);
}

@font-face {
    font-family: 'Montserrat';
    font-weight: 400;
    src: url(../fonts/Montserrat/Montserrat-Regular.ttf);
}

@font-face {
    font-family: 'Montserrat';
    font-weight: 700;
    src: url(../fonts/Montserrat/Montserrat-Bold.ttf);
}

@font-face {
    font-family: 'Montserrat';
    font-weight: 100;
    src: url(../fonts/Montserrat/Montserrat-ExtraLight.ttf);
}


*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Nunito',sans-serif;

}

#offers *,  nav *{
    font-family: 'Montserrat', sans-serif;
}
body{
    color: #4e4e4e;
    line-height: 1.8;
}
a{
    text-decoration: none;
}
nav{
    box-shadow: 0 0 10px rgb(12 12 12 / 6%);
}
.nav-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    flex-wrap: wrap;
    position: relative;
}

nav .logo{
    max-width: 250px;
    padding-left:20px;
    text-align: center;
}
nav .logo img{
    max-width: 100%;
}

nav ul.menu{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style-type: none;
    margin-left: auto;
    background: #FFF;
}

nav ul.menu li{
    padding: 18px 15px;   
    position: relative;
}

nav ul.menu li:not(:last-child)::after{
    content: '';
    height: 20px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

nav ul.menu li a{
    line-height: 22px;
    color: #444;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;   
    position: relative;
    display: inline-block;
    width: 100%;
}

nav ul.menu li a::before{
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: #29256a;
    height: 2px;
    transition: 0.4s all ease;
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.4s all ease;
    -ms-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
}

nav div.tools{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav button.search-operator{
    background:transparent ;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #525151;
    outline: none;
    font-weight: 100;
}

button.hamburger.hamburger-collapse , button.hamburger.hamburger-collapse:focus {
    outline: none;
    max-width: 35px;
    overflow: hidden;
    padding: 15px 0px;
    margin-left: 25px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 30px !important;
    height: 3px !important;
    background-color: #525151 !important;
}

nav ul.menu li a:hover::before{
    width: 100%;
}

nav .box-search{
    padding: 25px;
    max-width: 300px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    box-shadow: 0 0 10px rgb(0 0 0 / 8%);
    align-items: stretch;
    position: absolute;
    top: 100%;
    right: 10px;
    display: none;
    z-index: 20;
    background: #FFF;
}

nav .box-search .box-search-content{
    display: flex;
}

nav .box-search input{
    background-color:#f9f9f9 ;
    padding: 11px 15px;
    color: #8d8d8d;
    border: none;
    border-top-left-radius:4px ;
    border-bottom-left-radius:4px ;
}
nav .box-search:hover{
    box-shadow: none;
    transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -ms-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
}

nav div.tools .box-search   button.search{
    color: #FFF;
    background-color: #29256a;
    font-weight: bold;
    width: 50px;
    height: 50px;
    text-align: center;
    display: inline-block;
    border: none;
    outline: none;
    border-top-right-radius:4px ;
    border-bottom-right-radius:4px ;
    
}

nav div.tools{
    display: none;
}



#offers .offer{
    display: flex;
    align-items: center;
    padding: 25px 0 ;
    justify-content: center;

}

#offers .offer:not(:last-child){
    border-right: 1px solid rgba(49, 49, 49, 0.05);
}

#offers .offer .image{
    max-width: 30px;
    margin-right: 15px;
    text-align: center;
}
#offers .offer .image img{
    max-width: 100%;
}
#offers .offer .desc{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#offers .offer .title{
    color: #29256a;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5;
}
#offers .offer .hint{
    color: #b0b0b0;
    line-height: 1.8;
}

.main-button{
    cursor: pointer;
    background-color: #29256a;
    color: #FFF;
    padding: 0px 35px;
    line-height: 50px;
    font-size: 11px;
    border-radius: 6px;
    height: 50px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
}

.main-button:hover{
    background-color: #bd103a;
    transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -ms-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
}


header{
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.box-hint{
    background:#29256a;
    color: #FFF;
    text-align: center;
    line-height: 28px;
    padding: 0 44px;
}
section#about-us{
    margin-top: 30px;
    margin-bottom: 30px;
}
section#about-us .content{
    color: #FFF;
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
    background: #bd103a;
    padding: 10px;
}
section#about-us p:last-child {
    margin-bottom: 0px;
}

section#about-us .content span{
    font-size: 19px;
    display: block;
    text-decoration: underline;
    font-weight: bold;
}


section#form {
    padding-top: 25px;
    margin-bottom: 20px;
}

section#form form {
    margin-bottom: 30px;
}

section#form input , section#form select , section#form textarea {
    padding: 10px 20px 10px 20px;
    background: #f8f8f8;
    border: none;
    font-size: 19px;
    border-radius: 6px;
    color: #8d8d8d;
    line-height: 1.7;
    margin-bottom: 5px;
    display: inline-block;
    width: 100%;
}

section#form input[type=submit] {
    background-color: #29256a;
    color: #FFF;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
}

section#form input[type=submit]:hover {
    background-color: #bd103a;
    transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -ms-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
}

section#form a.see-document , section#studies a.school-decorating {
    width: 100%;
    display: block;
    font-size: 21px;
    height: 57px;
    line-height: 57px;
    text-align: center;
    background: #bd103a;
    color: #fff ;
    border: 1px solid #bd103a;
    text-transform: uppercase;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

section#form a.see-document:hover , section#studies a.school-decorating:hover {
    background: #5b55c3;
    transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -ms-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    border-bottom: 1px solid #5b55c3;
    border-top: 1px solid #5b55c3;
}


section#testimonials {
    background: #29256a;
    background-size: cover;
    background-position: top center;
    padding: 50px 0px;
}

section#testimonials .title{
    font-size: 32px;
    color: #FFF;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Nunito',sans-serif;

}
section#testimonials .boxes{
    margin-bottom: 40px;
}

section#testimonials .box{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: #4e4e4e;
    font-size: 16px;
    line-height: 1.8;
    background:#FFF ;
    padding: 10px 10px 10px 10px;
    border-radius: 5px;
    border: 3px solid #29256a ;
    margin-bottom: 20px;
}

section#testimonials .box .box-icon{
    max-width: 70px;
    margin-bottom: 10px;
}

section#testimonials .box .box-icon img{
    width: 100%;
}

section#testimonials .box .box-title{
    font-size: 18pt;
    font-weight:bold ;
    margin-bottom: 20px;
    font-family: 'Nunito',sans-serif;
}

section#testimonials .box p{
    text-align: center;
    margin-bottom: 20px;
}

section#testimonials .opinion{
    background-color: #29256a;
    padding: 10px 60px;
    color: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

section#testimonials .opinion-image{
    max-width: 125px;
    text-align: center;
}

section#testimonials .opinion-image img{
    max-width: 100%;
}

section#testimonials .opinion-text{
    font-size: 18pt;
    margin-bottom: 20px;
    text-align: center;
}

section#testimonials .opinion-owner{
    font-size: 18pt;
    margin-bottom: 20px;
    text-align: center;
}

section#testimonials .opinion a{
    font-size: 10pt;
    text-align: center;
    display: block;
    margin-bottom:20px;
    color: #FFF;
}

section#testimonials .swiper-button-prev{
    top: 100%;
    background: url(../images/controls.png) no-repeat 0 -32px;
    width: 32px;
    height: 32px;
    margin-top: -50px;
}

section#testimonials .swiper-button-next{
    top: 100%;
    background: url(../images/controls.png) no-repeat  -43px -32px;
    width: 32px;
    height: 32px;
    margin-top: -50px;
} 

section#testimonials .swiper-button-prev::after , section#testimonials .swiper-button-next::after{
    display: none;
}


section#studies{
    padding-top: 30px ;
    padding-bottom: 50px ;
}
section#studies .title{
    text-align: center;
    color: #29256a;
    font-weight: 700;
    line-height: 1.5;
    font-size: 32px;
    font-weight: bolder;
    margin-bottom: 40px;
}

section#studies .study{
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    box-shadow: 0 1px 3px rgb(0 0 0 / 10%);
}

section#studies .study:hover{
    box-shadow: 0 1px 3px rgb(0 0 0 / 20%);
    transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -ms-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
}

section#studies .study .image{
    position: relative;
    max-width: 100%;
}


section#studies .study .image img{
    width: 100%;
}
section#studies .study .over-lay{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 10px;
    background: rgba(0,0,0,60%);
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    opacity: 0;
    text-align: center;
    padding: 10px;
}
section#studies .study .over-lay a{
    color: #FFF;
}
section#studies .study .image:hover .over-lay{
    opacity: 1;
    transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -ms-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
}

section#studies .study .title h3{
    font-size: 16px;
    font-weight: bold;
    padding: 25px 15px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    line-height: 24px;
}
section#studies .study .title h3 a{
    color: #333;
}

section#studies .study .title a:hover{
    color: #888;
    transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -ms-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
}

section#studies  .swiper-container.studies{
    padding: 15px 40px;
}

section#studies .swiper-container.studies .swiper-button-prev{
    /*background: url(../images/controls.png) no-repeat 0 -32px;
    width: 32px;
    height: 32px;
    margin-top: -50px;
    left: 0;
    */background: url(../images/angle-left-solid.svg) no-repeat center center;
    content: "\f104";
    font-family: 'Font Awesome 5 Pro';
    left: 0;
    width: 28px;
    height: 28px;
    border: 3px solid #aaa ;
    color: #aaa ;
    border-radius: 50%;
    margin-top: -14px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

section#studies .swiper-container.studies .swiper-button-next{
    /*background: url(../images/controls.png) no-repeat  -43px -32px;
    width: 32px;
    height: 32px;
    margin-top: -50px;
    right: 0;
    */background: url(../images/angle-right-solid.svg) no-repeat center center;
    content: "\f104";
    font-family: 'Font Awesome 5 Pro';
    right: 0;
    width: 28px;
    height: 28px;
    border: 3px solid #aaa ;
    color: #aaa ;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-top: -14px;
} 


section#studies .swiper-container.studies .swiper-button-prev::after , section#studies .swiper-container.studies .swiper-button-next::after{
    display: none;
}


section#studies .commercial{
    padding: 15px 0px;
}

section#studies .commercial .title{
    text-align: left;
    max-width: 420px;
}
section#studies .commercial p{
    margin-bottom: 20px;
}

section#studies .commercial p.policies{
    font-size: 14pt;
    text-align: center;
}
section#studies .commercial p.please-note{
    font-size: 14pt;
    color: #bd103a;
}
section#studies a.school-decorating{
    margin-bottom: 30px;
}
section#studies .sub-title{
    color: #29256a;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 16px;
}
section#studies .second .image{
    max-width: 100%;
    text-align: center;
}

section#studies .second .image img{
    width: 100%;
}
section#studies .second .images{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin: 15px 0;
}

section#studies .second .images img{
    width: calc(30% - ( 0.7 * 30px ) );
}

section#studies .second .images img:first-child{
    width: calc(40% - ( 0.6 * 30px ) );
}
section#studies .qoute-title{
    font-size: 14pt;
    color: #29256a;
}
section#studies .qoute-owner{
    color: #bd103a;
    font-weight: bold;
}

section#studies .swiper-container.images .image{
    max-width: 100%;
}

section#studies .swiper-container.images .image img{
    width: 100%;
}

section#studies .swiper-container.images .swiper-button-prev:after , section#studies .swiper-container.images  .swiper-button-next:after{
    color: #FFF;
    font-size: 25px;
    font-weight: bolder;
}

section#studies .swiper-container.images .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,80%);
}
section#studies .swiper-container.images .swiper-pagination{
    text-align: right;
    padding-right: 10px;
}
section#studies .swiper-container.images .swiper-pagination-bullet-active{
    background: #FFF;
}

.bottom-box-hint{
    padding: 20px;
}

.box-hint p{
    margin-bottom: 20px;
}


footer{
    padding-top: 80px;
    background:#080f23;
    color: #ccc;
    min-height: 300px;
}
footer p{
    margin-bottom: 20px;
}
.footer-title{
    color: #fff;
    margin-bottom: 60px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    margin-top:10px;
    margin-bottom: 60px;
}

.footer-title:after {
    content: "";
    width: 50px;
    height: 3px;
    bottom: -15px;
    left: 0;
    position: absolute;
    z-index: 1;
    background: #29256a;
}

footer address{
    margin:0 0 20px;
	font-style: normal;
}

footer a{
    color: #dadada !important;
 
}

footer a:hover{
    transition: 0.3s ease all;
    color: #b6b4e4 !important;
    -webkit-transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -ms-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
}

footer p.phone {
    font-size: 25px;
    font-weight: bold;
}

footer .phone .icon{
    color: #bd103a;
}


footer .copyright{
    background: #080F23;
    color: #ccc;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(232, 232, 232, 0.05);
}


a.get-a-qoute{
    width: 100%;
    display: block;
    font-size: 15px;
    padding: 10px 30px;
    text-align: center;
    background: #bd103a;
    color: #fff ;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
a.get-a-qoute .icon{
    float: left;
}
a.get-a-qoute:hover{
    background: #5b55c3;
    color: #FFF;
    transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -ms-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;

}

footer ul.points{
    list-style-type: none;
}
footer ul.points li{
    padding: 5px 0;
    padding-left: 34px !important;
    background: url(../images/tick.png) no-repeat left;
}

footer .image{
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
}
footer .image img{
    max-width: 100%;
}

footer .webdesign span{
    font-size: 8pt;
}
footer .copy-right{
    background: #080F23;
    color: #ccc;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(232, 232, 232, 0.05);
    font-size: 14px;
    margin-top: 80px;
}
footer .copy-right p{
    margin-bottom: 0px;
}

footer .copy-right ul{
    list-style-type: none;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

footer .copy-right ul li{
    display: inline-block;
    margin-right: 5px;
}

footer .copy-right ul li:not(:first-child)::before {
    content: "|";
    color: #7D7D7D;
    padding-right: 8px;
}
footer .copy-right ul li  a {
    color: #fff;
    font-size: 14px;
}


#up-to-top{
    display: none;
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    line-height: 47px;
    font-size: 20px;
    text-align: center;
    background: #29256a;
    color: #fff;
    border-radius: 50%;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    z-index: 9999;
    box-shadow: 0 0 10px rgb(0 0 0 / 8%);
}

#to-top:hover {
    background: #bd103a;
}



@media(max-width:1024px){
    nav{
        box-shadow: none;
        border-bottom: 1px solid #ededed;
    }
    nav .logo{
        max-width: 150px;
        padding-left: 0;
    }
    nav ul.menu{
        flex-direction: column;
        position: sticky;
        top: 100%;
        width: 100%;
        box-shadow: 0px 8px 11px 4px rgb(158 158 158 / 10%);
        display: none;
        z-index: 19;
        
    }
    

    nav ul.menu li{
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        border-bottom-width: 1px;
        border-bottom-style: solid;
        border-bottom-color: rgba(0, 0, 0, 0.03);
        width: 100%;
    }

    nav ul.menu li:not(:last-child)::after{
        display: none;
    }

    
    nav ul.menu li a{
        font-size: 16px;
    }

    nav ul.menu li a::before{
        display: none;
    }
    nav div.tools{
        display: flex;
    }
}


@media(max-width:992px){
    #offers .offer{
        justify-content: flex-start;
    }
    
    #offers .offer:not(:last-child){
        border-right: none;
    }

    #offers .main-button{
        width: 100%;
        text-align: center;
        font-size: 16px;
    }
    #offers .offer .image{
        max-width: 80px;
        width: 80px;
    }

    section#studies  .swiper-container.studies{
        padding: 15px 0px;
    }
    
    section#studies .swiper-container.studies .swiper-button-prev{
        display: none;
    }
    
    section#studies .swiper-container.studies .swiper-button-next{
        display: none;

    } 

    #offers .offer:nth-child(3){
        order: -1;
    }

}

@media(max-width:768px){
    header{
        height: 100px;
    }
    footer .copy-right p{
        text-align: center;
        margin-bottom: 10px;
    }

    section#studies .commercial .title , section#studies .title{
        font-size: 20px;
    }

    section#form .hint-box{
        margin-bottom: 30px;
    }
}


@media(max-width:576px){
    #offers .main-button{
        margin: 0px 15px;
    }
    section#studies .commercial .title , section#studies .title{
        font-size: 16px;
    }

    footer p.phone {
        font-size: 22px;
    }
}

@media(max-width:488px){
    .box-hint:not(.bottom-box-hint){
        padding: 0 20px;
    }
    section#testimonials .opinion{
        padding: 10px 20px;
    }

}





nav.mobile-menu{
    box-shadow: none;
    border-bottom: 1px solid #ededed;
}
nav.mobile-menu .logo{
    max-width: 150px;
    padding-left: 0;
}
nav.mobile-menu ul.menu{
    flex-direction: column;
    position: sticky;
    top: 100%;
    width: 100%;
    box-shadow: 0px 8px 11px 4px rgb(158 158 158 / 10%);
    display: none;
    z-index: 19;
    
}


nav.mobile-menu ul.menu li{
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgba(0, 0, 0, 0.03);
    width: 100%;
}

nav.mobile-menu ul.menu li:not(:last-child)::after{
    display: none;
}


nav.mobile-menu ul.menu li a{
    font-size: 16px;
}

nav.mobile-menu ul.menu li a::before{
    display: none;
}
nav.mobile-menu div.tools{
    display: flex;
}


nav.computer-menu{
    box-shadow: 0 0 10px rgb(12 12 12 / 6%);
    border-bottom: none;
}
nav.computer-menu .logo{
    max-width: 250px;
    padding-left: 20px;
}
nav.computer-menu ul.menu{
    flex-direction: row;
    position: static;
    top: initial;
    width: initial;
    box-shadow: initial;
    display: flex !important;
    z-index: 19;
    
}


nav.computer-menu ul.menu li{
    border-bottom: none;
    width: initial;
}

nav.computer-menu ul.menu li:not(:last-child)::after{
    display: block;
}


nav.computer-menu ul.menu li a{
    font-size: 13px;
}

nav.computer-menu ul.menu li a::before{
    display: block;
}
nav.computer-menu div.tools{
    display: none;
}


header.banner-with-title {
    height: auto;
    padding: 50px 0px;
}
@media(max-width:768px){
    header.banner-with-title {
        height: auto;
    }
}
.banner-with-title h1 {
    background: rgba(255, 255, 255, 0.4);
    font-family: 'Montserrat',sans-serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.5;
    color: #29256a;
}


.nav-button {
    display: inline-block;
    width: 100%;
    height: 50px;
    background-color: #29256a;
    padding: 0px 1em;
    text-align: center;
    font-size: 1em;
    font-weight: 600;
    line-height: 50px;
    color: #FFF;
    border-radius: 6px;
    cursor: pointer;
}

.nav-button i {
    float: left;
    font-size: 1.3em;
    line-height: 50px;
    vertical-align: middle;
}

.nav-button:hover {
    background-color: #bd103a;
    transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -ms-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
}


section#privacy-policy, section#coverage-areas {
    padding: 25px 0px;
}


section#welcome {
    padding: 25px 0px;
}
section#welcome .review-item {
    padding: 5px;
    text-align: center;
    border: solid 1px;
    border-radius: 6px;
}
section#welcome .review-item {
    padding: 5px;
    text-align: center;
    border: solid 1px;
    border-radius: 6px;
}
section#welcome .review-item p {
    margin: 0px !important;
}
section#welcome .review-item p:first-of-type {
    font-size: 1.2em;
    font-weight: 600;
}
section#welcome .review-item .stars {
    color:#ffcc00;
}


section#get-a-quote-now {
    background:#29256a;
    color: #FFF;
    text-align: center;
    line-height: 28px;
    padding: 20px;
}
section#get-a-quote-now .row {
    align-items: center;
}
section#get-a-quote-now h3 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.5;
}
section#get-a-quote-now a.get-a-qoute {
    height: auto;
    padding: 13px 25px;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}
section#get-a-quote-now a.get-a-qoute i {
    font-size: 40px;
    line-height: normal;
}
@media(max-width:768px){
    section#get-a-quote-now .col-12 {
        margin-bottom: 20px;
    }
}


section#services {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #efefef;
}
section#services .service-card {
    background-color: #fff;
    padding: 10px;
    text-align: center;
}
section#services .service-card * {
    display: block;
}
section#services .service-card .title {
    font-size: 22px;
}
section#services .service-card .button {
    display: inline-block;
    background-color: #29256a;
    padding: 1em 2em;
    text-align: center;
    font-size: 1em;
    font-weight: 400;
    line-height: 1em;
    color: #FFF;
    border-radius: 6px;
    cursor: pointer;
}
section#services .service-card .button:hover {
    background-color: #5b55c3;
    transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -ms-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
}


section#reviews {
    padding: 40px 0px;
}
section#reviews .row img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 80px;
}
section#reviews .row em {
    font-size: 1.2em;
    font-weight: 700;
}
section#reviews .row p {
    margin: 0px;
}


section#features {
    padding-top: 20px;
    padding-bottom: 0px;
    background-color: #efefef;
}
section#features .feature-item {
    background-color: #29256a;
    padding: 15px;
    color: #fff;
    border: 1px solid #bd103a;
    border-radius: 5px;
    margin-bottom: 20px;
}
section#features .feature-item .title {
    margin-top: 5px;
    font-size: 22px;
    color: #fff;
}
section#features .feature-item p {
    margin-bottom: 5px;
}


section#why-choose-us {
    padding-top: 40px;
    padding-bottom: 20px;
}
section#why-choose-us ul.points {
    padding-left: 20px;
}
section#why-choose-us ul.points li {
    padding-top: 0px;
    padding-bottom: 0px;
}


section#google-maps {
    position: relative;
}
section#google-maps h3 {
    font-size: 18pt;
}
section#google-maps a {
    color: #29256a !important;
}
section#google-maps .google-maps-container {
    position: relative;
    width: 100%;
    padding-top: 400px;
}


section#portfolio .gallery .gallery-item {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
    margin-bottom: 20px;
}

section#portfolio .gallery .gallery-item img {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}


section#page-not-found {
    padding-bottom: 40px;
}

section#page-not-found h1 {
    font-size: 200px;
    letter-spacing: 20px;
    line-height: 1.5;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0;
}

@media(max-width:768px){
    section#page-not-found h1 {
        font-size: 100px;
    }
}

section#page-not-found h3 {
    font-size: 32px;
    line-height: 1.5;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
}

@media(max-width:768px){
    section#page-not-found h3 {
        font-size: 1em;
    }
}
section#page-not-found p {
    margin-bottom: 40px;
}

section#page-not-found .main-button {
    height: auto;
    padding: 15px 30px;
    font-size: 1rem;
    line-height: 1.5;
}

.related-articles {
    margin-top: 60px;
}
.related-articles .related-article a {
    display: block;
    border-radius: 6px;
    overflow: hidden;
}
.related-articles .related-article a img {
    display: block;
    margin: 0px;
    transition: all .4s ease-in-out;
}
.related-articles .related-article a:hover img {
    transform: scale(1.2);
}


section#blog-article {
    padding: 40px 0px;
}
.nav-links {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    padding: 20px 15px;
    background: #f8f8f8;
    font-weight: 600;
    border-radius: 6px;
}
.nav-links .nav-previous,
.nav-links .nav-next {
    width: 50%;
}
.nav-links .nav-previous a,
.nav-links .nav-next a {
    color: #797878;
}
.nav-links .nav-previous::before,
.nav-links .nav-next::after {
    font-family: 'Font Awesome 5 Pro';
    font-weight: 400;
    color: #B4B4B4;
    font-size: 12px;
    font-weight: 800;
    padding-right: 5px;
}
.nav-links .nav-previous {
    text-align: left;
    padding-right: 10px;
    border-right: 2px solid #dbdbdb;
}
.nav-links .nav-previous::before {
    content: '\f053';
}
.nav-links .nav-next {
    text-align: right;
    padding-left: 10px;
}
.nav-links .nav-next::after {
    content: '\f054';
}


.recent-posts {
    margin-top: 40px;
}
.recent-posts .title {
    position: relative;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: 1px solid #efefef;
    margin-bottom: 20px;
}
.recent-posts .title::after {
    display: block;
    height: 4px;
    margin-bottom: -1px;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    background: #29256a;
}
.recent-posts ul li {
    list-style-type: none;
}
.recent-posts ul li::before {
    font-family: 'Font Awesome 5 Pro';
    font-weight: 400;
    padding-right: 5px;
    content: "\f044";
    color: #29256a;
}
.recent-posts ul li a {
    color: #969696;
    font-weight: 600;
    font-size: 14px;
}


form.disabled * {
    pointer-events: none;
}

section .title {
    font-family: 'Montserrat', sans-serif;
    color: #29256a;
    font-size: 18pt;
    margin: 10px 0;
    font-weight: 700;
    line-height: 1.5;
}

section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

section a {
    color: #29256a;
}

section img {
    width: 100%;
    height: auto;
    display: inline-block;
    margin: 0px;
}

section ul.points {
    list-style-type: none;
    margin-bottom: 30px;
}

section .points li {
    padding: 5px 0;
    padding-left: 34px !important;
    background: url(../images/tick.png) no-repeat left;
}

section .hint-box {
    background-color: #c8c6eb;
    padding: 10px 10px 30px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    font-size: 19px;
    text-transform: uppercase;
    color: #4e4e4e;
    line-height: 1.8;
}

section .hint-box a {
    color:#29256a;
    font-weight: 800;
}

section .hint-box span.icon {
    color: #bd103a;
}


.ml-1 {
    margin-left: 10px !important;
}

.mr-1 {
    margin-right: 10px !important;
}

.mx-1 {
    margin-left: 10px !important;
    margin-right: 10px !important;
}

.mt-1 {
    margin-top: 10px !important;
}

.mb-1 {
    margin-bottom: 10px !important;
}

.my-1 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}


.ml-2 {
    margin-left: 25px !important;
}

.mr-2 {
    margin-right: 25px !important;
}

.mx-2 {
    margin-left: 25px !important;
    margin-right: 25px !important;
}

.mt-2 {
    margin-top: 25px !important;
}

.mb-2 {
    margin-bottom: 25px !important;
}

.my-2 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
}


.pl-2 {
    padding-left: 25px !important;
}

.pr-2 {
    padding-right: 25px !important;
}

.px-2 {
    padding-left: 25px !important;
    padding-right: 25px !important;
}

.pt-2 {
    padding-top: 25px !important;
}

.pb-2 {
    padding-bottom: 25px !important;
}

.py-2 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}

.text-center {
    text-align: center;
}


.post-item {
    display: flex;
    align-items: center;
}

.post-item .thumbnail {
    display: flex;
    align-items: center;
}

.post-item .thumbnail {
    display: flex;
    align-items: center;
}

hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}
