/* 
*  CSS TABLE OF CONTENTS
*   
*  0 - General
*  1 - Banner
*  2 - Intro
*  3 - Networking
*  4 - Properties
*  5 - Collection
*  6 - Modal
*  7 - Contact
*/


/*** 0 - General ***/

.titlemain {
    padding: 0 5%;
}
.maintop {
    margin-top: 12%;
}
.maintop2 {
    margin-top: 9%;
}
.text-left{
    text-align: left;
}

.tracking {
    letter-spacing:1px
}

/*** 1 - Banner ***/

.clear {
    clear: both;
}
.hero-img {
    background-image: url(../images/hero-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100vh;
}
.banner-block{
    padding: 25% 5%;
}


.banner-p{
    font-size: 1.15rem;
    margin-top: 45%;
}

.arrowdown {
    width: 15%;
    float: right;
    margin-right: 5%;
}

/*** 2 - Intro ***/

.intro-img{
    height: 50vh;   
    width: 100%;    
    background-image: url(../images/intro.gif);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.intro-p {
    padding: 0 4%;
}

/*** 3 - Networking ***/

.networking-div {
    margin-top: 10%;
}
.networking-img{
    height: 50vh;   
    width: 100%;    
    background-image: url(../images/networking.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

/*** 4 - Properties ***/

.properties-div {
    margin-top: 10%;
}
.properties-img{
    height: 50vh;   
    width: 100%;    
    background-image: url(../images/properties.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

/*** 5 - Collection ***/

.collection-div {
    margin-top: 10%;
}
.collection1-img{
    height: 50vh;   
    width: 100%;    
    background-image: url(../images/collection-1.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.collection2-img{
    height: 50vh;   
    width: 100%;    
    background-image: url(../images/collection-2.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.collection3-img{
    height: 50vh;   
    width: 100%;    
    background-image: url(../images/collection-3.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}


.carouselgutter {
    --bs-gutter-x:0;
}

.carousel-inner {
    width: auto !important;
    }

/*** 6 - Modal ***/

.modal-container {
    position: fixed;
    top: 20%;
    right: 0;
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    z-index: 5;
    visibility: hidden;
}
.modal-container2 {
    position: fixed;
    top: 20%;
    right: 0;
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    z-index: 5;
    visibility: hidden;
}
.modal-content {
  background-color: var(--zeipekkis-secondary);
  width: 100%;
  max-width: 90%;
  color: var(--zeipekkis-primary) !important;
  padding: 10%;
  position: relative;
  height: 70vh;
  overflow-y: auto;
}
.modal-content2 {
    background-color: var(--zeipekkis-secondary);
    width: 100%;
    max-width: 90%;
    color: var(--zeipekkis-primary) !important;
    padding: 10%;
    position: relative;
    height: 70vh;
    overflow-y: auto;
  }

.modal-content .btn-close {
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    cursor: pointer;
    outline: none;
    height: 25px;
    width: 25px;
    border-radius: 0;
    background-color: var(--zeipekkis-primary);
    color: var(--pure-white);
    opacity: 1;
}
.modal-content2 .btn-close2 {
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    cursor: pointer;
    outline: none;
    height: 25px;
    width: 25px;
    border-radius: 0;
    background-color: var(--zeipekkis-primary);
    color: var(--pure-white);
    opacity: 1;
}
.btn-close:hover{
    opacity: 0.5;
}
.modaltitle {
    font-size: 1.75rem;
}
.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
    z-index: 2;
}

.backdrop2 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
    z-index: 2;
}
.show {
    visibility: visible;
    opacity: 1;
}

.hierarchy-lg {
    display: none;
}

/*** 7 - Contact ***/

.contact-div {
    margin-top: 10%;
    margin-bottom: 4%;
}