/* ==========================================================
   GLOBAL HUB CONSULTING
   DIGITAL MARKETING & MEDIA AGENCY
   STYLE.CSS
========================================================== */

    /* =========================================
       GHC FOOTER
    ========================================== */
    .ghc-footer {
    	position: relative;
    	width: 100%;
    	background: #971a3d;
    	overflow: hidden;
    	color: #fff;
    	text-align: center;
    }

    /* Background illustration */
    .ghc-footer-overlay {
    	position: absolute;
    	left: 50%;
    	bottom: 0;
    	transform: translateX(-50%);
    	width: 100%;
    	height: 180px;
    	background-image: url("../img/hero-skyline.png");
    	background-repeat: no-repeat;
    	background-position: center bottom;
    	background-size: 650px auto;
    	opacity: .22;
    	pointer-events: none;
    }

    .ghc-footer-inner {
    	position: relative;
    	z-index: 2;
    	width: 100%;
    	max-width: 1200px;
    	margin: 0 auto;
    	padding: 78px 30px 34px;
    }

    /* =========================================
       TITLE
    ========================================== */
    .ghc-footer-title h2 {
    	margin: 0;
    	font-family: "Barlow", sans-serif;
    	font-size: 56px;
    	font-weight: 300;
    	line-height: 1;
    	letter-spacing: -2px;
    }

    .ghc-footer-title h2 strong {
    	font-weight: 700;
    }

    .ghc-footer-title p {
    	margin: 5px 0 0;
    	font-family: "Barlow", sans-serif;
    	font-size: 27px;
    	font-weight: 400;
    	line-height: 1.05;
    }

    .ghc-footer-title p strong {
    	font-weight: 700;
    }

    /* =========================================
       LOGO
    ========================================== */
    .ghc-footer-logo {
    	margin-top: 48px;
    }

    .ghc-footer-logo img {
    	display: block;
    	width: 285px;
    	max-width: 70%;
    	height: auto;
    	margin: 0 auto;
    }

    /* =========================================
       CONTACT
    ========================================== */
    .ghc-footer-contact {
    	display: flex;
    	align-items: center;
    	justify-content: center;
    	gap: 28px;
    	margin-top: 34px;
    }

    .ghc-footer-contact a {
    	display: inline-flex;
    	align-items: center;
    	gap: 7px;
    	color: #fff;
    	text-decoration: none;
    	font-family: "Barlow", sans-serif;
    	font-size: 20px;
    	font-weight: 400;
    	transition: opacity .25s ease;
    }

    .ghc-footer-contact a:hover {
    	opacity: .75;
    }

    .ghc-footer-contact i {
    	font-size: 21px;
    }

    /* =========================================
       ADDRESS
    ========================================== */
    .ghc-footer-address {
    	margin-top: 8px;
    }

    .ghc-footer-address-line {
    	width: 655px;
    	max-width: 90%;
    	height: 1px;
    	margin: 0 auto 8px;
    	background: rgba(255, 255, 255, .9);
    }

    .ghc-footer-address p {
    	margin: 0;
    	font-family: "Barlow", sans-serif;
    	font-size: 16px;
    	font-weight: 400;
    	line-height: 1.35;
    }

    .ghc-footer-address p+p {
    	margin-top: 1px;
    }

    /* =========================================
       TABLET
    ========================================== */
    @media (max-width: 991px) {
    	.ghc-footer-inner {
    		padding-top: 65px;
    	}

    	.ghc-footer-title h2 {
    		font-size: 48px;
    	}

    	.ghc-footer-title p {
    		font-size: 24px;
    	}

    	.ghc-footer-logo {
    		margin-top: 40px;
    	}

    	.ghc-footer-contact a {
    		font-size: 18px;
    	}
    }

    /* =========================================
       MOBILE
    ========================================== */
    @media (max-width: 767px) {
    	.ghc-footer-inner {
    		padding: 55px 20px 28px;
    	}

    	.ghc-footer-title h2 {
    		font-size: 38px;
    		letter-spacing: -1px;
    	}

    	.ghc-footer-title p {
    		font-size: 20px;
    	}

    	.ghc-footer-logo {
    		margin-top: 38px;
    	}

    	.ghc-footer-logo img {
    		width: 230px;
    		max-width: 80%;
    	}

    	.ghc-footer-contact {
    		flex-direction: column;
    		gap: 10px;
    		margin-top: 28px;
    	}

    	.ghc-footer-contact a {
    		font-size: 17px;
    	}

    	.ghc-footer-address {
    		margin-top: 18px;
    	}

    	.ghc-footer-address-line {
    		max-width: 95%;
    	}

    	.ghc-footer-address p {
    		font-size: 14px;
    		line-height: 1.4;
    	}

    	.ghc-footer-overlay {
    		height: 150px;
    		background-size: 500px auto;
    	}
    }

    /* =========================================
       SMALL MOBILE
    ========================================== */
    @media (max-width: 425px) {
    	.ghc-footer-inner {
    		padding-left: 15px;
    		padding-right: 15px;
    	}

    	.ghc-footer-title h2 {
    		font-size: 32px;
    	}

    	.ghc-footer-title p {
    		font-size: 18px;
    	}

    	.ghc-footer-logo img {
    		width: 205px;
    	}

    	.ghc-footer-address p {
    		font-size: 13px;
    	}
    }
	
/* ==========================================================
   RESET
========================================================== */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Barlow',sans-serif;

    font-size:16px;

    line-height:1.5;

    color:#000;

    background:#ffffff;

    overflow-x:hidden;

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

}


/* ==========================================================
   ROOT
========================================================== */

:root{

    --primary:#951D46;

    --secondary:#000000;

    --white:#ffffff;

    --text:#222222;

    --gray:#f8f8f8;

    --border:#ececec;

    --transition:.35s ease;

    --radius:10px;

    --container:1320px;

}


/* ==========================================================
   TYPOGRAPHY
========================================================== */

h1,
h2,
h3,
h4,
h5,
h6{

    margin:0;

    font-weight:700;

    line-height:1.1;

}

p{

    margin:0;

}

a{

    color:inherit;

    text-decoration:none;

    transition:var(--transition);

}

ul{

    margin:0;

    padding:0;

    list-style:none;

}

img{

    display:block;

    max-width:100%;

    height:auto;

}

button{

    border:none;

    outline:none;

    background:none;

    cursor:pointer;

    font-family:inherit;

}

input,
textarea{

    outline:none;

    border:none;

    font-family:inherit;

}


/* ==========================================================
   CONTAINER
========================================================== */

.container{

    max-width:var(--container);

}


/* ==========================================================
   SECTION
========================================================== */

section{

    position:relative;

    width:100%;

}


/* ==========================================================
   HEADER
========================================================== */

#header{

    transition:.45s ease;

}

#header.scrolled{

    background:#fff;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

#header.scrolled .navbar-area{

    height:72px;

}

#header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    background:#ffffff;

    border-bottom:1px solid rgba(0,0,0,.05);

}

.navbar-area{

    height:90px;

    display:flex;

    align-items:center;

   

}


/* ==========================================================
   LOGO
========================================================== */

.logo{

    display:flex;

    align-items:center;

}

.logo img{

    width:auto;

    height:58px;

}


/* ==========================================================
   MENU
========================================================== */

.main-menu{

    display:flex;
    align-items:center;
    justify-content:center;

    flex:1;

    gap:34px;
}

.main-menu li{

    position:relative;

}

.main-menu a{

    position:relative;

    display:inline-block;

    font-size:14px;

    font-weight:600;

    color:#111;

    padding:6px 0;

}


/* Animated Underline */

.main-menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-5px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.35s;

}

.main-menu a:hover::after,
.main-menu a.active::after{

    width:100%;

}

.main-menu a:hover{

    color:var(--primary);

}


/* ==========================================================
   BUTTON
========================================================== */

.header-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    padding:14px 28px;

    border-radius:100px;

    background:var(--primary);

    color:#fff;

    font-size:15px;

    font-weight:700;

    transition:.35s;

}
.header-btn{

    margin-left:10px;

    flex-shrink:0;

}
.header-btn:hover{

    background:#741537;

}


/* ==========================================================
   MOBILE
========================================================== */

.mobile-toggle{

    display:none;

    font-size:28px;

}


/* ==========================================================
   HERO
========================================================== */

#home{

    position:relative;

    width:100%;



}


/* ==========================================================
   WHAT WE DELIVER
========================================================== */

#deliver{

    position:relative;

}


/* ==========================================================
   CORE SERVICES
========================================================== */

#services{

    position:relative;

}


/* ==========================================================
   DIGITAL MARKETING
========================================================== */

#marketing{

    position:relative;

}


/* ==========================================================
   CONTENT CALENDAR
========================================================== */

#calendar{

    position:relative;

}


/* ==========================================================
   PRODUCTION
========================================================== */

#production{

    position:relative;

}


/* ==========================================================
   AI
========================================================== */

#ai{

    position:relative;

}


/* ==========================================================
   SOCIAL
========================================================== */

#social{

    position:relative;

}


/* ==========================================================
   CONTACT
========================================================== */

#contact{

    position:relative;

}


/* ==========================================================
   FOOTER
========================================================== */

footer{

    position:relative;

}


/* ==========================================================
   UTILITIES
========================================================== */

.text-primary{

    color:var(--primary);

}

.bg-primary{

    background:var(--primary);

}

.mt-100{

    margin-top:100px;

}

.mb-100{

    margin-bottom:100px;

}

.pt-100{

    padding-top:100px;

}

.pb-100{

    padding-bottom:100px;

}


/*==================================================

HERO

==================================================*/

.hero{

    position:relative;

    width:100%;

    height:60vh;

    min-height:900px;

    background:#911d47;

    overflow:hidden;

}

.hero-bg{

    position:absolute;

    inset:0;

    background:#911d47;

    z-index:1;

}

.hero-gradient{

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at top,#a82656 0%,transparent 60%);

    opacity:.45;

    z-index:2;

}

.hero .container{

    position:relative;

    z-index:20;

    height:100%;

}

.hero-inner{

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

}

.hero-logo{

    margin-bottom:60px;

    will-change:transform;

}

.hero-logo img{

    width:290px;

    display:block;

}

.hero-heading{

    display:flex;

    flex-direction:column;

    align-items:center;

}

.hero-line{

    color:#ffffff;

    text-transform:uppercase;

    line-height:.88;

    font-weight:800;

    white-space:nowrap;

    text-shadow:

    0 4px 0 rgba(0,0,0,.12),

    0 18px 30px rgba(0,0,0,.30);

}

.hero-line-1{

    font-size:108px;

    letter-spacing:-4px;

}

.hero-line-2{

    margin-top:8px;

    font-size:95px;

    letter-spacing:-4px;

}

.hero-line-3{

    margin-top:8px;

    font-size:95px;

    letter-spacing:-4px;

}

.hero-skyline{

    position:absolute;

    bottom:0;

    left:50%;

    transform:translateX(-50%);

    width:100%;

    max-width:1600px;

    z-index:10;

    pointer-events:none;

}

.hero-skyline img{

    width:50%;

    display:block;
	margin:auto;

}

/*======================================
    WHAT WE DELIVER
======================================*/

/*======================================
    WHAT WE DELIVER
======================================*/
/*======================================
    SECTION TITLE
======================================*/

.deliver-title{

    text-align:center;

    margin-bottom:90px;

}

.deliver-title h2{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:0;

    margin:0;

    font-size:72px;
    font-weight:800;
    line-height:1;

    color:#111;

}

.deliver-title .title-black{

    color:#111;

}

.deliver-title .title-box{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    margin-left:8px;

    padding:10px 18px 12px;

    background:#8c163f;

    color:#fff;

    line-height:1;

}

#deliver{
    position:relative;
    padding:120px 0;
    overflow:hidden;
}

/* Başlık */

.deliver-title{
    text-align:center;
    margin-bottom:80px;
}

/* Ana Alan */

.deliver-wrapper{
    position:relative;
}

/* Timeline */

.deliver-line{

    position:absolute;

    left:-40px;
    right:40px;

    top:50%;

    transform:translateY(-50%);

    border-top:2px dashed #222;

    z-index:1;

}

/* Başlangıç */

.line-start{

    position:absolute;

    left:-60px;
    top:50%;

    transform:translateY(-50%);

    width:24px;
    height:24px;

    background:#111;

    border-radius:50%;

    z-index:3;

}

/* Bitiş */

.line-end{

    position:absolute;

    right:-20px;
    top:50%;

    transform:translateY(-50%);

    width:0;
    height:0;

    border-top:28px solid transparent;
    border-bottom:28px solid transparent;
    border-left:28px solid #111;

    z-index:3;

}

/* Elemanlar */

.deliver-items{

    position:relative;
    z-index:5;

    display:flex;
    justify-content:space-between;
    align-items:center;

}

/* Her kutu */

.deliver-item{

    position:relative;

    width:170px;
    min-height:220px;

    display:flex;
    justify-content:center;
    align-items:center;

}

/* Daire */

.deliver-circle{

    position:absolute;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    width:108px;
    height:108px;

    border:8px solid #8c163f;
    border-radius:50%;

    background:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    transition:.35s;

    z-index:5;

}

/* Dış halka */

.deliver-circle::before{

    content:"";

    position:absolute;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    width:145px;
    height:145px;

    border:1px dashed #d7b6c2;
    border-radius:50%;

    transition:.35s;

}

/* İkon */

.deliver-circle img{

    width:54px;
    height:54px;

    object-fit:contain;

    transition:transform .35s ease;

}

/* Yazılar */

.deliver-item h3{

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    width:100%;

    font-size:22px;
    font-weight:700;
    line-height:1.05;

    text-align:center;

    color:#191919;

    transition:.35s;

}

/* Tek elemanlar (1-3-5-7) */

.deliver-item:nth-child(odd) h3{

    top:calc(50% + 75px);

}

/* Çift elemanlar (2-4-6) */

.deliver-item:nth-child(even) h3{

    bottom:calc(50% + 75px);

}

/* Hover */

.deliver-item:hover .deliver-circle{

    transform:translate(-50%,-50%) translateY(-6px);

    box-shadow:0 12px 30px rgba(140,22,63,.18);

}

.deliver-item:hover .deliver-circle::before{

    border-color:#8c163f;

    transform:translate(-50%,-50%) scale(1.04);

}

.deliver-item:hover .deliver-circle img{

    transform:scale(1.08);

}

.deliver-item:hover h3{

    color:#8c163f;

}
/*=========================================

PRELOADER

==========================================*/

#preloader{

    position:fixed;

    inset:0;

    z-index:999999;

    background:#911D47;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

}

.loader-logo{

    width:240px;

    opacity:0;

}

.loader-logo img{

    width:100%;

    display:block;

}

.loader-line{

    width:220px;

    height:3px;

    background:rgba(255,255,255,.15);

    margin-top:45px;

    overflow:hidden;

    border-radius:50px;

}

.loader-line span{

    display:block;

    width:0;

    height:100%;

    background:#fff;

}

/*==================================================
    OUR CORE SERVICES
==================================================*/

.core-services{
    position:relative;
    padding:120px 0;
    background:#f8f6f6;
    overflow:hidden;
}

.core-services .section-title{
    text-align:center;
    margin-bottom:70px;
}

.core-services .section-title h2{
    font-size:72px;
    font-weight:800;
    line-height:1;
    color:#111;
}

.core-services .section-title span{
    display:inline-block;
    padding:6px 18px 10px;
    background:#8c163f;
    color:#fff;
    line-height:1;
}

.core-services-list{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.service-item{
    display:grid;
    grid-template-columns:80px 295px 1fr;
    align-items:center;
    column-gap:28px;
}

/*-----------------------------------
    ICON
-----------------------------------*/

.service-icon{
    width:74px;
    height:74px;
    border-radius:50%;
    background:#8c163f;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.service-icon img{
    width:42px;
    height:42px;
    object-fit:contain;
}

/*-----------------------------------
    LABEL
-----------------------------------*/

.service-label{
    background:#8c163f;
    border:3px solid #111;
    border-radius:8px;
    min-height:74px;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:8px 20px;
    transition:.35s;
}

.service-label h3{
    margin:0;
    color:#fff;
    text-align:center;
    font-size:18px;
    line-height:1.18;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

/*-----------------------------------
    CONTENT
-----------------------------------*/

.service-content p{
    margin:0;
    font-size:20px;
    line-height:1.22;
    color:#202020;
}

.service-content strong{
    font-weight:800;
}

/*-----------------------------------
    HOVER
-----------------------------------*/

.service-item:hover .service-label{
    transform:translateX(10px);
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.service-item:hover .service-icon{
    transform:rotate(-8deg) scale(1.05);
    transition:.35s;
}

.service-item:hover .service-content{
    transform:translateX(10px);
    transition:.35s;
}

/*==================================================
    DIGITAL MARKETING
==================================================*/

.digital-marketing{
    position:relative;
    padding:120px 0;
    background:#f8f6f6;
    overflow:hidden;
}

/*==============================
    HEADER
==============================*/

.dm-header{
    display:flex;
    align-items:center;
    gap:25px;
    margin-bottom:70px;
}

.dm-header-icon{
    flex-shrink:0;
}

.dm-header-icon img{
    width:120px;
    display:block;
}

.dm-header-title h2{
    margin:0;
    font-size:68px;
    line-height:.95;
    font-weight:300;
    color:#111;
}

.dm-header-title h2 strong{
    font-weight:800;
}

/*==============================
    CONTENT
==============================*/

.dm-content{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:80px;
    align-items:start;
}

/*==============================
    LEFT
==============================*/

.dm-left{
    padding-top:10px;
}

.dm-left p{
    margin:0 0 34px;
    font-size:22px;
    line-height:1.45;
    color:#111;
}

.dm-left strong{
    font-weight:800;
}

.dm-intro{
    font-size:24px;
    margin-bottom:45px !important;
}

.dm-intro em{
    font-style:italic;
}

.dm-highlight{
    margin-top:45px !important;
}

/*==============================
    RIGHT
==============================*/

.dm-right{
    display:flex;
    flex-direction:column;
    gap:14px;
    padding-top:5px;
}

/*==============================
    CARD
==============================*/

.dm-card{
    height:60px;
    background:#8c163f;
    border-radius:50px;
    display:flex;
    align-items:center;
    padding:0 24px;
    transition:.35s;
    cursor:pointer;
}

.dm-card img{
    width:34px;
    height:34px;
    object-fit:contain;
    margin-right:18px;
    flex-shrink:0;
}

.dm-card span{
    color:#fff;
    font-size:17px;
    font-weight:700;
    line-height:1.1;
}

/*==============================
    HOVER
==============================*/

.dm-card:hover{
    transform:translateX(12px);
    box-shadow:0 12px 25px rgba(0,0,0,.18);
}

.dm-card:hover img{
    transform:scale(1.08);
    transition:.35s;
}

.dm-card:hover span{
    letter-spacing:.3px;
}

/*==============================
    ANIMATION PREP
==============================*/

.dm-header,
.dm-left,
.dm-card{
    will-change:transform,opacity;
}

/*==================================================
    CREATIVE CONTENT CALENDAR
==================================================*/

.creative-calendar{
    position:relative;
    padding:120px 0 30px;
    background:#f8f6f6;
    overflow:hidden;
}

/*==============================
    HEADER
==============================*/

.cc-header{
    display:flex;
    align-items:center;
    gap:25px;
    margin-bottom:70px;
}

.cc-header-icon{
    flex-shrink:0;
}

.cc-header-icon img{
    width:124px;
    display:block;
}

.cc-header-title h2{
    margin:0;
    font-size:68px;
    line-height:.95;
    font-weight:300;
    color:#111;
}

.cc-header-title h2 strong{
    font-weight:800;
}

/*==============================
    CONTENT
==============================*/

.cc-content{
    display:grid;
    grid-template-columns:1.25fr .75fr;
    gap:80px;
    align-items:center;
}

/*==============================
    LEFT
==============================*/

.cc-left p{
    margin:0;
    font-size:21px;
    line-height:1.6;
    color:#111;
}

.cc-left strong{
    font-weight:800;
}

/*==============================
    SAMPLE LINK
==============================*/

.sample-calendar{
    display:inline-flex;
    align-items:center;
    gap:14px;
    margin-top:70px;
    text-decoration:none;
    transition:.35s;
}

.sample-calendar img{
    width:28px;
    transition:.35s;
}

.sample-calendar span{
    font-size:20px;
    color:#8c163f;
    font-weight:700;
    text-decoration:underline;
}

.sample-calendar:hover{
    transform:translateX(8px);
}

.sample-calendar:hover img{
    transform:translateX(6px);
}

/*==============================
    RIGHT
==============================*/

.cc-right{
    display:flex;
    flex-direction:column;
    gap:22px;
}

/*==============================
    CARD
==============================*/

.cc-card{
    height:58px;
    border-radius:50px;
    background:#8c163f;
    display:flex;
    align-items:center;
    padding:0 26px;
    cursor:pointer;
    transition:.35s;
}

.cc-card img{
    width:34px;
    height:34px;
    object-fit:contain;
    margin-right:18px;
    flex-shrink:0;
}

.cc-card span{
    color:#fff;
    font-size:17px;
    font-weight:700;
}

/*==============================
    HOVER
==============================*/

.cc-card:hover{
    transform:translateX(10px);
    box-shadow:0 12px 25px rgba(0,0,0,.18);
}

.cc-card:hover img{
    transform:scale(1.08);
    transition:.35s;
}

/*==============================
    BOTTOM LINE
==============================*/

.section-line{
    width:100%;
    height:10px;
    background:#8c163f;
    margin-top:90px;
}

/*==============================
    PERFORMANCE
==============================*/

.cc-header,
.cc-left,
.cc-card{
    will-change:transform,opacity;
}

/*==================================================
    PRODUCTION SERVICES
==================================================*/

.production-services{
    position:relative;
    padding:120px 0 40px;
    background:#f8f6f6;
    overflow:hidden;
}

/*==============================
    HEADER
==============================*/

.ps-header{
    display:flex;
    align-items:center;
    gap:25px;
    margin-bottom:70px;
}

.ps-header-icon{
    flex-shrink:0;
}

.ps-header-icon img{
    width:82px;
    display:block;
}

.ps-header-title h2{
    margin:0;
    font-size:68px;
    line-height:.95;
    font-weight:300;
    color:#111;
}

.ps-header-title h2 strong{
    font-weight:800;
}

/*==============================
    CONTENT
==============================*/

.ps-content{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:80px;
    align-items:start;
}

/*==============================
    LEFT
==============================*/

.ps-left{
    padding-top:10px;
}

.ps-left p{
    margin:0;
    font-size:22px;
    line-height:1.55;
    color:#111;
}

.ps-left strong{
    font-weight:800;
}

/*==============================
    LINK
==============================*/

.production-link{
    display:inline-flex;
    align-items:center;
    gap:14px;
    margin-top:120px;
    text-decoration:none;
    transition:.35s;
}

.production-link img{
    width:28px;
    transition:.35s;
}

.production-link span{
    color:#8c163f;
    font-size:19px;
    font-weight:700;
    text-decoration:underline;
}

.production-link:hover{
    transform:translateX(8px);
}

.production-link:hover img{
    transform:translateX(6px);
}

/*==============================
    RIGHT
==============================*/

.ps-right{
    display:flex;
    flex-direction:column;
    gap:14px;
}

/*==============================
    CARD
==============================*/

.ps-card{
    height:54px;
    background:#8c163f;
    border-radius:40px;
    display:flex;
    align-items:center;
    padding:0 20px;
    transition:.35s;
    cursor:pointer;
}

.ps-card img{
    width:32px;
    height:32px;
    object-fit:contain;
    margin-right:16px;
    flex-shrink:0;
}

.ps-card span{
    color:#fff;
    font-size:16px;
    font-weight:700;
    line-height:1.1;
}

/*==============================
    HOVER
==============================*/

.ps-card:hover{
    transform:translateX(10px);
    box-shadow:0 10px 25px rgba(0,0,0,.18);
}

.ps-card:hover img{
    transform:scale(1.08);
    transition:.35s;
}

.ps-card:hover span{
    letter-spacing:.2px;
}

/*==============================
    PERFORMANCE
==============================*/

.ps-header,
.ps-left,
.ps-card{
    will-change:transform,opacity;
}

/*==================================================
    AI CREATIVE SOLUTIONS
==================================================*/

.ai-solutions{
    position:relative;
    padding:120px 0 40px;
    background:#f8f6f6;
    overflow:hidden;
}

/*==============================
    HEADER
==============================*/

.ai-header{
    display:flex;
    align-items:center;
    gap:25px;
    margin-bottom:70px;
}

.ai-header-icon{
    flex-shrink:0;
}

.ai-header-icon img{
    width:116px;
    display:block;
}

.ai-header-title h2{
    margin:0;
    font-size:68px;
    line-height:.95;
    font-weight:300;
    color:#111;
}

.ai-header-title h2 strong{
    font-weight:800;
}

/*==============================
    CONTENT
==============================*/

.ai-content{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:80px;
    align-items:start;
}

/*==============================
    LEFT
==============================*/

.ai-left{
    padding-top:10px;
}

.ai-left p{
    margin:0;
    font-size:22px;
    line-height:1.55;
    color:#111;
}

.ai-left strong{
    font-weight:800;
}

/*==============================
    LINK
==============================*/

.ai-link{
    display:inline-flex;
    align-items:center;
    gap:14px;
    margin-top:120px;
    text-decoration:none;
    transition:.35s;
}

.ai-link img{
    width:28px;
    transition:.35s;
}

.ai-link span{
    color:#8c163f;
    font-size:19px;
    font-weight:700;
    text-decoration:underline;
}

.ai-link:hover{
    transform:translateX(8px);
}

.ai-link:hover img{
    transform:translateX(6px);
}

/*==============================
    RIGHT
==============================*/

.ai-right{
    display:flex;
    flex-direction:column;
    gap:20px;
}

/*==============================
    CARD
==============================*/

.ai-card{
    min-height:56px;
    background:#8c163f;
    border-radius:40px;
    display:flex;
    align-items:center;
    padding:14px 22px;
    transition:.35s;
    cursor:pointer;
}

.ai-card img{
    width:34px;
    height:34px;
    object-fit:contain;
    margin-right:18px;
    flex-shrink:0;
}

.ai-card span{
    color:#fff;
    font-size:17px;
    font-weight:700;
    line-height:1.15;
}

/*==============================
    HOVER
==============================*/

.ai-card:hover{
    transform:translateX(10px);
    box-shadow:0 10px 25px rgba(0,0,0,.18);
}

.ai-card:hover img{
    transform:scale(1.08);
    transition:.35s;
}

.ai-card:hover span{
    letter-spacing:.2px;
}

/*==============================
    PERFORMANCE
==============================*/

.ai-header,
.ai-left,
.ai-card{
    will-change:transform,opacity;
}

/*==================================================
    SOCIAL MEDIA MANAGEMENT
==================================================*/

.social-management{
    position:relative;
    padding:120px 0 40px;
    background:#f8f6f6;
    overflow:hidden;
}

/*==============================
    HEADER
==============================*/

.sm-header{
    display:flex;
    align-items:center;
    gap:25px;
    margin-bottom:70px;
}

.sm-header-icon{
    flex-shrink:0;
}

.sm-header-icon img{
    width:140px;
    display:block;
}

.sm-header-title h2{
    margin:0;
    font-size:68px;
    line-height:.95;
    font-weight:300;
    color:#111;
}

.sm-header-title h2 strong{
    font-weight:800;
}

/*==============================
    CONTENT
==============================*/

.sm-content{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:80px;
    align-items:start;
}

/*==============================
    LEFT
==============================*/

.sm-left{
    padding-top:10px;
}

.sm-left p{
    margin:0;
    font-size:22px;
    line-height:1.55;
    color:#111;
}

.sm-left strong{
    font-weight:800;
}

/*==============================
    RIGHT
==============================*/

.sm-right{
    display:flex;
    flex-direction:column;
    gap:20px;
}

/*==============================
    CARD
==============================*/

.sm-card{
    min-height:56px;
    background:#8c163f;
    border-radius:40px;
    display:flex;
    align-items:center;
    padding:14px 22px;
    transition:.35s;
    cursor:pointer;
}

.sm-card img{
    width:34px;
    height:34px;
    object-fit:contain;
    margin-right:18px;
    flex-shrink:0;
}

.sm-card span{
    color:#fff;
    font-size:17px;
    font-weight:700;
    line-height:1.15;
}

/*==============================
    HOVER
==============================*/

.sm-card:hover{
    transform:translateX(10px);
    box-shadow:0 10px 25px rgba(0,0,0,.18);
}

.sm-card:hover img{
    transform:scale(1.08);
    transition:.35s;
}

.sm-card:hover span{
    letter-spacing:.2px;
}

/*==============================
    PERFORMANCE
==============================*/

.sm-header,
.sm-left,
.sm-card{
    will-change:transform,opacity;
}
/*==================================================
    FOOTER
==================================================*/

.footer{
    position:relative;
    padding:60px 0 40px;
    background:url("../img/footer-bg.webp") center center no-repeat;
    background-size:cover;
    overflow:hidden;
    min-height:760px;
}

/*==============================
    OVERLAY
==============================*/

.footer-overlay{
    position:absolute;
    inset:0;
    pointer-events:none;
    z-index:1;
}

.footer-overlay img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/*==============================
    CONTAINER
==============================*/

.footer .container{
    position:relative;
    z-index:2;
    height:100%;
}

/*==============================
    CONTENT
==============================*/

.footer-content{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    min-height:660px;
}

/*==============================
    LEFT
==============================*/

.footer-left{
    max-width:540px;
    padding-top:30px;
}

/*==============================
    TITLE
==============================*/

.footer-title{
    margin:0;
    font-size:72px;
    line-height:.95;
    font-weight:300;
    color:#111;
}

.footer-title strong{
    font-weight:800;
}

/*==============================
    SUBTITLE
==============================*/

.footer-subtitle{
    margin:30px 0 260px;
    font-size:30px;
    line-height:1.35;
    color:#111;
}

.footer-subtitle strong{
    font-weight:800;
}

.footer-subtitle em{
    font-style:italic;
}

/*==============================
    CONTACT
==============================*/

.footer-contact{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.footer-contact-item{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
}

.footer-contact-item img{
    width:30px;
    height:30px;
}

.footer-contact-item span{
    color:#111;
    font-size:22px;
    font-weight:700;
}

/*==============================
    SOCIAL
==============================*/

.footer-social{
    display:flex;
    gap:12px;
    margin-top:28px;
}

.footer-social a{
    transition:.35s;
}

.footer-social img{
    width:48px;
    height:48px;
    display:block;
}

.footer-social a:hover{
    transform:translateY(-6px);
}

/*==============================
    RIGHT
==============================*/

.footer-right{
    display:flex;
    justify-content:flex-end;
    align-items:flex-end;
    width:220px;
}

.footer-logo{
    width:110px;
    height:auto;
    display:block;
}

/*==============================
    HOVER
==============================*/

.footer-contact-item:hover span{
    color:#8c163f;
}

.footer-contact-item:hover img{
    transform:scale(1.1);
    transition:.35s;
}

/*==============================
    PERFORMANCE
==============================*/

.footer-title,
.footer-subtitle,
.footer-contact,
.footer-social,
.footer-logo{
    will-change:transform,opacity;
}

.menu-overlay{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.35);

    opacity:0;
    visibility:hidden;

    transition:.35s;

    z-index:9998;

}

.menu-overlay.active{

    opacity:1;
    visibility:visible;

}

body.menu-open{

    overflow:hidden;

}