@charset "utf-8";
html {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    overflow-x: hidden;
    font-family: Raleway;
    max-width: 100%;
    -webkit-transition: 300ms ease-in;
    -o-transition: 300ms ease-in;
    -moz-transition: 300ms ease-in;
    -ms-transition: 300ms ease-in;
    transition: 300ms ease-in;
}

a {
    color: inherit;
    text-decoration: none;
    outline: none;
    transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -webkit-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
}

a:hover {
    color: #c2320d;
    text-decoration: none;
    outline: none;
}

a:focus {
    outline: none;
}

:root {
    --bg-color1: #c2320d;
    --bg-color2: #225cb6;
}

::before,
::after {
    content: "";
}

.animated {
    animation-delay: 750ms;
}

.row {
    margin: 0;
}

.max-w {
    margin: 0 auto;
}

.wow {
    animation-delay: 600ms;
}

/* formfield */

.formfield>label {
    font-family: raleway;
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
}

.formfield>label.imp {
    position: relative;
}

.formfield>label.imp::after {
    content: " *";
    color: red;
}

.formfield {
    margin: 0 0 20px;
}

.formfield input,
.formfield select {
    height: 45px;
    border-radius: 0;
}

.formfield textarea {
    max-width: 100%;
    min-width: 100%;
    min-height: 120px;
    max-height: 250px;
}

.formfield input,
.formfield textarea {
    background-color: #f5f5f5;
    border-radius: 0;
}

.formfield input:focus,
.formfield textarea:focus {
    box-shadow: none;
    border-color: #c2320d;
}

.formfield-submit input {
    text-align: center;
    width: 200px;
    text-transform: uppercase;
    font-weight: 700;
    background-color: #c2320d;
    border: 2px solid #c2320d;
    color: #fff;
    transition: 300ms;
}

.formfield-submit input:hover {
    color: #c2320d;
    background-color: #fff;
}

/* link dab*/

.linkdab {
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    padding: 10px 20px;
    border: 3px solid #225cb6;
    overflow: hidden;
}

.linkdab::before,
.linkdab::after {
    content: attr(data-text);
    position: absolute;
    width: 100%;
    height: 100%;
    line-height: 44px;
    text-align: center;
    text-indent: 0;
    transition: 350ms;
}

.linkdab::before {
    top: 100%;
    left: 0;
    z-index: 2;
    color: #fff;
    background-color: #c2320d;
}

.linkdab::after {
    top: 0;
    left: 0;
    color: #333;
    background-color: #fff;
    z-index: 1;
}

.linkdab:hover {
    border-color: #c2320d;
}

.linkdab:hover::before {
    top: 0;
}

.linkdab:hover::after {
    top: -100%
}

/* linkdab alt */

.linkdab-alt {
    border-color: #c2320d;
}

.linkdab-alt::before {
    background-color: #225cb6;
}

.linkdab-alt:hover {
    border-color: #225cb6;
}

/* header */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 99;
    background-color: #fff;
    box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.15);
    transition: 350ms;
}

/* head top */

.headtp_wrap {
    background-color: #7c8a8d;
    color: #fff;
    transition: 350ms;
}

.headtp-col {
    padding: 5px 15px;
}

.headtp-col-rt {
    text-align: right;
}

.headtp-col span {
    margin-right: 0px;
    display: inline-block;
    font-size: 14px;
}

.headtp-col-lt span a {
    display: inline-block;
    font-size: 16px;
    text-align: center;
    min-width: 24px;
}

.headtp-col-lt span a:hover {
    background-color: #fff;
}

/* head mid */

.headmd {
    padding: 15px 0;
}

/* logo wrap */

.logo-wrap img {
    max-height: 60px;
}

/* head mid right */

.headmd-col-rt {
    text-align: right
}

.headmd-boxrow .headmd-contbox:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 1px;
    height: 80%;
    background-color:rgba(200, 200, 200, 0.7);
    border-radius: 50%;
}

.headmd-contbox {
    position: relative;
    padding: 10px 10px 10px 60px;
    text-align: left;
}

.headmd-contbox img {
    position: absolute;
    width: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.headmd-contbox p {
    margin-bottom: 0;
}

.headmd-contbox p>* {
    display: block;
}

.headmd-contbox p span {
    font-family: poppins;
    font-size: 13px;
    text-transform: uppercase;
}

.headmd-contbox p a strong {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

.headmd-contbox.headmd-contbox-mail p a strong {
    font-size: 13px;
    letter-spacing: -.5px;
}

/* navigation */

.navul {
    padding: 0;
    margin: 0;
}

.navul>li {
    display: inline-block;
    float: none;
}

.navul>li>a {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: normal;
    padding: 10px 20px;
    display: block;
    text-transform: uppercase;
}

.navul>li.navext-link>a {
    background-color: #c2320d;
    color: #fff;
    padding: 10px 20px;
}

.navul>li>a i {
    opacity: 0;
}

.navul>li>a:hover {
    color: #c2320d;
    font-weight: 600;
}

.navul>li.navext-link>a:hover {
    background-color: #225cb6;
    color: #fff;
}

.navul>li>a:hover i {
    color: var(--bg-color3);
    opacity: 1;
}

.navul>li.active>a {
    color: #c2320d;
}

.navul>li.active>a i {
    color: var(--bg-color3);
    opacity: 1;
}

.main-menu-btn-icon,
.main-menu-btn-icon::before,
.main-menu-btn-icon::after {
    background-color: #333;
}

/* smart menu adjust */

.sm-dropdown,
.sm-nowrap {
    background-color: #fff !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    border-top: 3px solid #c2320d !important;
    display: flex;
    flex-wrap: wrap;
}

.sm-clean ul {
    border-radius: 0 !important;
}

.sm-dropdown li {
    border-bottom: 1px solid #fff;
    min-width: 149px;
}

.sm-dropdown li:last-child {
    border: 0;
}

.sm-dropdown li a {
    font-weight: 400;
    font-size: 14px;
    color: #333;
    padding: 7px;
    display: block;
    border-bottom: 1px solid #ddd;
    text-transform: none;
}

.sm-dropdown li.active a {
    background-color: #c2320d;
    color: #fff;
}

.sm-clean a,
.sm-clean a:hover,
.sm-clean a:focus,
.sm-clean a:active {
    color: #333;
}

.sm-dropdown li a:hover {
    color: #fff;
    background-color: #c2320d;
}

.sm-clean>li>ul::after,
.sm-clean>li>ul::before {
    border-color: transparent transparent #c2320d;
}

/* carousel */

#carousel1 {
    position: relative;
}

#carousel1 .carousel-item {
    width: 100%;
    height: 75vh;
    min-height: 420px;
    max-height: 1200px;
    background-image: url('../images/fancybox_loading.gif');
    background-size: 50px;
    background-position: center;
    background-repeat: no-repeat;
}

#carousel1 .carousel-item>img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    min-height: 100%;
    height: auto;
    max-height: 350%;
    animation: carouimgzoom 25s infinite forwards;
}

@-webkit-keyframes carouimgzoom {
    from {
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }
    to {
        -webkit-transform: translate(-50%, -50%) scale(1.2);
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes carouimgzoom {
    from {
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }
    to {
        -webkit-transform: translate(-50%, -50%) scale(1.2);
        transform: translate(-50%, -50%) scale(1.2);
    }
}

#carousel1 .carou--bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

/* carousel caption */

#carousel1 .carousel-caption {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    text-align: center;
    overflow: hidden;
}

#carousel1 .carousel-caption h3 {
    font-family: Raleway;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

#carousel1 .carousel-caption h5 {
    font-family: Poppins;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 3px;
}

#carousel1 .carousel-caption p {
    font-family: Raleway;
    font-size: 1.2rem;
    font-weight: 700;
    max-width: 600px;
    margin: 0 auto;
}

#carousel1 .carousel-caption h3 span,
#carousel1 .carousel-caption h5 span {
    color: #c2320d;
}

/* carousel sides */

#carousel1 .carousel-caption.carou-lt {
    text-align: left;
}

#carousel1 .carousel-caption.carou-lt p {
    margin: 0;
}

#carousel1 .carousel-caption.carou-rt {
    text-align: right;
}

#carousel1 .carousel-caption.carou-rt p {
    margin: 0;
    float: right;
}

/* carousel control */

#carousel1 .carousel-control-prev i,
#carousel1 .carousel-control-next i {
    font-size: 40px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    position: relative;
    transition: 350ms;
}

#carousel1 .carousel-control-prev i::after,
#carousel1 .carousel-control-next i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid #fff;
    width: 100%;
    height: 100%;
}

#carousel1 .carousel-control-prev i:hover,
#carousel1 .carousel-control-next i:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

#carousel1 .carousel-control-prev i:hover::after,
#carousel1 .carousel-control-next i:hover::after {
    border-color: transparent;
}

/* carousel cov */

#carousel1 .cov {
    overflow: hidden;
}

#carousel1 .cov span {
    display: inline-block;
}

/* welcome */

.welcome_wrap {
    background-image: url(../images/architecture-architectural-engineering-construction-engineer-desk.png);
    background-size: 25%;
    background-repeat: no-repeat;
    background-position: 0 50%;
}

.welcome {
    padding: 0px 20px 50px;
}

.welcome-mainimg {
    width: 100%;
    max-width: 200px;
    margin: -50px auto 20px;
}

.welcome-mainimg img {
    width: 100%;
    transform: rotateY(180deg);
}

.welcome-cont {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.welcome-cont h2 {
    font-family: Great Vibes;
    font-size: 38px;
    font-weight: 700;
    margin: 0 0 20px;
    text-shadow: 3px 3px 3px rgba(0,0,0,0.2);
}

.welcome-cont h2 span.h2red {
    color: #c2320d;
}

.welcome-cont h2 span.h2blue {
    color: #225cb6;
}

.welcome-cont p {
    font-size: 15px;
    font-weight: 300;
}

/* services */

.servhp_wrap {
    background-image: url(../images/brick-2172682_1920.jpg);
    background-size: cover;
    background-position: center;
}

.servhp--bg {
    background-color: rgba(250, 250, 250, 0.85);
    background-image: url(../images/excavator-428506_1920.png);
    background-size: 300px;
    background-position: right bottom;
    background-repeat: no-repeat;
}

.servhp {
    padding: 100px 10px;
}

.servhp-head {
    text-align: center;
    margin-bottom: 20px;
}

.servhp-head h2 {
    font-size: 38px;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
    font-family: Raleway;
    letter-spacing: 1px;
}

.servhp-head h2::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 5px;
    background-color: #c2320d;
}

.servhp-col {
    padding: 10px;
}

.servhp-box {
    text-align: center;
}

.servhp-icon-cover {
    position: relative;
}

.servhp-icon-cover::after {
    z-index: 2;
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 40px;
    height: 40px;
    background-color: #c2320d;
    transition: 250ms;
}

.servhp-icon {
    width: 100%;
    height: 200px;
    line-height: 200px;
    position: relative;
}

.servhp-icon::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background-color: #c2320d;
    border-radius: 50%;
    z-index: 1;
    transition: 250ms;
    box-shadow: 0 0 2px 3px rgba(0, 0, 0, 0.15);
}

.servhp-icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background-color: #fff;
    border-radius: 50%;
}

.servhp-icon img {
    z-index: 3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    filter: brightness(0) invert(1);
}

.servhp-cont h3 {
    font-size: 16px;
}

.servhp-cont p {
    font-size: 13px;
    line-height: 1.3;
}

.servhp-cont a {
    font-size: 14px;
}

.servhp-cont a::after {
    content: "\f101";
    font-family: Font Awesome\ 5 Free;
    font-size: 13px;
    font-weight: 700;
    margin-left: 5px;
}

/* services hover */

.servhp-box:hover .servhp-icon-cover::after {
    bottom: 34px;
}

.servhp-box:hover .servhp-icon::before {
    width: 110px;
    height: 110px;
    box-shadow: none;
}

/* abouthp */

.abouthp_wrap {}

.abouthp {
    padding: 70px 0px;
}

.abouthp-col {
    padding: 15px;
}

.abouthp-imgcover {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.abouthp-imgcover img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    min-width: 100%;
    max-width: 300%;
    height: 100%;
}

.abouthp-head {
    margin-bottom: 20px;
}

.abouthp-head h1 {
    margin: 0 0 15px;
    font-family: Poppins;
    font-weight: 500;
    font-size: 22px;
    color: #c2320d;
    display: none;
}

.abouthp-head h1 span {
    font-family: Raleway;
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: #222;
    text-transform: uppercase;
}

.abouthp-head h1 span strong {
    color: #c2320d;
}

.abouthp-head h4 {
    font-family: Poppins;
    font-size: 34px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.abouthp-head h4 span {
    color: #225cb6;
}

.abouthp-head h4 strong {
    color: #c2320d;
}

.abouthp-body p {
    font-size: 15px;
}

/* adhp */

.adhp_wrap {
    position: relative;
    width: 100%;
    background-image: url(../images/pexels-photo-214045.jpeg);
    background-size: cover;
    background-position: center;
}

.adhp--bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #225cb6;
    opacity: 0.8;
}

.adhp {
    padding: 50px 0;
    align-items: center;
}

.adhplt {}

.adhp-col {
    padding: 5px 15px;
}

.adhp h4 {
    font-size: 27px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
}

/* gallery hp */

.gallhp_wrap {
    background-image: url(../images/1899%20%5BConverted%5D.png);
    background-size: cover;
    background-position: center;
}

.gallhp {
    padding: 90px 20px;
}

.gallhp--head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 991px;
    margin: 0 auto;
    text-align: center;
}

.gallhp--head .gallhp--headcol {
    padding: 15px;
}

.gallhp--headlt {}

.gallhp--head h2 {
    font-family: Poppins;
    font-size: 38px;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    margin: 0 auto 20px;
}

.gallhp--head h2::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 4px;
    background-color: #c2320d;
}

.gallhp--head p {
    font-weight: 500;
}

.gallhp--headrt {}

/* filtr here */

.gallery-nav {
    text-align: center;
}

.mix {
    padding: 1rem;
}

.item-desc {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    position: absolute;
    text-transform: uppercase;
    text-align: center;
    padding: 1rem;
    z-index: 1;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
}

/* Filter controls */

.gallery-nav ul li {
    font-family: Poppins;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-block;
    color: #222;
    position: relative;
    margin: 0 10px 0 0;
    border: 1px solid #c2320d;
    padding: 5px 10px;
    overflow: hidden;
}

.gallery-nav ul li::before {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #c2320d;
    transition: 300ms ease-in;
}

.gallery-nav ul li::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #c2320d;
    transition: 300ms ease-in;
}

.gallery-nav ul li.active {
    color: #fff;
}

.gallery-nav ul li.active::before {
    top: 0;
}

.gallery-nav ul li.active::after {
    width: 100%;
}

.gallery-nav ul li:hover {
    color: #c2320d;
}

.gallery-nav ul li:hover::after {
    width: 100%;
}

.gallery-nav ul li.active:hover {
    color: #fff;
}

.gallery-nav ul li span {
    position: relative;
    z-index: 1;
}

/* Search control */

.search-row {
    margin-left: 2.5rem;
}

.filtr-search {
    padding: 0.5rem;
    text-transform: uppercase;
}

.gallery-nav ul {
    text-align: center;
    padding: 0;
    display: inline-block;
    margin-top: 15px;
}

.gallery-inner {
    max-width: 1600px;
    margin: 0 auto;
}

.isotop-active {
    width: 100%;
}

.mix {
    position: relative;
    height: 250px;
    overflow: hidden;
    padding: 8px;
}

.mix img {
    position: absolute;
    width: 100%;
    min-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mix-over {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
    transition: 300ms;
    filter: blur(0px);
}

.mix-over::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(51, 51, 51, 0.0);
    z-index: 2;
    transition: 300ms;
}

.mix-over::after {
    content: "\f00e";
    font-family: FontAwesome;
    font-size: 42px;
    color: #fff;
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    z-index: 3;
    transition: 300ms;
}

.mix:hover .mix-over {
    filter: blur(1.2px);
}

.mix:hover .mix-over::before {
    background-color: rgba(51, 51, 51, 0.3);
    filter: blur(1.2px);
}

.mix:hover .mix-over::after {
    top: 50%;
}

.item-number {
    overflow: hidden !important;
}

.gallery-link {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: 300ms;
}

.gallery-link a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: 300ms;
}

.gallery-link a i {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(51, 51, 51, 0.45);
    font-size: 22px;
    color: #fff;
}

.gallery-link a i::before {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 300ms;
}

.gallery-link:hover {
    margin-top: -5px;
    -webkit-box-shadow: 0px 12px 26px -1px rgba(255, 255, 255, 0.17);
    -moz-box-shadow: 0px 12px 26px -1px rgba(255, 255, 255, 0.17);
    box-shadow: 0px 8px 8px -1px rgba(255, 255, 255, 0.17);
}

.gallery-link:hover a {
    opacity: 1;
}

.gallery-link:hover a i::before {
    top: 50%;
}

/* gallery pic zoom */

.mix .gallery-pic-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 34, 34, 0.4);
    opacity: 1;
    transition: 300ms ease-in-out;
}

.mix .gallery-pic-zoom img {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 1px;
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 7px;
    transition: 300ms ease-in-out;
    background-color: rgba(255, 255, 255, 0.5);
}

.mix:hover a:hover .gallery-pic-zoom {
    opacity: 1;
}

.mix a:hover .gallery-pic-zoom img {
    top: 50%;
}

/* footer */

footer {
    background-image: url(../images/3246.jpg);
    background-size: cover;
    background-position: center;
}

.footer-bg {
    background-color: rgba(30, 30, 30, 0.8);
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000', GradientType=0);
    /* IE6-9 */
    color: #fff;
}

.foottp_wrap {}

.foottp {
    padding: 90px 0px 70px;
}

.foottp-col {
    padding: 10px;
}

.foottp-col h3 {
    font-family: Poppins;
    font-size: 24px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    margin: 0 0 25px;
}

.foottp-col h3::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #c2320d;
}

.foottp-col ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.foottp-col ul li {
    font-size: 14px;
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}
.foottp-col ul li.active {
    color: #c2320d;
    padding-left: 25px;
}
.foottp-col ul li::before {
    content: "\f105";
    font-family: Font Awesome\ 5 Free;
    font-weight: 700;
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.foottp-col-abt p {
    font-size: 13px;
    opacity: 0.9;
}

.foottp-col-cont p {
    font-size: 13px;
}

.foottp-col-cont p a {
    font-family: Montserrat;
    font-weight: 700;
}

.foottp-col-abt a {
    text-indent: -999px;
    min-width: 150px;
}

.foottp-col-abt a.linkdab::after {
    background-color: transparent;
    color: #fff;
}

/* foot bot */

.footbt_wrap {}

.footbt {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 600;
    border-top: 1px solid rgba(250, 250, 250, 0.55);
    padding: 15px 0;
}

.maple {
    text-align: right;
}