
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

a {
    text-decoration: none;
    color: #582A8A;
}

a:hover {
    color: #582A8A;
    text-decoration: none;
}

h1,
h2,
h3 {
    font-family: "the-seasons", sans-serif;
    font-weight: 700;
    font-style: normal;
}

@media (min-width: 1200px) {
    .h1, h1 {
        font-size: 2rem;
    }
}



/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #582A8A;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #582A8A;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 10px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
    background: rgba(0, 0, 0, 0.7);
}

#header .logo {
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#header .logo{
    margin: 0;!important;
    padding: 0;!important;

}

#header .logo a span {
    color: #582A8A;
}

#header .logo img {
    max-height: 60px;
}
@media (min-width: 340px) and (max-width: 600px) {
    #header .logo img {
    max-height: 40px;
}

#header .logo {
    font-size: 20px;
}
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: white;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: wheat;
}

.navbar .getstarted,
.navbar .getstarted:focus {
    background: #582A8A;
    padding: 8px 25px;
    margin-left: 30px;
    border-radius: 4px;
    font-weight: 400;
    color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    background: #582A8A;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
    color: #556270;
}
.navbar .dropdown ul li a {
    color: #556270;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #582A8A;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: white;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(63, 73, 83, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #556270;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #582A8A;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #582A8A;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    background-attachment: fixed;
    position: relative;
}

#hero {
    width: 100%;
    height: 100vh;
    background-color: rgba(63, 73, 83, 0.3);
    overflow: hidden;
    position: relative;
    object-fit: fill;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#hero .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: fill
}

#hero .carousel-item::before {
    content: "";
    background-color: rgba(30, 35, 40, 0.3);
}

#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 70px;
    left: 50px;
    right: 50px;
}

#hero .container {
    text-align: center;
}

#hero h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 48px;
    font-weight: 700;
}

#hero p {
    animation-delay: 0.4s;
    margin: 0 auto 30px auto;
    color: #fff;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 30px;
    line-height: 0;
    width: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.5);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
    list-style-type: none;
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: 0.6;
    transition: 0.3s;
}

#hero .carousel-indicators li.active {
    opacity: 1;
    background: #582A8A;
}

#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    color: #fff;
    animation-delay: 0.8s;
    background: #582A8A;
}

#hero .btn-get-started:hover {
    background: #582A8A;
}


@media (max-width: 992px) {
    #hero {
        height: 42vh;
    }

    #hero .carousel-container {
    }
    #hero h2 {
        font-size: 22px;
    }
    #hero p {
        animation-delay: 0.4s;
        margin: 0 auto 30px auto;
        color: #fff;
        font-size: 12px;
        font-family: "Lato", sans-serif;
        font-weight: 400;
        font-style: normal;
    }

    #hero .btn-get-started {
        font-size: 12px;
        padding: 12px 30px;
    }
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 22px;
    }
}

@media (min-width: 1024px) {

    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

@media (max-height: 500px) {
    #hero {
        height: 40vh;
    }

    #hero p {
        animation-delay: 0.4s;
        margin: 0 auto 30px auto;
        color: #fff;
        font-size: 10px;
        font-family: "Lato", sans-serif;
        font-weight: 400;
        font-style: normal;
    }
}
@media (min-width: 340px) and (max-width: 400px) {
    #hero {
        height: 35vh;
    }
	#hero .carousel-container {
    top: 20px;
}
    #hero h2 {
        font-size: 16px;
    }
    #hero p {
        color: #fff;
        font-size: 8px;
        font-family: "Lato", sans-serif;
        font-weight: 400;
        font-style: normal;
    }
    #hero .btn-get-started {
        font-family: "Raleway", sans-serif;
        font-weight: 500;
        font-size: 10px;
        letter-spacing: 1px;
        display: inline-block;
        padding:10px 20px;
        border-radius: 4px;
        transition: 0.5s;
        line-height: 1;
        color: #fff;
        animation-delay: 0.8s;
        background: #582A8A;
    }
}

/*---- Project Category----*/

.category-url-link{
    display: flex;
    justify-content: center;
}
.category .category-link {
    margin-left: 10px;
    list-style: none;
    text-align: center;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    padding: 6px 10px;
    border: 1px solid #582A8A;
    text-transform: uppercase;
    font-weight: bold;
}
.category-url-link li{
    list-style: none;!important;
    text-decoration: none;
}

.category .category-link a {
    cursor: pointer;
    display: inline-block;
    /*padding: 10px 15px 8px 15px;*/
    font-size: 11px !important;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
}

.category .category-url-link li:hover{
    transition: 0.5s;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    color: #582A8A;
}
.category .category-link a{
    color: #444444;
    font-size: 11px;
}
.category .category-link a i img{
    height: 30px;
    width: 30px;
    font-size: 11px!important;
}

.category .category-url-link li a.filter-active {
    color: #582A8A;
}
.category .category-link  a:hover{
    transition: 0.5s;
    color: #582A8A;
}

.category .category-url-link li:first-child{
    margin-right: 0px;
}

.category .category-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 15px 10px 15px;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 0;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
    width: 150px !important;
}

.category .category-flters li:hover,
.category .category-flters li.filter-active {
    background: #582A8A;
}
.category .category-flters li:hover a,
.category .category-flters li.filter-active a{
    color: #fff;
}

.category .category-flters li:last-child {
    margin-right: 0;
}
@media (min-width: 450px) and (max-width: 768px) {
    .category{
        padding-top: 10px;
        padding-bottom: 10px;
        margin-top: 10px;
    }
    .category .category-flters li {
        font-size: 10px;
        width: 100px !important;
    } a{
          color: #fff;
      }
    .category .category-link a i img {
        height: 30px;
        width: 30px;
    }
}
@media (min-width: 451px) and (max-width: 600px) {
    .category{
        margin-top: 10px;
        margin-left: -42px;
    }
}
@media (min-width: 340px) and (max-width: 450px) {

    .category{
        margin-top: 10px;
        margin-left: -43px;
        padding: 10px 10px 10px 10px;
    }
    .category .category-flters li {
        font-size: 10px;
        font-weight:400;
        line-height: 1;
        text-transform: uppercase;
        color: #444444;
        transition: all 0.3s ease-in-out;
        border-radius: 3px;
        width: 80px !important;
        text-align: center;
    }
    .category .category-link a {
        color: #444444;
        font-size: 10px;
    }
    .category .category-link a {
        display: inline-block;
        cursor: pointer;
        font-size: 10px;
        line-height: 1;
        text-transform: uppercase;
        color: #444444;
    }

    .category .category-link a i img {
        height: 20px;
        width: 20px;
    }
}

/*---- End Project Category----*/

/*----Project----*/

.project{
    padding-top: 35px;
    padding-bottom: 35px;
}
/* start*/
.portfolio .portfolio-url-link{
    display: flex;
    justify-content: center;
    margin-left: -41px;
}
.portfolio{
    background: 0 0;
}

.portfolio .portfolio-link {
    margin-left: 10px;
    list-style: none;
    text-align: center;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    padding: 6px 10px;
    border: 1px solid #582A8A;
    text-transform: uppercase;
    font-weight: bold;
}
.portfolio .portfolio-url-link li{
    list-style: none;!important;
    text-decoration: none;
}

.portfolio .portfolio-link a {
    cursor: pointer;
    display: inline-block;
    /*padding: 10px 15px 8px 15px;*/
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
}

.portfolio .portfolio-url-link li:hover{
    transition: 0.5s;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    color: #582A8A;
}
.portfolio .portfolio-link a{
    color: #444444;
    font-size: 14px;
}
.portfolio .portfolio-link a i img{
    height: 30px;
    width: 30px;
    font-size: 14px;
}

.portfolio .portfolio-url-link li a.filter-active {
    color: #582A8A;
}
.portfolio .portfolio-link  a:hover{
    transition: 0.5s;
    color: #582A8A;
}

.portfolio .portfolio-url-link li:first-child{
    margin-right: 0px;
}

/* end */

.project #project-flters {
    list-style: none;!important;
    text-align: center;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 0;
}


.project #project-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 15px 10px 15px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 0;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}

.project #project-flters li:hover,
.project #project-flters li.filter-active {
    background: #582A8A;
}
.project #project-flters li:hover a,
.project #project-flters li.filter-active a{
    color: #fff;
}

.project #project-flters li:last-child {
    margin-right: 0;
}
@media (max-width: 768px) {
    .project{
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .project #project-flters li {
        font-size: 10px;
        background: #582A8A;
    }.project a{
          color: #fff;
      }
}

/*--------------------------------------------------------------
# architect
--------------------------------------------------------------*/
.architect{
    background-color: white;
}

.architect .row .col-md-6{
    padding: 0;
    margin: 0;
}
.architect .container .content p{
    font-size: 18px;
    color: #444444;
    text-align: center;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio {
    margin-bottom: -35px;
}
.portfolio .portfolio-item {
    margin-bottom: 30px;
}
/*.portfolio .portfolio-item:hover img {*/
/*    transform: scale(1.1);*/
/*    transition-duration: 0.9s;*/
/*}*/
/*.portfolio .portfolio-item:hover img {*/
/*    transform: scale(1.1);*/
/*    transition: all ease-in-out 0.9s;*/
/*}*/
.portfolio .portfolio-item img{
    transition: transform .9s;
}

.portfolio .portfolio-item:hover img {
    -ms-transform: scale(1.1); /* IE 9 */
    -webkit-transform: scale(1.1); /* Safari 3-8 */
    transform: scale(1.1);
}




/* start*/

.portfolio .portfolio-url {
    margin: 0 auto 35px auto;
    list-style: none;
    text-align: center;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 8px 20px;
    border: 1px solid #582A8A;
}

.portfolio .portfolio-url li {
    cursor: pointer;
    display: inline-block;
    padding: 6px 8px 4px 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}
.portfolio .portfolio-url li a{
    color: #444444;
    font-size: medium;
}

.portfolio .portfolio-url li a.filter-active {
    color: #582A8A;
}
.portfolio .portfolio-url li a:hover{
    color: #582A8A;
    transition: 0.5s;
}

.portfolio .portfolio-url li:last-child {
    margin-right: 0;
}

/* end */

.portfolio #portfolio-flters {
    margin: 0 auto 35px auto;
    list-style: none;
    text-align: center;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    padding: 8px 20px;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 15px 8px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    color: #582A8A;
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-wrap {
    /*transition: 0.9s;*/
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all ease-in-out 0.9s;
    background: rgba(0, 0, 0, 0.6);
}
.portfolio-wrap{
    height: 550px;
    width: 100%;
}
.portfolio .portfolio-wrap img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    background-size: cover;
    -moz-background-size: cover;
}

/*.portfolio .portfolio-wrap::before {*/
/*    content: "";*/
/*    background: rgba(0, 0, 0, 0.5);*/
/*    position: absolute;*/
/*    left: 30px;*/
/*    right: 30px;*/
/*    top: 30px;*/
/*    bottom: 30px;*/
/*    transition: all ease-in-out 0.9s;*/
/*    z-index: 2;*/
/*    opacity: 0;*/
/*}*/
.portfolio .project-info{
    position: relative;
    /*background: rgba(63, 73, 83, 0.9);*/
    background-color: white;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    padding-top: 5px;
}
.portfolio .project-info h2{
    position: relative;
    color: #4A4A4A;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    background-color: white;
}
.portfolio .project-info h2 a{
    position: relative;
    color: #0C0C0C;
    text-align: center;
    text-transform: uppercase;
    font-size: 22px;
    letter-spacing: 1.5px;
    font-family: "the-seasons", sans-serif;
    font-weight: 900;
    font-style: normal;
}
.portfolio .project-info h2 a:hover{
    color: #3F3F3F;
    transition: 0.5s;
}
.portfolio .project-info h2:hover{
    position: relative;
    /*background: #1a1d20;*/
    background: white;

    font-weight: 600;
    width: 100%;
    text-align: center;
    transition: 0.5s;
}
.portfolio .project-info h2 span a{
    color: #525252;
    transition: 0.5s;
    font-size: 15px;
    margin-bottom: 5px;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-family: "Open Sans", sans-serif;
}
.portfolio .project-info h2 span a:hover{
    color: #582A8A;
}
.project-bdr{
    border: 5px solid #ffffff;
}
.portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    top: 35px;
    left: 35px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    bottom: 35px;
    right: 35px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
    text-align: center;
    z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
    color: #fff;
    margin: 0 2px;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
    color: #582A8A;
}

.portfolio .portfolio-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
    top: 15px;
    left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
    bottom: 15px;
    right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #582A8A;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #582A8A;
}

.portfolio-details .portfolio-info {
    padding: 10px;
    box-shadow: 0px 0 30px rgba(33, 65, 60, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-weight: 700;
    margin-bottom: 20px;
    /*padding-bottom: 20px;*/
    border-bottom: 1px solid #eee;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
}

.portfolio-details .project-description h4 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}



/*---------------------------------------------
interior
---------------------------------------------*/
.interior{
    height: 40vh;
    width: 100%;
    background:no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    background-attachment:fixed ;
}
.interior::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}
@media (max-width: 400px) {
    .interior {
        height: 30vh;
    }
}

/*--------------------------------------------------------------
# landmark
--------------------------------------------------------------*/
.landmark .content h2 {
    font-weight: 700;
    font-size: 40px;
    line-height: 60px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.landmark .landmark-item {
    margin-bottom: 30px;
}

.landmark #landmark-flters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

.landmark #landmark-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 15px 10px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}

.landmark #landmark-flters li:hover,
.landmark #landmark-flters li.filter-active {
    color: #fff;
    background: #582A8A;
}

.landmark #landmark-flters li:last-child {
    margin-right: 0;
}

.landmark .landmark-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(85, 98, 112, 0.6);
}

.landmark .landmark-wrap::before {
    content: "";
    background: rgba(85, 98, 112, 0.6);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}

.landmark .landmark-wrap img {
    transition: all ease-in-out 0.3s;
}

.landmark .landmark-wrap .landmark-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
}
@media (max-width: 768px) {
    .landmark{
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .landmark #landmark-flters li {
        font-size: 10px;
        background: #582A8A;
    } .landmark a{
          color: #fff;
      }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .nav-tabs {
    border: 0;
}

.btn-gp-size .btn{
    width: 100%;
    background: #582A8A;
}
.btn-gp-size .dropdown-menu{
    scroll-snap-type: both mandatory;!important;
}

.features .nav-link {
    border: 1px solid #d4d6df;
    padding: 15px;
    transition: 0.3s;
    color: #2a2c39;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features .nav ul li:hover {
    background: #582A8A;
    color: #fff;
    border-color: #582A8A;
    border-radius: 10px;
}
.features .nav-link i {
    padding-right: 15px;
    font-size: 48px;
}

.features .nav-link h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.features .nav-link:hover {
    background: #582A8A;
    color: #fff;
    border-color: #582A8A;
    border-radius: 10px;
}

.features .nav-link.active {
    background: #582A8A;
    color: #fff;
    border-color: #582A8A;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .features .nav-link i {
        padding: 0;
        line-height: 1;
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .features .nav-link {
        padding: 15px;
    }

    .features .nav-link i {
        font-size: 24px;
    }
}

.features .tab-content {
    margin-top: 30px;
}

.features .tab-pane h3 {
    font-weight: 600;
    font-size: 26px;
}

.features .tab-pane ul {
    list-style: none;
    padding: 0;
}

.features .tab-pane ul li {
    padding-bottom: 10px;
}

.features .tab-pane ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #582A8A;
}

.features .tab-pane p:last-child {
    margin-bottom: 0;
}

/*---partnership-------*/

#partnership{
    margin: 0;
    padding: 0;
}
.partnership .content h2 {
    margin-top: 15px;
    font-weight: 700;
    font-size: 40px;
    line-height: 60px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.partnership .content p {
    color: black;
    font-size: 18px;
}
#partnership{
    background-position: center center;
    background-size: cover;
    background-color: white;
}
.partner-details {
    padding: 10px 0;
    width: 100%;
    background: url("img/bg-img/bg-partnar.jpg") no-repeat center center;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

/* Mobile fix for background attachment */
@media (max-width: 768px) {
    .partner-details {
        background-attachment: scroll;
    }
}

.partner-details .container{
    margin-top: 100px;
    margin-bottom: 100px;
}

@media (max-width: 992px) {
    .partnership .content h2 {
        font-size: 25px;
        line-height: 35px;
    }
    .partnership .content p {
        color: black;
        font-size: 16px;
    }
}

.card-info .card{
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 10px 25px 0 rgba(0, 0, 0, 0.19);
}
.card-info .card{
    margin-top: 80px;
}
@media (min-width: 340px) and (max-width: 450px){
    .card-info .card{
        margin-top: 50px;
    }

}

.card-content{
    height: 200px;
    width: 100%;
}

.card-content p{
    margin-top: 70px;
    font-size: 20px;

    font-weight: 500;
    font-style: normal;
}
.card-content:hover{
    width: 100%;
    color: white;
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    background-color: #582A8A;
    transition: 0.5s;
    border-radius: 20px;
}
.card-content:hover p{
    margin-top: 60px;
    font-size: 20px;
    font-weight: 500;
    transition: 0.5s;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}


.section-bg,
.services .icon-box {
    background-color: #F0F0F0;
}

.section-title {
    padding-bottom: 40px;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
    font-family: "Poppins", sans-serif;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #582A8A;
    margin: 4px 10px;
}

.section-title p {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #556270;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    margin-top: -80px;
    background: #f8f9fa;
    min-height: 40px;
    background-attachment:fixed ;
}
.breadcrumbs img{
    margin-top: -80px;
    height: 500px
}

.breadcrumbs h2 {
    font-size: 32px;
    font-weight: 300;
    margin: 0;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    font-size: 18px;
    margin-top: 200px;
    color: white;
    font-weight: 600;
    text-align: center;
}

.breadcrumbs ol li {
    padding-left: 10px;
}

.breadcrumbs ol li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6b7b8d;
    content: "/";
}

@media (max-width: 992px) {
    .breadcrumbs {
        height: 200px;
        width: 100%;
        margin-top: 58px;
    }

    .breadcrumbs h2 {
        margin-bottom: 10px;
    }

    .breadcrumbs ol {
        display: block;
        font-size: 16px;
        margin-top: 85px;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}
@media (min-width: 340px) and(max-width: 500px) {
    .breadcrumbs{
        height: 200px;
        width: 100%;
        margin-top: -110px;
        margin-left: -100px;
    }
    .breadcrumbs img{
        margin-top: -80px;
        height: 200px;
    }

}

@media (min-width: 1080px) {
    .breadcrumbs{
        height: 400px;
        width: 100%;
    }

}
@media (min-width: 1920px) {
    .breadcrumbs{
        height: 400px;
        width: 100%;
    }

}

.build{
    background: #34414F;
    margin: 0;
    padding: 0;
}
.headline h2{
    text-align: center;
    font-weight: 700;
    font-size: 35px;
    line-height: 60px;
    margin:auto;
    text-transform: uppercase;
    color: white;
}
@media (max-width: 768px) {
    .headline h2 {
        font-size: 20px;
    }
}
/*--------------------------------------------------
# career
____________________________________________________________*/
.career {
    height: auto;
    width: 100%;
}
/*.career {*/
/*    height: 100%;*/
/*    width: 100%;*/
/*    padding: 10px 0;*/
/*    transform: scale(1.1);*/
/*    background: url("../img/CareerImage.jpg") no-repeat;*/
/*    background-position: center center;*/
/*    background-size: cover;*/
/*    position: relative;*/
/*}*/
.career.background-overlay {
    background-color: #000;
    opacity: .67;
    transition: background 0.3s,border-radius 0.3s,opacity 0.3s;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}


.career img{
    margin-top: -60px;
    margin-left: 200px;
    padding: 0;
    position: absolute;
}
.career-info{
    margin-top: 10px;
    position: relative;
    text-align: center;
}
.career-info .member-info h3{
     font-weight: 600;
     text-transform: capitalize;
     margin-bottom: 10px;
     color: black;
 }
.career-info-text {
    font-size: smaller;
    font-family: Roboto, sans-serif;
    margin-bottom: -20px;
 }
.md-img img{
    height: 250px;
}
@media (min-width: 340px) and (max-width: 500px){
    .member-info p{
        margin-top: -10px;
    }
}
@media (min-width: 340px) and (max-width: 500px){
    .about .content p{
        font-size: 12px;
    }
}


/*--------------------------------------------------------------
# team
--------------------------------------------------------------*/

.team .content h2 {
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.team .content h3 {
    font-weight: 500;
    line-height: 32px;
    font-size: 24px;
}
.team .card {
    position: relative;
    width: 250px;
    height: 274px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px;
    gap: 12px;
    border-radius: 5px;
    border: 1px solid #582A8A;
    cursor: pointer;
    color: black;

}


.team .card:hover::after {
    filter: blur(10px);
}

.team .card:hover::before {
    transform: rotate(-80deg) scaleX(1.30) scaleY(0.70);
}

@media (max-width: 992px) {
    .team .content h2 {
        font-weight: 700;
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .team .content h3 {
        font-weight: 500;
        line-height: 32px;
        font-size: 25px;
    }
    .team .content p{
        font-size: 16px;
    }

}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.wish-card{
    margin-top: 300px;
    margin-left:600px;
    position: absolute;
    z-index: 999;
    display: block;


}
.site-container {
    place-items: center;!important;
    padding: 1.5em;
    width: 600px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border: 1px solid rgba(255, 255, 255, .25);
    background-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    position: relative;!important;
}
@media (max-width: 1920px) {
    .wish-card {
        margin-top: 250px;
        margin-left: 600px;
    }
}
@media (min-width: 1366px) and (max-width: 1600px) {
    .wish-card {
        margin-top: 300px;
        margin-left:400px;
    }
}

@media (max-width: 500px) {
    .site-container .card i{
        height: 30px;
        width: 30px;
        cursor: pointer;
        margin-left: 318px;
    }
    .wish-card {
        margin-top: 90px;
        margin-left: 18px;
    }
    .site-container{
        height: 300px;
        width: 350px;
        padding: 0;
    }
    .site-container .card{
        width: 340px;
        height: 290px;
        margin: 4px 4px 0 4px;
        padding: 0;
    }
}

.site-container.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 600px;
    height: 300px;
    padding: 20px;

    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);

    backdrop-filter: blur(15px);
}
.site-container .card i{
    height: 30px;
    width: 30px;
    cursor: pointer;
    margin-left: 527px;
}
.site-container .card i:hover{
    color: #582A8A;
}
.site-container.card p{
   text-align: justify;
}

.site-container.card-footer {
    font-size: 0.65em;
    color: #446;
}



.about .content h2 {
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about .content h3 {
    font-weight: 500;
    line-height: 32px;
    font-size: 24px;
}

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

.about .content ul li {
    padding: 10px 0 0 28px;
    position: relative;
}

.about .content button a{
    font-size: 20px;
    color: #582A8A;
}
.about .content button a:hover{
    font-size: 18px;
    color: white;
}


/*.about .container{*/
/*    margin-left: 200px;*/
/*    margin-right: 200px;*/
/*}*/
.about .card {
    position: relative;
    width: 250px;
    height: 350px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 30px 0;
    border: 1px solid #582A8A;
    cursor: pointer;
    box-shadow: 5px 5px 5px 0 rgba(0,0,0,0.10);
    -webkit-box-shadow: 5px 5px 5px 0 rgba(0,0,0,0.10);
    -moz-box-shadow: 5px 5px 5px 0 rgba(0,0,0,0.10);

}


.about .card::before,
.about .card::after {
    position: absolute;
    content: "";
    width: 20%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: bold;
    background-color: #582A8A;
    transition: all 0.5s;
}

.about .card::before {
    top: 0;
    right: 0;
    border-radius: 0 0 0 100%;
}

.about .card::after {
    bottom: 0;
    left: 0;
    border-radius: 0 100%  0 0;
}
.about .card:hover{
    border-radius: 30px 0;
}
.about .card:hover::before,
.about .card:hover:after {
    width: 100%;
    height: 100%;
    transition: all 0.5s;
    border-radius: 30px 0;
}

.about .card:hover:after {
    content: "Click Here";
    color: white;
    border-radius: 30px 0;
}
@media (max-width: 992px) {

    .about .content h2 {
        font-weight: 700;
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .about .content h3 {
        font-weight: 500;
        line-height: 30px;
        font-size: 25px;
    }

}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
    padding: 15px 0;
    text-align: center;
}

.clients img {
    max-width: 45%;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    padding: 15px 0;
    filter: grayscale(100);
}

.clients img:hover {
    filter: none;
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .clients img {
        max-width: 40%;
    }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 6px;
}

.services .icon-box i {
    float: left;
    color: #582A8A;
    font-size: 40px;
}

.services .icon-box h4 {
    margin-left: 70px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.services .icon-box h4 a {
    color: #556270;
    transition: 0.3s;
}

.services .icon-box p {
    margin-left: 70px;
    line-height: 24px;
    font-size: 14px;
}

.services .icon-box:hover h4 a {
    color: #582A8A;
}

/*--------------------------------------------------------------
# owner
--------------------------------------------------------------*/
.owner-cover{
    padding: 10px 0;
    width: 100%;
    background: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    background-attachment:fixed ;
}

/*--------------------------------------------------------------
# News slider
--------------------------------------------------------------*/


#owl-demo .item{
    background: #42bdc2;
    padding: 30px 0px;
    margin: 10px;
    color: #FFF;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
}



/*--------------------------------------------------------------
# Our Team
--------------------------------------------------------------*/
.team_bg{
    height: 20vh;
    width: 100%;
    background:no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}
.team{
    margin-bottom: -40px;
    position: center;
}

.team .member {
    position: relative;
    box-shadow: 0 2px 15px rgba(85, 98, 112, 0.08);
    padding: 30px 0;
    border-radius: 10px;
    background: white;
    float: left;
}


.team-card {
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.card-text{
    margin-top: -10px!important;
    font-size: 12px;
}
@media (min-width: 340px) and (max-width: 400px){
    .team-card {
        margin-top: 40px;
    }
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}


.team .member .pic {
    overflow: hidden;
    width: 150px;
    border-radius: 4px;
}
.team .member img{
    overflow: hidden;
    border-radius: 50%;
    height: 200px;
}

.team .member  img {
    transition: 0.5s;
}

.team .member:hover img {
    transform: scale(1.1);
}

.team .member .member-info{
    padding-top: 30px;
}
.team .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: #556270;
}


.team .member .member-info p {
    display: block;
    font-size: 15px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 500;
    color: #556270;
}
.team .member .member-info span{
    display: block;
    font-size: 15px;
    color: #556270;
}
.team .member .member-info span a{
    font-size: 15px;
    color: #556270;
}
.team .member .member-info span a:hover{
    font-size: 15px;
    color: #582A8A;
    transition: 0.3s;
}



.team .member p {
    margin: 10px 0 0 0;
    font-size: 14px;
}

.team .member .social {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.team .member .social a {
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    width: 32px;
    height: 32px;
    background: #8795a4;
}

.team .member .social a i {
    color: #fff;
    font-size: 16px;
    margin: 0 2px;
}

.team .member .social a:hover {
    background: #582A8A;
}

.team .member .social a+a {
    margin-left: 8px;
}

/*--------------------------------------------------------------
# Our Skills
--------------------------------------------------------------*/
.skills .progress {
    height: 60px;
    display: block;
    background: none;
    border-radius: 0;
}

.skills .progress .skill {
    padding: 10px 0;
    margin: 0;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #556270;
}

.skills .progress .skill .val {
    float: right;
    font-style: normal;
}

.skills .progress-bar-wrap {
    background: #edeff1;
}

.skills .progress-bar {
    width: 1px;
    height: 10px;
    transition: 0.9s;
    background-color: #6b7b8d;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
    padding: 20px;
    background: #fff;
    text-align: center;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.pricing h3 {
    font-weight: 400;
    margin: -20px -20px 20px -20px;
    padding: 20px 15px;
    font-size: 16px;
    font-weight: 600;
    color: #777777;
    background: #f8f8f8;
}

.pricing h4 {
    font-size: 36px;
    color: #582A8A;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    margin-bottom: 20px;
}

.pricing h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}

.pricing h4 span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
}

.pricing ul {
    padding: 0;
    list-style: none;
    color: #444444;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

.pricing ul li {
    padding-bottom: 16px;
}

.pricing ul i {
    color: #582A8A;
    font-size: 18px;
    padding-right: 4px;
}

.pricing ul .na {
    color: #ccc;
    text-decoration: line-through;
}

.pricing .btn-wrap {
    margin: 20px -20px -20px -20px;
    padding: 20px 15px;
    background: #f8f8f8;
    text-align: center;
}

.pricing .btn-buy {
    background: #582A8A;
    display: inline-block;
    padding: 8px 35px 9px 35px;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    transition: 0.3s;
}

.pricing .btn-buy:hover {
    background: #582A8A;
}

.pricing .featured h3 {
    color: #fff;
    background: #582A8A;
}

.pricing .advanced {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background: #582A8A;
    color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-item {
    margin: 20px 0;
    padding: 20px 0;
    border-bottom: 1px solid white;
}

.faq .faq-item i {
    color: #dee2e6;
    font-size: 20px;
    float: left;
    line-height: 0;
    padding: 13px 0 0 0;
    margin: 0;
}

.faq .faq-item h4 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    margin: 0 0 10px 28px;
    font-family: "Poppins", sans-serif;
}

.faq .faq-item p {
    font-size: 15px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 40px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50px;
    border: 6px solid #fff;
    float: left;
    margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #111;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #f8d1d3;
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 15px 0 0 0;
    padding: 0;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact-banner{
    padding: 10px 0;
    height: 20vh;
    width: 100%;
    background: url("img/contact-banner.png") no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    background-attachment:fixed ;
}
.contact-info{
    width: 100%;
    background: #F6F6F6;
}
.contact-info .info{
    border-radius: 5px;
    border: 1px solid #582A8A;
    background: white;
    margin-bottom: 20px;
    height: 220px;
}
.contact-info .info i{
    font-size: 50px;
    color: #582A8A;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}


.contact-info .info h4{
    margin-top: 5px;
    font-size: 25px;
    font-weight: 700;
    color: #000;
    justify-content: space-between;
    align-items: baseline;
    letter-spacing: 1.8px;
}
.contact-info .info p{
    font-weight: bold;
    color: black;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 5px;
}
.contact-info .info p a:hover{
    color: #582A8A;
    justify-content: center;
    align-items: center;
    transition-duration:0.3s;
}
.contact-info .info p a{
    color: black;
    letter-spacing: 1.8px;
    transition: 0.5s;
}

.contact .info {
    width: 100%;
    background: #fff;
}
.contact .form-group .form-control{
    background: none;
    position: relative;
    border: 1px solid #582A8A;
    border-radius: 5px;
}
.contact .form-group button{
    background: white;
    border: 1px solid #582A8A;
    border-radius: 5px;
    color: black;
}
.contact .form-group button:hover{
    background: #582A8A;
    color: white;
    transition-duration: 0.5s!important;
}

.contact .info i {
    font-size: 18px;
    color: #556270;
    float: left;
    width: 44px;
    height: 44px;
    background: #edeff1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #556270;
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #8795a4;
}

.contact .info .email,
.contact .info .phone {
    margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: #556270;
    color: #fff;
}

.contact .php-email-form {
    width: 100%;
    background: #fff;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #582A8A;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #582A8A;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
    background: #582A8A;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
    background: #582A8A;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
    padding: 10px 0 10px 0;
}
.blog .container{
    padding-top: 40px;
}

.blog .entry {
    padding: 30px;
    margin-bottom: 60px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
    height: 500px;
    background-size: cover;
}
.blog .entry .sil-entry-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
    background-size: cover;
}

.blog .entry .entry-title {
    font-size: 28px;
    font-weight: bold;
    padding: 0;
    margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
    color: #556270;
    transition: 0.3s;
}

.blog .entry .entry-title a:hover {
    color: #582A8A;
}

.blog .entry .entry-meta {
    margin-bottom: 15px;
}

.blog .entry .entry-meta ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.blog .entry .entry-meta ul li {
    padding: 10px;
    margin-right: 10px;
    border: .25px solid #eaead8;
    border-radius: 5px;
}

.blog .entry .entry-meta i {
    font-size: 16px;
    margin-right: 5px;
    line-height: 0;
}


.blog .entry .entry-meta a {
    color: #777777;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.blog .entry .entry-content p {
    line-height: 24px;
}

.blog .entry .entry-content .read-more {
    -moz-text-align-last: right;
    text-align-last: right;
}

.blog .entry .entry-content .read-more a {
    display: inline-block;
    background: #582A8A;
    color: #fff;
    padding: 6px 20px;
    transition: 0.3s;
    font-size: 14px;
    border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
    background: #582A8A;
}

.blog .entry .entry-content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.blog .entry .entry-content blockquote {
    overflow: hidden;
    background-color: #fafafa;
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
    color: #444444;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #556270;
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog .entry .entry-footer {
    padding-top: 10px;
    border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
    color: #a4afba;
    display: inline;
}

.blog .entry .entry-footer a {
    color: #606f7e;
    transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
    color: #582A8A;
}

.blog .entry .entry-footer .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}

.blog .entry .entry-footer .cats li {
    display: inline-block;
}

.blog .entry .entry-footer .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}

.blog .entry .entry-footer .tags li {
    display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
    padding-right: 6px;
    color: #6c757d;
    content: ",";
}

.blog .entry .entry-footer .share {
    font-size: 16px;
}

.blog .entry .entry-footer .share i {
    padding-left: 5px;
}

.blog .entry-single {
    margin-bottom: 30px;
}

.blog .blog-author {
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
    width: 120px;
    margin-right: 20px;
}

.blog .blog-author h4 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0px;
    padding: 0;
    color: #556270;
}

.blog .blog-author .social-links {
    margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
    color: rgba(85, 98, 112, 0.5);
    margin-right: 5px;
}

.blog .blog-author p {
    font-style: italic;
    color: #b7b7b7;
}

.blog .blog-comments {
    margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
    font-weight: bold;
}

.blog .blog-comments .comment {
    margin-top: 30px;
    position: relative;
}

.blog .blog-comments .comment .comment-img {
    margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
    width: 60px;
}

.blog .blog-comments .comment h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
    font-weight: bold;
    color: #444444;
    transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
    color: #582A8A;
}

.blog .blog-comments .comment h5 .reply {
    padding-left: 10px;
    color: #556270;
}

.blog .blog-comments .comment h5 .reply i {
    font-size: 20px;
}

.blog .blog-comments .comment time {
    display: block;
    font-size: 14px;
    color: #6b7b8d;
    margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
    padding-left: 40px;
}

.blog .blog-comments .reply-form {
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
    font-weight: bold;
    font-size: 22px;
}

.blog .blog-comments .reply-form p {
    font-size: 14px;
}

.blog .blog-comments .reply-form input {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
    box-shadow: none;
    border-color: #582A8A;
}

.blog .blog-comments .reply-form textarea {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
    box-shadow: none;
    border-color: #582A8A;
}

.blog .blog-comments .reply-form .form-group {
    margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
    border-radius: 4px;
    padding: 10px 20px;
    border: 0;
    background-color: #556270;
}

.blog .blog-comments .reply-form .btn-primary:hover {
    background-color: #606f7e;
}

.blog .blog-pagination {
    color: #8795a4;
}

.blog .blog-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.blog .blog-pagination li {
    margin: 0 5px;
    transition: 0.3s;
}

.blog .blog-pagination li a {
    color: #556270;
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
    background: #582A8A;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
    color: #fff;
}

.blog .sidebar {
    padding: 10px;
    margin: 0 0 30px 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.blog .sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0 0 0 0;
    margin: 0 0 15px 0;
    color: #556270;
    position: relative;
}

.blog .sidebar .sidebar-item {
    margin-bottom: 30px;
}

.blog .sidebar .search-form form {
    background: #fff;
    border: 1px solid #ddd;
    padding: 3px 10px;
    position: relative;
}

.blog .sidebar .search-form form input[type=text] {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    background: #582A8A;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    line-height: 0;
}

.blog .sidebar .search-form form button i {
    line-height: 0;
}

.blog .sidebar .search-form form button:hover {
    background: #582A8A;
}

.blog .sidebar .categories ul {
    list-style: none;
    padding: 0;
}

.blog .sidebar .categories ul li+li {
    padding-top: 10px;
}

.blog .sidebar .categories ul a {
    color: #556270;
    transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
    color: #582A8A;
}

.blog .sidebar .categories ul a span {
    padding-left: 5px;
    color: #aaaaaa;
    font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
    margin-top: 15px;
}

.blog .sidebar .recent-posts img {
    width: 80px;
    float: left;
}

.blog .sidebar .recent-posts h4 {
    font-size: 15px;
    margin-left: 95px;
    font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
    color: #556270;
    transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
    color: #582A8A;
}

.blog .sidebar .recent-posts time {
    display: block;
    margin-left: 95px;
    font-style: italic;
    font-size: 14px;
    color: #aaaaaa;
}

.blog .sidebar .tags {
    margin-bottom: -10px;
}

.blog .sidebar .tags ul {
    list-style: none;
    padding: 0;
}

.blog .sidebar .tags ul li {
    display: inline-block;
}

.blog .sidebar .tags ul a {
    color: #96a2af;
    font-size: 14px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid white;
    display: inline-block;
    transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
    color: #fff;
    border: 1px solid #582A8A;
    background: #582A8A;
}

.blog .sidebar .tags ul a span {
    padding-left: 5px;
    color: #fbfbfc;
    font-size: 14px;
}
@media(max-width: 900px) {
    .blog .container {
        padding-top: 20px!important;
    }

    .blog .entry {
        padding: 30px 30px 10px 30px;
        margin-bottom: 60px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

    .blog .entry .entry-img {
        height: 100%;
    }

    .blog .entry .entry-title {
        font-size: 16px;
        font-weight: bold;
        padding: 0;
        margin-bottom: 10px;
        text-align: left;
    }

    .blog .entry .entry-title.entry-meta {
        font-size: 12px;

    }

    .blog .entry .entry-meta ul {
        font-size: 12px;
    }

    .blog .entry .entry-meta i {
        font-size: 12px;
    }

    .blog .entry .entry-meta ul li {
        padding: 2px;
        margin-right: 5px;
        border: .25px solid #eaead8;
        border-radius: 2px;
    }

    .blog .entry .entry-meta a {
        color: #777777;
        font-size: 10px;
        display: inline-block;
        line-height: 1;
    }

    .blog .entry .entry-meta i {
        font-size: 12px;
        margin-right: 2px;
        line-height: 0;
    }

    .entry-content {
        font-size: 12px;
    }

    .blog .entry .entry-content p {
        line-height: 1;
    }

    .blog .entry .entry-content .read-more a {
        display: inline-block;
        background: #582A8A;
        color: #fff;
        padding: 5px 15px;
        transition: 0.3s;
        font-size: 12px;
        border-radius: 5px;
    }
}
/*land owner ----*/


.landowner{
    background: url("img/dragon-palace-hotel.jpg") no-repeat;!important;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;!important;
    position: relative;
    width: 100%;!important;
}

.landowner .container{
    align-content: center;
}

.landowner .container .card-info:first-child{
    margin-right: 0px;
}
.landowner .container .card-info .card {
    height: 350px;
    /*width: 260px;*/
    color: white;
    border-radius: 5px;
    position:center;
    padding: 1.8rem;
    border: 1px solid #c3c6ce;
    transition: 0.5s ease-out;
    overflow: visible;
    background-color: transparent;!important;
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
}

.landowner .container .card-info .card .card-details {
    color: white;
    gap: .5em;
    display: grid;
    place-content: center;
}

@media only screen and (max-width: 360px) {
    .landowner .container .col-md-3.card-info {
        height: 360px; /* Change height to auto for responsive behavior */
        width: 100%; /* Set width to 100% for responsiveness */
        margin-right: -50px;
        margin-left: 0; /* Reset margin-left */
        margin-top: 0; /* Reset margin-top */
    }
}
.card-button {
    transform: translate(-50%, 50%);
    width: 50%;
    border-radius: 5px;
    border: 1px solid #582A8A;
    background-color: white;
    color: black;
    font-size: 1rem;
    padding: .5rem 1rem;
    position: absolute;
    left: 50%;
    bottom: 80px;
}
.card-button:hover {
    transform: translate(-50%, 50%);
    width: 50%;
    border-radius: 5px;
    border: 1px solid white;
    background-color: #582A8A;
    color: #fff;
    transition-duration: 0.7s;
}


.landowner .container .card .text-body {
    color: white;
}

/*Text*/
.landowner .container .text-title {
    font-size: 2em;
    font-weight: bold;
}

/*Hover*/
.landowner .container .card:hover {
    box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.25);
    border: 1px solid #582A8A;
    transition: 0.7s;
    border-radius: 5px;
    height: 350px;
    /*width: 260px;*/
}


/* --- nrw-testimonials--- */
#testimonial{
    padding: 0 0 0 0;
    background: url("img/testimonials-bg.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed !important;
    position: relative;
}


.testimonial-slider{
    height: auto;
}
#testimonial .section-header{
    text-align: center;
    color: white;
}
.section-header .title{
    text-transform: capitalize;
    color: hsl(0,0%,100%);
    font-size: 50px;
}
.testimonial-item{
    background-color: hsl(0,0%,100%);
    padding:20px;
    border-radius:5px;
}
.testimonial-item .testimonial-title a{
font-size: medium;
    font-weight: 600;
    text-align: left;
}
.testimonial-item .info{
    display:flex;
    align-items:center;
}
.testimonial-item img {
    border-radius:5px;
    height: 200px;
}
.testimonial-item .name{
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 600;
    color:hsl(0,0%,0%);
    line-height: 1.2;
}
.testimonial-item .job{
    text-transform: capitalize;
    color:hsl(0,0%,40%);
}
.testimonial-item p{
    margin-top: 20px;
    color:hsl(0,0%,40%);
    text-align: justify;
    font-size: 12px;
}
.testimonial-item .rating{
    margin-top: 15px;
    font-size: 14px;
    color:hsl(0,0%,0%);
}
#testimonial .swiper-pagination{
    position: relative;
    margin-top: 40px;
    bottom: auto;
}
#testimonial .swiper-pagination-bullet{
    height: 12px;
    width: 12px;
    background-color: hsl(0,0%,100%);
}

@media (min-width: 340px) and (max-width: 780px){
    .section-header .title{
        font-size: 25px;
        margin-top: 20px;
    }
}
@media (min-width: 340px) and (max-width: 780px){
    .testimonial-slider{
        height: 200px;
    }
    .testimonial-item img {
        border-radius:5px;
        height: 150px;
    }

    .testimonial-item .testimonial-title a{
        font-size: 12px;
        text-align: left;
    }
    .testimonial-item p{
        font-size: 10px;
        margin-top: -10px;
    }
   .testimonial-item h4{
       line-height: 12px;
       margin-top: -5px;
   }
}

.project-item{
   line-height: 20px;
    display: flex
;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px solid #ebebeb;
    color: #000;
    /* font-weight: 600; */
    font-size: 14px;
    text-align: right;
    letter-spacing: 0.2px;
    font-family: 'Open Sans';
}
.project-item strong{
        /* font-size: 11px; */
    /* text-transform: uppercase; */
    font-weight: 600;
    float: left;
    text-align: left;
    letter-spacing: 0.5px;
}
.project-img-fluid{
    max-width: 100%;
    height: auto;
    background-size: cover;
    width: 100%;
}
.testimonial-item .read-more{
    -moz-text-align-last: right;
    text-align-last: right;
}

.testimonial-item .read-more a {
    display: inline-block;
    background: #582A8A;
    color: #fff;
    padding: 6px 20px;
    transition: 0.3s;
    font-size: 14px;
    border-radius: 4px;
}

.testimonial-item .read-more a:hover {
    background: #582A8A;
}

/*------
map
-------*/
.project-location{
    margin-bottom: 30px;
}
.project-location h1{
    text-transform: uppercase;
    font-weight: bold;
}
.map{
    margin: 0;
    padding: 0;
    height: 400px;
}
.map-custom-embed{
    width: 100%;
    height: 400px;
    border: 0;
}
.map-custom-embed iframe{
    width: 100%;!important;
    height: 400px;
    border: 0;
}
iframe{
    height: 400px;
    width: 100%;
}
@media (min-width: 340px) and (max-width: 500px){
    iframe{
        height: 300px;
        width: 100%;
    }
    .map{
        margin: 0;
        padding: 0;
        height: 300px;
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    position: absolute;
    width: 100%;
    background: black;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
}

#footer .footer-top {
    border-bottom: 1px solid #582A8A;
    padding: 60px 0 30px 0;
    width: 100%;
    background-color: rgba(63, 73, 83, 0.8);!important;
    overflow: hidden;
    position: relative;!important;
}

#footer .footer-top .footer-info {
    margin-bottom: 50px;
}

#footer .footer-top .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #fff;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #1c3733;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #582A8A;
    color: #fff;
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #4ae3c6;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: inline-block;
    /*align-items: center;*/
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

/*#footer .footer-top .footer-links ul a {*/
/*    color: #fff;*/
/*    transition: 0.3s;*/
/*    display: inline-block;*/
/*    line-height: 1;*/
/*}*/
#footer .footer-top .footer-links ul li a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: #582A8A;
}

#footer .footer-top .footer-newsletter form {
    /*background: #fff;*/
    color:#FFFFFF;
    padding: 6px 10px;
    position: relative;
    border: 1px solid #582A8A;
    border-radius: 4px 0 0 4px;
}
#footer .footer-top .footer-newsletter form .form-control{
    /*background: #fff;*/
    color:#FFFFFF;!important;
}
#footer .footer-top .footer-newsletter form ::placeholder {
    color: white;
    opacity: 1; /* Firefox */
}
#footer .footer-top .footer-newsletter form input{
    background: none;!important;

    padding: 6px 10px;
    position: relative;
    border: 1px solid #582A8A;
    border-radius: 5px;
}
#footer .footer-top .footer-newsletter form textarea{
    background: none;!important;
    padding: 6px 10px;
    position: relative;
    border: 1px solid #582A8A;
    border-radius: 5px;
}
#footer .footer-top .footer-newsletter form .contact-error{
    margin: 10px auto;
    font-size: medium;
}

/*#footer .footer-top .footer-newsletter form input[type=email] {*/
/*  border: 0;*/
/*  padding: 4px;*/
/*  width: calc(100% - 110px);*/
/*}*/

#footer .footer-top .container .row .footer-newsletter .php-email-form button {
    position: relative;
    padding: 5px;
    background: #582A8A;
    color: #fff;
    font-size: 20px;
    outline: none;
    cursor: pointer;
    width: 150px;
    margin: 10px auto;
    border-radius: 30px;
    transition: 0.3s;
}

#footer .footer-top .footer-newsletter .php-email-form button:hover {
    background: #582A8A;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
    font-size: 16px;
    text-transform: uppercase;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 16px;
    color: #fff;
}
.footer-info img{
    height: 100px;
    width: 200px;
}
.footer-info p{
    text-align: justify;
    font-size: 16px;
    line-height: 16;
}

@media (min-width: 340px) and (max-width: 500px){
    #footer .footer-top {
        border-bottom: 1px solid #582A8A;
        padding: 30px 0 30px 0;
        width: 100%;
        background-color: rgba(63, 73, 83, 0.8);!important;
        overflow: hidden;
        position: relative;!important;
    }
    .footer-info h3{
        text-align: center;
    }
    .footer-info img{
        height: 60px;
        width: 120px;
    }
    #footer .footer-top .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
        line-height: 12px;
    }
    #footer .copyright {
        text-align: center;
        padding-top: 20px;
        font-size: 12px;
        text-transform: uppercase;
    }

    #footer .credits {
        text-align: center;
        font-size: 12px;
        color: #fff;
    }

}

/*-------------- our Mission */


.mission-info{
    margin-top: 50px;
    color: black;
    text-align: center;
}
.mission-info h3{
    font-weight: bold;
    text-transform: uppercase;
}
/*-------------- buyer-info */
.buyer-ctn{
    background-color: #D6D9DC;
    border-radius: 10px;
    border: 5px solid white;
    box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.25);
}
.buyer-info{
    margin-top: 50px;
    color: #1e2125;
    text-align: justify;

}
.buyer-info h3{
    font-weight: bold;
    text-transform: uppercase;
}

@media (min-width: 340px) and (max-width: 500px){

    .buyer-info p{
        font-size: 12px;
        padding:0 10px;
    }
    .buyer-info ul{
        font-size: 14px;
    }
    .buyer-info h5{
        font-size: 20px;
        padding:0 10px;
        text-align: left;
    }
}

/*---------- project Icon -----*/
.project-cover{
    height: 200px;
}
.project-name .container.row h1{
    margin-top: 50px;
    font-weight: 700;!important;
    z-index: 999;
    text-transform: uppercase;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    color: black;
}
.project-icon .container .card{
    border-radius: 10px;
}
.project-icon .container .project-title h1{
    font-weight: bold;
    text-transform: uppercase;
}
.image-box-wrapper{
   width: 100%;
  height: 150px;
  background-color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  gap: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 1px 1px 5px rgb(0, 0, 0);
  border-radius: 5px;
  border: 1px solid #582A8A;
}
.image-framed{
    height: 50px;
    width: 50%;
}
.image-framed img{
    height: 50px;
}
.image-box-content{
    height: 100px;
    width: 100%;
    margin-top: 10px;
}
.why-button{
    transform: translate(-50%, 50%);
    width: 200px;
    border-radius: 5px;
    border: 1px solid #582A8A;
    background-color: white;
    color:black;
    font-size: 1rem;
    padding: .5rem 1rem;
    position: absolute;
    left: 50%;
    bottom: 80px;
}
.why-button:hover{
    background-color: #582A8A;
    color: #fff;
    transition-duration: 0.5s;
}

.slider-section{
    width: 100%;!important;
    height: 600px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 1);
    background-color: #323232;
    max-width: 100%;
    padding-left: 0;!important;
    padding-right: 0;!important;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    margin-right: auto;
    margin-left: auto;
}
#carouselExampleFade{
    width: 100%;!important;
    max-width: 100%;!important;
    height: 600px;
    z-index: 999;
    background-color: #323232;
}
.future-slider{
    height: 600px;
    width: 100%;
}
.img-slider{
    width: 100%;
    height: 600px;
    background-size: cover;
}
@media (min-width: 340px) and (max-width: 500px){
    .img-slider{
        width: 100%;
        height: 300px;
        background-size: cover;
    }
    .future-slider {
        height: 300px;
        width: 100%;
    }
    #carouselExampleFade {
        width: 100%;
        max-width: 100%;
        height: 300px;
        z-index: 999;
        background-color: #323232;
    }
    .slider-section {
        height: 300px;
        width: 100%;
    }
    .sl-content{
        display: none!important;
    }
    .team_bg{
        height: 0;
    }
    .team{
        padding: 40px 0;
    }
    .team .content p {
        font-size: 12px;
        color: #1e2125;
        text-align: justify;
    }
}

.team-info{
    width: 100%;
}
.future-slider .carousel-item .row .order-lg-2{
    margin: 0;!important;
}
.bg-tx-cr{
    color: white;
    background-color: #323232;
}
.sl-content h2{
    font-weight: bold;
}
.sl-content{
    margin-top: 180px;
    margin-left: 150px;
    margin-right: 100px;
}

@media (max-width: 1920px) {
    .slider-section .future-slider .sl-content {
        margin-top: 180px;
        margin-left: 150px;
        margin-right: 50px;
    }
    .slider-section .future-slider .sl-content p{
        font-size: 18px;
        margin-top: 25px;
    }

}

.flex-wrap .relative label{
    color: #FFFFFF;
}
.project-gallery{
    width: 100%;
    height: auto;
    position: relative;
}
.project-gallery .gallery-item{
    margin-bottom: 30px;
}
.project-gallery .gallery-item:hover img {
    transform: scale(1.1);
    transition-duration: 0.9s;
}

.project-gallery .project-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
}
.project-wrap{
    /*height: 300px;*/
    width: 100%;
}
.project-gallery .project-wrap img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    background-size: cover;
    -moz-background-size: cover;
}

.project-gallery .project-wrap::before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}
.project-gallery .project-glry-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
}
.project-glry-wrap{
    height: 250px;
    width: 100%;
}
.project-gallery .project-glry-wrap img{
    height: 100%;
    width: 100%;
    transition: transform 0.5s;
    object-fit: cover;
    background-size: cover;
    -moz-background-size: cover;
}

.project-gallery .project-glry-wrap::before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    transition:  0.5s;
    z-index: 2;
    opacity: 0;
}
@media screen and (min-width: 1444px) {
    .portfolio-container{
        margin-left: 100px;
        margin-right: 100px;
    }
}
@media (min-width: 340px) and (max-width: 500px) {
    .portfolio {
        margin-bottom: -35px;
        margin-top: -50px;
    }
    .portfolio-container {
        margin-bottom: 0 !important;
    }
    .portfolio .portfolio-url li a {
        color: #444444;
        font-size: small;
    }
    .portfolio-wrap {
        height: 320px;
        width: 100%;
    }
    .portfolio .project-info {
        padding-top: 5px;
    }
    .portfolio .portfolio-url {
        margin:auto;
        list-style: none;
        text-align: center;
        background: #fff;
        box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        padding: 5px 10px;
        border: 1px solid #582A8A;
    }
    .portfolio .project-info h2 span a {
        font-size: 14px;
    }
    .partnership .content h2 {
          font-size: 20px;
          line-height: 25px;
      }
    .partnership .content p {
        color: #444444;
        font-size: 12px;
        margin-top: -10px;
    }
}
@media (min-width: 340px) and (max-width: 500px){
    .card-content{
        height: 150px;
        width: 100%;
        text-align: center!important;
    }
    .card-content p {
        margin-top: 60px;
        font-size: 16px;
        font-weight: 500;
        font-style: normal;
    }

}


.portfolio-container {
    margin-bottom: 30px;
}

.job-menu{
    padding: 10px;
    box-shadow: 0px 0 30px rgba(33, 65, 60, 0.08);
    border-radius: 15px;
    transition: transform .6s;
    background-color: white;
}
.job-menu:hover{
    border: 2px solid beige;
    transform: scale(1.1)
}
.job-info{
    padding: 40px 0;
    box-shadow: 0 0 30px rgba(33, 65, 60, 0.08);
    border-radius: 15px;
    transition: transform .6s;
    background-color: white;
    font-family: "Poppins", sans-serif;
}
.job-info h3{
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    border-bottom: 1px solid #b1b6bb;
    text-align: center;
    margin-bottom: 20px;
}
.job-info .job-info-content{
   margin: 0 50px 50px 50px;
}

@media (max-width: 500px) {
    .job-info .job-info-content{
        margin: 5px;
        text-align: justify-all;
    }

}


