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

/*
font-family: 'Lobster Two', cursive;
font-family: 'Montserrat', sans-serif;
*/

body {
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
}

a:hover {
    text-decoration: none;
}

a {
    display: inline-block;
    color: inherit;
}

h2, h3, h4, h5 {
    font-family: 'Lobster Two', cursive;
    color: #4d504a;
}

.txt-white, .txt-white h2, .txt-white h3, .txt-white h4, .txt-white h5 {
    color: #fff;
}

h2.heading {
    font-size: 35px;
}

.bg-gry {
    background-color: #505050;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    font-size: 15px;
    line-height: 24px;
}

section {
    padding: 60px 0px;
}

ul, ol {
    margin: 0;
    padding: 0;
}

.ls p, .ls a {
    letter-spacing: 2px;
}

.container.sml-container {
    max-width: 1200px;
}

.container.inr-container {
    max-width: 970px;
}

button:focus {
    outline: 0;
}

::-moz-selection {
    color: #fff;
    background: #404040;
}

::selection {
    color: #fff;
    background: #404040;
}

a:hover {
    color: #404040;
}

/* heading */
.heading {
    margin-bottom: 60px;
}

.heading h2 {
    margin-bottom: 40px;
}

h2.heading {
    text-align: center;
    font-size: 35px;
    margin-bottom: 60px;
}

/* heading end */

/* header */
.header {
    background-color: #00000080;
    backdrop-filter: blur(2px);
    position: fixed;
    width: 100%;
    z-index: 9;
    padding: 9px 0;
    transition: all ease 0.5s;
}

.header .navbar {
    padding: 0;
}

.header .navbar-dark .navbar-nav .nav-link {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 3px;
    padding: 0 20px;
    position: relative;
    text-transform: uppercase;
    transition: all ease 0.5s;
}

.header .navbar-dark .navbar-nav .nav-link:before {
    content: "";
    position: absolute;
    width: 10px;
    height: 1.5px;
    background-color: #fff;
    right: 0;
    top: 50%;
    transform: translate(3px, -50%);
}

.header .navbar-nav .nav-item:nth-last-child(1) .nav-link {
    padding-right: 0;
}

.header .navbar-nav .nav-item:nth-last-child(1) .nav-link:before {
    display: none;
}

.header .navbar-dark .navbar-nav .nav-link:after {
    content: "";
    height: 1px;
    background-color: #ffffffc4;
    position: absolute;
    bottom: -5px;
    left: 20px;
    width: 0;
    transition: all ease 0.5s;
}

.header .navbar-dark .navbar-nav .nav-link:hover:after {
    width: calc(100% - 40px);
}

.header .navbar-dark .navbar-brand img {
    transition: all ease 0.5s;
}

.sml-header .navbar-dark .navbar-brand img {
    height: 40px;
}

/* header end */

/* banner */
.banner {
    position: relative;
    min-height: 590px;
    height: calc(100vh + 100px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: 0;
    background-color: #000;
}

.banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
}

.banner-container {
    z-index: 1;
}

.banner-cont, .banner-cont h2 {
    color: #fff;
    text-align: center;
}

.banner-cont h2 {
    font-size: 82px;
    font-weight: 400;
}

.dashed-lines {
    display: flex;
    justify-content: space-between;
    max-width: 193px;
    height: 2px;
    margin: 32px auto;
}

.inr-line {
    width: 10px;
    height: 1px;
    display: block;
    background-color: #fff;
}

.banner-cont p {
    max-width: 580px;
    margin: auto;
    margin-bottom: 60px;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 3px;
}

.banner-btn {
    font-size: 15px;
    text-transform: uppercase;
    width: 170px;
    height: 45px;
    display: grid;
    place-items: center;
    margin: auto;
    border: 1px solid;
    position: relative;
    transition: all ease 0.5s;
}

.banner-btn:hover {
    border: 1px solid rgba(0, 160, 80, 0);
    color: #FFF;
}

.banner-btn::before, .banner-btn::after {
    width: 100%;
    height: 100%;
    z-index: 3;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    transform: scale(0);
    transition: 0.5s;
}

.banner-btn::before {
    border-bottom: 1px solid #FFF;
    border-left: 1px solid #FFF;
    transform-origin: 100% 0%;
}

.banner-btn::after {
    border-top: 1px solid #FFF;
    border-right: 1px solid #FFF;
    transform-origin: 0% 100%;
}

.banner-btn:hover::after, .banner-btn:hover::before {
    transform: scale(1);
}

.banner .dashed-lines .inr-line {
    background-color: #fff;
}

/* banner end */

/* creative wedding movie */
.cwm {
    max-width: 970px;
    margin: -100px auto;
}

.cwm-img img {
    width: 100%;
}

.cwm-text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 45px;
    color: #4d504a;
    background-color: #fff;
}

.cwm-text .dashed-lines {
    margin: 22px auto 15px 0;
    max-width: 90px;
    width: 100%;
}

.cwm-text .inr-line {
    background-color: #9fb0a5;
}

.cwm-btn {
    background-color: #505050;
    color: #fff;
    width: 165px;
    height: 40px;
    display: grid;
    place-items: center;
    transition: all ease 0.5s;
    border: 1px solid #505050;
}

.cwm-btn:hover {
    background-color: #fff;
    color: #505050;
}

/* creative wedding movie end */

/* our clients */
.client-heading .dashed-lines {
    margin: 22px auto 15px;
    max-width: 90px;
    width: 100%;
}

.dashed-lines .inr-line {
    background-color: #9fb0a5;
}

.client-testimonial {
    text-align: center;
}

.our-clients {
    background-image: url(../image/client-bg.png);
    background-size: cover;
    background-position: center;
    padding-top: 160px;
    padding-bottom: 60px;
}

.client-prev, .client-next {
    display: block;
    margin: 0 15px;
}

.client-item {
    margin-bottom: 60px;
    margin-top: 15px;
}

.client-item.ls p {
    letter-spacing: 4px;
}

/* our clients end */

/* home gallery  */
.home-gallery {
    overflow-x: hidden;
}

.gallery-item {
    display: flex;
    flex-wrap: wrap;
}

.gallery-img, .img-txt {
    width: 50%;
}

.img-txt {
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.img-txt h4 {
    margin-bottom: 15px;
}

.img-txt p {
    font-size: 13px;
    padding: 0 25px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.img-txt a {
    font-size: 18px;
    font-family: 'Lobster Two', cursive;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    width: max-content;
    margin: 0 auto;
}

.img-txt a i {
    margin-left: 5px;
    transition: all ease 0.5s;
}

.gallery-img {
    position: relative;
}

.gallery-effect {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    transition: all ease 0.5s;
    overflow: hidden;
}

.gallery-effect img {
    transform: scale(1.2);
}

.gallery-item:hover .gallery-effect {
    width: 100%;
}

.gallery-item:hover .img-txt a {
    color: #0db3f0;
}

.gallery-item:hover .img-txt a i {
    margin-left: 10px;
}

.gallery-img > img {
    width: 100%;
}

.gallery-reverse .gallery-item {
    flex-direction: row-reverse;
}

.show-more {
    text-align: center;
    margin: 40px 0;
}

.show-more a {
    width: 30px;
    height: 30px;
    margin: auto;
    display: grid;
    place-items: center;
    font-size: 21px;
    color: #fff;
    background-color: #505050;
    border-radius: 50%;
    transition: all ease 0.5s;
}

.show-more a:hover {
    transform: translateY(5px);
    background-color: #199ccc;
    box-shadow: 0px -4px 7px #00000082;
}

.show-more-wrap {
    width: 100%;
    overflow: hidden;
}

/* home gallery  end */

/* video */
.home-video video {
    object-fit: cover;
}

.home-video {
    position: relative;
    display: flex;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #0006;
    cursor: pointer;
}

.video-overlay.hide {
    pointer-events: none;
    opacity: 0;
}

/* video end */

/* latest work */
.lw-prev, .lw-next {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: #000;
    font-size: 24px;
    border-radius: 50%;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.32);
    background-color: #fff;
}

.lw-prev i, .lw-next i {
    -webkit-text-stroke: #000 1px;
}

.lw-cont {
    text-align: center;
}

.lw-slider .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.lw-slider .owl-nav button.owl-prev {
    right: -30px;
}

.lw-slider .owl-nav button.owl-next {
    left: -30px;
}

/* latest work end */

/* why choose us */
.why-choose-us {
    padding: 82px 0;
    width: 100%;
    overflow: hidden;
}

.choose-us-txt .heading {
    margin-bottom: 0;
}

.choose-us-txt .heading h2 {
    font-size: 35px;
    margin-bottom: 10px;
}

.saperator {
    width: 100%;
    height: 1px;
    background-color: #fff;
    display: block;
    margin: 25px 0;
}

.choose-list li {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 13px;
    list-style: none;
    padding-left: 32px;
    position: relative;
}

.choose-list i {
    position: absolute;
    left: 0;
    top: 2px;
}

.choose-us-txt {
    padding-left: 30px;
}

/* why choose us end */

/* our team */
.photography-team {
    width: 100%;
    overflow: hidden;
}

.team-img-box {
    position: relative;
    margin-bottom: 30px;
}

.team-info-box {
    position: absolute;
    bottom: 0;
    background-color: #00000080;
    backdrop-filter: blur(8px);
    padding: 25px 40px 15px;
}

.team-info-box ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

.team-info-box li a {
    padding: 0 18px;
}

.team-info-box li a:hover {
    color: #0cb3f0;
}

/* our team end */

/* page images */
.page-images ul {
    display: flex;
    flex-wrap: wrap;
}

.page-images li {
    width: 20%;
    position: relative;
    cursor: pointer;
}

.image-caption {
    position: absolute;
    bottom: 30px;
    width: 0;
    background-color: #00000080;
    backdrop-filter: blur(8px);
    padding: 0;
    overflow: hidden;
    height: 74px;
    transition: all ease 0.5s;
}

.image-caption p {
    margin: 0;
}

.image-caption p, .image-caption h5 {
    transform: translateX(-300px);
    transition: all ease 1s;
}

.page-images li:hover .image-caption p, .page-images li:hover .image-caption h5 {
    transform: translateX(0);
}

.page-images li:hover .image-caption {
    width: 100%;
    padding: 10px 24px;
}

/* page images end */

/* pricing */
.pricing {
    padding: 60px 0;
    background-image: url(../image/pricing-bg.png);
    background-position: center;
    background-repeat: repeat;
    width: 100%;
    overflow: hidden;
}

.pricing-item {
    margin: 15px;
    padding: 30px;
    background-color: #ffffff80;
    backdrop-filter: blur(2.8px);
    position: relative;
}

.pricing-item:before {
    content: "";
    position: absolute;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    left: -15px;
    top: -15px;
    border: 1px solid #505050;
    pointer-events: none;
}

.pricing-item .cwm-btn {
    margin-top: 30px;
}

.pricing-item h2 {
    font-size: 55px;
    margin: 18px 0;
}

/* pricing end */

/* blog */
.our-blog {
    width: 100%;
    overflow: hidden;
}

.our-blog {
    padding-top: 60px;
}

.blog-text {
    padding: 45px;
}

.blog-text i {
    font-size: 15px;
    margin-bottom: 30px;
    display: block;
}

.blog-text p {
    margin-bottom: 50px;
}

.blog-text a {
    display: block;
    width: max-content;
    margin-left: auto;
}

.blog-text a:hover {
    color: #0db3f0;
}

.bg-dark-gry {
    background-color: #3f3f3f;
}

/* blog end */

/* let's get talking */
.get-talking .form-control {
    color: #505050;
    border: 1px solid #505050;
    border-radius: 0;
    height: 55px;
    padding: 0 22px;
    font-size: 15px;
}

.get-talking textarea.form-control {
    height: auto;
    padding: 18px 22px;
}

.get-talking .form-control::placeholder {
    color: #505050;
}

.get-talking .form-group {
    margin-bottom: 40px;
}

.get-talking-btn {
    width: 201px;
    height: 55px;
    border: none;
    background-color: #505050;
    color: #fff;
    font-size: 15px;
    letter-spacing: 2px;
    transition: all ease 0.5s;
}

.get-talking-btn:hover {
    background-color: #0db3f0;
}

/* let's get talking end */

/* footer */
.footer {
    padding: 85px 0 70px;
}

.footer h4 {
    font-size: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 36px;
}

.footer p {
    margin: 0;
    letter-spacing: 2px;
    line-height: 30px;
}

.hours ul {
    list-style: none;
    display: flex;
}

.hours li {
    margin-right: 58px;
}

.copyright-cont ul {
    display: flex;
    list-style: none;
}

.copyright-cont li {
    margin-left: 30px;
    font-size: 20px;
}

.copyright-cont p {
    letter-spacing: 2px;
    margin: 0;
}

.copyright-cont {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
}

.copyright-cont a:hover {
    color: #0db3f0;
}

/* footer end */

/* our services */
.cw-nav {
    padding: 14px 54px;
    margin: 50px 0;
}

.serv-item img {
    margin-bottom: 45px;
}

.serv-item h4 {
    margin-bottom: 18px;
}

.serv-item p {
    max-width: 270px;
    margin: auto;
}

.serv-item {
    position: relative;
}

.serv-item:before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    background-color: #7c7c7c;
    left: 50%;
    top: 57px;
    z-index: -1;
}

.last-serv:before {
    display: none;
}
.last-serv img {
    margin-bottom: 45px;
}

.serv-slider .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.serv-slider .owl-nav button.owl-prev {
    right: -30px;
}

.serv-slider .owl-nav button.owl-next {
    left: -30px;
}

.serv-slider-item {
    background-color: #fff;
    height: 100%;
    border-bottom: 2px solid #979797;
}

.serv-slider .owl-stage {
    display: flex;
}

.service-box {
    padding: 20px;
}

.service-box a {
    display: block;
    width: max-content;
    margin-left: auto;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 13px;
}

.service-box p {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.our-services {
    padding: 70px 0;
}

.inr-pages .heading h2 {
    margin-bottom: 24px;
}

.extra-services .serv-slider-item {
    background-color: #f8f8f8;
}

.contact-card {
    margin-top: 30px;
    background-image: url(../image/contact-card.png);
    background-size: cover;
    padding: 35px 50px;
}

.card-box {
    max-width: 303px;
    text-align: center;
    border: 1px solid #f7dcb9;
    background-color: #ffffff8a;
    backdrop-filter: blur(3px);
    padding: 27px 15px;
}

.card-box h4 {
    color: #760325;
    margin-bottom: 26px;
}

.contact-now-btn {
    font-size: 13px;
    color: #fff;
    background-color: #65012f;
    width: 140px;
    height: 30px;
    display: grid;
    margin: auto;
    place-items: center;
}

/* our services end */

/* contact us */
.contact-us .serv-item:before {
    display: none;
}

.contact-us .serv-item img {
    margin-bottom: 20px;
}

/* contact us end */

/* gallery */
.gallery img {
    margin-bottom: 30px;
}

.gallery-pagination nav {
    width: max-content;
    margin: auto;
}

.gallery-pagination .page-link {
    color: #505050;
}

/* gallery end */

/* about */
.about-text h2 {
    font-size: 55px;
    margin-bottom: 35px;
}

.about-text h5 {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 22px;
}

.about-img {
    height: 100%;
}

.about-img img {
    height: 100%;
    object-fit: cover;
}

/* about end */


.pagination-wrapper .pagination{
    display: inline-flex !important;
}
