@import url(https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700,800&subset=latin,latin-ext);
body,h1,h2,h3,h4,h5,h6,p,a,span,label,input,li,ul,ol,div{
    font-family: 'Montserrat', sans-serif;
}

body{
    margin: 0;
    padding: 0;
}

::selection {
  background: #ac2d49; /* WebKit/Blink Browsers */
  color: #fff;
}
::-moz-selection {
  background: #ac2d49; /* Gecko Browsers */
  color: #fff;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {   
  border-color: rgba(172, 45, 73, 0.8);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(172, 45, 73, 0.6) !important;
  outline: none !important;
}

div:focus{
	outline: none !important;
}

h1{
    font-size: 65px;
    line-height: 70px;
    font-weight: 800;
    color: #023E8A;
}

h2{
    font-size: 65px;
    line-height: 70px;
    font-weight: 800;
    color: #023E8A;
}

h3{
    font-size: 40px;
    line-height: 45px;
    font-weight: 800;
    color: #023E8A;
}

h4{
    font-size: 25px;
    line-height: 30px;
    font-weight: 600;
    color: #023E8A;
}

p{
    font-weight: 500;
    line-height: 19px;
    font-size: 17px;
}

a{
	transition: all 0.25s;
}

a:hover,
a:focus{
	text-decoration: none;
}

.bg{
	background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

.bluebg{
    background: #D1DCEA;
}

.orangebg{
    background: #FDECD4;
}

.mc{
    display: flex;
    align-items: center;
    justify-content: center;
}

.ml{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.mr{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}



/* BUTTON */

.btn{
    color: #fff;
    font-weight: 800;
    border: none;
    border-radius: 20px 20px 20px 0;
    padding: 8px 30px;
}

.btn:hover,
.btn:focus,
.btn:active{
    color: #fff !important;
    border: none;
}

.btn-primary{
    background: #023E8A;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active{
    background: #F19100 !important;
    -webkit-box-shadow: 15px 15px 20px -20px rgba(241,145,0,1);
    -moz-box-shadow: 15px 15px 20px -20px rgba(241,145,0,1);
    box-shadow: 15px 15px 20px -20px rgba(241,145,0,1);
}

.btn-primary:focus,
.btn-primary:active{
    box-shadow: 0 0 0 0.2rem rgb(241 145 0 / 50%) !important;
}

.btn-secondary{
    background: #F19100;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active{
    background: #023E8A !important;;
}

/* BLUE CONTACT BAR */

.contactSideBar{
    background: #023E8A;
    position: fixed;
    left: 0;
    top: calc(50% - 165px);
    z-index: 99;
    padding-bottom: 180px !important;
    border-radius: 0 30px 30px 0;
}

.contactSideBar ul{
    padding: 0;
    list-style: none;
    border-bottom: 1px solid #F19100;
}

.contactSideBar ul li{
    margin-bottom: 15px;
}

.contactSideBar ul li a{
    color: #fff;
}

.contactSideBar ul li a:hover,
.contactSideBar ul li a:focus{
    color: #F19100;
}

.contactSideBar p{
    font-weight: 800;
    transform: rotate(-90deg);
    margin: 0;
    position: absolute;
}

.contactSideBar p a{
    color: #fff;
    font-weight: bold;
}

.contactSideBar .btn{
    width: 190px;
    margin-left: -125px;
    margin-top: -50px;
    padding-left: 5px;
    padding-right: 5px;
}

.contactSideBar .btn:hover,
.contactSideBar .btn:focus{
    text-decoration: none;
    color: #F19100;
}

/* NAVBAR */
.navbar{
    background: transparent !important;
    transition: all 0.25s;
}

.nav-up{
    top: -150px;
}

.navbar .container{
    background: #fff;
    padding: 10px 30px 10px 50px;
    border-radius: 65px;
    -webkit-box-shadow: 0px 5px 7px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 5px 7px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 5px 7px 0px rgba(0,0,0,0.5);
	padding-right: 50px;
}

.navbar .navbar-brand img{
    height: 100px;
}

.navbar .nav-link{
    font-size: 19px;
    font-weight: 800;
    padding-left: 14px !important;
    padding-right: 14px !important;
    color: #023E8A !important;
    position: relative;
    z-index: 1;
}

.navbar .active .nav-link{
    color: #F19100 !important;
}

.navbar .nav-link:before{
    width: 1px !important;
    height: 1px !important;
    border-radius: 25px;
    background: #FEF2E2;
    content: ' ';
    position: absolute;
    z-index: -1;
    left: 50%;
    margin-top: 0;
    opacity: 0;
    transition: all 0.25s;
}

.navbar .nav-link:hover:before{
    opacity: 1;
    width: 56px !important;
    height: 56px !important;
    margin-top: -14px;
    margin-left: -28px;
}

.dropdown-item{
    color: #023E8A;
}

/* SUBPAGE HEADER */

#subpageHeader{
    background: #D1DCEA;
    padding: 200px 0 0;
}

/* FOOTER */

footer{
    background: #023E8A;
    padding: 30px 0;
}

footer .bb{
    border-bottom: 1px solid #fff;
}

footer ul{
    list-style: none;
    padding: 0;
}

footer ul a{
    color: #fff;
    font-size: 14px;
}

footer ul a:hover,
footer ul a:focus{
    color: #F19100;
}

footer .contact p,
footer .contact a,
footer .contact li{
    color: #F19100;
    font-weight: 800;
    font-size: 16px;
}

footer ul.quality li{
    display: inline;
    padding-left: 10px;
    padding-right: 10px;
}
footer ul.quality li a{
    color: #009EE2;
}

footer ul.quality li:before{
    content: '|';
    color: #fff;
    margin-left: -14px;
    position: absolute;
}

footer ul.quality li:first-child:before{
    content: none;
}

/* HOMEPAGE */

.swiper-wrapper{
    height: 800px;
}

.swiper-slide{
    position: relative;
}

.swiper-slide .layer{
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgb(253,236,212);
    background: linear-gradient(90deg, rgba(253,236,212,0.7572071064754027) 0%, rgba(253,236,212,0) 60%, rgba(255,255,255,0) 100%);
}

.swiper-slide .container{
    height: 100%;
}

.swiper-slide p{
    font-size: 22px;
    font-weight: 800;
    color: #023E8A;
    line-height: 24px;
}

.homepageSlider{
    position: relative;
}

.homepageSlider .swiper-slide{
    background-color: #fff;
}

.homepageSlider .navButton{
    cursor: pointer;
    color: #F19100;
    position: absolute;
    top: calc(50% - 30px);
    z-index: 98;
}

.homepageSlider .navButton svg{
    width: 60px;
    height: 60px;
}

.homepageSlider .button-next{
    right: 80px;
}

.homepageSlider .button-prev{
    left: 80px;
}

.homepageSlider .swiper-slide .layer .container{
    padding-left: 150px;
	align-items: flex-end;
	padding-bottom: 140px;
}


.homepageSlider .swiper-slide .layer .container h2{
	text-shadow: 0px 0px 3px #fff;
}

/* HOMEPAGE */

#homepageAbout{
    padding: 100px 0;
}

#homepageAbout img{
    border-radius: 35px;
    border: 8px solid #FEF2E2;
}

#homepageAbout p{
    color: #009EE2;
}

#homepageAbout p strong{
    color: #023E8A;
}

#homepageAbout p span{
    color: #F19100;
}

.paintBgBottom{
    transform: rotate(180deg);
    margin-top: -1px;
}

#offers{
    padding: 0 15px;
    background-size: 100% !important;
    background-repeat: no-repeat !important;
    background-position: 0 0;
}

#offers .card-deck{
    display: block;
    width: 100%;
}

#offers .card{
    border-radius: 30px 30px 30px 0;
    transition: all 0.25s;
    border: none;
    min-height: 450px;
}

#offers .card .image{
    background: #023E8A;
    width: 130px;
    height: 130px;
    border-radius: 65px;
    position: relative;
    margin: -40px auto 0;
}

#offers .card h5,
#offers .card p,
#offers .card a{
    color: #023E8A;
    transition: all 0.25s;
}

.priceDesc{
    color: #023E8A;
    font-size: 17px;
    font-weight: bold;
}

#offers .card h5{
    font-size: 22px;
    line-height: 28px;
    font-weight: 800;
}

#offers .card p.price{
    font-size: 45px;
    line-height: 50px;
    font-weight: 800;
}

#offers .card:hover{
    background: #023E8A;
}


#offers .card:hover p{
    color: #fff;
}

#offers .card:hover h5,
#offers .card:hover p.price{
    color: #F19100
}

#offers .card .btn-primary{
    position: absolute;
    bottom: -15px;
    width: 200px;
    color: #fff;
    left: 50%;
    margin-left: -100px;
}

#offers .card:hover .btn-primary{
    background: #F19100;
    color: #fff;
}

#feedbacks{
    padding: 80px 0 220px;
}

#feedbacks .swiper-wrapper{
    height: auto;
}

.feedbackSlider .image{
    height: 500px;
    width: 80%;
    border-radius: 25px;
}

.feedbackSlider .content{
    background: #F19100;
    padding: 30px;
    border-radius: 50px 50px 50px 0;
    position: absolute;
    right: 0;
    width: 40%;
    height: 350px;
    bottom: -150px;
}

.feedbackSlider .content p{
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}

.feedbackSlider .content span{
    font-weight: 800;
    color: #023E8A;
}

.feedbackSlider .swiper-pagination {
    position: absolute;
    bottom: -86px;
    left: 155px;
    width: 100px;
}

.feedbackSlider .swiperButton{
    background: #D1DCEA;
    width: 92px;
    height: 92px;
    border-radius: 46px;
    cursor: pointer;
    position: absolute;
    margin-top: 29px;
    transition: all 0.25s;
}

.feedbackSlider .swiperButton:hover{
    background: #FDECD4;
}

.feedbackSlider .swiperButton svg{
    width: 40px;
    height: 40px;
    fill: #023E8A;
    transition: all 0.25s;
}

.feedbackSlider .swiperButton:hover svg{
    width: 45px;
    height: 45px;
}

.feedbackSlider .button-next{
    left: 300px;
}

/* STATIC PAGE */

#static,
#contact{
    padding: 100px 0;
}

#static p{
    color: #023E8A;
}

#static h3,
#static h4{
    margin-bottom: 30px;
}

#static span{
    color: #F19100;
    font-weight: 500;
}

#contact .image{
    height: 453px;
    border-radius: 55px 0 0 0;
	background-position: 10% center !important;
}

#contact .content{
    background: #023E8A;
    padding: 5px 15px;
    text-align: center;
}

#contact .content a,
#contact .content p{
    color: #fff;
}

#contact .content ul{
    list-style: none;
    padding: 0;
}

#contact .content ul li{
    display: inline;
    margin: 0 8px;
}

#contact .contactForm{
    background: #F19100;
    padding: 70px;
    border-radius: 0 55px 55px 0
}

#contact .contactForm h3{
    color: #fff;
}

#contact .contactForm .form-control{
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    box-shadow: none !important;
    border-radius: 18px;
    font-weight: 700;
}

#contact .contactForm .form-control::-webkit-input-placeholder { /* Edge */
    color: #fff;
}
  
#contact .contactForm .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #fff
}

#contact .contactForm .form-control::placeholder {
    color: #fff
}

#contact .contactForm .btn-primary:hover,
#contact .contactForm .btn-primary:focus,
#contact .contactForm .btn-primary:active{
    background: #fff !important;
    color: #023E8A !important;
}

#aboutSecond{
    background: #FDECD4;
}

#aboutSecond p{
    color: #023E8A;
}

#aboutSecond span{
    color: #F19100;
    font-weight: 800;
}

#aboutSecond img{
    border-radius: 35px;
}

/* OFFERS */

.offersListPage{
    padding: 100px 0 !important;
}

.offersListPage .card{
    background: #FDECD4;
    margin-bottom: 100px;
}
.offersListPage .card .image{
    background: #F19100 !important;
}

.offerItemFirstSection h3{
    font-size: 25px;
    line-height: 30px;
}

.offerItemFirstSection p{
    color: #023E8A !important;
}

.offerItemFirstSection p span{
    color: #F19100;
}

#aboutSecond p strong{
    color: #009EE2 !important;
}

#aboutSecond .priceDesc{
    background: #F19100;
    border-radius: 35px;
}

#aboutSecond .priceDesc strong{
    font-weight: 800;
    color: #023E8A !important;
}

#aboutSecond .priceDesc h3{
    font-weight: 500;
    font-size: 38px;
    line-height: 42px;
}

#aboutSecond .priceDesc p{
    color: #fff;
}

#aboutSecond .priceDesc p a{
    color: #fff;
}

#aboutSecond .priceDesc span{
    color: #023E8A !important;
}

#aboutSecond .priceDesc .contact p{
    font-weight: 800;
}

#homepageAbout .extraIcon{
    border: none !important;
    background: #F19100;
    width: 120px;
    height: 120px;
    border-radius: 60px;
    position: absolute;
    right: -0px;
    top: -60px;
    padding: 25px;
}

#homepageAbout .extraIcon img{
    border: none !important;
    border-radius: 0;
}

.offerContact .image{
    height: 388px !important;
}

/* SERVICES */

#services{
    padding: 100px 0;
}

#services .item{
    margin-bottom: 100px;
}

#services .image{
    background: #F19100;
    width: 180px;
    height: 180px;
    border-radius: 45px 45px 45px 0;
}

#services h2{
    font-size: 40px;
    line-height: 45px;
}

#services h3{
    font-size: 25px;
    line-height: 29px;
    color: #6786AD;
}

#services p{
    font-weight: 500;
    color: #009EE2;
}

#services p strong{
    color: #F19100;
}

.addonServices h2{
    font-size: 25px;
    line-height: 29px;
    transition: all 0.25s;
}

.addonServices .card{
    min-height: 310px !important;
}

.addonServices .card:hover{
    background: #FDECD4 !important;
}

.addonServices .plus{
    position: absolute;
    right: 0;
    top: 0;
    color: #fff;
    background: #F19100;
    width: 35px;
    height: 35px;
    border-radius: 18px;
    font-size: 25px;
    line-height: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
}

.addonServices .card:hover p{
    color: #023E8A !important;
}

.subpageAddon{
    padding: 100px 15px !important;
}

.subpageAddon .card{
    background: #FDECD4;
}



/* REFERENCIES */

#referencies{
    padding: 100px 0;
}

#referencies .tab-pane{
    padding-top: 100px;
}

#referencies .btn-primary{
    background: none;
    border: 1px solid #023E8A;
    color: #023E8A;
    border-radius: 25px 25px 25px 0;
    margin-right: 15px;
}

#referencies .btn-primary:hover{
    border-color: #F19100;
}

#referencies .btn-primary.active{
    background: #F19100;
    border-color: #F19100;
    color: #fff;
}

#referencies .item{
    padding: 50px 0 30px;
    border-bottom: 1px solid #f2f2f2;
}

#referencies .item h3{
    font-size: 25px;
    line-height: 29px;
    margin-bottom: 30px;
}

#referencies .item p{
    color: #023E8A;
}

#referencies .item p strong{
    color: #F19100;
}

#referencies .catTag{
    border-radius: 25px 25px 25px 0;
    margin-right: 15px;
    background: #F19100;
    padding: 10px 25px;
    display: inline-block;
    color: #fff;
    font-weight: 600;
}

#referencies .item .swiper-wrapper{
    height: 450px;
}

#referencies .item .swiper-slide{
    width: auto;
}

#referencies .item .swiper-slide img{
    height: 400px;
    width: auto;
}

#referencies .item .navButton{
    position: absolute;
    z-index: 99;
    cursor: pointer;
    color: #023E8A;
}

#referencies .item .navButton svg{
    width: 25px;
    height: 25px;
}

#referencies .item .button-next{
    margin-top: -42px;
    right: 0;
}

#referencies .item .button-prev{
    margin-top: -42px;
}

#referencies .feedbackBox{
    padding: 50px;
    background: #F19100;
    border-radius: 50px 50px 50px 0;
}

#referencies .feedbackBox p{
    color: #fff;
}

#referencies .feedbackBox p strong{
    color: #023E8A;
}

@media (max-width: 767px){

    .contactSideBar{
        left: 0;
        width: 100%;
        bottom: 0;
        padding: 10px !important;
        top: auto;
        border-radius: 30px 30px 0 0;
    }

    .contactSideBar ul.socials{
        margin-bottom: 5px;
    }

    .contactSideBar ul.socials li{
        display: inline;
        margin-right: 15px;
    }

    .contactSideBar ul.socials li:last-child{
        margin-right: 0;
    }

    .contactSideBar p{
        transform: rotate(0);
        position: relative;
    }

    .contactSideBar .btn{
        margin: 0;
        padding: 0;
        width: 100%;
    }

    h1,
    #services h2{
        font-size: 25px;
        line-height: 30px;
    }
    
    .homepageSlider h2{
        font-size: 40px;
        line-height: 45px;
    }
    .homepageSlider .swiper-wrapper{
        height: 600px;
    }

    .homepageSlider .button-next{
        right: 10px;
    }
    
    .homepageSlider .button-prev{
        left: 10px;
    }

    #subpageHeader{
        padding-top: 90px;
    }

    .homepageSlider .swiper-slide .layer .container{
        padding: 0 60px !important;
		
    }

    #homepageAbout .pr-5,
    #aboutSecond .pr-5{
        padding-right: 15px !important;
    }

    #homepageAbout .pl-5,
    #aboutSecond .pl-5{
        padding-left: 15px !important;
    }

    #homepageAbout img{
        margin-bottom: 30px;
    }

    #aboutSecond img{
        margin-top: 30px;
    }

    #contact .image{
        border-radius: 25px 25px 0 0;
        height: 250px;
		background-position: center -50px !important;
    }

    #contact .contactForm{
        border-radius: 0 0 25px 25px;
        padding: 30px;
    }

    .offersListPage{
        padding: 100px 15px !important;
    }

    #offers .card,
    .addonServices .card{
        min-height: auto !important;
    }

    #offers .card{
        margin-bottom: 100px;
    }

    .extraIcon{
        display: block;
    }

    #services .item{
        text-align: center;
    }

    #services .item .image{
        margin-bottom: 15px;
    }

    footer ul,
    footer .contact,
    footer .bb,
    #homepageAbout,
    .feedbackSlider .content,
    .swiper-slide .container,
    #aboutSecond{
        text-align: center;
    }

    footer .mr{
        justify-content: center;
        margin-top: 25px;
    }

    #referencies .btn-primary{
        margin-top: 15px;
    }

    #referencies .tab-pane{
        padding: 0 15px;
    }

    #referencies .feedbackBox{
        margin-top: 25px;
    }

    .feedbackSlider .image{
        width: 100%;
        height: 300px;
        border-radius: 30px 30px 0 0;
    }

    .feedbackSlider .content{
        width: 100%;
        left: auto;
        position: relative;
        height: auto;
        bottom: 0;
        border-radius: 0 0 30px 30px;
        padding: 30px;
    }

    .feedbackSlider .button-next{
        left: auto;
        right: 15px;
    }
}

@media (min-width: 768px) and (max-width: 992px){
    
}

@media (min-width: 993px) and (max-width: 1200px){
    
}

@media (min-width: 1201px) and (max-width: 1366px){
    
}

@media (min-width: 1367px){
  
}
