@charset "utf-8";
/* CSS Document */

/*---------- Fonts ----------*/

body {
    font-family: 'RopaSansProRegular';
    font-family: "RopaSansProRegular", sans-serif;
    /* font-family: "LL Brown Pro Bold Web", sans-serif; */
    background-color: #fff;
    overflow-x: hidden;
}

html,
body {
    height: 100%;
}

a,
input,
button,
textarea {
    outline: none !important;
}

a {
    color: #298ea6;
    transition: all ease-in-out 300ms;
    -webkit-transition: all ease-in-out 300ms;
    -ms-transition: all ease-in-out 300ms;
    -o-transition: all ease-in-out 300ms;
    -moz-transition: all ease-in-out 300ms;
}

.pad-left {
    padding-left: 0;
}

.pad-right {
    padding-right: 0;
}

.pad-top {
    padding-top: 0;
}

.pad-bottom {
    padding-bottom: 0;
}

.padding {
    padding: 0;
}
.pad20-top {
    padding-top: 20px;
}

.yellow {
    color: #ff9e18;
}
.red {
    color: #d22630;
}
.blue {
    color: #007da4;
}
.Yellow {
    color: #ff9e18;
}
.Red {
    color: #d22630;
}
.Blue {
    color: #007da4;
}
p {
    font-size: 17px;
    line-height: 24px;

}

h1 {
    font-size: 55px;
    line-height: 55px;
    color: #201747;

}

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

}
h3 {
    font-size: 28px;
    line-height: 28px;

}
h4 {
    font-size: 25px;
    line-height: 30px;   
    
}
h5 {
    font-size: 21px;
    line-height: 28px;   
    
}

h6 {
    font-size: 20px;
    line-height: 27px;   
    
}
.white { background:#fff;}
.light { background:#ebe7e4;}

.btn {
    font-size: 14px;
    line-height: 14px;
    padding: 13px 48px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    text-decoration: none;
    text-transform: capitalize;
    letter-spacing: 1.5px;
}

.btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(128, 215, 66, 0.25);
    -webkit-box-shadow: 0 0 0 0.2rem rgba(128, 215, 66, 0.25);
    -moz-box-shadow: 0 0 0 0.2rem rgba(128, 215, 66, 0.25);
    -ms-box-shadow: 0 0 0 0.2rem rgba(128, 215, 66, 0.25);
    -o-box-shadow: 0 0 0 0.2rem rgba(128, 215, 66, 0.25);
}

.btn-primary {
    background: #201747;
    color: #fff;
    border: none;
    box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
    background: #201747;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: #605280;
    /* border-color: #605280; */
    color: #fff;
}

.overflow{overflow-y: hidden;}

.header {
    background: #fff;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    padding: 45px 0 45px;
}
#fill_header_space{height: 73px;}
@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.fixed-header {
    position: fixed;
    top: -200px;
    left: 0;
    right: 0;
    z-index: 999;
    transition: 0.4s top cubic-bezier(.3,.73,.3,.74);
    padding: 15px 0;
}
.fixed-header .filter-menu {
    display: none !important;
}
.fixed-header.slideDown{
    top: 0px;
}
.navbar-toggler {
    margin-left: auto;
}

.inner-menu {
    /* position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
    -moz-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    -o-transform: translate(0,-50%); */
}

.navbar-brand {
    padding: 0;
    margin: 0;
    font-size: inherit;
}

.navbar-brand svg {
    width: 200px;
    width: 220px;
    height: auto;
    display: inline-block;
}
.navbar-brand svg path {
    fill: #FCF28D;
}


.navbar-toggler {
    border: none;
    background: transparent !important;
    padding: 10px;
}

.navbar-toggler .icon-bar { 
    width: 40px;
    transition: all 0.2s;
    background:#298ea6;
    height: 3px;
    display: block;
}

.navbar-toggler .icon-bar+.icon-bar {
    margin-top: 7px;
}

.navbar-toggler.open .top-bar {
    transform: rotate(45deg);
    transform-origin: 10% 10%;
}

.navbar-toggler.open .middle-bar {
    opacity: 0;
}

.navbar-toggler.open .bottom-bar {
    transform: rotate(-45deg);
    transform-origin: 15% 90%;
}

.navbar {
    padding: 0;
}

.navbar-collapse {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    text-align: center;
    height: 100%;
    background: #000000;
    background: rgba(41, 142, 166, 0.8);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    padding: 70px 0 0;
    overflow-y: auto;
    z-index: 99;
    margin-top: 150px;
}

.navbar-collapse.show {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}

.blue-bg .header/*, .blue-bg .footer*/ {
    background: #001588;
}

.blue-bg .navbar-collapse {
    background: rgba(0, 21, 136, 0.8);
}
.red-bg .header/*, .red-bg .footer*/ {
    background: #ff0000;
}

.red-bg .navbar-collapse {
    background: rgba(255, 0, 0, 0.8);
}
.green-bg .header/*, .green-bg .footer*/ {
    background: #008000;
}

.green-bg .navbar-collapse {
    background: rgba(0, 128, 0, 0.8);
}
.orange-bg .header/*, .orange-bg .footer*/ {
    background: #FFA500;
}

.orange-bg .navbar-collapse {
    background: rgba(255,165,0, 0.8);
}
.yellow-bg .header/*, .yellow-bg .footer*/ {
    background: #FFFF00;
}

.yellow-bg .navbar-collapse {
    background: rgba(255,255,0, 0.8);
}

.purple-bg .header/*, .purple-bg .footer*/ {
    background: #800080;
}

.purple-bg .navbar-collapse {
    background: rgba(128,0,128, 0.8);
}

.menu-logo {
    margin: 0 0 50px;
    display: inline-block;
}

.menu-logo img {
    width: 140px;
    margin: 0 auto;
}

.navbar-nav .nav-link {   
    padding-right: 0;
    padding-left: 0;
    padding: 0;
    /* width: 200px; */
    margin: auto;
    text-align: center;
    font-size: 26px;
    line-height: 26px;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding: 0 0 5px;
    display: inline-block;
    border-bottom: 1px solid transparent;
}

.navbar-nav .nav-item {
    padding: 0 0 25px;
}

.navbar-nav .nav-item .nav-link:hover {
    border-color: #fff;
}

.navbar-nav .nav-item:last-child .nav-link:after {
    display: none;
}

button.navbar-toggler.open {
    z-index: 999;
}

.header .filter-menu {
    width: 100%;
    display: block;
}
.header .filter-menu ul {
    padding: 0;
    margin: 0;
    display: block;
    list-style-type: none;
}
.header .filter-menu ul li {
    display: inline-block;
}
.header .filter-menu ul li span {
    color: #221f1c;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    text-decoration: none;
}

.header .filter-menu ul li:after {
    content: '/';
    margin: 0 0px 0 3px;
    color: #298ea6;
}
.header .filter-menu ul li:last-child:after {
    display: none;
}


.lazyload {
    background: #f7f7f7;
}

.lazyloading {
    background: #f7f7f7 url(//afarkas.github.io/lazysizes/assets/imgs/loader.gif) no-repeat center;
    min-height: 60px;
}
/*==================================================================*/

/*========== Header End ==========*/

/*==================================================================*/


.common-masonary .element-item {
    padding: 0 10px 20px;
}
.common-masonary .element-item .image{
    position: relative;
}
.common-masonary .element-item a {
    text-decoration: none;
}
.common-masonary .element-item a.noprofile {
    text-decoration: none;
    cursor: default;
}
.common-masonary .element-item .block-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(41, 142, 166, 0.8);
    display: flex;
    /* align-items: center; */
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out 600ms;
    -webkit-transition: all ease-in-out 600ms;
    -ms-transition: all ease-in-out 600ms;
    -o-transition: all ease-in-out 600ms;
    -moz-transition: all ease-in-out 600ms;
}
.common-masonary .element-item .block-hover h5 {
    font-size: 30px;
    line-height: 30px;
    margin: 0 0 10px;
    color: #fff;
}
.common-masonary .element-item .block-hover p {
    font-size: 19px;
    line-height: 19px;
    margin: 0;
    color: #fff;
    font-weight: bold;
}
.common-masonary .element-item .block-hover .p-link a{
    font-size: 19px;
    line-height: 19px;
    margin: 0;
    color: #fff;
    font-weight: bold;
}
.common-masonary .element-item .block-hover a {
    display: block;
}
.common-masonary .element-item:hover .block-hover {
    opacity: 1;
    visibility: visible;
}
.our-people .common-masonary .element-item img.hover{
    position:absolute;
    left:0;
    top: 0;
    -webkit-transition: opacity 600ms ease-in-out;
    -moz-transition: opacity 600ms ease-in-out;
    -o-transition: opacity 600ms ease-in-out;
    transition: opacity 600ms ease-in-out;
    opacity: 0;
}
.our-people .common-masonary .element-item:hover img.original{
    opacity:0;
}
.our-people .common-masonary .element-item:hover img.hover{
    opacity:1;
}

.common-masonary .row {
    margin: 0 -10px;
}
.common-masonary .element-item img {
    width: 100%;
    opacity: 1;
    transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -webkit-transition: opacity 1s ease-in-out;
}

.element-item .quote-block {
    padding: 30px;
}

.element-item .quote-block p {
    color: #221f1c;
    font-size: 20px;
    line-height: 30px;
}

.element-item .quote-block svg {
    margin: 0 0 10px;
}

.text-description {
    padding: 60px 0;
}
.text-block svg {
    margin: 0 0 15px;
}

.text-block h4 {
    font-size: 26px;
    line-height: 26px;
    color: #221f1c;
    margin: 0;
    font-weight: bold;

}

.text-block p {
    font-size: 35px;
    line-height: 40px;
    color: #221f1c;
    margin: 0 0 30px;
}

.middle-banner {
    position: relative;
    /* overflow: hidden; */
}
.middle-banner .b-image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.middle-banner .b-image img {
    width: 100%;
}
.middle-banner .image-44 {
    position: absolute;
    right: 14px;
    top: -1px;

}
.middle-banner .image-44 img {
    height: auto;
    margin-left: auto;
    float: right;
}

/***** footer start ***/
.footer {

    padding: 240px 0 90px;
    background: #298ea6;
    position: relative;
    float: left;
    z-index: 99;
    width: 100%;
    overflow: hidden;
}
.footer-logo {
    position: absolute;
    right: -100px;
    bottom: 0;    
    z-index: 0;
}

.footer-logo svg {
    width: 400px;
    height: auto;
}
.copy-right {
    border-top: 1px solid #fff;
    padding: 20px 20px 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 99;
}
.copy-right a {
    color:#fff;
}
footer ul {
    display: block;
    padding: 0;
    margin: 0;
    list-style-type: none;
    padding-right: 15px;
}
footer ul li {
    display: inline-block;
    padding: 0 5px;
}
footer ul li img{
    margin: -4px 5px 0px;
}
footer ul li a {
    color: #fff;
    text-decoration: none;
}
footer ul li a:hover {
    color: #605280;
}

.copy-right p {
    font-size: 24px;
    line-height: 10px;
    font-family: 'RopaSansProLight';
    margin: 0;
    color: #fff;
}
/***** footer end ***/

.container {
    padding-left: 15px;
    padding-right: 15px;
}

/***** our peopple start *****/

.our-people .common-masonary .element-item img {
    /* height: 310px; */
    width: auto;
}

.inner-page {
    padding: 45px 0 0;
}

.page-title h1,
.page-title h2,
.page-title h3,
.page-title h4,
.page-title h5,
.page-title h6 {
    color: #298ea6;
    text-transform: uppercase;
    font-family: 'RopaSansProLight';
    text-align: center;
    margin-bottom: 15px;
}
.page-title h1 {font-size: 70px; line-height: 80px;}
.page-title h2 {font-size: 60px; line-height: 70px;}
.page-title h3 {font-size: 50px; line-height: 60px;}
.page-title h4 {font-size: 40px; line-height: 50px;}
.page-title h5 {font-size: 30px; line-height: 40px;}
.page-title h6 {font-size: 20px; line-height: 30px;}



.header .filter-menu ul {
    padding: 0;
    margin: 0;
    display: block;
    list-style-type: none;
}
.header .filter-menu ul li {
    display: inline-block;
}
.filter-button-group .button {
    color: #221f1c;
    font-size: 23px;
    line-height: 23px;
    text-transform: uppercase;
    text-decoration: none;
    background: transparent;
    border: none;
    padding: 0;
}

.filter-button-group .button:after {
    content: '/';
    margin: 0 3px;
    color: #298ea6;
}
.filter-button-group .button:last-child:after {
    display: none;
}

.filter-custom {
    padding: 0 0 50px;
    text-align: center;
}

button.close-modal {
    background: transparent;
    border: none;
    position: absolute;
    right: 15px;
    top: 15px;
    height: 30px;
    width: 30px;
    /* background: red; */
    z-index: 99;
}

.close-modal span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.close-modal span:before, .close-modal span:after {
    position: absolute;
    left: 0;
    content: ' ';
    height: 33px;
    width: 2px;
    background-color: #333;
    margin: 0;
    right: 0;
    margin: 0 auto;
}
.close-modal span:before {
    transform: rotate(45deg);
}
.close-modal span:after {
    transform: rotate(-45deg);
}

.modal-content {
    background: #f8f8f8;
}
.modal-body {
    padding: 50px;
}

.modal-dialog {
    max-width: 1000px;
    padding: 0 15px;
}

.modal-body p {
    font-size: 16px;
    line-height: 24px;
    color: #707070;
}
.modal-body ul {
    padding: 30px 0;
    margin: 0;
    display: block;
    list-style-type: none;
}

.modal-body ul li {
    font-size: 18px;
    line-height: 20px;
    color: #221f1c;
    font-family: 'RopaSansProBold';
    font-style: italic;
}
.modal-content {
    border-radius: 0;
}

.modal-open .modal {
    padding-right: 0 !important;
}
/***** our peopple end *****/


/*  project page start **/
.main-banner {
    position: relative;
}
.main-banner .image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}
.main-banner .banner-content {
    max-width: 571px;
    position: absolute;
    top: 0;
    bottom: 0;
    background-color:rgba(248,248,248,0.87);
    padding: 80px 40px;
}
.main-banner .banner-content h6 {
    font-size: 23px;
    line-height: 25px;
    font-family: 'RopaSansProRegular';
    margin: 0 0 25px;
    color: #298ea6;
}
.main-banner .banner-content h6 a {
    font-size: 18px;
    line-height: 25px;
    font-family: 'RopaSansProbold';
    margin: 0 0 25px;
    color: #298ea6;
}
.main-banner .banner-content h2 {
    color: #298ea6;
    font-size: 70px;
    line-height: 70px;
    font-family: 'RopaSansProLight';
    margin: 0 0 30px;
}
.main-banner .banner-content p {
    font-size: 21px;
    line-height: 24px;
    font-family: 'RopaSansProLight';
    color: #221f1c;
}






.main-banner .banner-content h6 span {

}

.main-banner .banner-content h6 span:after {
    content: ',';
    margin: 0 3px;
    color: #298ea6;
}
.main-banner .banner-content h6 span:last-child:after {
    display: none;
}

.filter-custom {
    padding: 0 0 50px;
    text-align: center;
}











.project-block p {
    font-size: 18px;
    line-height: 24px;
    font-family: 'RopaSansProRegular';
    color: #221f1c;
}
.project-block .project-inner {
    padding: 30px;
}
.project-block .project-inner svg {
    margin: 0 0 30px;
}
.project-block .project-inner p {
    font-size: 28px;
    line-height: 32px;
    font-family: 'RopaSansProRegular';
    color: #221f1c;
}

.our-project-sec {
    padding: 80px 0;
}

.our-project-sec .container .project-block{
    padding-left: 40px;
}

.project-list .p-image {
    padding: 0 0 10px;
}
.project-list .p-image img {
    height: auto;
    width: 100%;
    object-fit: cover;
}

.project-footer {
}
.project-footer ul {
    border-top: 1px solid #221f1c;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0 0;
    margin: 0;
    list-style-type: none;    
}

.project-footer ul li:nth-child(2) {
    text-align: center;
}
.project-footer ul li:nth-child(2) a {
    color: #298ea6;
}
.project-footer ul li a {
    font-size: 45px;
    line-height: 45px;
    color: #221f1c;
    text-decoration: none;
}
.project-footer ul li a span {
    font-size: 26px;
    line-height: 26px;
    color: #221f1c;
    display: block;
    font-family: 'RopaSansProBold';
}
/*  project page end **/



.breadcrumb {
    background: transparent;
    margin: 0;
    text-align: right;
    padding: 0 0 30px;
    text-transform: uppercase;
}

.breadcrumb li:after {
    content: ' / ';
    margin: 0  3px;
    color: #298ea6;
}
.breadcrumb li:last-child:after {
    display: none;
}
.breadcrumb li a {
    color: #298ea6;
}
.breadcrumb li.section a {
    color: #000;
}
.breadcrumb li.current a {
    color: #8e8e8d;
}
.company-profile {
    background: #f8f8f8;
    padding: 80px 40px;
}

.company-profile img {
    /* margin-left: 20px; */
}
.company-profile h2 {
    font-size: 70px;
    line-height: 70px;
    margin: 0 0 30px;
    font-family: "RopaSansProLight";
    color: #298ea6;
}


.bg-trasnparent {
    background: transparent;
}

.project-page {
    padding: 0 !important;
}

.project-list .row {
    margin: 0 -5px;
}
.project-list [class*=col-] {
    padding: 0 5px;
}