@font-face {
    font-family: 'Avenir LT Std';
    src: url('../fonts/AvenirLTStd-Book.eot');
    src: local('Avenir LT Std 45 Book'), local('AvenirLTStd-Book'),
        url('../fonts/AvenirLTStd-Book.eot?#iefix') format('embedded-opentype'),
        url('../fonts/AvenirLTStd-Book.woff2') format('woff2'),
        url('../fonts/AvenirLTStd-Book.woff') format('woff'),
        url('../fonts/AvenirLTStd-Book.ttf') format('truetype'),
        url('../fonts/AvenirLTStd-Book.svg#AvenirLTStd-Book') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Avenir LT Std';
    src: url('../fonts/AvenirLTStd-Medium.eot');
    src: local('Avenir LT Std 65 Medium'), local('AvenirLTStd-Medium'),
        url('../fonts/AvenirLTStd-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/AvenirLTStd-Medium.woff2') format('woff2'),
        url('../fonts/AvenirLTStd-Medium.woff') format('woff'),
        url('../fonts/AvenirLTStd-Medium.ttf') format('truetype'),
        url('../fonts/AvenirLTStd-Medium.svg#AvenirLTStd-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir LT Std';
    src: url('../fonts/AvenirLTStd-Black.eot');
    src: local('Avenir LT Std 95 Black'), local('AvenirLTStd-Black'),
        url('../fonts/AvenirLTStd-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/AvenirLTStd-Black.woff2') format('woff2'),
        url('../fonts/AvenirLTStd-Black.woff') format('woff'),
        url('../fonts/AvenirLTStd-Black.ttf') format('truetype'),
        url('../fonts/AvenirLTStd-Black.svg#AvenirLTStd-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Didot Font */
@font-face {
    font-family: 'Didot';
    src: url('../fonts/Didot-Italic.eot');
    src: local('Didot Italic'), local('Didot-Italic'),
        url('../fonts/Didot-Italic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Didot-Italic.woff2') format('woff2'),
        url('../fonts/Didot-Italic.woff') format('woff'),
        url('../fonts/Didot-Italic.ttf') format('truetype'),
        url('../fonts/Didot-Italic.svg#Didot-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Didot Title';
    src: url('../fonts/DidotTitle.eot');
    src: local('Didot Title'), local('DidotTitle'),
        url('../fonts/DidotTitle.eot?#iefix') format('embedded-opentype'),
        url('../fonts/DidotTitle.woff2') format('woff2'),
        url('../fonts/DidotTitle.woff') format('woff'),
        url('../fonts/DidotTitle.ttf') format('truetype'),
        url('../fonts/DidotTitle.svg#DidotTitle') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Avenir LT Std';
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #000000;
    margin: 0;
}

body.no-scroll {
    overflow: hidden;
}

html {
    scroll-behavior: smooth;
}

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

a {
    color: inherit;
}

a:hover {
    color: inherit;
}

.container {
    max-width: 1500px;
    padding: 0;
}

.container-fluid {
    padding-right: 50px;
    padding-left: 50px;
}

:root {
    --container-width: 1500px;
    --container-padding: calc((100vw - var(--container-width)) / 2);
}

#wrap {
    float: left;
    width: 100%;
}

#middle {
    float: left;
    width: 100%;
}

/* Header Section */
header {
    position: fixed;
    top: 0;
    width: 100%;
    transition: all .25s ease-in-out;
    z-index: 3;
    padding-top: 50px;
}

header .mainHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .mainHeader .headerLogo {
    display: flex;
    align-items: center;
    gap: 20px;
}

header .mainHeader .headerLogo .logo {
    max-width: 104px;
    width: 100%;
    z-index: 2;
}

header .mainHeader .headerLogo .logo img {
    width: 100%;
    height: auto;
}

header .mainHeader .headerLogo .logoName {
    font-family: 'Avenir LT Std';
    font-weight: 400;
    font-size: 100px;
    line-height: 100px;
    color: #ffffff;
    text-transform: uppercase;
}

/* Hamburger Menu */
#header .hamburger {
    position: relative;
    width: 80px;
    height: 80px;
}

#header .hamburger #nav-btn,
#header .hamburger #nav-btn+label {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    z-index: 99;
    cursor: pointer;
    display: flex;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
}

#header .hamburger #nav-btn {
    position: relative;
    opacity: 0;
    z-index: 100;
}

#header .hamburger #nav-btn+label span {
    display: block;
    width: 100%;
    height: 5px;
    margin-top: -20px;
    background-color: #ffffff;
    position: relative;
    cursor: pointer;
    z-index: 99;
    transition: all 0.3s ease-in-out;
}

#header .hamburger #nav-btn:checked+label span {
    transform: rotate(45deg);
    margin-top: 0;
}

#header .hamburger #nav-btn+label span::before {
    content: "";
    display: block;
    width: 60px;
    height: 5px;
    background-color: #ffffff;
    position: absolute;
    bottom: -20px;
    right: 0;
    transition: all 0.3s ease-in-out;
}

#header .hamburger #nav-btn:checked+label span::before {
    width: 80px;
    top: 0;
    transform: rotate(92deg);
}

#header .hamburger #nav-btn:checked~nav {
    visibility: visible;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    overflow: hidden;
}

#header .hamburger nav {
    position: fixed;
    top: 0;
    /* padding: 90px 30px 90px 30px; */
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgb(0 0 0 / 75%);
    backdrop-filter: blur(4px);
    opacity: 1;
    z-index: 1;
    align-items: self-start;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: -webkit-transform 0.5s, visibility 0s 0.5s;
    transition: transform 0.5s, visibility 0s 0.5s;
    overflow: hidden;
}

/* wordpress menu */
.menu_sec ul.menu {
    padding: 200px 180px 50px;
    margin: 0;
    list-style-type: none;
    height: 100vh;
    overflow-y: auto;
}

.menu_sec ul.menu::-webkit-scrollbar {
    width: 3px;
}

.menu_sec ul.menu::-webkit-scrollbar-track {
    background-color: rgb(0 0 0 / 75%);
}

.menu_sec ul.menu::-webkit-scrollbar-thumb {
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.5);
}

.menu_sec ul.menu li {
    display: inline-block;
    width: 100%;
    padding: 0px;
    position: relative;
    margin-bottom: 30px;
}

.menu_sec ul.menu li:nth-child(even) {
    text-align: right;
}

.menu_sec ul.menu li:last-child {
    margin-bottom: 0;
}

.menu_sec ul.menu li a {
    display: inline-block;
    padding: 0px;
    background: transparent;
    font-family: 'Didot Title';
    font-weight: 400;
    font-size: 115px;
    line-height: 115px;
    color: #ffffff;
    text-decoration: none;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.menu_sec ul.menu li.menu-item-has-children a {
    padding-right: 14px;
}

.menu_sec ul.menu li.menu-item-has-children>a:after {
    content: "\f104";
    font: normal normal normal 14px/1 Ionicons;
    font-family: Ionicons;
    font-size: 12px;
    position: absolute;
    margin-top: -6px;
    top: 50%;
    right: 0px;
}

.menu_sec ul li a svg {
    display: none;
}

.menu_sec ul.menu>li:hover>ul.sub-menu {
    display: block;
}

.menu_sec ul.menu li ul.sub-menu {
    margin: 0;
    padding: 0;
    list-style-type: none;
    float: left;
    width: 250px;
    background-color: #ffffff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
    display: none;
}

.menu_sec ul.menu li ul.sub-menu li {
    float: left;
    width: 100%;
    padding: 0 0px;
}

.menu_sec ul.menu li ul.sub-menu li a {
    padding: 10px 12px;
    border-radius: 0px;
    font-size: 16px;
    color: #1a1a1a;
    text-transform: none;
    cursor: pointer;
}

.menu_sec ul.menu li ul.sub-menu li a:hover,
.menu_sec ul.menu li ul.sub-menu li:hover>a,
.menu_sec ul.menu li ul.sub-menu li.current_page_item>a {
    background-color: #e9650d;
    color: #ffffff;
    text-decoration: none;
}

.menu_sec ul.menu li ul.sub-menu li.menu-item-has-children>a:after {
    content: "\f125";
    right: 10px;
}

.menu_sec ul.menu li ul li ul.sub-menu {
    top: 0;
    left: 100%;
    display: none;
}

.menu_sec ul.menu>li>ul>li:hover>ul.sub-menu {
    display: block;
}

/* Header Stiky Css */
header.stiky {
    padding-top: 15px;
}

header.stiky .mainHeader {
    justify-content: end;
}

header.stiky .mainHeader .headerLogo {
    display: none;
}

#header.stiky .hamburger #nav-btn+label span,
#header.stiky .hamburger #nav-btn+label span::before {
    background-color: #F24236;
}

/* Banner Section */
.banner-section {
    position: relative;
    width: 100%;
    height: 100vh;
}

.banner-section .banner-slider .swiper-slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.banner-section .caption {
    position: absolute;
    bottom: 15px;
    width: auto;
    z-index: 1;
    right: 0;
}

.banner-section .banner-slider .swiper-slide {
    position: relative;
}

.banner-section .banner-slider .swiper-slide .bannerCaption {
    position: absolute;
    bottom: 15px;
    width: auto;
    z-index: 2;
}

.banner-section .banner-slider .swiper-slide .bannerCaption p {
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    text-align: right;
    color: #ffffff;
    margin: 0;
}

.banner-section .banner-slider .swiper-slide .bannerCaption h2 {
    font-family: 'Didot Title';
    font-weight: 400;
    font-size: 45px;
    line-height: 60px;
    color: #ffffff;
    margin: 0;
}

.banner-section .caption .bannerCaption {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner-section .caption .swiper-pagination {
    width: auto;
    float: right;
    position: unset;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Didot Title';
    font-weight: 400;
    font-size: 60px;
    line-height: 50px;
    color: #ffffff;
    flex-direction: row-reverse;
}

.banner-section .caption .swiper-pagination .swiper-pagination-current {
    font-size: 40px;
    line-height: 50px;
}

.banner-section .caption .swiper-pagination .swiper-pagination-total {
    font-size: 30px;
    line-height: 50px;
}

/* Our Story Section */
.ourStorySec {
    width: 100%;
    padding: 190px 0 60px;
}

.ourStorySec .ourStoryInfo {
    margin-bottom: -95px;
}

.ourStorySec .ourStoryInfo h2 {
    font-family: 'Didot';
    font-weight: 400;
    font-size: 200px;
    line-height: 270px;
    color: #000000;
    text-align: center;
    margin: 0;
}

.ourStorySec .ourStoryInfo h2 strong {
    font-family: 'Didot Title';
    font-style: normal;
    font-weight: 400;
    color: #F24236;
}

.ourStorySec .ourStoryInfo p {
    max-width: 60%;
    font-family: 'Avenir LT Std';
    font-weight: 400;
    font-size: 30px;
    line-height: 40px;
    text-align: center;
    color: #606060;
    margin: 0 auto;
    margin-bottom: 40px;
}

.ourStorySec .ourStoryInfo .borderLine {
    position: relative;
    width: 1px;
    height: 190px;
    margin: 0 auto;
}

.ourStorySec .ourStoryInfo .borderLine::before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 0;
    background-color: #000000;
    transition: all 1.5s ease-in-out;
}

.ourStorySec .ourStoryInfo .borderLine.visible::before {
    height: 100%;
}

.ourStorySec .storyImg {
    max-width: 405px;
    width: 100%;
    float: right;
    position: sticky;
    top: 0;
}

.ourStorySec .storyImg img {
    width: 100%;
    height: auto;
}
.ourStorySec .storyInfo {
    width: 100%;
    padding: 40px 20px;
    margin-top: 90px;
    position: sticky;
    top: 0;
	text-align: center;
}
.ourStorySec .storyInfo p {
    font-family: 'Avenir LT Std';
    font-weight: 500;
    font-size: 22px;
    line-height: 30px;
    text-align: center;
    color: #606060;
    margin-bottom: 30px;
}
.ourStorySec .storyInfo p:last-child {
    margin: 0;
}
.ourStorySec .storyInfo .contactBtn {
    width: auto;
    display: inline-block;
    margin: 0 auto;
    padding: 20px 25px;
    background: #000000;
    border: 0 solid #000000;
    border-radius: 0;
    font-family: 'Avenir LT Std';
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
}
.ourStorySec .storyInfo .contactBtn:hover {
    background-color: #f24236;
    border: 0 solid #f24236;
    color: #fff
}

.ourStorySec .rightImg {
    max-width: 405px;
    width: 100%;
    float: left;
    margin-top: 235px;
    position: sticky;
    top: 0;
}

.ourStorySec .rightImg img {
    width: 100%;
    height: auto;
}

/* RB Studios Section */
.rbStudiosSec {
    padding: 50px 0;
    background-image: url(../images/articles-pattern.jpg);
    background-repeat: repeat;
    overflow-x: hidden;
}

.rbStudiosSec h2 {
    margin-bottom: 100px;
    font-family: 'Didot';
    font-size: 150px;
    color: #000000;
    font-weight: 400;
    line-height: 150px;
    text-align: center;
}

.rbStudiosSec h2 strong {
    font-family: 'Didot Title';
    font-weight: 400;
    color: #F24236;
    font-style: normal;
}

.rbStudiosSec .studiosWrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.rbStudiosSec .studiosWrapper .imagesCount {
    width: 100%;
    max-width: 485px;
    height: 640px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.rbStudiosSec .studiosWrapper .imagesCount .counters {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(calc(-100% - 20px));
    z-index: 1;
}

.rbStudiosSec .studiosWrapper .imagesCount .counters .total {
    font-family: 'Didot Title';
    font-size: 35px;
    color: #D9D9D9;
    font-weight: 400;
    line-height: 35px;
}

.rbStudiosSec .studiosWrapper .imagesCount .counters .slash {
    font-family: 'Didot Title';
    font-size: 70px;
    color: #D9D9D9;
    font-weight: 400;
    line-height: 70px;
}

.rbStudiosSec .studiosWrapper .imagesCount .counters .nums {
    font-family: 'Didot Title';
    font-size: 50px;
    color: #F24236;
    font-weight: 400;
    line-height: 50px;
}

.rbStudiosSec .studiosWrapper .imagesCount .image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.rbStudiosSec .studiosWrapper .imagesContents {
    display: flex;
    flex-wrap: nowrap;
    height: 100vh;
    overflow: hidden;
    mix-blend-mode: difference;
}

.rbStudiosSec .studiosWrapper .imagesContents .contBlock {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: auto;
    height: 100vh;
}

.rbStudiosSec .studiosWrapper .imagesContents .contBlock h3 {
    position: relative;
    margin-bottom: 0;
    padding-right: 190px;
    font-family: 'Didot Title';
    font-size: 150px;
    color: #D9D9D9;
    font-weight: 400;
    line-height: 150px;
    text-align: center;
    white-space: nowrap;
}

.rbStudiosSec .studiosWrapper .imagesContents .contBlock h3 a {
    color: #D9D9D9;
    text-decoration: none;
}

.rbStudiosSec .studiosWrapper .imagesContents .contBlock h3:after {
    content: "";
    width: 130px;
    height: 1px;
    background-color: #D9D9D9;
    position: absolute;
    top: 50%;
    right: 30px;
}

.rbStudiosSec .studiosWrapper .imagesContents .contBlock:last-child h3 {
    padding-right: 0;
}

.rbStudiosSec .studiosWrapper .imagesContents .contBlock:last-child h3:after {
    display: none;
}

/* Our Work Section */
.ourWorkSec {
    width: 100%;
    padding: 110px 0;
    overflow-x: hidden;
}

.ourWorkSec h2 {
    font-family: 'Didot';
    font-weight: 400;
    font-size: 200px;
    line-height: 200px;
    color: #000000;
    margin-bottom: -25px;
}

.ourWorkSec h2 strong {
    font-family: 'Didot Title';
    font-weight: 400;
    font-style: normal;
    color: #F24236;
}

.ourWorkSec .leftCol {
    padding: 55px 50px 0 0;
}

.ourWorkSec .leftCol p {
    font-family: 'Avenir LT Std';
    font-weight: 500;
    font-size: 22px;
    line-height: 34px;
    color: #606060;
    margin-bottom: 30px;
}

.ourWorkSec .leftCol .viewPortfolioBtn {
    position: relative;
    display: inline-block;
    font-family: 'Avenir LT Std';
    font-weight: 500;
    font-size: 22px;
    line-height: 34px;
    color: #F24236;
    text-decoration: none;
    padding-right: 70px;
    transition: all 0.3s ease-in-out;
}

.ourWorkSec .leftCol .viewPortfolioBtn::before {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    width: 44px;
    height: 8px;
    background-image: url(../images/rightArrow.svg);
    background-repeat: no-repeat;
    transition: all 0.3s ease-in-out;
}

.ourWorkSec .leftCol .viewPortfolioBtn::after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    border-radius: 100%;
    border: solid 1px #F24236;
    width: 32px;
    height: 32px;
    transition: all 0.3s ease-in-out;
}

.ourWorkSec .leftCol .viewPortfolioBtn:hover::before {
    transform: translateY(-50%) translateX(5px) scale(1.2);
}

.ourWorkSec .leftCol .viewPortfolioBtn:hover:after {
    transform: translateY(-50%) translateX(10px);
}

.ourWorkSec .rightCol {
    position: relative;
}

.ourWorkSec .rightCol .ourWork-slider {
    width: calc(100% + var(--container-padding));
}

.ourWorkSec .rightCol .ourWork-slider .swiper-slide {
    width: auto;
    height: auto;
}

.ourWorkSec .rightCol .ourWork-slider .swiper-slide a {
    text-decoration: none;
}

.ourWorkSec .rightCol .ourWork-slider .swiper-slide .ourWorkImg img {
    width: auto;
    height: auto;
    object-fit: cover;
    transition: all .3s ease-in-out;
}

.ourWorkSec .rightCol .ourWork-slider .swiper-slide h5 {
    font-family: 'Avenir LT Std';
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    color: #606060;
    margin: 0;
    margin-top: 15px;
    transition: all 0.3s ease-in-out;
}

.ourWorkSec .ourWork-slider-arrow {
    display: flex;
    justify-content: space-between;
    gap: 0px;
    width: calc(100% + var(--container-padding));
    height: calc(100% - 35px);
    margin-top: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.ourWorkSec .ourWork-slider-arrow .swiper-button-prev,
.ourWorkSec .ourWork-slider-arrow .swiper-button-next {
    width: 50%;
    height: 100%;
    top: 0;
    margin: 0;
    outline: none;
}

.ourWorkSec .ourWork-slider-arrow .swiper-button-prev::after,
.ourWorkSec .ourWork-slider-arrow .swiper-button-next::after {
    display: none;
}

.ourWorkSec .ourWork-slider-arrow .swiper-button-prev {
    cursor: url(../images/left-arrow.svg) 0 19, auto;
    left: 0;
}

.ourWorkSec .ourWork-slider-arrow .swiper-button-next {
    right: 0;
    cursor: url(../images/right-arrow.svg) 88 19, auto;
}

.ourWorkSec .ourWork-slider-arrow .swiper-button-next::after {
    transform: rotate(180deg);
}

.ourWorkSec .ourWork-swiper-pagination {
    display: none;
    text-align: center;
    padding-top: 10px;
}

.ourWorkSec .ourWork-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border: 2px solid #F24236;
    background-color: transparent;
}

.ourWorkSec .ourWork-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #F24236;
}

/* Featured Review Section */
.featuredReviewSec {
    width: 100%;
    height: 1067px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: end;
}

.featuredReviewSec .featuredReviewBox {
    max-width: 733px;
    width: 100%;
    border-radius: 50px 50px 0 0;
    padding: 45px 130px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.125) 0%, rgba(0, 0, 0, 0) 100%);
    backdrop-filter: blur(5.5px);
}

.featuredReviewSec .featuredReviewBox p {
    font-family: 'Avenir LT Std';
    font-weight: 400;
    font-size: 30px;
    line-height: 35px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
}

.featuredReviewSec .featuredReviewBox h5 {
    font-family: 'Avenir LT Std';
    font-weight: 400;
    font-style: italic;
    font-size: 40px;
    line-height: 40px;
    color: #ffffff;
    text-align: center;
    margin: 0;
}

/* Client Reviews Section */
.clientReviewsSec {
    width: 100%;
    padding: 100px 0 35px;
}

.clientReviewsSec .reviewsTitle {
    width: 100%;
    text-align: center;
    padding-bottom: 80px;
    position: sticky;
    top: 0;
}

.clientReviewsSec .reviewsTitle h2 {
    font-family: 'Didot';
    font-weight: 400;
    font-size: 200px;
    line-height: 150px;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
}

.clientReviewsSec .reviewsTitle h2 strong {
    font-family: 'Didot Title';
    font-weight: 400;
    color: #F24236;
    font-style: normal;
}

.clientReviewsSec .reviewsTitle .reviewsStar {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.clientReviewsSec .reviewsTitle .viewBtn {
    position: relative;
    display: inline-block;
    font-family: 'Avenir LT Std';
    font-weight: 500;
    font-size: 22px;
    line-height: 34px;
    color: #F24236;
    text-decoration: none;
    padding-right: 70px;
    transition: all 0.3s ease-in-out;
}

.clientReviewsSec .reviewsTitle .viewBtn::before {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    width: 44px;
    height: 8px;
    background-image: url(../images/rightArrow.svg);
    background-repeat: no-repeat;
    transition: all 0.3s ease-in-out;
}

.clientReviewsSec .reviewsTitle .viewBtn::after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    border-radius: 100%;
    border: solid 1px #F24236;
    width: 32px;
    height: 32px;
    transition: all 0.3s ease-in-out;
}

.clientReviewsSec .reviewsTitle .viewBtn:hover::before {
    transform: translateY(-50%) translateX(5px) scale(1.2);
}

.clientReviewsSec .reviewsTitle .viewBtn:hover:after {
    transform: translateY(-50%) translateX(10px);
}

.clientReviewsSec .row [class*="col-"]:nth-child(3n + 2) {
    margin-top: 380px;
}

.clientReviewsSec .reviewsBox {
    max-width: 450px;
    width: 100%;
    padding: 100px 50px;
    border-radius: 500px;
    border: solid 1px #D9D9D9;
    margin: -165px auto 0 auto;
    background: rgb(255 255 255 / 90%);
    backdrop-filter: blur(5.5px);
}

.clientReviewsSec .reviewsBox h4 {
    font-family: 'Didot Title';
    font-weight: 400;
    font-size: 36px;
    line-height: 36px;
    text-align: center;
    color: #F24236;
    margin-bottom: 10px;
}

.clientReviewsSec .reviewsBox p {
    font-family: 'Avenir LT Std';
    font-weight: 400;
    font-size: 20px;
    line-height: 34px;
    text-align: center;
    color: #000000;
    margin-bottom: 10px;
}

.clientReviewsSec .reviewsBox .userImg {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 10px;
}

.clientReviewsSec .reviewsBox .userImg img {
    width: 100%;
    height: auto;
}

.clientReviewsSec .reviewsBox h5 {
    font-family: 'Didot';
    font-weight: 400;
    font-size: 26px;
    line-height: 30px;
    text-align: center;
    color: #000000;
    margin: 0;
}

/* Latest Articles Section */
.latestArticlesSec {
    width: 100%;
    padding: 50px 0;
    background-image: url(../images/articles-pattern.jpg);
    background-repeat: repeat;
}

.latestArticlesSec .leftCol {
    width: 100%;
    position: sticky;
    top: 0;
}

.latestArticlesSec .leftCol h2 {
    font-family: 'Didot';
    font-weight: 400;
    font-size: 200px;
    line-height: 150px;
    color: #000000;
    margin-bottom: 30px;
}

.latestArticlesSec .leftCol h2 strong {
    font-family: 'Didot Title';
    font-style: normal;
    font-weight: 400;
    color: #F24236;
}

.latestArticlesSec .leftCol p {
    max-width: 285px;
    width: 100%;
    font-family: 'Avenir LT Std';
    font-weight: 500;
    font-size: 22px;
    line-height: 34px;
    color: #606060;
    margin-bottom: 30px;
}

.latestArticlesSec .leftCol .allArticlesBtn {
    position: relative;
    display: inline-block;
    font-family: 'Avenir LT Std';
    font-weight: 500;
    font-size: 22px;
    line-height: 34px;
    color: #F24236;
    text-decoration: none;
    padding-right: 70px;
    transition: all 0.3s ease-in-out;
}

.latestArticlesSec .leftCol .allArticlesBtn::before {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    width: 44px;
    height: 8px;
    background-image: url(../images/rightArrow.svg);
    background-repeat: no-repeat;
    transition: all 0.3s ease-in-out;
}

.latestArticlesSec .leftCol .allArticlesBtn::after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    border-radius: 100%;
    border: solid 1px #F24236;
    width: 32px;
    height: 32px;
    transition: all 0.3s ease-in-out;
}

.latestArticlesSec .leftCol .allArticlesBtn:hover::before {
    transform: translateY(-50%) translateX(5px) scale(1.2);
}

.latestArticlesSec .leftCol .allArticlesBtn:hover:after {
    transform: translateY(-50%) translateX(10px);
}

.latestArticlesSec .rightCol .articlesBox {
    width: 100%;
    display: inline-block;
    margin-bottom: 50px;
}

.latestArticlesSec .rightCol .articlesBox:last-child {
    margin-bottom: 0;
}

.latestArticlesSec .rightCol .articlesBox .articlesImg {
    width: 100%;
    float: left;
    margin-bottom: 10px;
    overflow: hidden;
}

.latestArticlesSec .rightCol .articlesBox .articlesImg img {
    width: 100%;
    height: auto;
    transition: all .3s ease-in-out;
}

.latestArticlesSec .rightCol .articlesBox .articlesImg:hover img {
    transform: scale(1.03);
}

.latestArticlesSec .rightCol .articlesBox .articlesInfo {
    width: 100%;
    float: left;
}

.latestArticlesSec .rightCol .articlesBox .articlesInfo h3 {
    font-family: 'Didot Title';
    font-weight: 400;
    font-size: 45px;
    line-height: 45px;
    color: #000000;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
}

.latestArticlesSec .rightCol .articlesBox .articlesInfo h3:hover {
    color: #F24236;
}

.latestArticlesSec .rightCol .articlesBox .articlesInfo h3 a {
    text-decoration: none;
}

.latestArticlesSec .rightCol .articlesBox .articlesInfo .date {
    font-family: 'Didot Title';
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    color: #000000;
}

/* Marquee Section */
footer .marqueeSec {
    overflow: hidden;
    background-color: #F24236;
    width: 100%;
}

footer .marqueeSec .marquee-track {
    padding: 13px 0;
    display: flex;
    width: fit-content;
    animation: marquee 20s linear infinite;
}

footer .marqueeSec .marquee-track .marquee-container {
    display: flex;
}

footer .marqueeSec .marquee-track .marquee-container .marquee-text {
    position: relative;
    font-family: 'Avenir LT Std', sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 34px;
    color: #ffffff;
    padding: 0 45px;
    white-space: nowrap;
}

footer .marqueeSec .marquee-track .marquee-container .marquee-text::after {
    content: "";
    position: absolute;
    background-image: url(../images/marquee-star-icons.svg);
    width: 29px;
    height: 29px;
    top: 50%;
    right: -17px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: 100%;
}

footer .marqueeSec .marquee-track .marquee-container .marquee-text a {
    text-decoration: none;
    transition: all .3s ease-in-out;
    color: inherit;
}

footer .marqueeSec .marquee-track .marquee-container .marquee-text a:hover {
    color: #000000;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Footer Section */
footer {
    position: relative;
    width: 100%;
    padding-bottom: 230px;
    overflow: hidden;
}

footer .topFooter {
    padding-top: 80px;
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
    align-items: flex-start;
    margin-bottom: 35px;
}

footer .topFooter .ftr-link .ftr-tel {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

footer .topFooter .ftr-link .ftr-tel a {
    font-family: 'Avenir LT Std';
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
}

footer .topFooter .ftr-link .ftr-tel a strong {
    font-weight: 900;
}

footer .topFooter .ftr-link .ftr-tel a:hover {
    color: #F24236;
}

footer .topFooter .ftr-social {
    width: 100%;
}

footer .topFooter .ftr-social ul {
    display: flex;
    gap: 25px;
    padding: 0;
    margin: 0;
    list-style: none;
}

footer .topFooter .ftr-social ul li a img {
    width: 25px;
    height: auto;
    transition: all .3s ease-in-out;
}

footer .topFooter .ftr-social ul li a:hover img {
    filter: invert(30%) sepia(65%) saturate(2912%) hue-rotate(344deg) brightness(103%) contrast(90%);
}

footer .topFooter .ftr-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

footer .topFooter .ftr-menu h5 {
    font-family: 'Avenir LT Std';
    font-weight: 900;
    font-size: 20px;
    line-height: 25px;
    text-transform: uppercase;
    margin: 0;
}

footer .topFooter .ftr-menu ul {
    display: flex;
    gap: 18px;
    padding: 0;
    margin: 0;
    list-style: none;
}

footer .topFooter .ftr-menu ul li a {
    font-family: 'Avenir LT Std';
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s ease-in-out;
}

footer .topFooter .ftr-menu ul li a:hover {
    color: #F24236;
}

footer .topFooter .ftr-copy p {
    font-family: 'Avenir LT Std';
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    text-align: right;
    margin: 0;
}

footer .topFooter .ftr-copy p strong {
    font-weight: 900;
}

footer .bottomFooter {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    font-family: 'Avenir LT Std';
    font-weight: 400;
    font-size: 268px;
    line-height: 210px;
    color: #000000;
    text-align: center;
    z-index: -1;
}

.ourWorkSec .rightCol.show-arrow .swiper-button-next {
    opacity: 1;
    pointer-events: all;
}

/* ---------- Inner Banner Css ---------- */
.innerbannerSec {
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
	background-position: center;
    background-size: cover;
    padding-top: 155px;
    display: flex;
    align-items: center;
}

.innerbannerSec .bannerCaption {
    width: 70%;
}

.innerbannerSec .bannerCaption h1 {
    font-family: 'Didot Title';
    font-weight: 400;
    font-size: 150px;
    line-height: 120px;
    color: #FFFFFF;
    margin-bottom: 35px;
}

.innerbannerSec .bannerCaption p {
    font-family: 'Avenir LT Std';
    font-weight: 500;
    font-size: 25px;
    line-height: 40px;
    color: #ffffff;
    margin: 0;
}
.innerbannerSec .bannerCaption .contactBtn {
    width: auto;
    display: inline-block;
    margin-top: 30px;
    padding: 20px 25px;
    background: #f24236;
    border: 0 solid #f24236;
    border-radius: 0;
    font-family: 'Avenir LT Std';
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: all .3s ease-in-out!important;
}
.innerbannerSec .bannerCaption .contactBtn:hover {
    background-color: #fff;
    border: 0 solid #fff;
    color: #000
}


#innerSection {
	width: 100%;
	display: inline-block;
	padding-top: 70px;
	padding-bottom: 70px;
}
#innerSection .content h2 {	
	margin: 0 0 20px 0;
    font-family: 'Didot';
    font-size: 200px;
    color: #000;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}
#innerSection .content h2 strong {	
	font-family: 'Didot Title';
    color: #f24236;
    font-weight: 400;
    font-style: normal;
}
#innerSection .content h3 {	
	margin: 0 0 20px 0;
	font-size: 35px;
	line-height:45px;
	font-weight: 700;
	color: #142E47;
}
#innerSection .content h4 {	
	margin: 0 0 20px 0;
	font-size: 25px;
	line-height:35px;
	font-weight: 700;
	color: #142E47;
}
#innerSection .content h5 {	
	margin: 0 0 20px 0;
	font-size: 22px;
	line-height:32px;
	font-weight: 700;
	color: #142E47;
}
#innerSection .content p {
	margin:0 0 20px 0;
    font-family: 'Avenir LT Std';
    font-weight: 400;
    font-size: 22px;
    line-height: 32px;
    color: #606060;
}


/* ---------- About Studio Page Css ---------- */
/* Our Story Section */
.ourStorySection {
    width: 100%;
    padding: 60px 0 120px;
	overflow:hidden;
}

.ourStorySection h2 {
    font-family: 'Didot';
    font-weight: 400;
    font-size: 200px;
    line-height: 270px;
    color: #000000;
    text-align: center;
    margin: 0;
}

.ourStorySection h2 strong {
    font-family: 'Didot Title';
    font-style: normal;
    font-weight: 400;
    color: #F24236;
}

.ourStorySection .leftCol {
    width: 100%;
}

.ourStorySection .leftCol img {
    width: 100%;
    height: auto;
}

.ourStorySection .rightCol {
    width: 100%;
    padding-right: 150px;
}

.ourStorySection .rightCol h4 {
    font-family: 'Avenir LT Std';
    font-weight: 500;
    font-size: 24px;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #606060;
}

.ourStorySection .rightCol h3 {
    font-family: 'Didot Title';
    font-weight: 400;
    font-size: 90px;
    line-height: 85px;
    color: #000000;
    margin-bottom: 20px;
}

.ourStorySection .rightCol h3 strong {
    font-family: 'Didot';
    font-weight: 400;
    color: #F24236;
}

.ourStorySection .rightCol p {
    font-family: 'Avenir LT Std';
    font-weight: 400;
    font-size: 30px;
    line-height: 40px;
    color: #606060;
    margin-bottom: 30px;
}

.ourStorySection .rightCol p:last-child {
    margin: 0;
}

/* Behind Section */
.behindSec {
    width: 100%;
    padding: 100px 0 125px;
    background-image: url(../images/articles-pattern.jpg);
    background-repeat: repeat;
    overflow-x: hidden;
}
.behindSec h2 {
    font-family: 'Didot';
    font-weight: 400;
    font-size: 150px;
    line-height: 150px;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
}
.behindSec h2 strong {
    font-family: 'Didot Title';
    font-weight: 400;
    font-style: normal;
    color: #F24236;
}
.behindSec .behindImg {
    max-width: 1275px;
    width: 100%;
    margin: 0 auto;
}
.behindSec .behindImg img {
    width: 100%;
    height: auto;
}
.behindSec .behindInfo {
    position: relative;
    max-width: 1135px;
    width: 100%;
    margin: -50px auto 0 auto;
    padding: 25px;
    background-color: #ffffff;
}
.behindSec .behindInfo p {
    font-family: 'Avenir LT Std';
    font-weight: 400;
    font-size: 30px;
    line-height: 35px;
    text-align: center;
    margin-bottom: 30px;
    color: #606060;
}
.behindSec .behindInfo p strong {
    font-weight: 400;
    color: #F24236;
}
.behindSec .behindInfo p:last-child {
    margin: 0;
}

/* Highlights Section */
.highlightsSec {
    width: 100%;
    padding: 95px 0 220px;
	overflow:hidden;
}
.highlightsSec .highlightsBox {
    width: 100%;
    margin-bottom: 160px;
}
.highlightsSec .highlightsBox .leftCol {
    width: 100%;
}
.highlightsSec .highlightsBox .leftCol h2 {
    font-family: 'Didot Title';
    font-weight: 400;
    font-size: 100px;
    line-height: 95px;
    color: #000000;
    margin: 0;
}
.highlightsSec .highlightsBox .leftCol h2 strong {
    font-family: 'Didot';
    font-weight: 400;
    font-style: normal;
    color: #F24236;
}
.highlightsSec .highlightsBox .rightCol {
    width: 100%;
    padding-right: 80px;
}
.highlightsSec .highlightsBox .rightCol p {
    font-family: 'Avenir LT Std';
    font-weight: 500;
    font-size: 22px;
    line-height: 34px;
    margin: 0;
    color: #606060;
}
.highlightsSec .highlightsCounterBox {
    width: 100%;
}
.highlightsSec .highlightsCounterBox .counterBox {
    width: 100%;
}
.highlightsSec .highlightsCounterBox .counterBox .bigText {
    font-family: 'Didot Title';
    font-weight: 400;
    font-size: 150px;
    line-height: 150px;
    text-align: center;
    margin-bottom: 10px;
}
.highlightsSec .highlightsCounterBox .counterBox .smallText {
    font-family: 'Didot Title';
    font-weight: 400;
    font-size: 60px;
    line-height: 50px;
    text-align: center;
}
.highlightsSec .highlightsCounterBox .counterBox .smallText strong {
    display: block;
    font-family: 'Didot';
    font-weight: 400;
    color: #F24236;
}

/* Sports Section */
.sportsSec {
    width: 100%;
	overflow:hidden;
}
.sportsSec .leftCol {
    width: calc(100% + 50px);
    margin-left: -50px;
}
.sportsSec .leftCol img {
    width: 100%;
    height: auto;
}
.sportsSec .rightCol {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 110px 0 45px;
}
.sportsSec .rightCol h3 {
    font-family: 'Didot Title';
    font-weight: 700;
    font-size: 60px;
    line-height: 50px;
    margin-bottom: 15px;
}
.sportsSec .rightCol p {
    font-family: 'Avenir LT Std';
    font-weight: 500;
    font-size: 22px;
    line-height: 30px;
    margin: 0;
}

/* Every Photo Section */
.everyPhotoSec {
    width: 100%;
    padding: 80px 0;
	overflow:hidden;
}
.everyPhotoSec h2 {
    font-family: 'Didot';
    font-weight: 400;
    font-size: 150px;
    line-height: 150px;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
}
.everyPhotoSec h2 strong {
    font-family: 'Didot Title';
    font-weight: 400;
    font-style: normal;
    color: #F24236;
}
.everyPhotoSec .leftCol {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 100px 0 50px;
}
.everyPhotoSec .leftCol h3 {
    font-family: 'Didot Title';
    font-weight: 700;
    font-size: 60px;
    line-height: 50px;
    text-align: right;
    margin-bottom: 15px;
}
.everyPhotoSec .leftCol p {
    font-family: 'Avenir LT Std';
    font-weight: 500;
    font-size: 22px;
    line-height: 30px;
    text-align: right;
    margin: 0;
}
.everyPhotoSec .rightCol {
    width: calc(100% + 50px);
    margin-right: -50px;
}
.everyPhotoSec .rightCol img {
    width: 100%;
    height: auto;
}

/* ---------- Photography Page & Detail Page Css ---------- */
.portfolioSec {
	padding: 70px 0;
	overflow-X: hidden;
}
.portfolioSec h2 {
	margin: 0;
	font-family: 'Didot';
	font-size: 200px;
	color: #000000;
	font-weight: 400;
	line-height: normal;
	text-align: center;
}
.portfolioSec h2 strong {
	font-family: 'Didot Title';
	color: #F24236;
	font-weight: 400;
	font-style: normal;
}
.portfolioSec .portfolioItems {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 60px;
	margin: 70px 0 0 0;
}
.portfolioSec .portfolioItems .item {
	width: calc(33.333333% - 40px);
}
.portfolioSec .portfolioItems .item a {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
}
.portfolioSec .portfolioItems .item .image {
	width: 100%;
	height: var(--portfolioItemsImages-height);
	border-radius: 100%;
	overflow: hidden;
}
.portfolioSec .portfolioItems .item .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: all 0.3s ease-in-out;
}
.portfolioSec .portfolioItems .item:hover .image img {
	transform: scale(1.1);
}
.portfolioSec .portfolioItems .item h3 {
	margin: 30px 0 15px 0;
	font-family: 'Didot';
	font-size: 50px;
	color: #000000;
	font-weight: 400;
	line-height: 45px;
	text-align: center;
}
.portfolioSec .portfolioItems .item h3 strong {
	font-family: 'Didot Title';
	color: #F24236;
	font-weight: 400;
	font-style: normal;
}
.portfolioSec .portfolioBoxCol {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
	margin: 20px 0 80px 0;
	padding: 0 50px;
}
.portfolioSec .portfolioBoxCol::before {
	content: '';
	width: calc(100% + (var(--container-padding)*2));
	height: 1px;
	background-color: #000000;
	position: absolute;
	top: 50%;
	left: calc(0px - var(--container-padding));
	z-index: -1;
}
.portfolioSec .portfolioBoxCol .portfolioBox a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 173px;
	height: 173px;
	background-color: #000000;
	border-radius: 100%;
	overflow: hidden;
	font-family: 'Avenir LT Std';
	font-size: 24px;
	color: #ffffff;
	font-weight: 500;
	line-height: 24px;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}
.portfolioSec .portfolioBoxCol .portfolioBox a span {
	position: relative;
	z-index: 2;
}
.portfolioSec .portfolioBoxCol .portfolioBox a::after {
    content: "";
    width: 100%;
    height: 100%;
	background-image: var(--portfolioItemsImage);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 0.2;
	transform: scale(1);
    position: absolute;
    top: 0;
    left: 0;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}
.portfolioSec .portfolioBoxCol .portfolioBox a:hover::after {
    transform: scale(1.07);
}
.portfolioSec .portfolioBoxCol .portfolioBox:hover a,
.portfolioSec .portfolioBoxCol .portfolioBox.active a {
	background-color: #F24236;
}
.portfolioSec .description {
	margin: 0 50px;
}
.portfolioSec .description p {
	margin: 0 0 30px 0;
	font-family: 'Avenir LT Std';
	font-weight: 400;
	font-size: 30px;
	line-height: 40px;
	color: #606060;
}
.portfolioSec .description p:last-child {
	margin-bottom: 0;
}
.portfolioSec .description p strong {
	font-weight: 500;
	color: #F24236;
}
.portfolioSec .portfolioWrapper {
	width: calc(100% + (var(--container-padding)*2));
	height: 100vh;
	margin-left: calc(0px - var(--container-padding));
	padding: 50px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
.portfolioSec .portfolioWrapper .imagesContents {
	display: flex;
	flex-wrap: nowrap;
	min-width: 100%;
	height: 100%;
	overflow: hidden;
}
.portfolioSec .portfolioWrapper .imagesContents .contBlock {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-width: auto;
	height: 100%;
	padding-right: 47px;
}
.portfolioSec .portfolioWrapper .imagesContents .contBlock:last-child {
	padding-right: 0;
}
.portfolioSec .portfolioWrapper .imagesContents .contBlock > a,
.portfolioSec .portfolioWrapper .imagesContents .contBlock img {
	position: relative;
	max-width: inherit;
	width: auto;
	height: 100%;
	object-fit: cover;
}
.portfolioSec .portfolioWrapper .imagesContents .contBlock > a:after {
	content: "\f6ec";
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	font-family: "Material Design Icons";
	font-size: 40px;
	color: #ffffff;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.3s ease-in-out;
}
.portfolioSec .portfolioWrapper .imagesContents .contBlock > a:hover:after {
	opacity: 1;
}

/*-------------- Review Page -----------*/
#reviewsPgSec.clientReviewsSec .reviewsTitle {
    position: relative;
    top: inherit;
}
#reviewsPgSec.clientReviewsSec {
    width: 100%;
    padding-top: 70px;
    padding-bottom: 70px;
}
#reviewsPgSec.clientReviewsSec .reviewsBox {
	margin: 0px auto 0 auto;
}
#reviewsPgSec.clientReviewsSec .reviewsTitle h2 {
    margin-bottom: 0;
}
#reviewsPgSec.clientReviewsSec .row [class*="col-"]:nth-child(1),
#reviewsPgSec.clientReviewsSec .row [class*="col-"]:nth-child(3) {
    margin: 0;
}
#reviewsPgSec.clientReviewsSec .row [class*="col-"] {
    margin-top: -400px;
    margin-bottom: 60px;
}
#reviewsPgSec.clientReviewsSec .row [class*="col-"]:nth-child(2) { 
	margin-top: 380px !important; 
}
#reviewsPgSec.clientReviewsSec .row [class*="col-"]:nth-child(3n + 2) {
    margin-top: 0;
}

/*-------------- Behind Page -----------*/
#behindPgSec.behindSec {
	background-image: none;
}
#behindPgSec.behindSec .behindInfo {
    position: relative;
    max-width: 90%;
    width: 90%;
    margin: 40px auto 0 auto;
    padding: 0;
}
#behindPgSec.behindSec .behindInfo p {
    text-align: left;
}


/*----- contact form 7 -----*/
.wpcf7-form-control-wrap 				{ display: block; }
body .wpcf7 form .wpcf7-response-output { width: 100%; padding: 0; margin: 15px 0 0 0; border: 0; box-sizing: border-box; font-size: 14px; color:#ff0000; line-height: normal; }
body span.wpcf7-not-valid-tip 			{ position: absolute; top: 5px; right: 10px; font-size: 16px; line-height: normal; white-space: nowrap; }
body .wpcf7-not-valid 					{ border-color: #f00 !important; }
.wpcf7 form.sent .wpcf7-response-output { border-color: #46b450; color: #46b450; }
.wpcf7-spinner 							{ margin: 14px 14px; position: absolute; top: 7px; left: 230px; }

/*-------------- Contact Page -----------*/
.contactSec {
	position:relative;
	width: 100%;
	display:inline-block;
	padding-top: 70px;
    padding-bottom: 70px;
	overflow:hidden;
}
.contactSec .topContent {
	width: 87%;
    display: block;
    text-align: center;
    margin: 0 auto 90px auto;
}
.contactSec .topContent h2 {
    margin: 0 0 30px 0;
    font-family: 'Didot';
    font-size: 200px;
    color: #000000;
    font-weight: 400;
    line-height: 170px;
    text-align: center;
}
.contactSec .topContent h2 strong {
    font-family: 'Didot Title';
    color: #F24236;
    font-weight: 400;
    font-style: normal;
}
.contactSec .topContent h3 {
	margin-bottom: 15px;
	font-size: 28px;
	font-weight: 500;
	line-height: 38px;
	color: #000000;
}
.contactSec .topContent h3 strong {
    color: #F24236;
	font-weight: 500;
}
.contactSec .topContent p {
	margin-bottom: 0px;
	font-size: 30px;
	font-weight: 400;
	line-height: 40px;
	color: #606060;
}
.contactSec .topContent p strong {
    color: #F24236;
	font-weight: 500;
}

.contactSec .contactForm {
    position: relative;
	width: 50%;
    margin: 0 auto 0 auto;
    padding-left: 30px;
}
.contactSec .contactForm .form-text {
	margin-top: 0;
}
.contactSec .contactForm .form-text p {
	margin: 0 0 70px 0;
    font-size: 30px;
    line-height: 40px;
    font-weight: 400;
    color: #606060;
}
.contactSec .contactForm .form-text p strong {
    color: #F24236;
	font-weight: 500;
}
.contactSec .contactForm .form-group {
	margin-bottom: 30px;
}
.contactSec .contactForm .form-group:last-child {
	margin: 0;
}
.contactSec .contactForm .form-group label {
	margin: 0 0 5px 0;
	width: 100%;
	display:inline-block;
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	color:#142E47;
}
.contactSec .contactForm .form-group .form-control {
	width: 100%;
    display: inline-block;
    padding: 20px 20px;
    height: 65px;
    font-family: 'Avenir LT Std';
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    color: #000;
    border-radius: 0;
    background-color: #fff;
    border: 1px solid #F24236;
}
.contactSec .contactForm .form-group .form-control::placeholder {
	color: #606060;
	font-weight: 400;
	text-transform:uppercase;
}
.contactSec .contactForm .form-group .form-control:focus {
	color: #000;
	background-color: #ffffff;
	border-color: #000;
	box-shadow: none;
}
.contactSec .contactForm .form-group textarea.form-control {
	height: 120px;
	resize: none;
}
.contactSec .contactForm .form-group select.form-control {
	color: #606060;
	appearance: none;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="9" viewBox="0 0 13 9" fill="none"><path d="M6.49999 5.67198L11.45 0.721985L12.864 2.13598L6.49999 8.49998L0.135986 2.13598L1.54999 0.721985L6.49999 5.67198Z" fill="black"/></svg>');
	background-repeat: no-repeat;
	background-position: right 20px center;
	text-transform:uppercase;
}
.contactSec .contactForm .form-group select option:not(:first-of-type) {
	color: #000000;
	text-transform:capitalize;
}
.contactSec .contactForm .form-group .sendBtn {
	width: auto;
	display: inline-block;
	padding: 23px 30px 23px 30px;
	background: #000000;
	border: 0px solid #000000;
	border-radius: 0px;
	font-family: 'Avenir LT Std';
	font-size: 20px;
	line-height: 20px;
	font-weight: 400;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	transition: all .3s ease-in-out;
}
.contactSec .contactForm .form-group .sendBtn:hover {
	background-color: #F24236;
	border: 0px solid #F24236;
	color: #fff;
}

.googleMapSec {
    width: 100%;
	float:left;
    padding: 0px 0 0 0;
}
.googleMapSec h2 {
    margin: 0 0 40px 0;
    width: 45%;
    font-family: 'Didot';
    font-weight: 400;
    font-size: 100px;
    line-height: 90px;
    color: #000;
}
.googleMapSec h2 strong {
    font-family: 'Didot Title';
    font-style: normal;
    font-weight: 400;
    color: #F24236;
}
.googleMapSec .mapBox {
	width:100%;
	float: left;
}
.googleMapSec .mapBox p {
	margin:0 0 0 0;
}
.googleMapSec .mapBox iframe {
	width:100%;
	float:left;
}

/*----------------- blog page -----------------*/
.blogTopContent {
    width: 87%;
    display: block;
    text-align: center;
    margin: 0 auto 90px auto
}
.blogTopContent h2 {
    margin: 0 0 30px 0;
    font-family: 'Didot';
    font-size: 200px;
    color: #000;
    font-weight: 400;
    line-height: 260px;
    text-align: center
}
.blogTopContent h2 strong {
    font-family: 'Didot Title';
    color: #f24236;
    font-weight: 400;
    font-style: normal
}
.blogTopContent p {
    margin-bottom: 0;
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
    color: #606060
}
.blogTopContent p strong {
    color: #f24236;
    font-weight: 500
}
.left_content {
	float: left;
    width: 100%;
	overflow: hidden;
}
.left_content .search-form {
	position: relative;
    padding: 20px 0;
}
.left_content .search-form label {
	font-size: 17px;
    color: #424242;
    font-weight: 700;
    text-transform: uppercase;
}
.left_content .search-form .search-field {
	display: inline-block;
    width: 100%;
    height: 40px;
    padding: 7px 40px 7px 10px;
    margin-bottom: 0;
    border: 2px solid #f24236;
	outline: 0;
    background-color: #fff;
    font-size: 16px;
    color: #000;
    line-height: normal;
    vertical-align: top;
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.left_content .search-form .search-submit {
    display: inline-block;
    min-width: auto;
    padding: 3px 7px;
    margin-bottom: 0;
    background-color: transparent;
    border: none;
    font-size: 25px;
    color: #f24236;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    line-height: normal;
	cursor: pointer;
	position: absolute;
    top: 49px;
    right: 0;
}
.left_content .search-form .search-submit:hover {
	color: #000000;
    text-decoration: none;
}
.blog_items {
    margin-bottom: 50px;
}
.blog_items .blog-image {
    margin-bottom: 20px;
	overflow: hidden;
}
.blog_items .blog-image a {
    position: relative;
	display: inline-block;
	vertical-align: top;
}
.blog_items .blog-image img {
    max-width: 100%;
	height: auto;
	transition: all .3s ease-in-out;
}
.blog_items .articlesImg:hover img {
    transform: scale(1.03);
}
.blog_items h2.entry-title {
    margin: 0 0 10px 0;
	font-family: 'Didot Title';
    font-weight: 400;
    font-size: 45px;
    line-height: 45px;
    color: #000000;
    margin-bottom: 10px;
}
.blog_items h2.entry-title a {
    color: #000000;
	text-decoration: none;
	transition: .5s all;
}
.blog_items h2.entry-title a:hover {
    color: #f24236;
}
.blog_items .articlesBox .articlesInfo .date {
    font-family: 'Didot Title';
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    color: #000000;
}
.blog_items p.post-meta {
    margin-bottom: 10px;
	font-size: 16px;
}
.blog_items p.post-meta a {
    color: #000000;
	transition: .5s all;
}
.blog_items p.post-meta a:hover {
    color: #f24236;
}
.blog_items p {
    margin-bottom: 20px;
	font-size: 16px;
	color: #000000;
	font-weight: 400;
	line-height: 25px;
}
.blog_items h3 {
    margin: 0 0 10px 0;
    font-size: 23px;
    color: #f24236;
    line-height: normal;
}
.single .blog_items {
	width: 80%;
    margin: auto;
}
.single .blog_items h2.entry-title {
    margin: 0 0 20px 0;
    font-family: 'Didot Title';
    font-weight: 400;
    font-size: 82px;
    line-height: 90px;
    color: #000000;	
    text-align: center;
}
.single .blog_items p.post-meta {
    margin-bottom: 50px;
	font-size: 18px;
	line-height: 20px;
	font-weight: 400;
	color: #000000;
    text-align: center;
}
.single .blog_items .post-media {
    margin-bottom: 35px;	
    text-align: center;
}
.single .blog_items .post-media img {
    max-width: 100%;
	width: 100%;
	height: auto;
    text-align: center;
}
.single .blog_items .detailContent {
	padding-left:50px;
	padding-right:50px;
}
.single .blog_items h3 {
    margin: 0 0 20px 0;
    font-size: 40px;
    line-height: 48px;
	font-weight: 500;
	color: #000000;
}
.single .blog_items ul {
    margin-bottom: 20px;
}
.single .blog_items ul li {
    margin-bottom: 5px;
	font-size: 22px;
	line-height: 32px;
	font-weight: 500;
	color: #606060;
}
.single .blog_items p {
    margin-bottom: 20px;
	font-size: 22px;
	line-height: 32px;
	font-weight: 500;
	color: #606060;
}
.single .blog_items p strong {
    margin-bottom: 20px;
	font-weight: 900;
}
.single .blog_items .share {
    margin: 20px 0;
    padding: 15px 0;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #DDECD2;
    border-bottom: 1px solid #DDECD2;
}
.single .blog_items .share .apss-social-share {
	width: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.single .blog_items .share .apss-social-share .apss-single-icon a {
    margin: 0 5px;
}

.blogDetail .recentPost {
    width: 80%;
    margin: 0 auto;
    padding: 50px 0;
	display: flex;
    align-items: center;
    justify-content: space-between;
}
.blogDetail .recentPost .post-wrap {
	display: flex;
	gap: 35px;
	align-items: center;
}
.blogDetail .recentPost .post-wrap a {
	display: flex;
	gap: 18px;
	align-items: center;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}
.blogDetail .recentPost .post-wrap .title {
	max-width: 330px;
	padding: 10px 20px;
	font-family: 'Didot Title';
	font-size: 26px;
	line-height: 30px;
	color: #000000;
	text-decoration: none;
}
.blogDetail .recentPost .post-wrap a .arrow {
	display: flex;
    background-color: #000000;
    padding: 16px 20px;
	font-family: 'Didot Title';
    font-size: 22px;
    color: #ffffff;
    border-radius: 0;
    transition: all 0.3s ease-in-out;
}
.blogDetail .recentPost .post-wrap a .arrow img {
	transition: all 0.3s ease-in-out;
}
.blogDetail .recentPost .post-wrap a.previous .arrow img {
	margin: 0 10px 0 0;
	transition: all 0.3s ease-in-out;
}
.blogDetail .recentPost .post-wrap a:hover .arrow {
	background-color: #F24236;
	color: #ffffff;
}
/*.blogDetail .recentPost .post-wrap a:hover .arrow img {
	filter: brightness(0) invert(1);
}*/
.blogDetail .recentPost .post-wrap a.next .title {
	text-align: right;
}
.blogDetail .recentPost .post-wrap a.next .arrow img {
	margin: 0 0 0 10px;
}

.blog_sidebar {
	padding: 0px;
	margin-bottom: 30px;
	border: 0px solid #dddddd;
	border-radius: 0px;
}
.blog_sidebar:last-child {
    margin-bottom: 0px;
}
.blog_sidebar .title { 
	padding: 0 0 7px 0;
	margin: 0 0 20px 0;
	border-bottom: 1px solid #f24236;
	font-size: 23px;
    color: #f24236;
    font-weight: 600;
    text-transform: uppercase;
    line-height: normal;
}
.blog_sidebar .search-form {
    position: relative;
}
.blog_sidebar .search-form label {
    display: none
}
.blog_sidebar .search-form .search-field {
    display: inline-block;
    width: 100%;
    height: 40px;
    padding: 7px 40px 7px 10px;
    margin-bottom: 0;
    border: 2px solid #f24236;
	outline: 0;
    background-color: #fff;
    font-size: 16px;
    color: #000;
    line-height: normal;
    vertical-align: top;
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.blog_sidebar .search-form .search-submit {
	display: inline-block;
    min-width: auto;
    padding: 3px 7px;
    margin-bottom: 0;
    background-color: transparent;
    border: none;
    font-size: 25px;
    color: #f24236;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    line-height: normal;
	cursor: pointer;
	position: absolute;
    top: 0;
    right: 0;
}
.blog_sidebar .search-form .search-submit:hover {
    color: #000000;
    text-decoration: none
}
.blog_sidebar ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}
.blog_sidebar ul li {
	margin-bottom: 10px;
	padding-left: 14px;
	background: url(../images/right_bullet.png) no-repeat left 6px;
	font-size: 17px;
}
.blog_sidebar ul li.hover {
	background: url(../images/right_bullet_hov.png) no-repeat left 6px;
}
.blog_sidebar ul li:last-child {
	margin-bottom: 0px;
}
.blog_sidebar ul li a {
	color: #000000;
	text-decoration: none;
}
.blog_sidebar ul li a:hover {
	color: #f24236;
	text-decoration: none;
}
.blog_sidebar ul li a + span {
    display: block;
    font-size: 14px;
	color: #999999;
	font-style: italic;
}
.blog_sidebar ul.wp-tag-cloud li {
	display: inline-block;
	margin: 0 4px 7px 0;
	padding-left: 0px;
	background: none;
}
.blog_sidebar ul.wp-tag-cloud li.hover {
	background: none;
}
.blog_sidebar ul.wp-tag-cloud li a {
	display: block;
	padding: 4px 10px;
	border: 1px solid #666666;
	color: #666666;
	text-decoration: none;
}
.blog_sidebar ul.wp-tag-cloud li a:hover {
	color: #f24236;
	text-decoration: none;
}
.pagination {
	width: 100%;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    text-align: center;
}
.pagination ul {
	padding: 0px;
	margin: 0px;
	list-style-type: none;
}
.pagination ul li {
	display: inline-block;
	width: auto;
	padding: 0 7px;
	font-family: 'Didot Title';
    font-weight: 400;
    font-size: 20px;
	line-height:20px;
	text-align: center;
}
.pagination ul li a {
	display: flex;
    width: 55px;
    height: 55px;
    padding: 5px 5px;
    color: #fff;
	background-color:#000000;
    text-decoration: none;
    justify-content: center;
    align-items: center;
}
.pagination ul li a:hover {
	background: #f24236;
	color: #ffffff;
}
.pagination ul li.active .current {
	display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    padding: 5px 5px;
	background: #f24236;
	color: #ffffff;
    text-decoration: none;
} 
.pagination ul li a.next  {
	position:relative;
	width:auto;
	padding: 5px 70px 5px 15px;
}
.pagination ul li a.next::before {
	content:'';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    width: 41px;
    height: 16px;
    background-image: url(../images/pagination-arrow.png);
    background-repeat: no-repeat;
    transition: all 0.3s ease-in-out;
}
.pagination ul li a.prev {
	position:relative;
	width:auto;
	padding: 5px 15px 5px 70px;
}
.pagination ul li a.prev::before {
	content:'';
    position: absolute;
    left: 15px;
    top: 35%;
    transform: translateY(-50%);
    content: '';
    width: 41px;
    height: 16px;
    background-image: url(../images/pagination-arrow.png);
    background-repeat: no-repeat;
	transform: rotate(180deg);
    transition: all 0.3s ease-in-out;
}
.user_cmt_box {
	float: left;
	width: 100%;
	margin-top: 30px;
	padding: 30px 0 0 0;
	border-top: 1px solid #cccccc;
}
.user_cmt_box h3 {
	margin: 0 0 20px 0;
    font-family: 'Didot Title';
    font-size: 50px;
    line-height: 50px;
    font-weight: 400;
    color: #000000;
}
.user_cmt_box .media_list {
	display: inline-block;
	width: 100%;
	padding: 10px 0;
}
.user_cmt_box .media_list .blog-user-image {
	display: inline-block;
	width: 69px;
}
.user_cmt_box .media_list .blog-user-image img {
	border-radius: 50%;
}
.user_cmt_box .media_list .blog-user-comment-body {
	float: right;
	width: calc(100% - 69px);
	padding: 0px 12px;
	box-sizing: border-box;
}
.user_cmt_box .media_list .blog-user-comment-body .user_name {
	display: inline-block;
	width: auto;
	padding-right: 10px;
	font-size: 18px;
	color: #000000;
	font-weight: 600;
}
.user_cmt_box .media_list .blog-user-comment-body .date {
	display: inline-block;
	width: auto;
	padding-right: 10px;
	font-size: 16px;
	color: #777777;
	font-weight: 400;
}
.user_cmt_box .media_list .blog-user-comment-body .comment_reply {
	display: inline-block;
	width: auto;
	font-size: 16px;
	color: #777777;
	font-weight: 400;
}
.user_cmt_box .media_list .blog-user-comment-body .comment_reply a {
	color: #777777;
	text-decoration: none;
}
.user_cmt_box .media_list .blog-user-comment-body .comment_reply a:hover {
	color: #f24236;
}
.user_cmt_box .media_list .blog-user-comment-body p {
	margin: 0;
	padding: 5px 0;
	font-size: 16px;
	color: #000000;
	font-weight: 400;
	line-height: 25px;
}
.user_cmt_box .children {
	margin: 0;
	padding-left: 40px;
}
.comment-respond {
	float: left;
	width: 100%;
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px dashed #cccccc;
}
.comment-respond h3 {
	margin: 0 0 20px 0;
    font-family: 'Didot Title';
    font-size: 50px;
    line-height: 50px;	
    font-weight: 400;
    color: #000000;
}
.comment-respond h3 small {
	padding-left: 10px;
	font-size: 18px;
	font-weight: 400;
	text-transform: none;
}
.comment-respond a {
	color: #333333;
	text-decoration: none;
}
.comment-respond a:hover {
	color: #f24236;
	text-decoration: none;
}
.comment-respond p {	
	display: inline-block;
    width: 100%;
    margin: 0 0 20px 0px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #000000;
}
.comment-respond p label {
	float: left;
	width: 20%;
	margin: 0;
	padding-right: 20px;
	font-weight: 400;
	text-transform: none;
	text-align: right;
	cursor: pointer;
}
.comment-respond p textarea {
	float: left;
	width: 70%;
	height: 100px;
	padding: 10px;
	background-color: #fff;
	border: 1px solid #F24236;
	outline: 0;
	font-size: 18px;
	color: #000000;
	resize: none;
}
.comment-respond p input {
	float: left;
	width: 70%;
	height: 55px;
	padding: 10px;
	background-color: #fff;
	border: 1px solid #F24236;
	outline: 0;
	font-size: 18px;
	color: #000000;
}
.comment-respond p.comment-form-cookies-consent input {
	float: left;
	width: 16px;
	height: 16px;
	padding: 0;
	margin: 2px 4px 0 20%;
	background-color: transparent;
	border: none;
}
.comment-respond p.comment-form-cookies-consent label {
	float: left;
	width: calc(70% - 20px);
	margin: 0;
	padding-right: 0px;
	font-size: 14px;
	text-align: left;
}
.comment-respond p .submit {
	float: left;
	width: auto;
	height: auto;
	padding: 20px 30px;
	margin-left: 20%;
	border: 0px solid #000000;
	background-color: #000000;
	border-radius: 0px;
	font-size: 20px;
	color: #fff;
	font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: .5s all;
}
.comment-respond p .submit:hover {
	background-color: #F24236;
	color: #fff;
}