/*#region Font*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');
/*#endregion Font*/

/*#region Main*/
* {
    box-sizing: border-box;
    margin: 0;
}

html {
    font-size: 20px;
    font-weight: 300;
    text-rendering: optimizeLegibility;
}

.brand-Logo {
    height: 50px;
    width: auto;
    float: left;
    margin-left: 20px;
}

body {
    margin: 0;
    line-height: 1.5;
    background-color: #f3f2f1;
}

body,
input,
textarea,
button {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.container {
    max-width: 1170px;
    margin: auto;
}

section {
    padding: 80px 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

.scroll-down img {
    filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0) brightness(0%) contrast(0%);
}

.section-title {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 10px 0;
    padding: 0 15px;
}

.section-title h1 {
    display: inline-block;
    font-size: 200%;
    color: #000000;
    font-weight: 400;
    margin: 0;
    position: relative;
}

.section-title h1:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 80px;
    height: 3px;
    background-color: #FF9800;
}

.btn-01 {
    background-color: #ff9800;
    color: #ffffff;
    border: 2px solid transparent;
    padding: 10px 35px;
    border-radius: 30px;
    line-height: 1.5;
    cursor: pointer;
    text-decoration: none;
    font-size: 80%;
    font-weight: 600;
    display: inline-block;
    transition: all 0.5s ease;
}

.btn-01:hover {
    background-color: transparent;
    border-color: #FF9800;
    color: #FF9800;
}

.btn-01:focus {
    outline: none;
}

.photography-item {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 15px;
    cursor: pointer;
    justify-content: center;
}

.photography-item-inner img {
    width: 100%;
    display: block;
    border-radius: 4px;
    box-shadow: 0 30px 80px 10px rgba(0, 0, 0, .2);
}

/*#endregion Main*/
/*#region explore */
.explore {
    flex: 0 0 100%;
    max-width: 100%;
}

.explore p {
    text-align: center;
}

/* .explore p, .explore a {
            font-size: 120%;
            border: none;
            background: none;
            margin: 10px;
            color: #4ca2cd;
            transition: all 0.5s ease;
            text-decoration: none;
            font-weight: 400;
            padding: 3px 0;
        } */

/*#endregion explore */

/*#region Header*/
/*Header*/
.header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
    transition: all 0.5s ease;
}

.header.fixed {
    background-color: #ffffff;
    opacity: 0.7;
    position: fixed;
    backdrop-filter: blur(5px);
}

.header .brand-name {
    padding: 0 15px;
}

.header .brand-name a {
    text-decoration: none;
    font-size: 150%;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    transition: all 0.5s ease;
}

.header.fixed .brand-name a {
    color: #000000;
}

.header .nav-toggle {
    width: 40px;
    height: 34px;
    border: 1px solid #ffffff;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    display: none;
}

.header.fixed .nav-toggle {
    border-color: #000000;
}

.header .nav-toggle span {
    height: 1px;
    display: block;
    width: 16px;
    background-color: #ffffff;
    position: relative;
    transition: all 0.5s ease;
}

.header .nav-toggle span:before,
.header .nav-toggle span:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 1px;
    width: 100%;
    background-color: #ffffff;
    transition: all 0.5s ease;
}

.header.fixed .nav-toggle span,
.header.fixed .nav-toggle span:before,
.header.fixed .nav-toggle span:after {
    background-color: #000000;
}

.header .nav-toggle span:before {
    transform: translateY(-6px);
}

.header .nav-toggle span:after {
    transform: translateY(6px);
}

.header .nav {
    padding: 0 15px;
}

.header .nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header .nav ul li {
    display: inline-block;
    margin-left: 30px;
}

.header .nav ul li a {
    text-decoration: none;
    font-size: 100%;
    font-weight: 600;
    color: #000;
    padding: 25px 0;
    display: inline-block;
    transition: all 0.3s ease;
}

.header.fixed .nav ul li a {
    color: #000000;
}

.header.fixed .nav ul li a:hover,
.header .nav li a:hover {
    color: #ff9800;
}

/*#endregion Header*/

/*#region Home*/

/* Home */
.home-section {
    min-height: 100vh;
    background-image: url('../img/Home.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    background-attachment: fixed;
}

.home-section a img {
    position: fixed;
}


.home-section:before {
    content: '';
    position: absolute;
    box-sizing: border-box;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.home-section .shape-01 {
    position: absolute;
    height: 30px;
    width: 30px;
    border: 2px solid #FF9800;
    right: 5%;
    top: 20%;
    animation: ani01 2s linear infinite;
}

.home-section .row {
    min-height: 100vh;
}


.home-section .scroll-down {
    position: absolute;
    left: 50%;
    bottom: 30px;
    height: 30px;
    width: 30px;
    margin-left: -15px;
    animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

.home-section .scroll-down img {
    width: 25px;
    display: block;
    margin: 2px auto;
}

/*#endregion Home*/

/*#region Services*/
.service-section .service-item {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 10px;
}

.service-section .service-item-inner {
    position: relative;
    /*overflow: hidden;*/
}

.service-section .service-item-inner img {
    width: 100%;
    display: block;
    border-radius: 4px;
    box-shadow: 0 30px 80px 10px rgba(0, 0, 0, .2);
}

.service-section .service-item-inner .overlay {
    position: relative;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: all 0.5s ease;

}

.service-section .service-item-inner:hover .overlay {
    cursor: pointer;
}

.service-section .service-item-inner .overlay h4 {
    position: absolute;
    justify-content: flex-end;
    bottom: 10%;
    color: #fff;
    font-size: 100%;
    margin: 0;
    border-radius: 10px 2px;
    background-color: rgba(0, 0, 0, 1);
    padding: 5px;
    transition: all 0.2s ease;
}

/*#endregion Services*/

/*#region Pricing*/
.pricing {
    background: linear-gradient(to bottom right, #67b26f, #4ca2cd);
}

.pricing .row.content {
    margin: 10px;
}

.pricing .photobook {
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    margin: 15px;
    border-radius: 5px;
    box-shadow: 0 30px 80px 10px rgba(0, 0, 0, 0.25);
}

.pricing .photobook p {
    color: #f3f2f1;
    margin: 5px 0;
    text-align: justify;
    text-justify: inter-word;
    padding: 0 10px 12px 0;
    line-height: 150%;
}

.pricing .section-title {
    margin-bottom: 10px;
}

.pricing h3 {
    padding: 20px 0;
}

.terms {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.terms p {
    text-align: justify;
    text-justify: inter-word;
    padding: 0 10px 12px 0;
    line-height: 150%;
}

.pricing__content {
    background: rgb(255, 255, 255);
    flex: 1 0 30%;
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    margin: 15px;
    border-radius: 5px;
    box-shadow: 0 30px 80px 10px rgba(0, 0, 0, 0.25);
}

.pricing__content h1 {
    font-weight: 400;
}

.pricing__price {
    background: linear-gradient(to right, #67b26f, 50%, #4ca2cd);
    flex: 0 0 10%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.pricing__title {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.pricing__heading {
    font-size: 120%;
    margin-right: auto;
    color: #4ca2cd;
}

.pricing__tag {
    font-size: 70%;
    text-transform: uppercase;
    color: white;
    padding: 2px 7px;
    border-radius: 100px;
    margin-left: 7px;
}

.pricing__tag--1 {
    background-color: #67b26f;
}

.pricing__tag--2 {
    background-color: #4ca2cd;
}

.pricing__description {
    font-size: 90%;
    text-align: justify;
    text-justify: inter-word;
    margin: 0 5px;
}

.pricing__details {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding-bottom: 10px;
}

.pricing__detail {
    font-size: 100%;
    margin-right: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.pricing__detail img {
    height: 20px;
    padding-right: 5px;
}

/*#endregion Pricing*/

.svg-icon {
    height: 40px;
    padding-right: 5px;
    vertical-align: middle;
}

/*#region Contact*/
.contact-section {
    background: linear-gradient(to bottom left, #4ca2cd, #67b26f);
}

.contact-container {
    padding: 0 10px 50px 10px;
    display: flex;
    justify-content: space-between;
}

.contact-box {
    padding: 10px 0 10px;
}

.contact-box a {
    color: #fff;
    text-decoration: none;
    font-size: 150%;
}

.contact-box a .icon {
    color: #000;
    vertical-align: middle;
    font-size: 160%
}

.copyright {
    text-align: center;
    width: 100%;
    padding-bottom: 20px;
    font-size: 120%;
}

.developer {
    text-align: center;
    width: 100%;
    padding-bottom: 20px;
}



/*#endregion Contact*/

/*#region Responsive*/
@media(min-width:821px) {
    .header .nav {
        display: block !important;
    }

    .nav-icons {
        display: none;
    }
}

@media(max-width:820px) {
    .home-section {
        background-image: url('../img/Baby/55d11bedba540DSC_7419.jpg');
        background-size: cover;
        background-attachment:scroll; 
    }

    .header .brand-name {
        padding: 0 0;
    }

    .nav-icons {
        height: 50px;
        width: auto;
        padding: 0 5px;
    }

    .nav-icons a {
        text-decoration: none;
        padding: 0 5px;
    }

    .header {
        padding: 7px 0;
    }

    .header .nav {
        flex: 0 0 100%;
        max-width: 100%;
        background-color: #ffffff;
        padding: 0;
        display: none;
    }

    .header.fixed .nav {
        border-top: 1px solid #cccccc;
    }

    .header .nav ul li {
        display: block;
        margin-right: 25px;
    }

    .header.fixed .nav ul li a,
    .header .nav ul li a {
        color: #000000;
        padding: 15px 0;
    }

    .contact-box {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 20px 50px;
        justify-content: center;
    }

    .contact-box a {
        font-size: 120%;
    }
}

@media(max-width:576px) {
    html {
        font-size: 16px;
    }

    section {
        padding: 60px 0;
    }

    .photography-item,
    .service-section .service-item {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .pricing__content {
        flex: 1 1 100%;
    }

    .contact-box {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 30px 20px;
        justify-content: center;
    }

    .contact-box a {
        color: #fff;
        text-decoration: none;
        font-size: 120%;
    }

    .contact-box img {
        height: 40px;
        margin-bottom: 5px;
        vertical-align: middle;
    }
}

@media(max-width:511px) {
    /* .home-section {
        background-image: url('/img/Baby/55d11bedba540DSC_7419.jpg');
    } */

    .photography-item,
    .service-section .service-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .nav-icons,
    .brand-Logo {
        height: 36px;
    }
}

@media(max-width:375px) {
    section {
        padding: 50px 0;
    }

    .contact-box a {
        font-size: 100%;
    }

    .nav-icons,
    .brand-Logo {
        height: 36px;
    }
}

@media(max-width:375px) {

    .nav-icons,
    .brand-Logo {
        height: 32px;
    }
}

/*#endregion Responsive*/

.pricing__detail .button-4{
    font-size: 80%;
}

.button-4 {
    text-decoration: none;
    appearance: none;
    /* background-color: #FAFBFC; */
    /* font-size: 120%; */
    border: 1px solid rgba(27, 31, 35, 0.15);
    border-radius: 6px;
    box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
    box-sizing: border-box;
    color: #24292E;
    cursor: pointer;
    display: inline-block;
    font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    /* font-size: 14px; */
    font-weight: 500;
    line-height: 20px;
    list-style: none;
    margin: 10px;
    padding: 6px 16px;
    position: relative;
    transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
    white-space: nowrap;
    word-wrap: break-word;
}

.button-4:hover {
    background-color: #F3F4F6;
    text-decoration: none;
    transition-duration: 0.1s;
}

.button-4:disabled {
    background-color: #FAFBFC;
    border-color: rgba(27, 31, 35, 0.15);
    color: #959DA5;
    cursor: default;
}

.button-4:active {
    background-color: #EDEFF2;
    box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset;
    transition: none 0s;
}

.button-4:focus {
    outline: 1px transparent;
}

.button-4:before {
    display: none;
}

.button-4:-webkit-details-marker {
    display: none;
}