/* Webfont include */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: 'Atyp TEST Variable';
    src: url('../fonts/Atyp\ TEST\ Variable.woff') format('woff'),
        url('../fonts/Atyp\ TEST\ Variable.otf') format('otf'),
        url('../fonts/Atyp\ TEST\ Variable.eot') format('eot');
    font-weight: normal;
    font-style: normal;
}

* {
    padding: 0;
    margin: 0;
}

/* Color */

:root {
    --secondary-light: #F8EFE6;
    --secondary-dark: #C78C83;
    --secondary-dark-600: #474A4F;
    --text-light: #789591;
    --small-text-light: #7D7D7D;
    --button-border: #C2C2C2;
    --ligt-primary-500: #FFF9F4;
    --light-primary-700: #FFF6ED;
    --icon-bg: #E1E1E1;
    --dark-bg: #363636;
    --dark-bg-900: #1d1d1d;
    --error: #EB4335;
    --white: #ffffff;
    --black: #000000;
    --font-atyp: Atyp TEST Variable;
}

body {
    font-family: "Poppins", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
    text-decoration: none;
    transition: all .6s;
    text-decoration: none;
}

h1 {
    font-size: 117px;
    font-family: 'Atyp TEST Variable', sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Atyp TEST Variable', sans-serif;
    font-weight: 900;
}

h2 {
    font-size: 60px;
    line-height: 72px;
}

h4,
h5,
h6 {
    margin: 0;
    font-optical-sizing: auto;
    font-style: normal;
}

.text-capscase {
    text-transform: uppercase;
}

.form-control {
    border-radius: 0px;
    min-height: 60px;
    padding: 18px 30px;
    border: none;
    border-bottom: 1px solid #E1E1E1;
}

textarea.form-control {
    min-height: 50px;
}

ul,
li {
    margin: 0px;
    font-weight: 500;
    list-style-type: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}

p {
    margin: 0px;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: var(--small-text-light);
}

a {
    margin: 0px;
    font-size: 16px;
    font-weight: 500;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

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

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #ced4da;
    outline: 0;
    box-shadow: none;
}

textarea {
    resize: none;
}

::-webkit-scrollbar {
    width: 10px;
    height: 5px;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-dark-600);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-dark);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-dark);
    border-radius: 10px;
}


input,
button,
input:focus,
button:focus,
textarea,
textarea:focus,
select,
select:focus {
    outline: none !important;
    box-shadow: none;
}

a,
a:hover,
a:focus,
button,
button:hover,
button:focus,
input,
input:hover,
input:focus,
textarea,
textarea:hover,
textarea:focus {
    outline: none;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    background-color: var(--Primary-dark-800);
}

/* buttons add */
.globalBtnDark {
    padding: 10px 20px 10px 31px;
    color: var(--white);
    background-color: var(--secondary-dark);
    border-radius: 0px;
    display: inline-flex;
    text-transform: uppercase;
    font-size: 18px;
    align-items: center;
    gap: 20px;
    transition: all 0.4s ease-in-out;
    min-height: 48px;
    position: relative;
    overflow: hidden;
    font-weight: 400;
}

.globalBtnDark i {
    margin-left: 10px;
}

.globalBtnDark:hover:before {
    transform: translateX(0);
}

.globalBtnDark:hover,
.globalBtnDark:hover span,
.globalBtnDark:hover i {
    color: var(--white);
}

.globalBtnDark:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -1px;
    background-color: var(--black);
    transform: translateX(-100%);
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.globalBtnDark span,
.globalBtnDark i {
    position: relative;
    z-index: 9;
    top: 0px !important;
    bottom: 0px !important;
    right: 0px !important;
    left: 0px !important;
    height: auto !important;
    width: auto !important;
}

.globalBtnOutline {
    padding: 10px 35px;
    color: var(--small-text-light);
    background-color: transparent;
    border-radius: 0px;
    border: 1px solid var(--button-border);
    display: inline-flex;
    text-transform: uppercase;
    font-size: 18px;
    align-items: center;
    transition: all 0.4s ease-in-out;
    min-height: 48px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    font-weight: 400;
}

.globalBtnOutline:hover:before {
    transform: translateX(0);
}

.globalBtnOutline:hover,
.globalBtnOutline:hover span {
    color: var(--white);
}

.globalBtnOutline:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -1px;
    background-color: var(--black);
    transform: translateX(-100%);
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.globalBtnOutline span {
    position: relative;
    z-index: 9;
}


/* updown animation */
@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-60px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-60px);
    }
}

/* Round animatio */
@-webkit-keyframes rippleWhite {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 1em rgba(255, 255, 255, 0.3), 0 0 0 3em rgba(255, 255, 255, 0.3), 0 0 0 5em rgba(255, 255, 255, 0.3);
        border-radius: 5px;
    }

    100% {
        box-shadow: 0 0 0 1em rgba(255, 255, 255, 0.3), 0 0 0 3em rgba(255, 255, 255, 0.3), 0 0 0 5em rgba(255, 255, 255, 0.3), 0 0 0 8em rgba(101, 255, 120, 0);
        border-radius: 5px;
    }
}

@keyframes rippleWhite {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 1em rgba(255, 255, 255, 0.3), 0 0 0 3em rgba(255, 255, 255, 0.3), 0 0 0 5em rgba(255, 255, 255, 0.3);
        border-radius: 5px;
    }

    100% {
        box-shadow: 0 0 0 1em rgba(255, 255, 255, 0.3), 0 0 0 3em rgba(255, 255, 255, 0.3), 0 0 0 5em rgba(255, 255, 255, 0.3), 0 0 0 6em rgba(101, 255, 120, 0);
        border-radius: 5px;
    }
}

@-webkit-keyframes rippleGreen {
    0% {
        box-shadow: 0 0 0 0 rgba(101, 255, 120, 0.3), 0 0 0 1em rgba(101, 255, 120, 0.3), 0 0 0 3em rgba(101, 255, 120, 0.3), 0 0 0 5em rgba(101, 255, 120, 0.3);
    }

    100% {
        box-shadow: 0 0 0 1em rgba(101, 255, 120, 0.3), 0 0 0 3em rgba(101, 255, 120, 0.3), 0 0 0 5em rgba(101, 255, 120, 0.3), 0 0 0 6em rgba(101, 255, 120, 0);
    }
}

@keyframes rippleGreen {
    0% {
        box-shadow: 0 0 0 0 rgba(101, 255, 120, 0.3), 0 0 0 1em rgba(101, 255, 120, 0.3), 0 0 0 3em rgba(101, 255, 120, 0.3), 0 0 0 5em rgba(101, 255, 120, 0.3);
        border-radius: 5px;
    }

    100% {
        box-shadow: 0 0 0 1em rgba(101, 255, 120, 0.3), 0 0 0 3em rgba(101, 255, 120, 0.3), 0 0 0 5em rgba(101, 255, 120, 0.3), 0 0 0 8em rgba(101, 255, 120, 0);
        border-radius: 5px;
    }
}

/* Slider navbar */
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link,
.nav-pills .nav-link {
    background-color: transparent;
    color: var(--text-secondary);
}

.owl-nav {
    color: var(--black);
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: -1;
}

.owl-nav button.owl-prev span {
    left: -40px;
}

.owl-nav button.owl-next span {
    right: -40px;
}

.owl-nav button span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    color: var(--white);
    border-radius: 50%;
    position: relative;
}

.owl-dots button.owl-dot span {
    background: var(--white);
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin: 5px;
}

.owl-dots button.owl-dot.active span {
    background: var(--white);
    display: inline-block;
    width: 15px;
    height: 6px;
    border-radius: 5px;
    margin: 5px;
}

.owl-dots {
    margin-top: 50px;
    text-align: center;
}

/* global header start */
.global-header {
    margin-bottom: 40px;
}

.global-header p {
    width: 55%;
    text-align: center;
}

.global-header h2 {
    font-size: 60px;
    font-weight: 200;
}

.global-header h2 span {
    font-weight: 700;
}

/* global header end */

/* top navbar start */
.top-navbar .navbar-brand {
    display: inline-block;
    max-width: 189px;
    transition: all 300ms ease-in-out;
}

.top-navbar.sticky .navbar-brand img {
    max-width: 260px;
}

.top-navbar.sticky .globalBtnOutline {
    border-color: var(--white);
    color: var(--white);
}

.top-navbar {
    padding: 15px 0px;
    z-index: 9;
    background-color: transparent;
    width: 100%;
    transition: 0.6s;
    z-index: 9999;
    position: sticky;
    top: 0px;
}

.top-navbar.sticky {
    background-color: var(--secondary-dark-600);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
}

.top-navbar ul.navbar-nav li {
    margin: 0px 20px;
    font-size: 16px;
    color:var(--small-text-light);
    
}
.top-navbar ul.navbar-nav li a{
    font-weight: 400;
    text-transform: uppercase;
}

.top-navbar ul.navbar-nav li.current-menu-item a{
    font-weight: 700;
}

.top-navbar ul.navbar-nav li:first-child {
    padding-left: 0px;
}

.top-navbar ul.navbar-nav li:last-child {
    border-right: none;
    padding-right: 0px;
}

.top-navbar ul.navbar-nav li a.nav-link {
    position: relative;
}

.top-navbar ul.navbar-nav li a.nav-link {
    padding: 0;
}

.top-navbar ul.navbar-nav li a.nav-link::after {
    content: '';
    border-bottom: 2px solid transparent;
    height: 3px;
    width: 0%;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.5s ease-in-out;
}

.top-navbar .navbar-expand-lg .navbar-nav .nav-link.active {
    color: var(--small-text-light);
    position: relative;
    font-weight: 700;
}

.top-navbar .navbar-expand-lg .navbar-nav .nav-link {
    color: var(--small-text-light);
    font-size: 16px;
    font-weight: 400;
    position: relative;
    text-transform: uppercase;
}

.top-navbar .navbar-expand-lg .navbar-nav .nav-link.calling-btn {
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.top-navbar .navbar-expand-lg .navbar-nav .nav-link.calling-btn i {
    font-size: 13px;
    height: 30px;
    width: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 3px;
    background: #7d7d7d;
    color: #fff;
}

.top-navbar.sticky .navbar-expand-lg .navbar-nav .nav-link {
    color: var(--white);
}

.top-navbar .navbar-expand-lg .navbar-nav .nav-link:hover {
    color: var(--secondary-dark);
}

.top-navbar.sticky .navbar-expand-lg .navbar-nav .nav-link:hover {
    color: var(--white);
}

header.top-navbar.loggedIn .loginBtn-cntn {
    display: flex;
    align-items: center;
    gap: 19px;
}
.menu-item-has-children ul.sub-menu {
    position: absolute;
    background: #222629;
    padding: 12px 0px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    min-width: 214px;
    transform: translate(0px, 45px);
}
.menu-item-has-children:hover ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(0px, 8px);
}
.top-navbar.sticky ul.navbar-nav li{
    color: var(--white);
}
.menu-item-has-children ul.sub-menu li:not(:last-child) {
    border-bottom: 1px solid #999999;
}
.menu-item-has-children ul.sub-menu li, .menu-item-has-children ul.sub-menu li:first-child {
    margin: 0;
    padding: 4px 10px;
}
.menu-item-has-children ul.sub-menu li:last-child{
    margin: 0;
}
.menu-item-has-children ul.sub-menu li {
    color: #fff;
}
.top-navbar li a:hover {
    color: var(--secondary-dark);
}
.menu-item-has-children{
    position: relative;
}
.top-navbar .menu-item-has-children::after {
    font: normal normal normal 14px / 1 FontAwesome;
    content: "\f107";
    height: 6px;
    width: 6px;
    color: #000000;
    position: absolute;
    top: 8px;
    right: -10px;
}
.top-navbar.sticky .menu-item-has-children::after{
    color: var(--white);
}

.navbar-toggler {
    border: none;
}
nav.navbar .navbar-nav {
    align-items: center;
}
/* top navbar end */

/* hero banner start */
.hero-banner {
    background: url('../images/banner-bg-new.png')no-repeat;
    background-position: center;
    background-size: cover;
    color: var(--black);
}

.hero-banner-main {
    display: flex;
    align-items: center;
    gap: 30px;
    min-height: 100vh;
}

.hero-banner-cntn {
    align-self: center;
    padding: 30px 0px;
    max-width: 500px;
}

.hero-banner-cntn h4 {
    font-size: 37px;
    color: var(--small-text-light);
}

.hero-banner-cntn h1 {
    font-weight: 900;
    margin: 10px 0 0 0;
    color: var(--text-light);
}

.hero-banner-cntn p {
    margin: 0px 0px 25px 0px;
    color: var(--small-text-light);
}

/* hero banner end */


/* footer start */
footer.footer {
    background: var(--dark-bg);
    padding: 80px 0px;
    color: var(--white);
    overflow: hidden;
}
section{
    overflow: hidden;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.footer-left {
    padding-right: 25px;
}

.footer-left img {
    max-width: 330px;
}

.footer-right {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.footer-right .footer-nav:nth-child(2) ul {
    max-width: 292px;
}
.footer-right h4 {
    margin-bottom: 25px;
    padding-bottom: 15px;
    line-height: 36px;
    font-size: 24px;
    color: var(--secondary-dark);
    font-weight: 600;
    position: relative;
}

.footer-right h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0px;
    height: 1px;
    max-width: 70px;
    width: 100%;
    background-color: var(--white);
}

.footer-right .footer-nav:nth-child(1) {
    width: 50%;
}

.footer-right .footer-nav:nth-child(2) {
    flex:1;
}


.footer-nav ol.social-icons {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
}

.footer-nav .ftr-social {
    background: var(--white);
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: space-evenly;
    height: 35px;
    width: 35px;
    border-radius: 50%;
}

.footer-right li,
.footer-right li a {
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    padding: 5px 0;
    transition: all 0.3s ease-in-out;
}

.footer-right li a:hover {
    color: #c78c83;
}

.footer-right li {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

p.copyright-text {
    font-size: 18px;
    line-height: 28px;
    color: var(--white);
    padding: 36px 0px;
}

.ftr-logo-cntn p {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    position: relative;
    margin: 60px 0px 30px;
    color: var(--white);
}

.copy-right {
    background-color: var(--dark-bg-900);
    text-align: center;
    color: var(--white);
}

/* footer end */

/* top sticky button start */
.fixedButon {
    display: inline-flex;
    width: 60px;
    height: 60px;
    text-align: center;
    background-color: var(--secondary-dark);
    color: var(--white);
    align-items: center;
    border: 2px solid #fff;
    justify-content: center;
    border-radius: 50%;
    font-size: 25px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.fixedButon:hover {
    background: var(--secondary-dark-600);
}

.fixedButon:active {
    background-color: #555;
}

.fixedButon.StickyButton {
    opacity: 1;
    visibility: visible;
}

.fixedButon img {
    width: 100%;
}

.fixedButon:hover {
    cursor: pointer;
}
p.big-pera {
    font-size: 22px;
    line-height: 36px;
}
/* top sticky button end */

button.owl-prev {
    position: relative;
    left: -34px;
}

button.owl-next {
    position: relative;
    right: -34px;
}


/* about us start */
.about-us {
    background-color: var(--secondary-light);
    position: relative;
}

.about-right {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 50%;
    height: 100%;
    width: 100%;
}

.about-left {
    padding: 130px 70px 130px 0px;
}

.about-left a.globalBtnDark {
    margin-top: 15px;
}

.about-left p {
    margin: 25px 0px;
}

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

.about-left h2 {
    color: var(--text-light);
}

/* about us start */
/* why choose us start */
.why-choose-us {
    padding: 70px 0px;
}
.why-choose-us h2.text-capscase{
    margin-bottom: 40px;
    color: var(--text-light);
    text-align: center;
}
.why-choose-item {
    display: flex;
    background-color:#FFF9F4;
}
.choos-item-thumb, .choos-item-cntn {
    width: 50%;
}
.choos-item-thumb img{
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.why-choose-us .why-choose-item:nth-child(odd){
    flex-direction: row-reverse;
}
.choos-item-cntn {
    padding: 30px 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.choos-item-cntn h2{
    color: var(--text-light);
}
.choos-item-cntn p {
    font-size: 24px;
    line-height: 29px;
    margin: 20px 0px;
}

/* why choose us end */
/* our project start */
.our-project {
    padding: 80px 0px;
    text-align: center;
}
.our-project-item img{
    width: 100%;
    object-fit: cover;
    transition: 0.3s;
}
.our-project-item {
    position: relative;
    margin: 10px 0px;
    transition: 0.3s;
    overflow: hidden;
}
.our-project-item:hover img {
    transform: scale(1.2);
}
.project-title {
    position: absolute;
    bottom: -100%;
    width: calc(100% - 100px);
    text-align: center;
    color: #fff;
    transition: 0.3s;
}
.project-title a {
    background:#00000085;
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
}
.project-title a::after {
    position: absolute;
    right: 0;
    background: #00000085;
    content: '';
    clip-path: polygon(100% 0, 0 0, 0 55%);
    height: 44px;
    width: 40px;
    transform:translate(40px, 0px);
    transition: 0.5s;
}
.project-title a::before {
    position: absolute;
    right: 0;
    background: #00000085;
    content: '';
    clip-path: polygon(100% 100%, 0 100%, 0 50%);
    height: 44px;
    width: 40px;
    transform:translate(40px, 0px);
    transition: 0.5s;
}

.our-project-item .project-title {
    top: 30px;
    transition: 0.3s;
}
.our-project-item:hover .project-title a, .our-project-item:hover .project-title a::after, .our-project-item:hover .project-title a::before{
    background-color: #000;
}

.our-project h2 {
    margin-bottom: 40px;
    color: var(--text-light);
}
.our-project-view-more{
    text-align: center;
    margin-top: 35px;
}
/* our project end */
/* our video start */
button.btn-close {
    position: absolute;
    right: 0;
    transform: translate(33px, -24px);
    background-color: #fff;
    opacity: 1;
    border-radius: 50px;
    padding: 10px;
}
.our-video{
    position: relative;
}
.our-video img.main-thumbnail {
    width: 100%;
    max-height: 700px;
    object-fit: cover;
}
.our-video .video-play-btn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
video::-webkit-media-controls {
    display: none !important;
  }
  .our-video video {
    height: 700px;
    width: 100%;
    object-fit: cover;
}
.portfolio-video-section video {
	 height: 600px;
    width: 100%;
    object-fit: cover;
}
/* our video end */

/* shine animation  */

.shine {
    position: relative;
    overflow: hidden;
}

.shine::before {
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    content: "";
    display: block;
    height: 100%;
    left: -96%;
    position: absolute;
    top: 0;
    transform: skewX(-25deg);
    width: 50%;
    z-index: 2;
}

.shine:hover::before,
.shine:focus::before {
    -webkit-animation: shine 0.85s;
    animation: shine 0.85s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/* inner global header start */
.main-global-header {
    text-align: center;
}

.main-global-header ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-global-header h1 {
    color: var(--text-light);
    margin-top: 0px;
    text-transform: uppercase;
    font-size: 80px;
}

.main-global-header .inner-global {
    padding: 80px 0px;
    border-bottom: 1px solid #a1a1a1;
}

.main-global-header ul li {
    padding: 0px 12px;
    position: relative;
    text-transform: uppercase;
    font-weight: 700;
}

.main-global-header ul li:not(:last-child)::after {
    content: '';
    position: absolute;
    height: 4px;
    width: 4px;
    background-color: #a7a7a7;
    right: -6px;
    border-radius: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* inner global header end */

/* our company start */
.our-company .container .row:nth-child(even) {
    flex-direction: row-reverse;
    margin-top: 60px;
    align-items: start;
}

.our-company .container .row:nth-child(even) .design-content {
    padding-left: 0px;
}

.design-thumb img {
    max-width: 100%;
    object-fit: cover;
}
.our-company {
    padding: 80px 0px;
}
.design-content {
    padding: 0px 50px;
}
.our-company .row {
    align-items: center;
}

.our-company .container .row:nth-child(even) p.big-pera {
    margin-top: 0px;
}

.our-company h2 {
    color: var(--text-light);
}

/* our company end */

/* contact us page start */
.contact-us-main {
    padding: 80px 0px;
}

.contact-us-main form {
    padding: 0px 40px 40px;
    background: #fff;
    border: 30px solid #FFF9F4;
    border-top: 0px;
}

.contact-us-main form button.btn.btn-primary {
    width: 100%;
    border-radius: 0px;
    margin-top: 50px;
    height: 60px;
    font-size: 18px;
    background-color: var(--secondary-dark);
    border: none;
}

/* contact us page start */
/* our works page start */
.our-work-main .our-work-item {
    margin: 20px 0px;
    position: relative;
    transition: all 0.4s ease-in-out;
}

.our-work-main a.globalBtnOutline {
    display: none;
}

.our-work-main {
    padding: 40px 0px 80px;
}

.our-work-main .our-work-item .our-work-cntn {
    margin-top: 0;
    position: absolute;
    bottom: 0;
    background: #fff;
    padding-top: 20px;
    transition: all 0.4s ease-in-out;
}

.our-work-main .our-work-item:hover .our-work-cntn {
    height: 100%;
    background: #000000be;
    display: flex;
    align-items: self-start;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    padding: 30px 40px;
    transition: all 0.4s ease-in-out;
}

.our-work-main .our-work-item:hover a.globalBtnOutline {
    display: flex;
    border-color: var(--white);
    color: var(--white);
    margin-top: 40px;
}

.our-work-main .our-work-item:hover .our-work-cntn p {
    color: var(--white);
    margin: 15px 0px;
    border-left: 1px solid #fff;
    padding-left: 20px;
}

.our-work-main .our-work-item:hover .our-work-cntn h3 {
    color: var(--white);
    border: none;
    padding: 0px;
    margin: 0px;
}

/* our works page end */

/* work details start */
.work-detais-content {
    padding: 60px 0px;
}


h6.big-header {
    font-size: 29px;
    font-weight: 400;
    line-height: 48px;
    text-align: left;
    color: var(--text-light);
}



/* work details end */
.portfolio-details {
    padding: 50px 0px;
}
.portfolio-details p {
    margin-bottom:20px;
}
.portfolio-right ul li, .portfolio-left ul li {
    font-size: 25px;
    font-weight: 500;
    line-height:35px;
    color: #7D7D7D;
    display: flex;
    align-items: baseline;
}
.portfolio-left ul li {
    position: relative;
    padding-left: 26px;
}
.portfolio-left ul li::after{
    font: normal normal normal 14px / 1 FontAwesome;
    content: "\f111";
    font-size: 17px;
    color: #c78c83;
    left: 0px;
    position: absolute;
    top: 6px;
}


.portfolio-right ul, .portfolio-left ul {
    margin-bottom: 30px;
}
.portfolio-right ul li i {
    font-size: 17px;
    color: #c78c83;
    margin-right: 10px;
}

.portfolio-details .slider:has(.slides img:first-child.active) .thumbnails img:first-child, .portfolio-details .slider:has(.slides img:nth-child(2).active) .thumbnails img:nth-child(2), .portfolio-details .slider:has(.slides img:nth-child(3).active) .thumbnails img:nth-child(3), .portfolio-details .slider:has(.slides img:nth-child(4).active) .thumbnails img:nth-child(4) {
    opacity: 1;
}


.portfolio-details .slider {
    position: relative;
    max-width:100%;
    margin-bottom:50px;
}
.portfolio-details .slides img {
    width: 100%;
    display: none;
    object-fit: cover;
    max-height: 400px;
    transition: transform 0.5s ease;
}
.portfolio-details .slides img.active{
    transition: all 0.4s ease-in-out;
}

.portfolio-details .slides img.active {
    display: block;
    transform: translateY(0);
}

.portfolio-details .thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 15px;
}

.portfolio-details .thumbnails img {
    width:24%;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.portfolio-details .thumbnails img:hover {
    opacity: 1;
}

.portfolio-details .prev, .portfolio-details .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #333;
    color: #fff;
    padding: 10px;
    border: none;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.portfolio-details .prev {
    left: 10px;
}

.portfolio-details .next {
    right: 10px;
}

.portfolio-details .prev:hover, .portfolio-details .next:hover {
    opacity: 1;
}
