/*^ PRESETS & DOC ^*/
body {
    padding: 0%;
    margin: 0%;
    overflow-x: hidden;
}
.hide {
    display: none;
}
.animate-slideUp-small {
    transform: translateY(-50px);
}
.scale-1 {
    transform: scale(1.1);
}

.diagnal-slide-top-left {
    transform: translate(-25px, -25px);
}
.diagnal-slide-top-right {
    transform: translate(25px, -25px);
}
.diagnal-slide-bottom-left {
    transform: translate(-25px, 25px);
}
.diagnal-slide-bottom-right {
    transform: translate(25px, 25px);
}

/*^ NAVBAR ^*/

#Navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    top: 0px;
    width: 100vw;
    height: auto;
    background-color: rgba(238, 168, 5, 1);
    color: rgb(235, 235, 235);
    transition: top 0.5s ease;
    z-index: 3;
}
.logoContainer {
    display: flex;
    justify-content: center;
    width: 20%;
}
.logoContainer div:nth-child(2) {
    text-transform: capitalize;
}
.navContainer {
    display: flex;
    justify-content: center;
    width: 100%;
}
.navContainer ul {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    list-style-type: none;
    padding-inline-start: 0px;
}
.navContainer ul li {
    list-style: none;
}
.navContainer ul li a {
    text-decoration: none;
    text-transform: uppercase;
    color: rgb(235, 235, 235);
    transition: all 0.25s ease;
    padding: 1em 1.5em;
}
.navContainer ul li a:hover {
    cursor: pointer;
    color: blue;
    background-color: rgba(235, 235, 235, 0.75);
}
.cartContainer {
    display: flex;
    justify-content: center;
    width: 10%;
}

/*^ HEADER ^*/
#header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100vw;
    height: 100vh;
    background-color: darkslateblue;
    /* color: rgb(235, 235, 235); */
    color: darkblue;
    text-align: center;
}
.header-bg-img {
    background-image: url("./img/abstractBookshelf1.jpeg");
    background-position: 0%;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.header-img-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
}
#header div h1, #header div h4 {
    padding: 2%;
    width: 60%;
    margin: auto;
}
.header-txt-bg {
    background: rgba(235, 235, 235, 0.5);
}
#header div h1 {
    text-transform: capitalize;
    font-weight: 600;
    font-size: xx-large;
}
#header div h4 {
    background-color: rgba(235, 235, 235, 0.25);
    font-size: x-large;
    font-weight: 500;
}
#header div button {
    width: auto;
    height: auto;
    padding: 1% 2%;
    margin: 2% auto;
    color: rgba(235, 235, 235, 1);
    background: darkorange;
    border: none;
    border-radius: 25px;
    font-size: large;
    font-weight: 400;
    text-transform: capitalize;
    transition: all 0.25s ease;
}
#header div button:hover {
    transform: scale(1.1);
    cursor: pointer;
}

/*^ WELCOME ^*/
#welcome {
    display: block;
    width: 100vw;
    height: 100vh;
    background: rgb(235, 235, 235);
}
.carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 50vh;
}
.wel-carol-left-arrow, .wel-carol-right-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    font-size: xx-large;
    font-weight: 600;
    color: black;
    background: rgba(235, 235, 235, 0.75);
    margin: auto 5%;
    padding: 2%;
    z-index: 1;
}
.wel-carol-left-arrow {
    left: 0;
}
.wel-carol-right-arrow {
    right: 0;
}
.wel-carol-left-arrow:hover, .wel-carol-right-arrow:hover {
    cursor: pointer;
    color: rgb(0, 100, 100);
    background: rgba(235, 235, 235, 1);
    text-shadow: 2px solid rgba(0, 0, 0, 0.25);
}
.wel-carol-imgs {
    display: flex;
    position: absolute;
    left: 0;
    align-items: center;
}
.wel-carol-img {
    display: block;
    width: 20vw;
    height: 45vh;
    background: url("./img/coffeeCup2.jpeg");
    background-position: 50%;
    background-size: cover;
}

/* .wel-carol-img:nth-child(1) {
    background: rgba(0, 255, 255, 1);
}
.wel-carol-img:nth-child(2) {
    background: rgba(255, 0, 255, 1);
}
.wel-carol-img:nth-child(3) {
    background: rgba(0, 0, 255, 1);
}
.wel-carol-img:nth-child(4) {
    background: rgba(255, 165, 0, 1);
}
.wel-carol-img:nth-child(5) {
    background: rgba(255, 255, 0, 1);
}
.wel-carol-img:nth-child(6) {
    background: rgba(255, 69, 0, 1);
}
.wel-carol-img:nth-child(7) {
    background: rgba(255, 0, 0, 1);
} */

.wel-options {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100vw;
    height: 50vh;
}
.wel-supplies, .wel-gifts, .wel-decor, .wel-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 20%;
    height: 90%;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 1);
    background-position: 0%;
    background-size: cover;
    transition: all 0.25s ease;
}
/* .wel-options div:nth-child(n) p {
    width: 100%;
    text-align: center;
    font-size: x-large;
    font-weight: 600;
}
.wel-options div:nth-child(n) button {
    background: rgba(0, 150, 155, 1);
    color: rgba(235, 235, 235, 1);
    border: none;
    border-radius: 30px;
    padding: 4% 10%;
    margin: auto;
    transition: all 0.25s ease;
}
.wel-options div:nth-child(n) button:hover {
    cursor: pointer;
    background: rgba(0, 75, 225, 1);
} */

.wel-supplies {
    background-image: url("./img/supplies_penOnShelf1.jpeg");
}
.wel-gifts {
    background-image: url("./img/blankCandle1.jpeg");
    background-position: 50%;
}
.wel-decor {
    background-image: url("./img/floatShelf_decor1.jpeg");
}
.wel-brand {
    background-image: url("./img/coffeeCup1.jpeg");
    background-position: 10%;
}

.wel-opt-overlay {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    margin: auto;
    background-color: rgba(215, 215, 235, 0.5);
    border: none;
    border-radius: 15px;
}
.wel-opt-overlay p, .wel-opt-overlay button {
    display: block;
    position: relative;
    margin: auto;
}
.wel-opt-overlay p {
    padding: 2%;
    text-align: center;
    font-size: x-large;
    font-weight: 600;
    background-color: rgba(235, 235, 235, 0.75);
}
.wel-opt-overlay button {
    background: rgba(0, 150, 155, 1);
    color: rgba(235, 235, 235, 1);
    border: none;
    border-radius: 30px;
    padding: 4% 10%;
    margin: auto;
    transition: all 0.25s ease;
}
.wel-opt-overlay button:hover {
    cursor: pointer;
    background: rgba(0, 75, 225, 1);
}

/*^ SERVICES ^*/
#services {
    display: block;
    width: 100vw;
}
.serv-sec-title {
    display: block;
    width: 35%;
    height: 10%;
    margin: auto;
    text-align: center;
}
.serv-sec-title h1 {
    font-size: x-large;
    font-weight: 800;
    letter-spacing: 1px;
}
.serv-sec-div-one, .serv-sec-div-two {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}
.serv-sec-img-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45%;
    height: 500px;
    /* background: lightskyblue; */
    background-image: url("./img/horse_3pAbstractPainting.jpeg");
    background-size: contain;
    background-position-y: 20%;
    border: 2px solid lightseagreen;
    border-radius: 15px;
}
.serv-sec-content-1 {
    display: block;
    width: 45%;
    padding: 2%;
}
#services .btn {
    font-size: medium;
    font-weight: 400;
    padding: 1% 3%;
    border: none;
    border-radius: 30px;
    background: blueviolet;
    color: white;
    transition: all 0.25s ease;
}
#services .btn:hover, .serv-sec-div-two div button:hover {
    cursor: pointer;
    background: rgba(238, 168, 5, 1);
}

.serv-sec-div-two :nth-child(n) {
    display: block;
    margin: auto;
    text-align: center;
}
.serv-sec-div-two div h2, .serv-sec-div-two div p {
    padding-left: 10%;
    padding-right: 10%;
}
.serv-sec-div-two :nth-child(n):nth-child(n) {
    margin: 5% auto;
}
.serv-sec-div-two div button {
    font-size: medium;
    font-weight: 400;
    padding: 1.5% 4%;
    border: none;
    border-radius: 30px;
    background: blueviolet;
    color: white;
    transition: all 0.25s ease;
}
.serv-sec-btns {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}
.serv-sec-btns button {
    font-size: medium;
    font-weight: 400;
    padding: 1.5% 3%;
    margin: 25px 0;
    color: white;
    background: orange;
    border: none;
    border-radius: 5px;
    transition: all 0.25s ease;
}
.serv-sec-btns button:hover {
    cursor: pointer;
    border-radius: 30px;
    background: goldenrod;
}

/*^ OUR WORK / PORTFOLIO ^*/
#portfolio {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    /* background-color: lightgoldenrodyellow; */
    background-color: lightgrey;
}
.port-sec-title {
    display: block;
    width: 40%;
    height: auto;
    margin: auto;
    padding: 25px;
}
.port-sec-title h1 {
    font-size: xx-large;
    font-weight: 800;
    padding-bottom: 25px;
}
.port-sec-title h2, .subTitle h2 {
    font-size: x-large;
    font-weight: 600;
}
.port-sec-title p {
    font-size: large;
    font-weight: 400;
    color: rgba(49, 49, 49, 1);
}
.port-sec-subTitles {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.subTitle {
    display: block;
    width: 45%;
    padding: 2% 0;
}
.port-sec-title button {
    font-size: large;
    font-weight: 400;
    background: rgb(100, 180, 220);
    border: 1px solid rgba(79, 79, 79, 0.8);
    border-radius: 6px;
    padding: 7px 14px;
    margin-top: 25px;
    transition: all 0.25s ease;
}
.port-sec-title button:hover {
    cursor: pointer;
    background-color: aqua;
    color: darkslateblue;
    border-radius: 15px;
}
.squared {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 700px;
}
.sq {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 300px;
    background-color: rgba(72, 61, 139, 0);
    background-size: contain;
    color: white;
    border: 1px solid white;
    text-align: center;
    transition: all 0.25s ease;
}
.sq:hover {
    cursor: pointer;
    background-color: rgba(135, 206, 250, 0.5);
}

.square-1a {
    background-image: url("./img/floatShelf_decor1.jpeg");
}
.square-1b {
    background-image: url("./img/coffeeCup2.jpeg");
    background-position-x: 50%;
    background-size: 150%;
}
.square-1c {
    background-image: url("./img/coffeeCup1.jpeg");
    background-position-x: 10%;
    background-size: 150%;
}
.square-1d {
    background-image: url("./img/blankCandle1.jpeg");
    background-position-x: 50%;
    background-size: 150%;
}

.square-1-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border: none;
    background-color: rgba(79, 79, 79, 0.5);
}
.square-1-overlay p {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2%;
}
.square-1-overlay:hover {
    background-color: rgba(79, 79, 79, 0);
}

.port-example1 {
    display: none;
    position: absolute;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 90%;
    height: 90%;
    background-color: rgba(0, 0, 139, 0.85);
    color: rgb(235, 235, 235);
    z-index: 2;
}
.port-example1 h1 {
    width: 100%;
    height: auto;
    padding: 1%;
    text-align: center;
    font-weight: 400;
}
.example-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
    height: 30%;
    background-color: blueviolet;
    margin: auto;
}
.example-info {
    width: 30%;
    margin: auto;
}
.example-description p {
    width: 80%;
    margin: auto;
    padding: 2%;
}
.example-btns {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 30%;
}
.example-btns button {
    background-color: azure;
    color: darkblue;
    padding: 2% 5%;
    border: blueviolet;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.25s ease;
}
.example-btns button:hover {
    background-color: aquamarine;
}

/*^ ABOUT US ^*/
#about {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    width: 100vw;
    height: 100vh;
}
.about-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45%;
    height: 75%;
    background-image: url("./img/company_infographic1\ [Converted].jpg");
    background-size: cover;
}
.about-sec-content {
    display: block;
    width: 45%;
    padding: 2%;
}
.about-subTitle-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    padding-bottom: 25px;
}
.about-subTitle-content div {
    width: 45%;
}

/*^ CONTACT US ^*/
#contact {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background: darkslateblue;
    color: whitesmoke;
}
.msg {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45%;
    height: 100%;
}
.msg form {
    display: block;
    width: 50%;
    height: auto;
}
.msg form input, .msg form textarea {
    width: 100%;
    padding: 2%;
    margin-top: 5px;
    margin-bottom: 15px;
}
.msg form button {
    font-size: medium;
    font-weight: 400;
    background: orange;
    color: white;
    padding: 2% 5%;
    border: none;
    border-radius: 30px;
    transition: all 0.25s ease;
}
.msg form button:hover {
    cursor: pointer;
    border-radius: 5px;
}

/*& ACTIVATE W? CHECKBOXES  */
/* .msg form input:nth-child(1), .msg form input:nth-child(2), .msg form input:nth-child(3), .msg form input:nth-child(8), .msg form textarea {
    width: 100%;
}
.msg form div {
    display: grid;
    grid-template-columns: 10% 90%;
    width: 100%;
}
.msg form div input[type="checkbox"] {
    padding-left: 0;
    margin-left: 0;
    width: 15px;
    height: 15px;
}
.msg form div span {
    background: white;
    border: 1px solid black;
} */

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
    margin: auto auto;
}
.content-info {
    display: block;
    width: 100%;
}
.content-info h1, .content-info h2 {
    padding-top: 25px;
    padding-bottom: 25px;
}
.sub-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
}
.sub-content div {
    display: grid;
    margin-top: 25px;
    margin-bottom: 25px;
    font-size: medium;
    font-weight: 400;
}
.co-info {
    grid-template-columns: 20% 80%;
    width: 40%;
}
.hour-info {
    grid-template-columns: 30% 70%;
    width: 50%;
}
.hour-info p {
    margin: 5px;
}
.social-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 75%;
    padding: 5% 0%;
}
.social-info a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border: none;
    box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease;
}
.social-info a:hover {
    cursor: pointer;
    transform: scale(1.1);
    box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.25);
}

.social-info a:nth-child(1) {
    background-image: url("./img/icon_fb.png");
}
.social-info a:nth-child(2) {
    background-image: url("./img/icon_twitter.png");
}
.social-info a:nth-child(3) {
    background-image: url("./img/icon_instagram.png");
}
.social-info a:nth-child(4) {
    background-image: url("./img/icon_linkedin.png");
}

/*^ FOOTER ^*/
#footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100vw;
    height: 10vh;
    background-color: rgb(49, 49, 49);
    color: white;
}
#footer div:nth-child(3) a {
    color: orange;
    text-decoration: none;
}





@media screen and (min-width: 1800px) {
    
}

@media screen and (max-width: 768px) {

}

@media screen and (max-width: 540px) {

}