/* ============================ Common CSS ==============================
=============================== 2/10/2022 ============================== */

@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap');

@font-face {
    font-family: times_new_roman;
    src: url("../font/times-new-roman.ttf");
}

@font-face {
    font-family: AvenirLTStd-Black;
    src: url("../font/AvenirLTStd-Black.otf");
}

@font-face {
    font-family: AvenirLTStd-Book;
    src: url("../font/AvenirLTStd-Book.otf");
}

@font-face {
    font-family: AvenirLTStd-Roman;
    src: url("../font/AvenirLTStd-Roman.otf");
}

:root {
    --main-font: AvenirLTStd-Book;
    --main-color: #000;
    --black-color: #000;
    --white-color: #fff;
}

body {
    font-family: var(--main-font);
    font-size: 16px;
    font-weight: 400;
    color: var(--black-color);
    background: #c8c1bb;
}

p {
    font-family: var(--main-font);
    font-size: 16px;
    font-weight: 400;
    color: var(--black-color);

}

a {
    text-decoration: none;
    color: var(--black-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

a:hover,
a:focus {
    text-decoration: none;
    color: var(--black-color);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

.all-section-more-btn {
    display: block;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 35px;
    border: 1px solid #000;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--main-font);
    letter-spacing: 1px;
    transition: .3s;
}

.all-section-more-btn:hover {
    background: #000;
    color: #fff;
}

/* ===================== Stylebyoak Website ==========================
   ======================== Header Design ============================
   ========================= 30/09/2022 ============================== */

.sticky-header {
    background: #c8c1bb;
    z-index: 100000;
    position: relative;
}
.sticky-header{
   background-color: #E8CCCA;
}

header .navbar {
    background: transparent !important;
}

header .navbar-light .navbar-nav .nav-link {
    font-family: AvenirLTStd-Book;
    font-size: 16px;
    font-weight: 400;
    color: var(--black-color) !important;
    transition: .3s;
}

header .navbar-light .navbar-nav .nav-link:hover {
    color: var(--main-color) !important;
}

header .navbar-nav {
    margin-left: auto;
}

header .navbar-brand img {
    width: 150px;
}

/* =============== Stylebyoak Website =====================
   ============== Slick Slider Design ===================
   ================== 30/09/2022 ======================== */

.slick-prev:before,
.slick-next:before {
    content: "" !important;
    background-color: #fff !important;
}

.slick-next,
.slick-prev {
    background-position: center !important;
    background-color: var(--main-color) !important;
    background-repeat: no-repeat !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
}

.slick-next:hover,
.slick-prev:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px !important;
}

.slick-next {
    background-image: url("../images/right.png") !important;
    z-index: 100 !important;
}

.slick-prev {
    background-image: url("../images/left.png") !important;
    z-index: 100 !important;
}

@media screen and (max-width: 768px) {
    .slick-prev {
        left: 0 !important;
    }

    .slick-next {
        right: 0 !important;
    }
}

/* ====================== Stylebyoak Website =========================
   ===================== Hero Section Design =========================
   ========================= 03/10/2022 ============================== */

#hero {
    width: 100%;
    min-height: calc(100vh - 100px);
    background-image: url("../images/hero-img.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
}

#hero .hero-content {
    position: relative;
    z-index: 10;
}

#hero .hero-content h1 {
    font-size: 80px;
    color: #fff;
    font-weight: 700;
    font-family: var(--main-font);
    text-transform: uppercase;
    text-align: center;
}

#hero .hero-content h2 {
    font-size: 50px;
    color: #fff;
    font-weight: 700;
    font-family: var(--main-font);
    text-transform: uppercase;
    text-align: center;
}

#hero .hero-content p {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    font-family: var(--main-font);
    text-align: center;
}

@media screen and (max-width: 768px) {
    #hero .hero-content h1 {
        font-size: 40px;
    }

    #hero .hero-content h2 {
        font-size: 25px;
    }

    #hero {
        min-height: 500px;
    }
}

/* ====================== Stylebyoak Website =========================
   ===================== Story Section Design =========================
   ========================= 03/10/2022 ============================== */

#story {
    padding: 80px 0;
    position: relative;
}

@media screen and (max-width: 576px) {
    #story {
        padding: 50px 0;
    }
}

.story-small-card-parent {
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
    display: block;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: .3s;
}

.story-big-card-parent {
    border-radius: 5px;
    overflow: hidden;
    display: block;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: .3s;
    position: sticky;
    top: 0;
}

.story-big-card-parent:hover,
.story-small-card-parent:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.story-small-card-parent .story-small-card-img {
    width: 100%;
    height: 200px;
}

.story-small-card-parent .story-small-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.story-small-card-parent .story-small-card-content span {
    font-family: var(--main-font);
    font-size: 12px;
    font-weight: 400;
    color: #555;
    text-transform: uppercase;
    display: block;
}

.story-small-card-parent .story-small-card-content {
    padding: 15px;
}

.story-small-card-parent .story-small-card-content h4 {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--main-font);
    margin-top: 15px;
}

.story-small-card-parent .story-small-card-content p {
    font-family: var(--main-font);
    font-size: 16px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 5px;
}

.story-big-card-parent .story-big-card-content h3 {
    font-size: 40px;
    font-weight: 600;
    font-family: var(--main-font);
    text-align: center;
}

.story-big-card-parent .story-big-card-content p {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--main-font);
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 5px;
}

.story-big-card-parent .story-big-card-content {
    padding: 15px;
}

.story-big-card-parent .story-big-card-img {
    width: 100%;
    height: auto;
}

.story-big-card-parent .story-big-card-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ====================== Stylebyoak Website =========================
   ===================== YOGA Section Design =========================
   ========================= 03/10/2022 ============================== */

#yoga {
    padding-bottom: 80px;
    border-top: 1px solid #000;
    padding-top: 80px;
}

@media screen and (max-width: 576px) {
    #yoga {
        padding-bottom: 50px;
        padding-top: 50px;
    }
}

#yoga .yoga-img {
    width: 100%;
    height: auto;
}

#yoga .yoga-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

#yoga .yoga-content span {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    color: #555;
    font-family: var(--main-font);
    display: block;
}

#yoga .yoga-content h2 {
    font-size: 50px;
    font-weight: 700;
    font-family: var(--main-font);
    text-transform: uppercase;
    margin-top: 10px;
}

#yoga .yoga-content p {
    font-size: 16px;
    font-family: var(--main-font);
    font-weight: 400;
    font-style: italic;
}

#yoga .yoga-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

@media screen and (max-width: 992px) {

    #yoga .yoga-content span {
        text-align: center;
    }

    #yoga .yoga-content h2 {
        text-align: center;
    }

    #yoga .yoga-content p {
        text-align: center;
    }
}

@media screen and (max-width: 992px) {

    #yoga .yoga-content h2 {
        text-align: center;
        font-size: 30px;
    }
}

/* ====================== Stylebyoak Website =========================
   ==================== Fixed Section Design =========================
   ========================= 03/10/2022 ============================== */

#fixed {
    position: relative;
    padding-bottom: 80px;
}

@media screen and (max-width: 576px) {
    #fixed {
        position: relative;
        padding-bottom: 50px;
    }
}

#fixed .fixed-parent {
    top: 0;
    position: sticky;
    display: flex;
    justify-content: space-between;
}


#fixed .fixed-parent .fixed-child {
    width: calc(33.3333333% - 10px);
    height: 250px;
    display: block;
    margin-bottom: 24px;
}

#fixed .fixed-parent .fixed-child img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

@media screen and (max-width: 576px) {
    #fixed .fixed-parent {
        flex-direction: column;
    }

    #fixed .fixed-parent .fixed-child {
        width: 100%;
    }
}

/* ====================== Stylebyoak Website =========================
   ================ CURRENT ISSUE Section Design =====================
   ========================= 03/10/2022 ============================== */

#current-issue {
    padding-bottom: 80px;
}

@media screen and (max-width: 576px) {
    #current-issue {
        padding-bottom: 50px;
    }
}

.current-issue-child {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}

.current-issue-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ====================== Stylebyoak Website =========================
   ================ SELECTED STORIES Section Design =====================
   ========================= 03/10/2022 ============================== */

.selected-stories {
    padding-top: 80px !important;
    border-top: 1px solid #000;
}

@media screen and (max-width: 576px) {
    .selected-stories {
        padding-top: 50px !important;
    }
}

.selected-stories h4 {
    font-size: 30px;
    font-weight: 400;
    font-family: var(--main-font);
    text-align: center;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.selected-stories-big-img {
    width: 100%;
    height: auto;
}

.selected-stories-big-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ====================== Stylebyoak Website =========================
   ================== STYLE ICONS Section Design =====================
   ========================= 03/10/2022 ============================== */

#style-icon .style-icon-card-parent {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    transition: .3s;
    height: 100%;
}

#style-icon .style-icon-card-parent:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    transform: translateY(-10px);
}

#style-icon .style-icon-card-parent .style-icon-card-img {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    transition: .3s;
}

#style-icon .style-icon-card-parent .style-icon-card-img::after {
    width: 100%;
    height: 0%;
    transition: .3s;
    content: "";
    display: block;
    background: rgba(0, 0, 0, 0.648);
    position: absolute;
    top: 0;
    left: 0;
}

#style-icon .style-icon-card-parent:hover .style-icon-card-img::after {
    height: 100%;
}

#style-icon .style-icon-card-parent .style-icon-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

#style-icon .style-icon-card-parent:hover .style-icon-card-img img {
    transform: scale(1.2);
}

#style-icon .style-icon-card-parent .style-icon-card-content {
    padding: 20px;
}

#style-icon .style-icon-card-parent .style-icon-card-content h5 {
    font-size: 12px;
    font-weight: 400;
    font-family: var(--main-font);
    text-transform: uppercase;
    text-align: center;
}

#style-icon .style-icon-card-parent .style-icon-card-content h2 {
    font-size: 35px;
    font-family: var(--main-font);
    font-weight: 600;
    text-align: center;
    margin-top: 30px;
}

@media screen and (max-width: 576px) {
    #style-icon .style-icon-card-parent .style-icon-card-content h2 {
        font-size: 25px;
    }
}

#style-icon .style-icon-card-parent .style-icon-card-content p {
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#style-icon .style-icon-card-parent .style-icon-card-content .read-more {
    padding: 8px 30px;
    display: block;
    width: max-content;
    border-radius: 5px;
    border: 1px solid #000;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 20px;
    background: #fff;
    transition: .3s;
}

#style-icon .style-icon-card-parent .style-icon-card-content .read-more:hover {
    background: #000;
    color: #fff;
}

/* ====================== Stylebyoak Website =========================
   ========== STORIES YOU MAY HAVE MISSED Section Design =============
   ========================= 03/10/2022 ============================== */

.stories-you-my-have-missed-parent {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 10px;
    overflow: hidden;
    transition: .3s;
    height: 100%;
}

.stories-you-my-have-missed-parent:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.stories-you-my-have-missed-parent .stories-you-my-have-missed-img {
    height: 200px;
    min-width: 250px;
}

.stories-you-my-have-missed-parent .stories-you-my-have-missed-img img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

.stories-you-my-have-missed-parent .stories-you-my-have-missed-content h4 {
    font-size: 12px;
    font-weight: 400;
    font-family: var(--main-font);
    text-transform: uppercase;
}

.stories-you-my-have-missed-parent .stories-you-my-have-missed-content h2 {
    font-size: 25px;
    font-weight: 500;
    font-family: var(--main-font);
    margin-top: 20px;
}

.stories-you-my-have-missed-parent .stories-you-my-have-missed-content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.stories-you-my-have-missed-parent .stories-you-my-have-missed-content {
    padding: 20px;
}

@media screen and (max-width: 576px) {
    .stories-you-my-have-missed-parent .stories-you-my-have-missed-img {
        height: 160px;
        min-width: 120px;
    }

    .stories-you-my-have-missed-parent .stories-you-my-have-missed-content h2 {
        font-size: 20px;
        margin-top: 5px;
    }
}

/* ====================== Stylebyoak Website ========================
   ===================== Footer Section Design ======================
   ========================= 03/10/2022 ============================== */

.section-title {
    font-size: 30px;
    font-weight: 400;
    font-family: var(--main-font);
    text-align: center;
    margin-bottom: 24px;
    text-transform: uppercase;
}

#style-icon {
    border-top: 1px solid #000;
    padding-top: 80px;
    padding-bottom: 80px;
}

@media screen and (max-width: 576px) {
    #style-icon {
        padding-bottom: 50px;
        padding-top: 50px;
    }
}

#stories-you-my-have-missed {
    padding-top: 80px;
    border-top: 1px solid #000;
}

@media screen and (max-width: 576px) {
    #stories-you-my-have-missed {
        padding-top: 50px;
    }
}

/* =========================== Redesign =============================
   =========================== New Code =============================
   ====================== Stylebyoak Website ========================
   =================== Header 2 Section Design ======================
   ========================= 10/10/2022 ============================== */

#header .navbar-nav {
    margin-left: auto;
    margin-right: auto;
}

#header .navbar-nav .nav-link {
    text-transform: uppercase;
    transition: .3s;
}

#header .navbar-nav .nav-link:hover {
    text-decoration: underline;
}
#header .navbar-nav .current-menu-item .nav-link{
    text-decoration: underline;
}
#header .navbar-nav .nav-item {
    margin-left: 20px;
    margin-right: 20px;
}

#header .navbar-light .navbar-toggler {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

@media screen and (max-width: 992px) {
    #header .navbar-nav .nav-item {
        margin-left: 0px;
        margin-right: 0px;
    }
}

/* ==================== Stylebyoak Website ========================
   =================== Topbar Section Design ========================
   ========================= 10/10/2022 ============================== */

#top-bar {
    padding-top: 15px;
    padding-bottom: 15px;
}

#top-bar .top-logo-parent {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    transition: .5s;
}

#top-bar .top-logo-parent img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

/* ==================== Stylebyoak Website ========================
   =================== hero-2 Section Design ========================
   ========================= 10/10/2022 ============================== */

#hero-2 .hero2-img {
    width: 100%;
    height: 100vh;
    position: relative;
}

#hero-2 .hero2-img::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
}

#hero-2 .hero2-img .hero-title {
    width: 600px;
    max-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}

#hero-2 .hero2-img .hero-title p {
    font-family: 'AvenirLTStd-Book';
    color: #5BD3CD;
    font-size: 30px;
    font-weight: normal;
}

@media screen and (max-width: 992px) {
    #hero-2 .hero2-img {
        width: 100%;
        height: 500px;
    }
}

@media screen and (max-width: 768px) {
    #hero-2 .hero2-img {
        width: 100%;
        height: 400px;
    }
}

@media screen and (max-width: 576px) {
    #hero-2 .hero2-img {
        width: 100%;
        height: 300px;
    }

    #hero-2 .hero2-img .hero-title h1,#hero-2 .hero2-img .hero-title h2,#hero-2 .hero2-img .hero-title h3,#hero-2 .hero2-img .hero-title h4,#hero-2 .hero2-img .hero-title h5,
    #hero-2 .hero2-img .hero-title p{
        font-size: 20px;
        padding: 10px;
    }
}

#hero-2 .hero2-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==================== Stylebyoak Website ========================
   =================== hero-2 Section Design ========================
   ========================= 10/10/2022 ============================== */

.footer {
    background-color: #E8CCCA;
    padding: 70px 0;
    border-top: 1px solid #000;
}

.sticky-header {
    /* position: sticky; */
    top: 0;
    z-index: 10000;
}

.footer .footer-subscribe-parent {
    width: 500px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 5px;
}

.footer .footer-subscribe-parent input {
    width: calc(100% - 120px);
    outline: none;
    border: none;
    background: transparent;
    text-transform: uppercase;
    font-family: times_new_roman;
    letter-spacing: 1px;
    font-family: times_new_roman;
}

.footer .footer-subscribe-parent button {
    width: 120px;
    outline: none;
    border: none;
    background: transparent;
    text-align: right;
    text-transform: uppercase;
    font-family: times_new_roman;
    letter-spacing: 1px;
    transition: .3s;
}

.footer .footer-subscribe-parent button:hover {
    color: rgba(0, 0, 0, 0.588);
}

.footer .footer-subscribe-parent input::placeholder {
    text-transform: uppercase;
    font-family: times_new_roman;
    letter-spacing: 1px;
}

@media screen and (max-width: 576px) {

    .footer .footer-subscribe-parent button,
    .footer .footer-subscribe-parent input,
    .footer .footer-subscribe-parent input::placeholder {
        font-size: 14px;
    }
}

.footer .footer-social-icon {
    display: flex;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}

.footer .footer-social-icon li {
    margin-left: 10px;
    margin-right: 10px;
}

.footer .footer-social-icon li a {
    font-size: 25px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: block;
    color: #000;
    transition: .3s;
}

.footer .footer-social-icon li a:hover {
    color: rgba(0, 0, 0, 0.499);
}

/* ==================== Stylebyoak Website ========================
   ===================== Skiss page Design ========================
   ======================== 10/10/2022 =========================== */

#skiss {
    padding: 80px 0;
    background-color: #5BD3CD;
}

@media screen and (max-width: 576px) {
    #skiss {
        padding: 50px 0;
    }
}

#skiss .skiss-content {
    width: 600px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

#skiss .skiss-content h4 {
    text-align: center;
    font-weight: 500;
    font-family: AvenirLTStd-Book;
    font-size: 24px;
    margin-bottom: 10px;
}

#skiss .skiss-content p {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--main-font);
    display: -webkit-box;
    /* -webkit-line-clamp: 3; */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.skiss-small-box .skiss-small-box-img {
    width: 100%;
}

.skiss-small-box .skiss-small-box-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.skiss-small-box .skiss-small-box-content {
    width: 100%;
    padding-top: 20px;
}

.skiss-small-box .skiss-small-box-content h4 {
    font-size: 30px;
    font-weight: 500;
    font-family: AvenirLTStd-Book;
    margin-bottom: 5px;
}

.skiss-small-box .skiss-small-box-content p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.skiss-big-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ==================== Stylebyoak Website ========================
   ==================== Styling page Design ========================
   ======================== 10/10/2022 =========================== */

#styling {
    padding: 80px 0;
}

@media screen and (max-width: 576px) {
    #styling {
        padding: 50px 0;
    }
}

#styling .styling-single-box .styling-single-box-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

#skiss .styling-single-box .styling-single-box-content ,
#styling .styling-single-box .styling-single-box-content {
    padding-top: 15px;
}

#skiss .styling-single-box .styling-single-box-content h4 ,
#styling .styling-single-box .styling-single-box-content h4 {
    font-size: 18px;
    font-weight: 400;
    font-family: AvenirLTStd-Book;
    margin-bottom: 5px;
    text-transform: uppercase;
}

#skiss .styling-single-box .styling-single-box-content p ,
#styling .styling-single-box .styling-single-box-content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==================== Stylebyoak Website ========================
   ==================== Ommig page Design ========================
   ======================== 10/10/2022 =========================== */

#ommig {
    padding: 80px 0;
    background-color: #E8CCCA;
}

@media screen and (max-width: 576px) {
    #ommig {
        padding: 50px 0;
    }
}

#ommig .ommig-content h4 {
    font-size: 24px;
    font-weight: 500;
    font-family: AvenirLTStd-Book;
    margin-bottom: 5px;
    text-transform: uppercase;
}

#ommig .ommig-content p {
    display: -webkit-box;
    /* -webkit-line-clamp: 3; */
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 5px;
    text-align: justify;
}

#ommig .ommig-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media screen and (max-width: 768px) {
    #ommig .ommig-content {
        margin-top: 30px;
    }
}

.koncept-content {
    width: 600px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.koncept-content h4 {
    font-size: 24px;
    font-weight: 500;
    font-family: AvenirLTStd-Book;
    text-align: center;
    margin-bottom: 10px;
}

.koncept-content p {
    display: -webkit-box;
    /* -webkit-line-clamp: 3; */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===================== Stylebyoak Website ==========================
   ======================== Header Design ============================
   ========================= 30/09/2022 ============================== */


.contact{
    background-color: #E8CCCA;
    padding-top: 80px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 50px;
}
@media screen and (max-width: 576px) {
    .contact {
        padding-top: 50px;
    }
}

.contact form .fname-lname-parent {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.contact form .fname-lname-parent .fname,
.contact form .fname-lname-parent .lname {
    display: flex;
    flex-direction: column;
    flex-basis: calc(50% - 5px);
}

.contact form .fname-lname-parent .fname input,
.contact form .fname-lname-parent .lname input {
    width: 100%;
    display: block;
    outline: none;
    border: none;
    height: 35px;
    padding: 0 20px;
    border: 1px solid #5BD3CD;
    background-color: transparent;
}

.contact form>input {
    height: 35px;
}

.contact form>input,
.contact form>textarea {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    outline: none;
    border: none;
    /* height: 35px; */
    padding: 0 20px;
    border: 1px solid #5BD3CD;
    background-color: transparent;

}

.contact form label {
    font-family: AvenirLTStd-Book;
    text-transform: uppercase;
}

.contact form button {
    height: 35px;
    text-transform: uppercase;
    border: 1px solid #5BD3CD;
    font-family: AvenirLTStd-Book;
    outline: none;
    color: #000;
    padding: 0 30px;
    margin-top: 20px;
    background: #fff;
    background-color: transparent;
    transition: .1s;
}
/* .contact form button:hover {
    background-color: #5BD3CD;
} */

.contact-details {
    font-family: AvenirLTStd-Book;
    margin-top: 50px;
}

.contact form>textarea {
    /* height: 150px; */
    padding-top: 8px;
}

.contact-details div {
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

#styling .styling-single-box .styling-single-box-img img {
    height: 100%;
    object-fit: cover;
}

.styling-single-box-one {
    height: 170px;
}

.styling-single-box-two {
    height: 200px;
}

.styling-single-box-three {
    height: 150px;
}

.styling-single-box-one img {
    height: 100%;
    object-fit: cover;
}

.styling-single-box-two img {
    height: 100%;
    object-fit: cover;
}

.styling-single-box-three img {
    height: 100%;
    object-fit: cover;
}
#skiss,
#styling {
    position: relative;
    background-color: #5BD3CD;
}

#skiss .styling-single-box-big ,
#styling .styling-single-box-big {
    position: sticky;
    top: 0;
}
/* scrolling left right */
.styling-parent-position {
    height: 100vh;
    overflow: scroll;
}

.styling-parent-position::-webkit-scrollbar {
    display: none;
}

.styling-parent-position {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* image hover */
/* ==================== New Animation Code ========================== */

.styling-single-box-img {
    position: relative;
    cursor: pointer;
    transition: .3s;
}

.icon-animation-parent {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: .3s;
    background: rgba(0,0,0, 0.0);
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.styling-single-box-img:hover .icon-animation-parent {
    background: rgba(0,0,0, 0.5);
}

.icon-animation-parent .icon-animation-child {
    transition: .3s;
    width: 35px;
    height: 35px;
    background: #E8CCCA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    opacity: 100%;
}

.styling-single-box-img:hover .icon-animation-child {
    transform: scale(1);
}

.icon-animation-parent .icon-animation-child i {
    font-size: 14px;
    color: #5BD3CD;
}
@media screen and (max-width: 576px) {
    .styling-parent-position {
        height: auto;
        overflow: unset;
    }
}
