/* ==================================================
   DAILY QATAR
   MAIN STYLE
================================================== */
/* ==================================================
   VARIABLES
================================================== */
:root {
	--dq-blue: #09a3dc;
	--dq-blue-dark: #008fc8;
	--dq-white: #f5f1f2;
	--dq-black: #000000;
	--dq-dark: #123340;
	--dq-container: 1440px;
}

/* ==================================================
   RESET
================================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: auto;
}

body {
	margin: 0;
	padding: 0;
	background: var(--dq-white);
	color: var(--dq-black);
	font-family: "Barlow", sans-serif;
	overflow-x: hidden;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
	color: inherit;
}
.shadow-gl{
    /* filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .25)); */
    /* filter: drop-shadow(0 15px 25px rgba(0, 0, 0, .3)); */
    /* filter: drop-shadow(0 10px 25px rgba(0, 0, 0, .2)); */
    /* filter: drop-shadow(0 12px 18px rgba(0, 0, 0, .4)); */
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, .25));
}	
	


/* ==================================================
   HEADER
================================================== */
#dq-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	padding: 0px 0px 0;
}

.dq-header-inner {
width: 100%;
    min-height: 61px;
    background: #08a4d8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 0 23px;
    box-shadow: 0px 6px 16px #0000006b;
}

/* LOGO */
.dq-header-logo {
	display: block;
}

.dq-header-logo img {
	width: 48px;
	height: auto;
}

/* NAV */
.dq-main-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 21px;
}

.dq-main-nav a {
	position: relative;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;

	transition:
		opacity .25s ease,
		color .25s ease,
		font-size .25s ease;
}

.dq-main-nav a:hover {
	opacity: .7;
	
	color: yellow;
}

/* ACTIVE */
.dq-main-nav a.active {
	opacity: .7;
	color: yellow;
	font-size: 16px;
}

/* CTA */
.dq-header-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 128px;
	height: 31px;
	padding: 0 18px;
	border-radius: 30px;
	background: #fff;
	color: #008ff0;
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
	transition: .25s ease;
}

.dq-header-button:hover {
	background: #000;
	color: #fff;
}

/* MOBILE BUTTON */
.dq-mobile-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 22px;
}

/* OVERLAY */
.dq-menu-overlay {
	display: none;
}

/* ==================================================
   SECTIONS
================================================== */
.dq-section {
	position: relative;
	width: 100%;
	min-height: 100vh;
	background: var(--dq-white);
}

/*
    Her section arasında 3px mavi çizgi.
*/

.dq-section-line {
	position: absolute;
	top: 0;
	left: 0;

	width: 100%;
	height: 3px;

	z-index: 20;
}

.dq-section-line span {
	position: absolute;
	top: 0;

	width: 50%;
	height: 3px;

	background: var(--dq-blue);
	transform: scaleX(0);
}

.dq-section-line span:first-child {
	left: 0;
	transform-origin: left center;
}

.dq-section-line span:last-child {
	right: 0;
	transform-origin: right center;
}
/*
    Footer da section'dan sonra geldiği için
    onun üstüne de çizgi.
*/
.dq-footer {
	position: relative;
}

/* ==================================================
   HERO
================================================== */
.dq-hero {
	min-height: 100vh;
	background: var(--dq-blue);
	overflow: hidden;
}

/* ==================================================
   MOBILE
================================================== */
@media (max-width: 991px) {
	#dq-header {
		padding: 15px 15px 0;
	}

	.dq-header-inner {
		justify-content: space-between;
		padding: 0 15px;
	}

	.dq-header-logo {
		display: block;
	}

	.dq-main-nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: min(340px, 85vw);
		height: 100vh;
		background: var(--dq-blue);
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 0;
		padding: 100px 30px 30px;
		transition: right .4s ease;
		z-index: 10001;
		overflow-y: auto;
	}

	.dq-main-nav.active {
		right: 0;
	}

	.dq-main-nav a {
		width: 100%;
		padding: 14px 0;
		border-bottom: 1px solid rgba(255, 255, 255, .25);
		font-size: 16px;
	}

	.dq-header-button {
		display: none;
	}

	.dq-mobile-toggle {
		display: block;
		position: relative;
		z-index: 10002;
	}

	.dq-menu-overlay {
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, .55);
		z-index: 10000;
		opacity: 0;
		visibility: hidden;
		transition: .3s ease;
	}

	.dq-menu-overlay.active {
		opacity: 1;
		visibility: visible;
		display: block;
	}

	body.dq-menu-open {
		overflow: hidden;
	}
}

@media (max-width: 575px) {
	#dq-header {
		padding: 10px 10px 0;
	}

	.dq-header-inner {
		min-height: 50px;
	}

	.dq-header-logo img {
		width: 42px;
	}
}

/* ==================================================
   DAILY QATAR
   HERO SECTION
================================================== */

.dq-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;

    background: #08a4d8;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* ==================================================
   HERO BACKGROUND
================================================== */

.dq-hero-bg {
    position: absolute;
    inset: 0;

    background: #08a4d8;

    z-index: 1;
}


/* ==================================================
   HERO CONTENT
================================================== */

.dq-hero-content {
    position: relative;

    z-index: 5;

    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding-bottom: 180px;

    text-align: center;
}


/* ==================================================
   HERO LOGO
================================================== */

.dq-hero-logo {
    position: relative;

    width: 170px;

    margin-bottom: 45px;

    opacity: 0;
}


.dq-hero-logo img {
    display: block;

    width: 100%;
    height: auto;
}


/* ==================================================
   HERO TITLE
================================================== */

.dq-hero-title {
    position: relative;

    overflow: hidden;
}


.dq-hero-title h1 {
    margin: 0;

    display: flex;
    flex-direction: column;

    align-items: center;

    font-family: "Barlow", sans-serif;

    font-size: clamp(55px, 5.2vw, 100px);

    line-height: .92;

    font-weight: 800;

    letter-spacing: -2px;

    color: #fff;

    text-transform: uppercase;
}


.dq-hero-title h1 span {
    display: block;

    opacity: 0;

    transform: translateY(100px);
}


/* ==================================================
   SKYLINE
================================================== */

.dq-hero-skyline {
    position: absolute;

    left: 50%;
    bottom: 0;

    width: min(920px, 70vw);

    transform: translateX(-50%);

    z-index: 4;

    opacity: 0;
}


.dq-hero-skyline img {
    display: block;

    width: 100%;
    height: auto;
}


/* ==================================================
   HERO PARALLAX LAYERS
================================================== */

.dq-hero-logo,
.dq-hero-title,
.dq-hero-skyline {
    will-change: transform;
}
/* ==================================================
   02 - MEDIA NETWORK
================================================== */
.dq-media-network {
	position: relative;
	width: 100%;
	min-height: calc(80vh - 3px);
	background: #f5f0f0;
	overflow: hidden;
}

/* ==================================================
   INNER
================================================== */
.dq-media-network-inner {
	position: relative;
	width: 100%;
	min-height: calc(80vh - 3px);
	padding: 95px 6vw 50px;
}

/* ==================================================
   TITLE
================================================== */
.dq-media-network-title {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 105px;
}

.dq-media-network-title h2 {
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0;
	font-family: "Barlow", sans-serif;
	font-size: clamp(58px, 6vw, 108px);
	line-height: .95;
	font-weight: 500;
	letter-spacing: -4px;
	color: #000;
}

/* ==================================================
   TITLE MAIN
================================================== */
.dq-media-title-main {
	display: inline-block;
	padding: 0 4px;
}

/* ==================================================
   BLUE HIGHLIGHT
================================================== */
.dq-media-title-highlight {
	position: relative;
	display: inline-block;
	margin-left: 8px;
	padding: 4px 12px 7px;
	background: #08a4d8;
	color: #000;
	font-weight: 800;
	overflow: hidden;
}
.dq-media-title-highlight-text {
	position: relative;
	z-index: 2;
}
.dq-media-title-reveal {
	position: absolute;
	inset: 0;
	background: #f5f0f0;
	transform-origin: right center;
	z-index: 3;
}
.dq-section-arrow {
	transition:
		transform .3s ease,
		background-color .3s ease;
}

.dq-section-arrow:hover {
	transform: scale(1.1);
}
/* GSAP başlangıç durumu */
.dq-media-title-highlight::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #f5f0f0;
	transform-origin: right center;
}

/* ==================================================
   TOP RIGHT ARROW
================================================== */
.dq-section-arrow {
	position: absolute;
	top: 68px;
	right: 7.5vw;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 5;
}

.dq-section-arrow span {
	position: relative;
	width: 20px;
	height: 5px;
	background: #fff;
	border-radius: 5px;
}

.dq-section-arrow span::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -1px;
	width: 10px;
	height: 10px;
	border-top: 5px solid #fff;
	border-right: 5px solid #fff;
	transform: translateY(-50%) rotate(45deg);
}

/* ==================================================
   CONTENT
================================================== */
.dq-media-network-content {
	position: absolute;
	left: 50%;
	top: 70%;
	transform: translate(-50%, -50%);
	width: min(1100px, 85%);
	text-align: center;
}

.dq-media-network-content p {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(30px, 3vw, 54px);
	line-height: 1.15;
	font-weight: 400;
	letter-spacing: -1.5px;
	color: #000;
}

.dq-media-network-content p+p {
	margin-top: 2px;
}

.dq-media-network-content strong {
	font-weight: 700;
	font-style: italic;
}
/*==================================================
    WHY US
===================================================*/
.why-us {
	position: relative;
	background: #f4eeee;
	padding: 100px 0 120px;
	overflow: hidden;
}

/*==================================================
    TITLE
===================================================*/
.why-us-title {
	margin-bottom: 85px;
}

.why-us-title h2 {
	margin: 0;
	font-size: clamp(48px, 5vw, 76px);
	line-height: 1;
	font-weight: 500;
	letter-spacing: -3px;
	color: #000;
}

.why-us-title h2 span {
	display: inline-block;
	margin-left: 12px;
	padding: 8px 18px 10px;
	background: #09a5dc;
	font-weight: 800;
	letter-spacing: -3px;
	color: #f4eeee;
}

/*==================================================
    CONTENT
===================================================*/
.why-us-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 100px;
	align-items: stretch;
}

/*==================================================
    COLUMNS
===================================================*/
.why-us-column {
	position: relative;
}

.why-us-left {
	padding-right: 20px;
}

.why-us-right {
	padding-left: 20px;
}

/*==================================================
    VERTICAL LINE
===================================================*/
.why-us-line {
	position: relative;
	height: 100%;
	padding-left: 30px;
	border-left: 3px solid #111;
}

/*==================================================
    ITEM
===================================================*/
.why-us-item {
	position: relative;
	margin-bottom: 38px;
}

.why-us-item:last-child {
	margin-bottom: 0;
}

/*==================================================
    DOT
===================================================*/
.why-us-dot {
	position: absolute;
	left: -43px;
	top: 18px;
	width: 22px;
	height: 22px;
	background: #09a5dc;
	border-radius: 50%;
	z-index: 2;
}

/*==================================================
    ITEM CONTENT
===================================================*/
.why-us-item-content {
	position: relative;
}

.why-us-item h3 {
	display: inline-block;
	margin: 0 0 8px;
	padding: 7px 14px 8px;
	background: #09a5dc;
	border-radius: 9px;
	color: #fff;
	font-size: clamp(21px, 1.7vw, 30px);
	line-height: 1.15;
	font-weight: 700;
	letter-spacing: -1px;
}

.why-us-item p {
	max-width: 700px;
	margin: 0;
	color: #000;
	font-size: clamp(18px, 1.45vw, 25px);
	line-height: 1.45;
	font-weight: 500;
	letter-spacing: -0.5px;
}

/*==================================================
    PARTNERS
===================================================*/
.why-us-partners {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 15px;
}

.why-us-partners img {
	display: block;
	width: auto;
	height: 82px;
	object-fit: contain;
	background: #fff;
}

/*==================================================
    SECTION LINE
===================================================*/
.why-us .section-line {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 3px;
	background: #09a5dc;
}

/*==================================================
    TABLET
===================================================*/
@media (max-width: 991.98px) {
	.why-us {
		padding: 80px 0 100px;
	}

	.why-us-title {
		margin-bottom: 60px;
	}

	.why-us-title h2 {
		font-size: 52px;
	}

	.why-us-content {
		column-gap: 50px;
	}

	.why-us-left {
		padding-right: 10px;
	}

	.why-us-right {
		padding-left: 10px;
	}

	.why-us-line {
		padding-left: 25px;
	}

	.why-us-dot {
		left: -37px;
		width: 19px;
		height: 19px;
	}

	.why-us-item h3 {
		font-size: 21px;
	}

	.why-us-item p {
		font-size: 18px;
	}

	.why-us-partners {
		gap: 8px;
	}

	.why-us-partners img {
		height: 65px;
	}
}

/*==================================================
    MOBILE
===================================================*/
@media (max-width: 767.98px) {
	.why-us {
		padding: 60px 0 80px;
	}

	/* TITLE */
	.why-us-title {
		margin-bottom: 50px;
	}

	.why-us-title h2 {
		font-size: 40px;
		line-height: 1.05;
		letter-spacing: -2px;
	}

	.why-us-title h2 span {
		margin-left: 0;
		margin-top: 8px;
		padding: 7px 14px 8px;
		letter-spacing: -2px;
	}

	/* CONTENT */
	.why-us-content {
		display: block;
	}

	/* COLUMNS */
	.why-us-left,
	.why-us-right {
		padding: 0;
	}

	.why-us-right {
		margin-top: 55px;
	}

	/* LINE */
	.why-us-line {
		padding-left: 25px;
		border-left-width: 2px;
	}

	/* ITEM */
	.why-us-item {
		margin-bottom: 32px;
	}

	/* DOT */
	.why-us-dot {
		left: -34px;
		top: 12px;
		width: 17px;
		height: 17px;
	}

	/* TITLE */
	.why-us-item h3 {
		font-size: 20px;
		line-height: 1.15;
		letter-spacing: -0.5px;
		padding: 7px 11px 8px;
		border-radius: 8px;
	}

	/* TEXT */
	.why-us-item p {
		font-size: 17px;
		line-height: 1.4;
		letter-spacing: 0;
	}

	/* PARTNERS */
	.why-us-partners {
		gap: 8px;
		margin-top: 12px;
	}

	.why-us-partners img {
		height: 55px;
	}
}

/*==================================================
    SMALL MOBILE
===================================================*/
@media (max-width: 479.98px) {
	.why-us {
		padding: 50px 0 70px;
	}

	.why-us-title h2 {
		font-size: 34px;
	}

	.why-us-item h3 {
		font-size: 18px;
	}

	.why-us-item p {
		font-size: 16px;
	}

	.why-us-line {
		padding-left: 20px;
	}

	.why-us-dot {
		left: -30px;
		width: 15px;
		height: 15px;
	}

	.why-us-partners img {
		height: 48px;
	}
}
/*==================================================
    04. DQ SERVICES
===================================================*/
.dq-services {
	position: relative;
	width: 100%;
	min-height: 100vh;
	padding: 95px 0 115px;
	background: #f4eeee;
	overflow: hidden;
}

/*==================================================
    LAYOUT
===================================================*/
.dq-services-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 80px;
}

/*==================================================
    TOP ARROW
===================================================*/
.dq-services-arrow {
	position: absolute;
	top: 72px;
	right: 5.5%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000;
	color: #fff;
	border-radius: 50%;
	font-size: 23px;
	z-index: 5;
}

/*==================================================
    LEFT
===================================================*/
.dq-services-left {
	padding-left: 45px;
}

/*==================================================
    TITLE
===================================================*/
.dq-services-title {
	display: flex;
	align-items: center;
	gap: 22px;
	margin-bottom: 30px;
}

.dq-services-title h2 {
	display: flex;
	align-items: center;
	margin: 0;
	font-size: clamp(60px, 6vw, 105px);
	line-height: .9;
	font-weight: 400;
	letter-spacing: -5px;
	color: #000;
}

.dq-services-title h2 span {
	display: inline-block;
	margin-right: 8px;
	font-weight: 400;
}

.dq-services-title h2 strong {
	display: inline-block;
	padding: 5px 13px 9px;
	background: #08a5dc;
	font-weight: 800;
	letter-spacing: -5px;
	color: #f4eeee;
}

/*==================================================
    TITLE ICON
===================================================*/
.dq-services-title-icon {
	position: relative;
	width: 105px;
	height: 105px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dq-services-title-icon>i {
	font-size: 68px;
	color: #111;
}

.dq-social-icon {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border: 3px solid #111;
	border-radius: 50%;
	background: #f4eeee;
	font-size: 13px;
}

.dq-social-1 {
	top: 0;
	left: 38px;
}

.dq-social-2 {
	top: 35px;
	right: 0;
}

.dq-social-3 {
	bottom: 3px;
	right: 4px;
}

/*==================================================
    DESCRIPTION
===================================================*/
.dq-services-description {
	max-width: 790px;
}

.dq-services-description p {
	margin: 0 0 42px;
	font-size: 25px;
	line-height: 1.62;
	font-weight: 400;
	letter-spacing: -.5px;
	color: #111;
}

.dq-services-description p:last-child {
	margin-bottom: 0;
}

.dq-services-description strong {
	font-weight: 800;
}

/*==================================================
    RIGHT SERVICES
===================================================*/
.dq-services-right {
	width: 100%;
	max-width: 600px;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

/*==================================================
    SERVICE PILL
===================================================*/
.dq-service-pill {
	width: 100%;
	min-height: 80px;
	padding: 10px 28px 10px 22px;
	display: flex;
	align-items: center;
	gap: 18px;
	background: #08a5dc;
	border-radius: 50px;
	    color: #f4eeee;
	font-size: 27px;
	line-height: 1.05;
	font-weight: 700;
	transition:
		transform .35s ease,
		box-shadow .35s ease;
}

.dq-service-pill:hover {
	transform: translateX(-8px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

/*==================================================
    SERVICE ICON
===================================================*/
.dq-service-icon {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dq-service-icon i {
	font-size: 39px;
	color: #f4eeee;
}

/*==================================================
    LARGE PILL
===================================================*/
.dq-service-pill-large {
	min-height: 105px;
	border-radius: 48px;
}

.dq-service-pill-large .dq-service-icon {
	align-self: center;
}

/*==================================================
    SECTION LINE
===================================================*/
.dq-services .section-line {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 3px;
	background: #08a5dc;
}

/*==================================================
    TABLET
===================================================*/
@media (max-width: 1199.98px) {
	.dq-services {
		padding: 85px 0 100px;
	}

	.dq-services-layout {
		gap: 45px;
	}

	.dq-services-left {
		padding-left: 20px;
	}

	.dq-services-title {
		gap: 12px;
	}

	.dq-services-title-icon {
		width: 75px;
		height: 75px;
	}

	.dq-services-title-icon>i {
		font-size: 52px;
	}

	.dq-services-title h2 {
		font-size: 65px;
		letter-spacing: -4px;
	}

	.dq-services-title h2 strong {
		letter-spacing: -4px;
	}

	.dq-services-description p {
		font-size: 20px;
	}

	.dq-service-pill {
		min-height: 68px;
		font-size: 21px;
	}

	.dq-service-icon {
		width: 40px;
		height: 40px;
	}

	.dq-service-icon i {
		font-size: 32px;
	}
}

/*==================================================
    MOBILE
===================================================*/
@media (max-width: 767.98px) {
	.dq-services {
		min-height: auto;
		padding: 70px 0 85px;
	}

	.dq-services-arrow {
        display: none;
	}

	.dq-services-layout {
		display: flex;
		flex-direction: column;
		gap: 45px;
	}

	.dq-services-left {
		width: 100%;
		padding-left: 0;
	}

	.dq-services-title {
		gap: 10px;
		align-items: center;
		margin-bottom: 28px;
	}

	.dq-services-title-icon {
		width: 58px;
		height: 58px;
	}

	.dq-services-title-icon>i {
		font-size: 42px;
	}

	.dq-social-icon {
		width: 21px;
		height: 21px;
		border-width: 2px;
		font-size: 9px;
	}

	.dq-social-1 {
		left: 20px;
		top: 0;
	}

	.dq-social-2 {
		right: 0;
		top: 20px;
	}

	.dq-social-3 {
		right: 0;
		bottom: 0;
	}

	.dq-services-title h2 {
		font-size: 45px;
		letter-spacing: -3px;
	}

	.dq-services-title h2 strong {
		margin-left: 2px;
		padding: 4px 9px 6px;
		letter-spacing: -3px;
	}

	.dq-services-description p {
		font-size: 18px;
		line-height: 1.5;
		margin-bottom: 30px;
	}

	.dq-services-right {
		max-width: none;
		gap: 11px;
	}

	.dq-service-pill {
		min-height: 62px;
		padding: 9px 20px;
		gap: 12px;
		font-size: 19px;
		border-radius: 40px;
	}

	.dq-service-icon {
		width: 38px;
		height: 38px;
	}

	.dq-service-icon i {
		font-size: 29px;
	}

	.dq-service-pill-large {
		min-height: 85px;
	}

	.desktop-only {
		display: none;
	}

	.dq-service-pill:hover {
		transform: none;
		box-shadow: none;
	}
}

/*==================================================
    SMALL MOBILE
===================================================*/
@media (max-width: 479.98px) {
	.dq-services {
		padding: 65px 0 75px;
	}

	.dq-services-title h2 {
		font-size: 36px;
		letter-spacing: -2px;
	}

	.dq-services-title h2 strong {
		letter-spacing: -2px;
	}

	.dq-services-title-icon {
		width: 48px;
		height: 48px;
	}

	.dq-services-title-icon>i {
		font-size: 35px;
	}

	.dq-services-description p {
		font-size: 16px;
	}

	.dq-service-pill {
		min-height: 57px;
		padding: 8px 16px;
		font-size: 16px;
	}

	.dq-service-icon {
		width: 32px;
		height: 32px;
	}

	.dq-service-icon i {
		font-size: 24px;
	}

	.dq-service-pill-large {
		min-height: 75px;
	}
}
/*==================================================
    05. STORY + STORY REPOST
===================================================*/
.dq-story-repost {
	position: relative;
	width: 100%;
	min-height: 90vh;
	padding: 110px 0 90px;
	background: #f4eeee;
	overflow: hidden;
}

/*==================================================
    TITLE
===================================================*/
.dq-story-repost-title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 40px;
	font-size: clamp(48px, 5vw, 78px);
	line-height: 1;
	font-weight: 800;
	letter-spacing: -3px;
	color: #000;
}

.dq-story-repost-title span {
	display: inline-block;
}

.dq-story-repost-title strong {
	display: inline-block;
	padding: 7px 16px 10px;
	background: #08a5dc;
	border-radius: 50px;
	font-weight: 800;
	letter-spacing: -3px;
	    color: #f4eeee;
}

/*==================================================
    CONTENT
===================================================*/
.dq-story-repost-content {
	display: grid;
	grid-template-columns:
		minmax(260px, 1fr) minmax(500px, 1.25fr) minmax(260px, 1fr);
	align-items: center;
	gap: 40px;
}

/*==================================================
    LEFT TEXT
===================================================*/
.dq-story-repost-left {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.dq-story-repost-left p {
	margin: 0;
	font-size: clamp(22px, 2vw, 30px);
	line-height: 1.4;
	font-weight: 700;
	color: #000;
}

/*==================================================
    PHONES
===================================================*/
.dq-story-repost-phones {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 25px;
}

.dq-story-phone {
	position: relative;
	width: 46%;
	max-width: 360px;
}

.dq-story-phone img {
	display: block;
	width: 100%;
	height: auto;
}

/*==================================================
    RIGHT TEXT
===================================================*/
.dq-story-repost-right {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.dq-story-repost-right p {
	margin: 0;
	font-size: clamp(22px, 2vw, 30px);
	line-height: 1.4;
	font-weight: 700;
	color: #000;
}

/*==================================================
    LEFT HAND-DRAWN ARROW
===================================================*/
.dq-story-repost-arrow-left {
	width: 180px;
	margin-top: 20px;
	margin-left: 80px;
}

.dq-story-repost-arrow-left img {
	display: block;
	width: 100%;
	height: auto;
}

/*==================================================
    RIGHT HAND-DRAWN ARROW
===================================================*/
.dq-story-repost-arrow-right {
	width: 190px;
	margin-bottom: 15px;
	margin-right: 70px;
}

.dq-story-repost-arrow-right img {
	display: block;
	width: 100%;
	height: auto;
}

/*==================================================
    SECTION LINE
===================================================*/
.dq-story-repost .section-line {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 3px;
	background: #08a5dc;
}

/*==================================================
    TABLET
===================================================*/
@media (max-width: 1199.98px) {
	.dq-story-repost {
		padding: 65px 0 80px;
	}

	.dq-story-repost-content {
		grid-template-columns:
			minmax(220px, 1fr) minmax(420px, 1.3fr) minmax(220px, 1fr);
		gap: 25px;
	}

	.dq-story-repost-title {
		font-size: 58px;
	}

	.dq-story-repost-left p,
	.dq-story-repost-right p {
		font-size: 20px;
	}

	.dq-story-repost-phones {
		gap: 15px;
	}

	.dq-story-repost-arrow-left {
		width: 140px;
		margin-left: 50px;
	}

	.dq-story-repost-arrow-right {
		width: 150px;
		margin-right: 40px;
	}
}

/*==================================================
    MOBILE
===================================================*/
@media (max-width: 767.98px) {
	.dq-story-repost {
		min-height: auto;
		padding: 55px 0 75px;
	}

	.dq-story-repost-title {
		display: block;
		margin-bottom: 35px;
		font-size: 42px;
		line-height: 1.05;
		letter-spacing: -2px;
	}

	.dq-story-repost-title strong {
		margin-top: 7px;
		padding: 6px 12px 8px;
		letter-spacing: -2px;
	}

	.dq-story-repost-content {
		display: flex;
		flex-direction: column;
		gap: 35px;
	}

	/* PHONES */
	.dq-story-repost-phones {
		order: 2;
		width: 100%;
		gap: 12px;
	}

	.dq-story-phone {
		width: 45%;
		max-width: 270px;
	}

	/* LEFT TEXT */
	.dq-story-repost-left {
		order: 1;
		width: 100%;
	}

	/* RIGHT TEXT */
	.dq-story-repost-right {
		order: 2;
		width: 100%;
	}

	.dq-story-repost-left p,
	.dq-story-repost-right p {
		font-size: 19px;
		line-height: 1.45;
	}

	.dq-story-repost-arrow-left {
		width: 130px;
		margin-top: 15px;
        margin-left: -150px;
        rotate: 113deg;
	}

	.dq-story-repost-arrow-right {
		width: 140px;
		margin: 0 auto 15px;
	}
}

/*==================================================
    SMALL MOBILE
===================================================*/
@media (max-width: 479.98px) {
	.dq-story-repost {
		padding: 45px 0 65px;
	}

	.dq-story-repost-title {
		font-size: 34px;
	}

	.dq-story-repost-title strong {
		padding: 5px 10px 7px;
	}

	.dq-story-repost-phones {
		gap: 8px;
	}

	.dq-story-phone {
		width: 47%;
	}

	.dq-story-repost-left p,
	.dq-story-repost-right p {
		font-size: 17px;
	}

	.dq-story-repost-arrow-left {
		width: 110px;
	}

	.dq-story-repost-arrow-right {
		width: 120px;
        margin-left: 190px;
        rotate: 113deg;		
	}
}
/*==================================================
    06. STORY HIGHLIGHT
===================================================*/
.dq-story-highlight {
	position: relative;
	width: 100%;
	min-height: 100vh;
	background: #f5f0f0;
	overflow: hidden;
}

.dq-story-highlight-inner {
	position: relative;
	width: 100%;
	min-height: 80vh;
	padding: 55px 5.5% 70px;
}

/*==================================================
    TITLE
===================================================*/
.dq-story-highlight-title {
	display: flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	font-size: clamp(42px, 4.5vw, 76px);
	font-weight: 800;
	line-height: .95;
	letter-spacing: -3px;
}

.dq-story-highlight-title span {
	display: block;
	color: #000;
}

.dq-story-highlight-title strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 18px 13px;
	background: #09a4dc;
	color: 	#f5f0f0;
	border-radius: 50px;
	font-weight: 800;
	white-space: nowrap;
}

/*==================================================
    CONTENT
===================================================*/
.dq-story-highlight-content {
	position: relative;
	width: 100%;
	min-height: calc(70vh - 160px);
	display: flex;
	align-items: center;
	justify-content: center;
}

/*==================================================
    TEXT
===================================================*/
.dq-story-highlight-text {
	position: relative;
	width: 48%;
	max-width: 650px;
	margin-right: 7%;
	margin-top: 20px;
	z-index: 2;
}

.dq-story-highlight-text p {
	margin: 0;
	font-size: clamp(24px, 2vw, 38px);
	line-height: 1.32;
	font-weight: 700;
	text-align: center;
	color: #000;
}

/*==================================================
    ARROW
===================================================*/
.dq-story-highlight-arrow {
	position: absolute;
	width: 220px;
	height: auto;
	right: -10px;
	bottom: -115px;
	z-index: 3;
}

.dq-story-highlight-arrow img {
	display: block;
	width: 100%;
	height: auto;
}

/*==================================================
    PHONE
===================================================*/
.dq-story-highlight-phone {
	position: relative;
	width: min(29vw, 390px);
	flex-shrink: 0;
	z-index: 2;
}

.dq-story-highlight-phone img {
	display: block;
	width: 100%;
	height: auto;
}

/*==================================================
    LARGE SCREENS
===================================================*/
@media (min-width: 1600px) {
	.dq-story-highlight-inner {
		padding-left: 5.5%;
		padding-right: 7%;
	}

	.dq-story-highlight-title {
		font-size: 78px;
	}

	.dq-story-highlight-text {
		max-width: 720px;
	}

	.dq-story-highlight-text p {
		font-size: 40px;
	}

	.dq-story-highlight-phone {
		width: 390px;
	}

	.dq-story-highlight-arrow {
		width: 240px;
		right: -20px;
		bottom: -125px;
	}
}
/*==================================================
    STORY HIGHLIGHT - TABLET / MOBILE
===================================================*/
@media (max-width: 991px) {
	.dq-story-highlight-inner {
		min-height: 100vh;
		padding: 45px 30px 60px;
	}

	/* TITLE */
	.dq-story-highlight-title {
		font-size: clamp(38px, 7vw, 58px);
		letter-spacing: -2px;
		gap: 6px;
	}

	.dq-story-highlight-title strong {
		padding: 8px 14px 10px;
	}

	/* CONTENT */
	.dq-story-highlight-content {
		min-height: auto;
		margin-top: 45px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
	}

	/* TEXT */
	.dq-story-highlight-text {
		width: 90%;
		max-width: 600px;
		margin: 0 auto 45px;
	}

	.dq-story-highlight-text p {
		font-size: clamp(22px, 3.5vw, 30px);
		line-height: 1.25;
	}

	/* PHONE */
	.dq-story-highlight-phone {
		width: min(55vw, 360px);
		margin: 0 auto;
	}

	/* ARROW */
	.dq-story-highlight-arrow {
		width: 170px;
		right: 5%;
		bottom: -70px;
	}
}

/*==================================================
    STORY HIGHLIGHT - SMALL MOBILE
===================================================*/
@media (max-width: 767px) {
	.dq-story-highlight-inner {
		min-height: 100vh;
		padding: 35px 18px 50px;
	}

	/* TITLE */
	.dq-story-highlight-title {
		font-size: clamp(34px, 10vw, 48px);
		letter-spacing: -2px;
		gap: 5px;
		flex-wrap: wrap;
	}

	.dq-story-highlight-title strong {
		padding: 7px 12px 9px;
		border-radius: 40px;
	}

	/* CONTENT */
	.dq-story-highlight-content {
		margin-top: 40px;
	}

	/* TEXT */
	.dq-story-highlight-text {
		width: 100%;
		max-width: 520px;
		margin-bottom: 40px;
	}

	.dq-story-highlight-text p {
		font-size: clamp(21px, 5.5vw, 27px);
		line-height: 1.28;
	}

	/* PHONE */
	.dq-story-highlight-phone {
		width: min(72vw, 330px);
	}

	/* ARROW */
	.dq-story-highlight-arrow {
		width: 145px;
		right: 0;
		bottom: -55px;
	}
}

/*==================================================
    STORY HIGHLIGHT - EXTRA SMALL
===================================================*/
@media (max-width: 575px) {
	.dq-story-highlight-inner {
		padding: 30px 15px 45px;
	}

	/* TITLE */
	.dq-story-highlight-title {
		font-size: clamp(30px, 9.5vw, 42px);
		letter-spacing: -1.5px;
	}

	.dq-story-highlight-title strong {
		padding: 6px 10px 8px;
	}

	/* CONTENT */
	.dq-story-highlight-content {
		margin-top: 35px;
	}

	/* TEXT */
	.dq-story-highlight-text {
		width: 100%;
		margin-bottom: 35px;
	}

	.dq-story-highlight-text p {
		font-size: clamp(19px, 5.2vw, 24px);
		line-height: 1.3;
	}

	/* PHONE */
	.dq-story-highlight-phone {
		width: min(78vw, 300px);
	}

	/* ARROW */
	.dq-story-highlight-arrow {
display:none;
	}
}
/*==================================================
    07. FEED POST
===================================================*/
.dq-feed-post {
	position: relative;
	width: 100%;
	min-height: 100vh;
	background: #f5f0f0;
	overflow: hidden;
}

.dq-feed-post-inner {
	position: relative;
	width: 100%;
	min-height: 100vh;
	padding: 55px 5.5% 70px;
}

/*==================================================
    TITLE
===================================================*/
.dq-feed-post-title {
	display: flex;
	align-items: center;
	gap: 7px;
	width: fit-content;
	font-size: clamp(42px, 4.5vw, 76px);
	font-weight: 800;
	line-height: .95;
	letter-spacing: -3px;
}

.dq-feed-post-title span {
	color: #000;
}

.dq-feed-post-title strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 18px 13px;
	background: #09a4dc;
	color: #f5f0f0;
	border-radius: 50px;
	font-weight: 800;
	white-space: nowrap;
}

/*==================================================
    CONTENT
===================================================*/
.dq-feed-post-content {
	position: relative;
	width: 100%;
	min-height: calc(100vh - 160px);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4.5%;
}

/*==================================================
    DESCRIPTION
===================================================*/
.dq-feed-post-text {
	position: relative;
	width: 30%;
	max-width: 470px;
	margin-top: 40px;
	z-index: 3;
}

.dq-feed-post-text p {
	margin: 0;
	font-size: clamp(24px, 2vw, 36px);
	line-height: 1.3;
	font-weight: 700;
	text-align: center;
	color: #000;
}

/*==================================================
    ARROW
===================================================*/
.dq-feed-post-arrow {
	position: absolute;
	width: 190px;
	height: auto;
	right: -20px;
	bottom: -135px;
	z-index: 4;
	pointer-events: none;
}

.dq-feed-post-arrow img {
	display: block;
	width: 100%;
	height: auto;
}

/*==================================================
    FEED IMAGE
===================================================*/
.dq-feed-post-image {
	position: relative;
	width: min(24vw, 390px);
	flex-shrink: 0;
	z-index: 2;
}

.dq-feed-post-image img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

/*==================================================
    PHONE
===================================================*/
.dq-feed-post-phone {
	position: relative;
	width: min(23vw, 370px);
	flex-shrink: 0;
	z-index: 2;
}

.dq-feed-post-phone img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

/*==================================================
    LARGE DESKTOP
===================================================*/
@media (min-width: 1600px) {
	.dq-feed-post-inner {
		padding-left: 5.5%;
		padding-right: 6%;
	}

	.dq-feed-post-title {
		font-size: 76px;
	}

	.dq-feed-post-text {
		width: 29%;
		max-width: 500px;
	}

	.dq-feed-post-text p {
		font-size: 38px;
	}

	.dq-feed-post-image {
		width: 390px;
	}

	.dq-feed-post-phone {
		width: 370px;
	}

	.dq-feed-post-arrow {
		width: 200px;
		right: -15px;
		bottom: -140px;
	}
}
/*==================================================
    07. FEED POST - TABLET / MOBILE
===================================================*/
@media (max-width: 991px) {
	.dq-feed-post-inner {
		min-height: 100vh;
		padding: 45px 30px 60px;
	}

	/*==================================================
	    TITLE
	===================================================*/
	.dq-feed-post-title {
		font-size: clamp(38px, 7vw, 58px);
		letter-spacing: -2px;
		gap: 6px;
	}

	.dq-feed-post-title strong {
		padding: 8px 14px 10px;
	}

	/*==================================================
	    CONTENT
	===================================================*/
	.dq-feed-post-content {
		min-height: auto;
		margin-top: 45px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		gap: 35px;
	}

	/*==================================================
	    DESCRIPTION
	===================================================*/
	.dq-feed-post-text {
		width: 85%;
		max-width: 600px;
		margin: 0 auto;
	}

	.dq-feed-post-text p {
		font-size: clamp(22px, 3.5vw, 30px);
		line-height: 1.25;
	}

	/*==================================================
	    FEED IMAGE
	===================================================*/
	.dq-feed-post-image {
		width: min(55vw, 360px);
		margin: 0 auto;
	}

	/*==================================================
	    PHONE
	===================================================*/
	.dq-feed-post-phone {
		width: min(55vw, 350px);
		margin: 0 auto;
	}

	/*==================================================
	    ARROW
	===================================================*/
	.dq-feed-post-arrow {
		width: 165px;
		right: 2%;
		bottom: -80px;
	}
}

/*==================================================
    07. FEED POST - SMALL MOBILE
===================================================*/
@media (max-width: 767px) {
	.dq-feed-post-inner {
		padding: 35px 18px 50px;
	}

	/*==================================================
	    TITLE
	===================================================*/
	.dq-feed-post-title {
		font-size: clamp(34px, 10vw, 48px);
		letter-spacing: -2px;
		gap: 5px;
		flex-wrap: wrap;
	}

	.dq-feed-post-title strong {
		padding: 7px 12px 9px;
		border-radius: 40px;
	}

	/*==================================================
	    CONTENT
	===================================================*/
	.dq-feed-post-content {
		margin-top: 40px;
		gap: 30px;
	}

	/*==================================================
	    DESCRIPTION
	===================================================*/
	.dq-feed-post-text {
		width: 100%;
		max-width: 520px;
	}

	.dq-feed-post-text p {
		font-size: clamp(21px, 5.5vw, 27px);
		line-height: 1.28;
	}

	/*==================================================
	    FEED IMAGE
	===================================================*/
	.dq-feed-post-image {
		width: min(68vw, 330px);
	}

	/*==================================================
	    PHONE
	===================================================*/
	.dq-feed-post-phone {
		width: min(70vw, 330px);
	}

	/*==================================================
	    ARROW
	===================================================*/
	.dq-feed-post-arrow {
		width: 145px;
		right: 0;
		bottom: -60px;
	}
}

/*==================================================
    07. FEED POST - EXTRA SMALL
===================================================*/
@media (max-width: 575px) {
	.dq-feed-post-inner {
		padding: 30px 15px 45px;
	}

	/*==================================================
	    TITLE
	===================================================*/
	.dq-feed-post-title {
		font-size: clamp(30px, 9.5vw, 42px);
		letter-spacing: -1.5px;
		gap: 4px;
	}

	.dq-feed-post-title strong {
		padding: 6px 10px 8px;
	}

	/*==================================================
	    CONTENT
	===================================================*/
	.dq-feed-post-content {
		margin-top: 35px;
		gap: 25px;
	}

	/*==================================================
	    DESCRIPTION
	===================================================*/
	.dq-feed-post-text {
		width: 100%;
	}

	.dq-feed-post-text p {
		font-size: clamp(19px, 5.2vw, 24px);
		line-height: 1.3;
	}

	/*==================================================
	    FEED IMAGE
	===================================================*/
	.dq-feed-post-image {
		width: min(72vw, 300px);
	}

	/*==================================================
	    PHONE
	===================================================*/
	.dq-feed-post-phone {
		width: min(76vw, 300px);
	}

	/*==================================================
	    ARROW
	===================================================*/
	.dq-feed-post-arrow {
display:none;
	}
}
/* =========================================================
   CAROUSEL POST
========================================================= */

#carousel-post {
    position: relative;
    overflow: hidden;
    background: #f5f1f1;

}

.dq-carousel-post-inner {
    position: relative;
    width: 100%;
    min-height: 110vh;
}


/* =========================================================
   TITLE
========================================================= */

.dq-carousel-post-title {
    position: absolute;
    top: 55px;
    left: 5.8%;

    display: flex;
    align-items: center;
    gap: 14px;

    font-size: clamp(42px, 4vw, 72px);
    font-weight: 800;
    line-height: 1;

    white-space: nowrap;
}

.dq-carousel-post-title span {
    display: inline-block;

    padding: 9px 20px 11px;

    background: #009fe3;
    border-radius: 60px;
	color: #f5f1f1;
}


/* =========================================================
   TEXT + ARROW
========================================================= */

.dq-carousel-post-content {
    position: absolute;

    left: 4.5%;
    top: 51%;

    width: 29%;

    transform: translateY(-50%);
}

.dq-carousel-post-text {
    width: 100%;

    font-size: clamp(20px, 1.65vw, 32px);
    font-weight: 700;
    line-height: 1.38;

    text-align: center;
}

.dq-carousel-post-arrow {
    display: block;

    width: 190px;
    height: auto;

    margin: 35px auto 0;
}


/* =========================================================
   CAROUSEL POSTS
========================================================= */

.dq-carousel-post-slides {
    position: absolute;

    left: 34%;
    top: 51%;

    display: flex;
    align-items: center;

    gap: 38px;

    transform: translateY(-50%);
}

.dq-carousel-post-slide {
    display: block;

    width: clamp(190px, 15.5vw, 275px);
    height: auto;

    flex-shrink: 0;
}


/* =========================================================
   PHONE
========================================================= */

.dq-carousel-post-phone {
    position: absolute;

    right: 6.5%;
    top: 50%;

    transform: translateY(-50%);
}

.dq-carousel-post-phone img {
    display: block;

    width: clamp(270px, 20vw, 370px);
    height: auto;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1600px) {

    .dq-carousel-post-title {
        left: 5.8%;
        top: 105px;
    }

    .dq-carousel-post-content {
        left: 4.5%;
        width: 28%;
    }

    .dq-carousel-post-slides {
        left: 33.5%;
        gap: 40px;
    }

    .dq-carousel-post-slide {
        width: 275px;
    }

    .dq-carousel-post-phone {
        right: 13.5%;
    }

    .dq-carousel-post-phone img {
        width: 370px;
    }
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1399px) {

    .dq-carousel-post-title {
        left: 5%;
        top: 50px;
    }

    .dq-carousel-post-content {
        left: 4%;
        width: 28%;
    }

    .dq-carousel-post-slides {
        left: 34%;
        gap: 28px;
    }

    .dq-carousel-post-slide {
        width: 220px;
    }

    .dq-carousel-post-phone {
        right: 4%;
    }

    .dq-carousel-post-phone img {
        width: 300px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .dq-carousel-post-inner {
        min-height: auto;

        padding: 70px 40px 80px;

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .dq-carousel-post-title {
        position: relative;

        top: auto;
        left: auto;

        margin-bottom: 60px;
    }

    .dq-carousel-post-content {
        position: relative;

        top: auto;
        left: auto;

        width: min(90%, 600px);

        transform: none;

        margin-bottom: 50px;
    }

    .dq-carousel-post-slides {
        position: relative;

        left: auto;
        top: auto;

        transform: none;

        gap: 25px;

        margin-bottom: 60px;
    }

    .dq-carousel-post-slide {
        width: min(32vw, 240px);
    }

    .dq-carousel-post-phone {
        position: relative;

        top: auto;
        right: auto;

        transform: none;
		justify-content: center;
        display: grid;
    }

    .dq-carousel-post-phone img {
        width: min(55vw, 320px);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .dq-carousel-post-inner {
        padding: 50px 20px 60px;
    }

    .dq-carousel-post-title {
        font-size: clamp(34px, 9vw, 48px);

        gap: 8px;
    }

    .dq-carousel-post-title span {
        padding: 7px 14px 9px;
    }

    .dq-carousel-post-content {
        width: 100%;

        margin-bottom: 40px;
    }

    .dq-carousel-post-text {
        font-size: 20px;
        line-height: 1.35;
    }

    .dq-carousel-post-arrow {
      display:none;
    }

    .dq-carousel-post-slides {
        gap: 12px;

        width: 100%;
        justify-content: center;

        margin-bottom: 45px;
    }

    .dq-carousel-post-slide {
        width: calc(50% - 8px);
        max-width: 210px;
    }

    .dq-carousel-post-phone img {
        width: min(75vw, 300px);
    }
}
/* =====================================================
   09 - REEL
====================================================== */
#reel {
	position: relative;
	overflow: hidden;
}

.dq-reel-inner {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 100vh;
}

/* =====================================================
   TITLE
====================================================== */
.dq-reel-title {
    position: absolute;
    top: 25%;
    left: 27.5%;
    z-index: 5;
}

.dq-reel-title span {
    display: inline-block;
    padding: 8px 24px 10px;
    background: #0aa4dc;
    border-radius: 50px;
    font-size: clamp(42px, 4vw, 72px);
    font-weight: 800;
    line-height: 1;
    color: #f5f1f2;
}

/* =====================================================
   CONTENT
====================================================== */
.dq-reel-content {
	position: absolute;
	left: 23%;
	top: 42%;
	width: 390px;
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 4;
}

.dq-reel-text {
	width: 100%;
	font-size: clamp(24px, 2vw, 34px);
	font-weight: 700;
	line-height: 1.05;
	text-align: center;
}

/* =====================================================
   BLUE ARROW
====================================================== */
.dq-reel-arrow {
	display: block;
	width: 180px;
	height: auto;
	margin-top: 35px;
	transform-origin: center center;
}

/* =====================================================
   PHONE
====================================================== */
.dq-reel-phone {
	position: absolute;
	right: 31%;
	top: 14%;
	width: 390px;
	z-index: 3;
}

/* =====================================================
   VIDEO SCREEN
====================================================== */
.dq-reel-screen {
	position: absolute;
	top: 1.86%;
	left: 5.0%;
	width: 89.6%;
	height: 86.5%;
	overflow: hidden;
	border-radius: 40px 40px 0px 0px;
	z-index: 3;
	background: #000;
}

.dq-reel-video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* =====================================================
   PHONE FRAME
====================================================== */
.dq-reel-phone-frame {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	z-index: 2;
	pointer-events: none;
}
/* =====================================================
   TABLET / SMALL LAPTOP
====================================================== */
@media (max-width: 1199.98px) {
	.dq-reel-title {
		top: 8%;
		left: 5%;
	}

	.dq-reel-title span {
		padding: 7px 20px 9px;
		font-size: clamp(38px, 4.5vw, 58px);
	}

	.dq-reel-content {
		left: 12%;
		top: 43%;
		width: 330px;
	}

	.dq-reel-text {
		font-size: 25px;
		line-height: 1.08;
	}

	.dq-reel-arrow {
		width: 155px;
		margin-top: 30px;
	}

	.dq-reel-phone {
		right: 20%;
		top: 12%;
		width: 340px;
	}

	.dq-reel-screen {
		top: 1.86%;
		left: 5%;
		width: 89.6%;
		height: 86.5%;
		border-radius: 35px 35px 0 0;
	}
}

/* =====================================================
   TABLET
====================================================== */
@media (max-width: 991.98px) {
	.dq-reel-inner {
		min-height: 900px;
	}

	.dq-reel-title {
		top: 6%;
		left: 6%;
	}

	.dq-reel-title span {
		padding: 7px 18px 9px;
		font-size: 48px;
	}

	.dq-reel-content {
		left: 6%;
		top: 48%;
		width: 310px;
	}

	.dq-reel-text {
		font-size: 22px;
		line-height: 1.12;
	}

	.dq-reel-arrow {
		width: 140px;
		margin-top: 28px;
	}

	.dq-reel-phone {
		right: 8%;
		top: 12%;
		width: 310px;
	}

	.dq-reel-screen {
		top: 1.86%;
		left: 5%;
		width: 89.6%;
		height: 86.5%;
		border-radius: 31px 31px 0 0;
	}
}

/* =====================================================
   MOBILE
====================================================== */
@media (max-width: 767.98px) {
	.dq-reel-inner {
		min-height: auto;
		padding: 55px 20px 75px;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	/* -----------------------------------------------------
	   TITLE
	----------------------------------------------------- */
	.dq-reel-title {
		position: relative;
		top: auto;
		left: auto;
		align-self: flex-start;
		margin-bottom: 40px;
	}

	.dq-reel-title span {
		padding: 7px 17px 9px;
		font-size: 42px;
	}

	/* -----------------------------------------------------
	   PHONE
	----------------------------------------------------- */
	.dq-reel-phone {
		position: relative;
		right: auto;
		top: auto;
		width: min(75vw, 330px);
		order: 1;
		margin: 0 auto 45px;
	}

	.dq-reel-screen {
		top: 1.86%;
		left: 5%;
		width: 89.6%;
		height: 86.5%;
		border-radius: 33px 33px 0 0;
	}

	/* -----------------------------------------------------
	   CONTENT
	----------------------------------------------------- */
	.dq-reel-content {
		position: relative;
		left: auto;
		top: auto;
		width: 100%;
		order: 2;
		margin: 0 auto;
	}

	.dq-reel-text {
		max-width: 390px;
		font-size: 20px;
		line-height: 1.3;
	}

	/* -----------------------------------------------------
	   ARROW
	----------------------------------------------------- */
	.dq-reel-arrow {
		width: 135px;
		margin-top: 25px;
	}
}

/* =====================================================
   SMALL MOBILE
====================================================== */
@media (max-width: 479.98px) {
	.dq-reel-inner {
		padding: 45px 18px 65px;
	}

	.dq-reel-title {
		margin-bottom: 30px;
	}

	.dq-reel-title span {
		padding: 6px 15px 8px;
		font-size: 35px;
	}

	.dq-reel-phone {
		width: min(78vw, 300px);
		margin-bottom: 35px;
	}

	.dq-reel-screen {
		top: 1.86%;
		left: 5%;
		width: 89.6%;
		height: 86.5%;
		border-radius: 28px 28px 0 0;
	}

	.dq-reel-text {
		max-width: 320px;
		font-size: 17px;
		line-height: 1.35;
	}

	.dq-reel-arrow {
	display:none;
	}
}

/* =====================================================
   EXTRA SMALL MOBILE
====================================================== */
@media (max-width: 374.98px) {
	.dq-reel-title span {
		font-size: 31px;
	}

	.dq-reel-phone {
		width: 270px;
	}

	.dq-reel-text {
		font-size: 16px;
	}

	.dq-reel-arrow {
		width: 100px;
	}
}

/* =====================================================
   10 - REEL COLLABORATION
====================================================== */
#reel-collaboration {
	position: relative;
	overflow: hidden;
}

.dq-reel-collab-inner {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 100vh;
}

/* =====================================================
   TITLE
====================================================== */
.dq-reel-collab-title {
position: absolute;
top: 20%;
    left: 15%;
    z-index: 5;
    font-size: clamp(42px, 4vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    color: #000;
	text-align: center;
}

.dq-reel-collab-title span {
	display: inline-block;
	padding: 8px 24px 10px;
	background: #0aa4dc;
	border-radius: 50px;
	font-size: clamp(42px, 4vw, 72px);
	font-weight: 800;
	line-height: 1;
	color: #f5f1f2;
}

/* =====================================================
   CONTENT
====================================================== */
.dq-reel-collab-content {
	position: absolute;
	left: 16%;
	top: 45%;
	width: 600px;
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 4;
}

.dq-reel-collab-text {
	width: 100%;
	font-size: clamp(24px, 2vw, 34px);
	font-weight: 700;
	line-height: 1.05;
	text-align: center;
}

/* =====================================================
   BLUE ARROW
====================================================== */
.dq-reel-collab-arrow {
	display: block;
	width: 180px;
	height: auto;
	margin-top: 35px;
	transform-origin: center center;
}

/* =====================================================
   PHONE
====================================================== */
.dq-reel-collab-phone {
	position: absolute;
	right: 31%;
	top: 7%;
	width: 390px;
	z-index: 3;
}

.dq-reel-collab-phone-image {
	display: block;
	width: 100%;
	height: auto;
	user-select: none;
	pointer-events: none;
}

/* =====================================================
   RESPONSIVE
====================================================== */
/* -----------------------------------------------------
   LARGE DESKTOP
------------------------------------------------------ */
@media (max-width: 1600px) {
	.dq-reel-collab-title {
		left: 5%;
	}

	.dq-reel-collab-content {
		left: 15%;
		width: 370px;
	}

	.dq-reel-collab-phone {
		right: 25%;
		width: 380px;
	}
}

/* -----------------------------------------------------
   DESKTOP / LAPTOP
------------------------------------------------------ */
@media (max-width: 1440px) {
	.dq-reel-collab-title {
		top: 9%;
		left: 5%;
	}

	.dq-reel-collab-title span {
		padding: 7px 20px 9px;
		font-size: clamp(38px, 4vw, 60px);
	}

	.dq-reel-collab-content {
		left: 14%;
		top: 44%;
		width: 360px;
	}

	.dq-reel-collab-text {
		font-size: clamp(22px, 2vw, 30px);
	}

	.dq-reel-collab-arrow {
		width: 165px;
		margin-top: 30px;
	}

	.dq-reel-collab-phone {
		right: 24%;
		top: 8%;
		width: 360px;
	}
}

/* -----------------------------------------------------
   TABLET
------------------------------------------------------ */
@media (max-width: 1024px) {
	.dq-reel-collab-inner {
		min-height: 100vh;
	}

	.dq-reel-collab-title {
		top: 8%;
		left: 5%;
	}

	.dq-reel-collab-title span {
		padding: 7px 18px 9px;
		font-size: clamp(34px, 5vw, 52px);
	}

	.dq-reel-collab-content {
		left: 8%;
		top: 43%;
		width: 320px;
	}

	.dq-reel-collab-text {
		font-size: clamp(20px, 2.8vw, 27px);
	}

	.dq-reel-collab-arrow {
		width: 145px;
		margin-top: 28px;
	}

	.dq-reel-collab-phone {
		right: 10%;
		top: 12%;
		width: 330px;
	}
}

/* -----------------------------------------------------
   MOBILE
------------------------------------------------------ */
@media (max-width: 767px) {
	#reel-collaboration {
		overflow: hidden;
	}

	.dq-reel-collab-inner {
		min-height: 100vh;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	/* TITLE */
	.dq-reel-collab-title {
		position: relative;
		top: auto;
		left: auto;
		width: 100%;
		padding-top: 8%;
		padding-left: 5%;
		padding-right: 5%;
	}

	.dq-reel-collab-title span {
		padding: 7px 16px 9px;
		font-size: clamp(30px, 8vw, 46px);
	}

	/* CONTENT */
	.dq-reel-collab-content {
		position: relative;
		left: auto;
		top: auto;
		width: min(88%, 380px);
		margin-top: 12%;
	}

	.dq-reel-collab-text {
		font-size: clamp(20px, 5.5vw, 28px);
		line-height: 1.08;
	}

	/* ARROW */
	.dq-reel-collab-arrow {
	display:none;
	}

	/* PHONE */
	.dq-reel-collab-phone {
		position: relative;
		right: auto;
		top: auto;
		width: min(75%, 330px);
		margin-top: 8%;
		margin-bottom: 5%;
	}
}

/* -----------------------------------------------------
   SMALL MOBILE
------------------------------------------------------ */
@media (max-width: 425px) {
	.dq-reel-collab-title {
		padding-top: 7%;
	}

	.dq-reel-collab-title span {
		padding: 6px 14px 8px;
		font-size: clamp(27px, 8vw, 38px);
	}

	.dq-reel-collab-content {
		width: 88%;
		margin-top: 10%;
	}

	.dq-reel-collab-text {
		font-size: clamp(18px, 5.3vw, 24px);
	}

	.dq-reel-collab-arrow {
		width: 115px;
		margin-top: 22px;
	}

	.dq-reel-collab-phone {
		width: min(78%, 300px);
		margin-top: 7%;
	}
}

/* -----------------------------------------------------
   VERY SMALL MOBILE
------------------------------------------------------ */
@media (max-width: 375px) {
	.dq-reel-collab-title span {
		font-size: 28px;
	}

	.dq-reel-collab-content {
		margin-top: 8%;
	}

	.dq-reel-collab-text {
		font-size: 19px;
	}

	.dq-reel-collab-arrow {
		width: 105px;
	}

	.dq-reel-collab-phone {
		width: 75%;
	}
}
/* =====================================================
   11 - REEL STORY REPOST
====================================================== */
#reel-story-repost {
	position: relative;
	overflow: hidden;
}

.dq-reel-story-repost-inner {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 100vh;
}

/* =====================================================
   TITLE
====================================================== */
.dq-reel-story-repost-title {
position: absolute;
    top: 22%;
    left: 13%;
    z-index: 5;
    font-size: clamp(42px, 4vw, 65px);
    font-weight: 800;
    line-height: 1.05;
    color: #000;
	text-align: center;
}

.dq-reel-story-repost-title span {
	display: inline-block;
	padding: 8px 22px 10px;
	background: #0aa4dc;
	border-radius: 50px;
	line-height: 1;
	color: #f5f1f2;
}

/* =====================================================
   CONTENT
====================================================== */
.dq-reel-story-repost-content {
	position: absolute;
	left: 20%;
	top: 47%;
	width: 390px;
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 4;
}

.dq-reel-story-repost-text {
	width: 100%;
	font-size: clamp(24px, 2vw, 34px);
	font-weight: 700;
	line-height: 1.05;
	text-align: center;
}

/* =====================================================
   BLUE ARROW
====================================================== */
.dq-reel-story-repost-arrow {
	display: block;
	width: 180px;
	height: auto;
	margin-top: 30px;
	transform-origin: center center;
}

/* =====================================================
   PHONE
====================================================== */
.dq-reel-story-repost-phone {
	position: absolute;
	right: 31%;
	top: 8%;
	width: 390px;
	z-index: 3;
}

.dq-reel-story-repost-phone-image {
	display: block;
	width: 100%;
	height: auto;
	user-select: none;
	pointer-events: none;
}

/* =====================================================
   LARGE DESKTOP
====================================================== */
@media (max-width: 1600px) {
	.dq-reel-story-repost-content {
		left: 19%;
		width: 370px;
	}

	.dq-reel-story-repost-phone {
		right: 25%;
		width: 380px;
	}
}

/* =====================================================
   DESKTOP / LAPTOP
====================================================== */
@media (max-width: 1440px) {
	.dq-reel-story-repost-title {
		top: 9%;
		left: 5%;
	}

	.dq-reel-story-repost-title {
		font-size: clamp(38px, 4vw, 60px);
	}

	.dq-reel-story-repost-title span {
		padding: 7px 20px 9px;
	}

	.dq-reel-story-repost-content {
		left: 18%;
		top: 46%;
		width: 360px;
	}

	.dq-reel-story-repost-text {
		font-size: clamp(22px, 2vw, 30px);
	}

	.dq-reel-story-repost-arrow {
		width: 165px;
		margin-top: 28px;
	}

	.dq-reel-story-repost-phone {
		right: 24%;
		top: 8%;
		width: 360px;
	}
}

/* =====================================================
   TABLET
====================================================== */
@media (max-width: 1024px) {
	.dq-reel-story-repost-title {
		top: 8%;
		left: 5%;
		font-size: clamp(34px, 5vw, 52px);
	}

	.dq-reel-story-repost-title span {
		padding: 7px 18px 9px;
	}

	.dq-reel-story-repost-content {
		left: 8%;
		top: 44%;
		width: 320px;
	}

	.dq-reel-story-repost-text {
		font-size: clamp(20px, 2.8vw, 27px);
	}

	.dq-reel-story-repost-arrow {
		width: 145px;
		margin-top: 26px;
	}

	.dq-reel-story-repost-phone {
		right: 10%;
		top: 12%;
		width: 330px;
	}
}

/* =====================================================
   MOBILE
====================================================== */
@media (max-width: 767px) {
	#reel-story-repost {
		overflow: hidden;
	}

	.dq-reel-story-repost-inner {
		min-height: 100vh;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	/* -------------------------------------------------
       TITLE
    -------------------------------------------------- */
	.dq-reel-story-repost-title {
		position: relative;
		top: auto;
		left: auto;
		width: 100%;
		padding: 8% 5% 0;
		font-size: clamp(30px, 8vw, 46px);
	}

	.dq-reel-story-repost-title span {
		padding: 7px 16px 9px;
	}

	/* -------------------------------------------------
       CONTENT
    -------------------------------------------------- */
	.dq-reel-story-repost-content {
		position: relative;
		left: auto;
		top: auto;
		width: min(88%, 380px);
		margin-top: 12%;
	}

	.dq-reel-story-repost-text {
		font-size: clamp(20px, 5.5vw, 28px);
		line-height: 1.08;
	}

	/* -------------------------------------------------
       ARROW
    -------------------------------------------------- */
	.dq-reel-story-repost-arrow {
	display:none;
	}

	/* -------------------------------------------------
       PHONE
    -------------------------------------------------- */
	.dq-reel-story-repost-phone {
		position: relative;
		right: auto;
		top: auto;
		width: min(75%, 330px);
		margin-top: 8%;
		margin-bottom: 5%;
	}
}

/* =====================================================
   SMALL MOBILE
====================================================== */
@media (max-width: 425px) {
	.dq-reel-story-repost-title {
		padding-top: 7%;
		font-size: clamp(27px, 8vw, 38px);
	}

	.dq-reel-story-repost-title span {
		padding: 6px 14px 8px;
	}

	.dq-reel-story-repost-content {
		width: 88%;
		margin-top: 10%;
	}

	.dq-reel-story-repost-text {
		font-size: clamp(18px, 5.3vw, 24px);
	}

	.dq-reel-story-repost-arrow {
		width: 115px;
		margin-top: 22px;
	}

	.dq-reel-story-repost-phone {
		width: min(78%, 300px);
		margin-top: 7%;
	}
}

/* =====================================================
   VERY SMALL MOBILE
====================================================== */
@media (max-width: 375px) {
	.dq-reel-story-repost-title {
		font-size: 26px;
	}

	.dq-reel-story-repost-title span {
		padding: 5px 12px 7px;
	}

	.dq-reel-story-repost-content {
		margin-top: 8%;
	}

	.dq-reel-story-repost-text {
		font-size: 19px;
	}

	.dq-reel-story-repost-arrow {
		width: 105px;
	}

	.dq-reel-story-repost-phone {
		width: 75%;
	}
}
/* =====================================================
   10 - REEL WITH LINK ON ADS
====================================================== */
#reel-link-ads {
	position: relative;
	overflow: hidden;
}

.dq-reel-ads-inner {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 100vh;
}

/* =====================================================
   TITLE
====================================================== */
.dq-reel-ads-title {
position: absolute;
    top: 22%;
    left: 19%;
    z-index: 5;
    font-size: clamp(42px, 4vw, 65px);
    font-weight: 800;
    line-height: 1.05;
    color: #000;
	text-align: center;
}

.dq-reel-ads-title span {
	display: inline-block;
    font-size: clamp(42px, 4vw, 72px);
    font-weight: 800;
    line-height: 1;
    color: #f5f1f2;
    padding: 8px 22px 10px;
    background: #0aa4dc;
    border-radius: 40px;
}

/* =====================================================
   BLUE TITLE LINE
====================================================== */


/* =====================================================
   CONTENT
====================================================== */
.dq-reel-ads-content {
	position: absolute;
	left: 18.5%;
	top: 45%;
	width: 500px;
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 4;
}

.dq-reel-ads-text {
	width: 100%;
	font-size: clamp(24px, 2vw, 34px);
	font-weight: 700;
	line-height: 1.05;
	text-align: center;
	color: #000;
}

/* =====================================================
   BLUE ARROW
====================================================== */
.dq-reel-ads-arrow {
	display: block;
	width: 180px;
	height: auto;
	margin-top: 28px;
	transform-origin: center center;
}

/* =====================================================
   PHONE
====================================================== */
.dq-reel-ads-phone {
	position: absolute;
	right: 31%;
	top: 8%;
	width: 390px;
	z-index: 3;
}

.dq-reel-ads-phone-image {
	display: block;
	width: 100%;
	height: auto;
}

/* =====================================================
   10 - REEL WITH LINK ON ADS
   RESPONSIVE
====================================================== */
/* =====================================================
   1200px - 1399px
====================================================== */
@media (max-width: 1399px) {
	.dq-reel-ads-title {
		left: 4%;
		top: 9%;
	}

	.dq-reel-ads-title span {
		font-size: clamp(40px, 4vw, 64px);
	}

	.dq-reel-ads-content {
		left: 10%;
		top: 44%;
		width: 450px;
	}

	.dq-reel-ads-text {
		font-size: 30px;
	}

	.dq-reel-ads-arrow {
		width: 165px;
	}

	.dq-reel-ads-phone {
		right: 14%;
		top: 8%;
		width: 370px;
	}
}

/* =====================================================
   992px - 1199px
====================================================== */
@media (max-width: 1199px) {
	.dq-reel-ads-title {
		left: 4%;
		top: 9%;
	}

	.dq-reel-ads-title span {
		font-size: clamp(38px, 5vw, 58px);
	}

	.dq-reel-ads-content {
		left: 7%;
		top: 43%;
		width: 390px;
	}

	.dq-reel-ads-text {
		font-size: 27px;
	}

	.dq-reel-ads-arrow {
		width: 150px;
		margin-top: 24px;
	}

	.dq-reel-ads-phone {
		right: 8%;
		top: 9%;
		width: 340px;
	}
}

/* =====================================================
   768px - 991px
====================================================== */
@media (max-width: 991px) {
	.dq-reel-ads-title {
		left: 4%;
		top: 8%;
	}

	.dq-reel-ads-title span {
		font-size: clamp(34px, 5.5vw, 52px);
	}

	.dq-reel-ads-content {
		left: 5%;
		top: 42%;
		width: 340px;
	}

	.dq-reel-ads-text {
		font-size: 24px;
	}

	.dq-reel-ads-arrow {
		width: 135px;
	}

	.dq-reel-ads-phone {
		right: 5%;
		top: 10%;
		width: 310px;
	}
}

/* =====================================================
   MOBILE
====================================================== */
@media (max-width: 767px) {
	#reel-link-ads {
		overflow: hidden;
	}

	.dq-reel-ads-inner {
		min-height: 100vh;
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 60px 20px;
	}

	/* TITLE */
	.dq-reel-ads-title {
		position: relative;
		top: auto;
		left: auto;
		width: 100%;
		text-align: center;
	}

	.dq-reel-ads-title span {
		font-size: clamp(32px, 9vw, 46px);
		line-height: 1;
	}

	/* CONTENT */
	.dq-reel-ads-content {
		position: relative;
		left: auto;
		top: auto;
		width: min(90%, 420px);
		margin-top: 70px;
	}

	.dq-reel-ads-text {
		font-size: clamp(21px, 5.5vw, 28px);
		line-height: 1.08;
	}

	.dq-reel-ads-arrow {
		width: 135px;
		margin-top: 25px;
	}

	/* PHONE */
	.dq-reel-ads-phone {
		position: relative;
		right: auto;
		top: auto;
		width: min(78vw, 350px);
		margin-top: 45px;
	}
}

/* =====================================================
   SMALL MOBILE
====================================================== */
@media (max-width: 480px) {
	.dq-reel-ads-inner {
		padding: 50px 15px;
	}

	.dq-reel-ads-title span {
		font-size: clamp(29px, 9vw, 40px);
	}

	.dq-reel-ads-content {
		width: 95%;
		margin-top: 60px;
	}

	.dq-reel-ads-text {
		font-size: 21px;
	}

	.dq-reel-ads-arrow {
		display:none;
	}

	.dq-reel-ads-phone {
		width: min(82vw, 320px);
		margin-top: 40px;
	}
}
/* =====================================================
   11 - RECOMMENDS
====================================================== */
#recommends {
	position: relative;
	overflow: hidden;
}

.dq-recommends-inner {
	position: relative;
	width: 100%;
	min-height: 100vh;
	padding: 5.5% 5% 7%;
}

/* =====================================================
   TITLE
====================================================== */
.dq-recommends-title {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 45px;
	padding-left: 1%;
}

.dq-recommends-title span,
.dq-recommends-title strong {
	font-size: clamp(48px, 5vw, 78px);
	font-weight: 800;
	line-height: 1;
	color: #000;
}

.dq-recommends-title strong {
	display: inline-block;
	padding: 10px 18px 12px;
	background: #0aa4dc;
	    color: #f5f1f2;
}

/* =====================================================
   TABLE
====================================================== */
.dq-recommends-table {
	width: 100%;
	border-collapse: collapse;
}

/* =====================================================
   ROW
====================================================== */
.dq-recommends-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 68px;
}

/* =====================================================
   CELL
====================================================== */
.dq-recommends-cell {
	display: flex;
	align-items: center;
	padding: 12px 14px;
	font-size: clamp(18px, 1.35vw, 27px);
	font-weight: 600;
	line-height: 1.2;
	color: #111;
	border-right: 1px solid rgba(255, 255, 255, 0.45);
}

/* =====================================================
   HEADER
====================================================== */
.dq-recommends-header {
	background: #0aa4dc;
	min-height: 68px;
}

.dq-recommends-header .dq-recommends-cell {
	justify-content: center;
	font-size: clamp(20px, 1.6vw, 30px);
	font-weight: 700;
	letter-spacing: 3px;
	color: #fff;
	text-align: center;
	border-right: 1px solid rgba(255, 255, 255, 0.35);
}

/* =====================================================
   ALTERNATING ROW COLORS
====================================================== */
.dq-recommends-row:not(.dq-recommends-header):nth-child(even) {
	background: #d5edf7;
}

.dq-recommends-row:not(.dq-recommends-header):nth-child(odd) {
	background: #fff;
}

/* =====================================================
   SOLUTION COLUMN
====================================================== */
.dq-recommends-row:not(.dq-recommends-header) .dq-recommends-cell:last-child {
	justify-content: center;
	color: #164f67;
	font-weight: 700;
	text-align: center;
}

/* =====================================================
   OBJECTIVE COLUMN
====================================================== */
.dq-recommends-row:not(.dq-recommends-header) .dq-recommends-cell:first-child {
	justify-content: flex-start;
}

/* =====================================================
   TABLET
====================================================== */
@media (max-width: 1199px) {
	.dq-recommends-inner {
		padding: 6% 4%;
	}

	.dq-recommends-title {
		margin-bottom: 35px;
	}

	.dq-recommends-title span,
	.dq-recommends-title strong {
		font-size: clamp(42px, 5.5vw, 65px);
	}

	.dq-recommends-row {
		min-height: 62px;
	}

	.dq-recommends-cell {
		padding: 10px 12px;
		font-size: clamp(17px, 1.8vw, 23px);
	}

	.dq-recommends-header .dq-recommends-cell {
		font-size: clamp(18px, 2vw, 25px);
	}
}

/* =====================================================
   SMALL TABLET
====================================================== */
@media (max-width: 991px) {
	.dq-recommends-inner {
		padding: 7% 3%;
	}

	.dq-recommends-title {
		gap: 12px;
		margin-bottom: 30px;
		padding-left: 0;
	}

	.dq-recommends-title span,
	.dq-recommends-title strong {
		font-size: clamp(38px, 6vw, 56px);
	}

	.dq-recommends-title strong {
		padding: 8px 14px 10px;
	}

	.dq-recommends-row {
		min-height: 60px;
	}

	.dq-recommends-cell {
		padding: 9px 10px;
		font-size: 18px;
	}

	.dq-recommends-header .dq-recommends-cell {
		font-size: 20px;
		letter-spacing: 2px;
	}
}

/* =====================================================
   MOBILE
====================================================== */
@media (max-width: 767px) {
	#recommends {
		overflow: visible;
	}

	.dq-recommends-inner {
		min-height: auto;
		padding: 60px 18px 70px;
	}

	/* TITLE */
	.dq-recommends-title {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 8px;
		margin-bottom: 35px;
		text-align: center;
	}

	.dq-recommends-title span,
	.dq-recommends-title strong {
		font-size: clamp(34px, 10vw, 48px);
	}

	.dq-recommends-title strong {
		padding: 7px 12px 9px;
	}

	/* TABLE */
	.dq-recommends-row {
		grid-template-columns: 1fr 1fr;
		min-height: 65px;
	}

	.dq-recommends-cell {
		padding: 10px 9px;
		font-size: 15px;
		line-height: 1.15;
	}

	.dq-recommends-header {
		min-height: 55px;
	}

	.dq-recommends-header .dq-recommends-cell {
		font-size: 16px;
		letter-spacing: 1.5px;
	}
}

/* =====================================================
   SMALL MOBILE
====================================================== */
@media (max-width: 480px) {
	.dq-recommends-inner {
		padding: 50px 12px 60px;
	}

	/* TITLE */
	.dq-recommends-title {
		gap: 6px;
		margin-bottom: 28px;
	}

	.dq-recommends-title span,
	.dq-recommends-title strong {
		font-size: clamp(30px, 9vw, 40px);
	}

	.dq-recommends-title strong {
		padding: 6px 10px 8px;
	}

	/* TABLE */
	.dq-recommends-row {
		min-height: 60px;
	}

	.dq-recommends-cell {
		padding: 8px 7px;
		font-size: 13px;
		line-height: 1.15;
	}

	.dq-recommends-header {
		min-height: 48px;
	}

	.dq-recommends-header .dq-recommends-cell {
		font-size: 14px;
		letter-spacing: 1px;
	}
}

/* =====================================================
   VERY SMALL MOBILE
====================================================== */
@media (max-width: 375px) {
	.dq-recommends-inner {
		padding-left: 8px;
		padding-right: 8px;
	}

	.dq-recommends-title span,
	.dq-recommends-title strong {
		font-size: 28px;
	}

	.dq-recommends-cell {
		padding: 7px 5px;
		font-size: 12px;
	}

	.dq-recommends-header .dq-recommends-cell {
		font-size: 13px;
	}
}
/* =====================================================
   FOOTER
====================================================== */
#dq-footer {
	position: relative;
	width: 100%;
	min-height: 100vh;
	overflow: hidden;
	background: #f4eeee;
}

/* =====================================================
   BACKGROUND
====================================================== */
.dq-footer-background {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.dq-footer-bg {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

/* =====================================================
   INNER
====================================================== */
.dq-footer-inner {
	position: relative;
	width: 100%;
	min-height: 100vh;
	z-index: 2;
}

/* =====================================================
   CONTENT
====================================================== */
.dq-footer-content {
	position: absolute;
	left: 4%;
	top: 15%;
	z-index: 5;
}

/* =====================================================
   TITLE
====================================================== */
.dq-footer-title {
	display: flex;
	align-items: baseline;
	gap: 8px;
	font-size: clamp(50px, 5vw, 82px);
	line-height: 0.95;
	font-weight: 300;
	color: #000;
}

.dq-footer-title span {
	font-weight: 300;
}

.dq-footer-title strong {
	font-weight: 700;
}

/* =====================================================
   DESCRIPTION
====================================================== */
.dq-footer-description {
	margin-top: 18px;
	max-width: 540px;
	font-size: clamp(28px, 2.4vw, 43px);
	line-height: 1.12;
	font-weight: 400;
	color: #000;
}

.dq-footer-description strong {
	display: block;
	font-weight: 700;
	font-style: italic;
}

/* =====================================================
   CONTACT
====================================================== */
.dq-footer-contact {
	margin-top: 390px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.dq-footer-contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	width: fit-content;
	text-decoration: none;
	color: #000;
	font-size: clamp(24px, 2vw, 34px);
	font-weight: 700;
	line-height: 1;
}

.dq-footer-contact-item img {
	display: block;
	width: 38px;
	height: 38px;
	object-fit: contain;
}

/* =====================================================
   SOCIAL MEDIA
====================================================== */
.dq-footer-social {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 22px;
}

.dq-footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	text-decoration: none;
}

.dq-footer-social img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* =====================================================
   MASCOT
====================================================== */
.dq-footer-mascot {
	position: absolute;
	left: 50%;
	bottom: -1%;
	transform: translateX(-50%);
	width: min(55vw, 900px);
	z-index: 4;
	pointer-events: none;
}

.dq-footer-mascot-image {
	display: block;
	width: 100%;
	height: auto;
}

/* =====================================================
   FOOTER LOGO
====================================================== */
.dq-footer-logo {
	position: absolute;
	right: 3.5%;
	bottom: 3%;
	width: clamp(110px, 10vw, 180px);
	z-index: 5;
}

.dq-footer-logo img {
	display: block;
	width: 100%;
	height: auto;
}

/* =====================================================
   LARGE DESKTOP
====================================================== */
@media (max-width: 1440px) {
	.dq-footer-content {
		left: 4%;
		top: 14%;
	}

	.dq-footer-contact {
		margin-top: 320px;
	}

	.dq-footer-mascot {
		width: min(58vw, 800px);
	}
}

/* =====================================================
   TABLET
====================================================== */
@media (max-width: 1199px) {
	#dq-footer {
		min-height: 850px;
	}

	.dq-footer-inner {
		min-height: 850px;
	}

	.dq-footer-content {
		left: 4%;
		top: 12%;
	}

	.dq-footer-title {
		font-size: clamp(44px, 6vw, 68px);
	}

	.dq-footer-description {
		max-width: 450px;
		font-size: clamp(25px, 3vw, 36px);
	}

	.dq-footer-contact {
		margin-top: 260px;
	}

	.dq-footer-contact-item {
		font-size: 26px;
	}

	.dq-footer-contact-item img {
		width: 34px;
		height: 34px;
	}

	.dq-footer-social a {
		width: 42px;
		height: 42px;
	}

	.dq-footer-mascot {
		width: 62vw;
		bottom: 0;
	}

	.dq-footer-logo {
		width: 130px;
		right: 3%;
		bottom: 3%;
	}
}

/* =====================================================
   SMALL TABLET
====================================================== */
@media (max-width: 991px) {
	#dq-footer {
		min-height: 800px;
	}

	.dq-footer-inner {
		min-height: 800px;
	}

	.dq-footer-content {
		top: 10%;
		left: 4%;
	}

	.dq-footer-title {
		font-size: clamp(40px, 7vw, 60px);
	}

	.dq-footer-description {
		max-width: 400px;
		font-size: clamp(23px, 3.4vw, 32px);
	}

	.dq-footer-contact {
		margin-top: 230px;
	}

	.dq-footer-contact-item {
		font-size: 23px;
	}

	.dq-footer-contact-item img {
		width: 31px;
		height: 31px;
	}

	.dq-footer-social {
		margin-top: 18px;
	}

	.dq-footer-social a {
		width: 38px;
		height: 38px;
	}

	.dq-footer-mascot {
		width: 68vw;
	}

	.dq-footer-logo {
		width: 115px;
	}
}

/* =====================================================
   MOBILE
====================================================== */
@media (max-width: 767px) {
	#dq-footer {
		min-height: 850px;
	}

	.dq-footer-inner {
		min-height: 850px;
	}

	/* CONTENT */
	.dq-footer-content {
		left: 50%;
		top: 9%;
		width: 90%;
		max-width: 340px;
		transform: translateX(-50%);
	}

	/* TITLE */
	.dq-footer-title {
		gap: 5px;
		font-size: clamp(34px, 9vw, 50px);
	}

	/* DESCRIPTION */
	.dq-footer-description {
		max-width: 310px;
		margin-top: 14px;
		font-size: clamp(21px, 5.5vw, 28px);
		line-height: 1.12;
	}

	/* CONTACT */
	.dq-footer-contact {
		margin-top: 250px;
		gap: 7px;
	}

	.dq-footer-contact-item {
		gap: 9px;
		font-size: 20px;
	}

	.dq-footer-contact-item img {
		width: 28px;
		height: 28px;
	}

	/* SOCIAL */
	.dq-footer-social {
		gap: 6px;
		margin-top: 16px;
	}

	.dq-footer-social a {
		width: 36px;
		height: 36px;
	}

	/* MASCOT */
	.dq-footer-mascot {
		width: 92vw;
		max-width: none;
		left: 50%;
		bottom: 1%;
	}

	/* LOGO */
	.dq-footer-logo {
		width: 90px;
		right: 4%;
		bottom: 3%;
	}
}

/* =====================================================
   SMALL MOBILE
====================================================== */
@media (max-width: 480px) {
	#dq-footer {
		min-height: 760px;
	}

	.dq-footer-inner {
		min-height: 760px;
	}

	/* CONTENT */
	.dq-footer-content {
	left: 50%;
	top: 8%;
	width: 90%;
	max-width: 320px;
	transform: translateX(-50%);
	}

	/* TITLE */
	.dq-footer-title {
		font-size: clamp(30px, 9vw, 42px);
	}

	/* DESCRIPTION */
	.dq-footer-description {
		max-width: 270px;
		font-size: 20px;
	}

	/* CONTACT */
	.dq-footer-contact {
		margin-top: 205px;
	}

	.dq-footer-contact-item {
		font-size: 18px;
		gap: 7px;
	}

	.dq-footer-contact-item img {
		width: 25px;
		height: 25px;
	}

	/* SOCIAL */
	.dq-footer-social {
		gap: 4px;
		margin-top: 14px;
	}

	.dq-footer-social a {
		width: 32px;
		height: 32px;
	}

	/* MASCOT */
	.dq-footer-mascot {
		width: 100vw;
		bottom: 0;
	}

	/* LOGO */
	.dq-footer-logo {
		width: 72px;
		right: 3%;
		bottom: 2%;
	}
}

/* =====================================================
   VERY SMALL MOBILE
====================================================== */
@media (max-width: 375px) {
	#dq-footer {
		min-height: 700px;
	}

	.dq-footer-inner {
		min-height: 700px;
	}

	.dq-footer-content {
	left: 50%;
	top: 7%;
	width: 90%;
	max-width: 290px;
	transform: translateX(-50%);
	}

	.dq-footer-title {
		font-size: 29px;
	}

	.dq-footer-description {
		max-width: 240px;
		font-size: 18px;
	}

	.dq-footer-contact {
		margin-top: 180px;
	}

	.dq-footer-contact-item {
		font-size: 16px;
	}

	.dq-footer-contact-item img {
		width: 22px;
		height: 22px;
	}

	.dq-footer-social a {
		width: 29px;
		height: 29px;
	}

	.dq-footer-logo {
		width: 65px;
	}
}