* {
	box-sizing: border-box;
	margin: 0;
}

body {
	font-family: 'Poppins', sans-serif;
	color: #111A25;
	font-size: 16px;
	background-color: #fbfbfb;
	overflow-x: hidden;
}

html {
	scroll-behavior: smooth;
}

img {
	max-width: 100%;
	object-fit: cover;
}

/*** Bounce Loop ***/
.bounce-loop {
	position: relative;
	animation: bounce-up-down 2s infinite ease-in-out;
}

@keyframes bounce-up-down {
	0%, 100% {
	transform: translateY(0);
	}
	50% {
	transform: translateY(3px);
	}
}
/*** Bounce Loop ***/

/**** Animation Horizontal Left to Right***/
.anihltr {
    transform: translateX(-125px);
    opacity: 0;
    visibility: hidden;
    transition: transform 1.2s ease-out, opacity 1.2s ease-out;
}
.anihltr.visible {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}
/*** Animation Horizontal Left to Right***/

/**** Animation Horizontal Right to Left***/
.anihrtl {
    transform: translateX(125px);
    opacity: 0;
    visibility: hidden;
    transition: transform 1.2s ease-out, opacity 1.2s ease-out;
}
.anihrtl.visible {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}
/*** Animation Horizontal Right to Left***/

/*** Animation Vertical Down to Up ***/
.aniv {
    transform: translateY(125px);
    opacity: 0;
    visibility: hidden;
    transition: transform 1.2s ease-out, opacity 1.2s ease-out;
}

.aniv.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
/*** Animation Vertical Down to Up ***/

/*** Navigation Bar ***/
.navbar-wrapper {
    border-radius: 12px;
	margin-top: 32px;
    overflow: hidden;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 24px;
    background-color: #ffffff;
    position: relative;
    z-index: 100;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo img {
	width: 99px;
    height: 100%;
    object-fit: contain;
	display: flex;
	align-items: center;
}

.nav-links {
    display: flex;
    gap: 16px;
}

.nav-links a {
    color: #111A25;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
	transition: 0.5s ease;
}

.nav-links a:hover {
    color: #E8602A;
}

.right-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.right-group button {
    padding: 8px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.5s ease;
}
	
.sign-in {
	font-family: Poppins;
	font-size: 16px;
    border: none;
    font-weight: 500;
	color: #111A25;
	background-color: #ffffff;
	text-decoration: none;
	padding: 8px 20px;
	border-radius: 10px;
	transition: 0.5s ease;
}

.sign-in:hover {
	color: #1F5CAC;
	transition: 0.5s ease;
}

.get-started {
	font-family: Poppins;
	font-size: 16px;
    border: none;
    font-weight: 500;
	background-color: #111A25;
	color:#ffffff;
	text-decoration: none;
	padding: 8px 20px;
	border-radius: 10px;
	transition: 0.5s ease;
}

.get-started:hover {
	background-color: #1F5CAC;
}

.sidebar a.mbl-gt-strtd-bttn {
    color: #ffffff;
    background-color: #111A25;
    margin-right: 20px;
    margin-left: 20px;
    text-align: center;
    border-radius: 10px;
	transition: .6s ease;
	margin-top: 20px;
}

.sidebar a.mbl-gt-strtd-bttn:hover {
    color: #ffffff;
    background-color: #1f5cac;
	transition: .6s ease;
}

.sidebar a.mbl-sgn-n-bttn {
    color: #111A25;
    background-color: #ffffff;
    border: 2px solid #111A25;
    font-weight: 500;
    margin-right: 20px;
    margin-left: 20px;
    text-align: center;
    border-radius: 10px;
    transition: .6s ease;
    margin-top: 10px;
}

.sidebar a.mbl-sgn-n-bttn:hover {
    color: #1f5cac;
    background-color: #ffffff;
	border: 2px solid #1f5cac;
	transition: .6s ease;
}


.hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.hamburger span {
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #111A25;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 7.5px; }
.hamburger span:nth-child(3) { top: 15px; }

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 7.5px;
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 7.5px;
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 1001;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
}

.sidebar.open {
    transform: translateX(0%);
}

.sidebar .close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 24px;
    color: #111A25;
    cursor: pointer;
    border: none;
    background: none;
}

.sidebar a {
    display: block;
    padding: 16px 24px;
    color: #111A25;
    text-decoration: none;
    font-size: 16px;
	font-weight: 400;
    transition: .5s;
}

.sidebar a:hover {
    background: #ffffff;
	color: #e85f2a;
    transition: .5s;
}

.overlay-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.overlay-sidebar.open {
    opacity: 1;
    visibility: visible;
}

/*** Mobil Special Sign in & Sign up Buttons ***/
.mobile-btn {
    display: none;
}

@media (max-width: 768px) {
.nav-links {
    display: none;
}

.hamburger {
    display: flex;
}

.right-group a {
    display: none;
}
}

.mobile-btn {
    display: block;
    margin: 8px 24px;
    width: calc(100% - 48px);
    padding: 10px 0;
    border: none;
    font-weight: 500;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.5s ease;
}

@media (max-width: 600px) {
.sidebar {
    width: 100%;
}

.navbar-wrapper {
    border-radius: 12px;
	margin-top: 32px;
}
}
	
/*** OS Tablet ***/
@media (max-width: 900px) {
.nav-links {
    display: none;
}

.hamburger {
    display: flex;
}

.right-group a {
    display: none;
}

.mobile-btn {
    display: block;
    margin: 8px 24px;
    width: calc(100% - 48px);
    padding: 10px 0;
    border: none;
    font-weight: 500;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.5s ease;
}
}

/*** OS Tablet ***/

/*** 901 - 991 ***/
@media (min-width: 901px) and (max-width: 991px) {
.nav-links {
    display: none;
}

.hamburger {
    display: flex;
}

.right-group a {
    display: none;
}

.mobile-btn {
    display: block;
    margin: 8px 24px;
    width: calc(100% - 48px);
    padding: 10px 0;
    border: none;
    font-weight: 500;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.5s ease;
}
}

/*** 901 - 991 ***/
/*** Navigation Bar ***/

/*** Hero Header ***/
.hero-header-bg {
	margin-top: 60px;
	margin-bottom: 60px;
	position: relative;
}

.hero-header-ttl-sbttl-bg-c {
	display: flex;
	justify-content: center;
    align-items: center;
	height: auto;
}

.hero-header-title {
	font-size: 76px;
	font-weight: 700;
	line-height: 1.2;
	padding-bottom: 20px;
}

/*** .hero-header-img {
	overflow: hidden;
} ***/

.hero-header-img img {
	width: 636px;
	height: 520px;
	border-radius: 30px;
	object-fit: scale-down;
}

.hero-header-title-bg {
	margin-bottom: 40px;
}

.hero-header-description {
	font-size: 24px;
	color: #1f2e40;
	padding-bottom: 30px;
	font-weight: 500;
}

.get-started-hero-header {
	font-size: 16px;
    border: none;
    font-weight: 500;
	background-color: #1f5cac;
	color:#ffffff;
	text-decoration: none;
	padding: 10px 42px;
	border-radius: 10px;
	cursor: pointer;
	transition: 0.7s ease;
}

.get-started-hero-header:hover {
	background-color: #111A25;
	color: #ffffff;
	transition: 0.7s ease;
}
/*** Hero Header ***/

/*** About Baqqla ***/
.abt-baqqla-bg {
	padding-top: 50px;
	padding-bottom: 20px;
	position: relative;
	background-color: transparent;
}

.abt-baqqla {
	font-size: 22px;
	line-height: 1.6;
	font-weight: 400;
	margin: 0 auto;
	width: 100%;
	max-width: 950px;
	text-align: center;
}

/*** Web Breakpoints ***/
/* Extra small (xs) - <576px */ /* Your styles for phones */
@media (max-width: 575.98px) {
.abt-baqqla {
	font-size: 15px;
}

.abt-baqqla-bg {
	padding-top: 0;
	padding-bottom: 15px;
}
}

/* Small (sm) - ≥576px */   /* Your styles for small devices */
@media (min-width: 576px) and (max-width: 767.98px) {
.abt-baqqla {
	font-size: 19px;
}

.abt-baqqla-bg {
	padding-top: 0;
	padding-bottom: 0;
}
}

/* Medium (md) - ≥768px */   /* Your styles for tablets */
@media (min-width: 768px) and (max-width: 991.98px) {
.abt-baqqla-bg {
	padding-top: 0;
	padding-bottom: 0;
}
}
/*** About Baqqla ***/

/*** A seamless experience focused on your needs, free from unnecessary complexity. ***/
.smlss-bg {
	/*** margin-top: 30px;
	margin-bottom: 30px; ***/
	padding-top: 90px;
	padding-bottom: 90px;
	position: relative;
	background-color: transparent;
	overflow-x: hidden;
}

.smlss-bg img {
	border-radius: 30px;
    width: 746px;
    height: 424px;
    max-height: max-content;
}

.smlss-bg-vrtcl-cntr {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.smlss-title {
	font-size: 42px;
	font-weight: 600;
	line-height: 1.4;
}

.get-started-smlss {
	font-size: 16px;
    border: none;
	background-color: #161616;
	color:#ffffff;
	text-decoration: none;
	padding: 10px;
	margin-top: 25px;
	border-radius: 10px;
	cursor: pointer;
	transition: 0.5s ease;	
	display: block;
	max-width: 190px;
	text-align: center;
}

.get-started-smlss:hover {
	background-color: #1F5CAC;
}

/* Small (sm) - ≥576px */   /* Your styles for small devices */
@media (min-width: 576px) and (max-width: 767.98px) {
.smlss-bg {
    padding-top: 50px;
    padding-bottom: 40px;
}
}

/* Medium (md) - ≥768px */   /* Your styles for tablets */
@media (min-width: 768px) and (max-width: 991.98px) {
.smlss-bg {
    padding-top: 50px;
    padding-bottom: 40px;
}
}
/*** A seamless experience focused on your needs, free from unnecessary complexity. ***/

/*** Empowering buyers, fueling competition ***/
.eb-fc-bg {
	/*** margin-bottom: 30px; ***/
	padding-top: 90px;
	padding-bottom: 90px;
	position: relative;
	background-color: transparent;
	overflow: hidden;
}

.eb-fc-ttl {
	font-size: 42px;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 10px;
}

.eb-fc-sbttl {
	font-size: 20px;
	font-weight: 500;
	color: #1f2e40;
	margin-bottom: 20px;
}

.eb-fc-dsc {
	line-height: 2.1;
	margin-bottom: 15px;
	color: #111A25;
}

.eb-fc-btn {
	text-align: center;
	text-decoration: none;
	background-color: #111A25;
	padding: 10px 24px;
	color: #ffffff;
	border-radius: 10px;
	margin-top: 20px;
	transition: .7s ease;
	display: block;
	width: 100%;
	max-width: 250px;
}

.eb-fc-btn:hover {
	background-color: #1F5CAC;
	transition: .7s ease;
}
/*** Web Breakpoints Empowering buyers, fueling competition ***/
/* Extra small (xs) - <576px */ /* Your styles for phones */
@media (max-width: 575.98px) {
.eb-fc-ttl {
	font-size: 22px;
	margin-bottom: 5px;
}

.eb-fc-sbttl {
	font-size: 17px;
  	margin-bottom: 5px;
}

.eb-fc-dsc {
	font-size: 15px;
}

.eb-fc-bg {
	padding-top: 50px;
	padding-bottom: 50px;
}
}
/*** Extra small (xs) - <576px */ /* Your styles for phones ***/

/*** Small (sm) - ≥576px */   /* Your styles for small devices ***/
@media (min-width: 576px) and (max-width: 767.98px) {
.eb-fc-ttl {
	font-size: 25px;
	margin-bottom: 5px;
}

.eb-fc-sbttl {
	font-size: 18px;
	margin-bottom: 5px;
}

.eb-fc-bg {
	padding-top: 50px;
	padding-bottom: 50px;
}
}
/* Small (sm) - ≥576px */   /* Your styles for small devices */

/* Medium (md) - ≥768px */   /* Your styles for tablets */
@media (min-width: 768px) and (max-width: 991.98px) {
.eb-fc-ttl {
	font-size: 28px;
}

.eb-fc-bg {
	padding-top: 50px;
	padding-bottom: 50px;
}
}
/* Medium (md) - ≥768px */   /* Your styles for tablets */

/* Large (lg) - ≥992px */   /* Your styles for laptops/desktops */
@media (min-width: 992px) and (max-width: 1199.98px) {
.eb-fc-ttl {
	font-size: 30px;
}

.smlss-title {
	font-size: 36px;
}
}
/* Large (lg) - ≥992px */   /* Your styles for laptops/desktops */

/* Extra large (xl) - ≥1200px */   /* Your styles for large desktops */
@media (min-width: 1200px) and (max-width: 1399.98px) {
.eb-fc-ttl {
	font-size: 36px;
}

.smlss-title {
	font-size: 36px;
}
}

/* Extra extra large (xxl) - ≥1400px */   /* Your styles for very large screens */
@media (min-width: 1400px) {

}
/*** Web Breakpoints Empowering buyers, fueling competition ***/
/*** Empowering buyers, fueling competition ***/

/*** GET OFFERS, COMPARE, CHOOSE. ***/
.go-c-e-bg {
	padding: 50px 0 50px 0;
	background-color: transparent;
}

.go-c-e-ttl-desc {
	text-align: center;
	padding: 0 25px 0 25px;
}

.go-c-e-ttl {
	font-size: 36px;
	font-weight: 600;
}

.go-c-e-desc {
	font-size: 24px;
	color: #1f2e40;
	font-weight: 500;
}

/*** Web Breakpoints - GET OFFERS, COMPARE, CHOOSE. ***/
/* Extra small (xs) - <576px */ /* Your styles for phones */
@media (max-width: 575.98px) {
.go-c-e-ttl {
	font-size: 28px;
	line-height: 1.4;
}

.go-c-e-desc {
	font-size: 18px;
}

.go-c-e-bg {
	padding: 15px 0 15px 0;
}
}

/* Small (sm) - ≥576px */   /* Your styles for small devices */
@media (min-width: 576px) and (max-width: 767.98px) {
.go-c-e-ttl {
	font-size: 31px;
}

.go-c-e-desc {
	font-size: 20px;
}
}

/* Medium (md) - ≥768px */   /* Your styles for tablets */
@media (min-width: 768px) and (max-width: 991.98px) {
.go-c-e-ttl {
	font-size: 36px;
}

.go-c-e-desc {
	font-size: 20px;
}
}
/*** Web Breakpoints - GET OFFERS, COMPARE, CHOOSE. ***/
/*** GET OFFERS, COMPARE, CHOOSE. ***/

/*** Scroll Bar ***/
/*** Edge, Chrome, Safari ***/
::-webkit-scrollbar {
  width: 5px;
  box-shadow: none;
}

::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 2px;
  box-shadow: none;
}

::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 2px;
  box-shadow: none;
}

::-webkit-scrollbar-thumb:hover {
  background: #ffffff;
  box-shadow: none;
}
/*** Edge, Chrome, Safari ***/

/*** Firefox ***/
/* Scrollbar genişliği */
* {
  scrollbar-width: thin; /* "auto" | "thin" | "none" */
  scrollbar-color: #1f5cac #ffffff; /* thumb color, track color */
}

/*** Firefox ***/
/*** Scroll Bar ***/

/*** Page Loading ***/
.loading-page-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1.2s ease;
}

.logo-loading-page {
    max-width: 150px;
    margin-bottom: 20px;
}

.loading-page-spinner {
    width: 30px;
    height: 30px;
    max-width: 30px;
    max-height: 30px;
    border: 5px solid #ececec;
    border-top: 5px solid #E8602A;
    border-radius: 50%;
    animation: loading-page-spin 1s linear infinite;
    margin-bottom: 12px;
}

@keyframes loading-page-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-page-text {
    font-size: 15px;
    color: #444;
    text-align: center;
}

@media (max-width: 600px) {
.loading-page-text {
    font-size: 15px;
}

.loading-page-spinner {
    width: 30px;
    height: 30px;
}

.logo-loading-page {
    max-width: 100px;
}
}
/*** Page Loading ***/

/*** Web Breakpoints  Hero header & Seamless ***/
/* Extra small (xs) - <576px */ /* Your styles for phones */
@media (max-width: 575.98px) {
.hero-header-title {
	text-align: center;
	font-size: 48px;
	padding-bottom: 8px;
}

.hero-header-title-bg {
  margin-bottom: 0;
}

.hero-header-description {
	text-align: center;
	font-size: 18px;
	padding: 4px 10px 15px 10px;
}

.get-started-hero-header {
	font-size: 14px;
	margin: 0 auto;
	display: block;
	max-width: 200px;
	text-align: center;
}

.hero-header-img img {
	display: none;
}

.smlss-bg {
	padding-top: 50px;
	padding-bottom: 30px;
}

.mbl-smlss-img {
	display: none;
}

.smlss-title {
	font-size: 20px;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
}

.get-started-smlss {
	font-size: 14px;
	margin: 0 auto;
	display: block;
	max-width: 200px;
	text-align: center;
}
}

/* Small (sm) - ≥576px */   /* Your styles for small devices */
@media (min-width: 576px) and (max-width: 767.98px) {
.hero-header-title {
	text-align: center;
	font-size: 60px;
	padding-bottom: 12px;
}

.hero-header-description {
	text-align: center;
	font-size: 18px;
	padding-bottom: 17px;
}

.get-started-hero-header {
	margin: 0 auto;
	display: block;
	max-width: 200px;
	text-align: center;
}

.hero-header-img img {
	display: none;
}

.mbl-smlss-img {
	display: none;
}

.smlss-title {
	font-size: 24px;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 15px;
}

.get-started-smlss {
	margin: 0 auto;
	display: block;
	max-width: 200px;
	text-align: center;
}
}

/* Medium (md) - ≥768px */   /* Your styles for tablets */
@media (min-width: 768px) and (max-width: 991.98px) {
.hero-header-title {
	text-align: center;
	font-size: 72px;
	padding-bottom: 12px;
}

.hero-header-description {
	text-align: center;
	font-size: 18px;
	padding-bottom: 17px;
}

.get-started-hero-header {
	margin: 0 auto;
	display: block;
	max-width: 200px;
	text-align: center;
}

.hero-header-img img {
	display: none;
}

.mbl-smlss-img {
	display: none;
}

.smlss-title {
	font-size: 32px;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
}

.get-started-smlss {
	margin: 0 auto;
	display: block;
	max-width: 200px;
	text-align: center;
}
}

/* Large (lg) - ≥992px */   /* Your styles for laptops/desktops */
@media (min-width: 992px) and (max-width: 1199.98px) {
.smlss-title {
  font-size: 30px;
}

.hero-header-title {
  font-size: 56px;
}
}

/* Extra large (xl) - ≥1200px */   /* Your styles for large desktops */
@media (min-width: 1200px) and (max-width: 1399.98px) {
.hero-header-title {
  font-size: 67px;
}
}

/* Extra extra large (xxl) - ≥1400px */   /* Your styles for very large screens */
@media (min-width: 1400px) {

}
/*** Web Breakpoints  Hero header & Seamless ***/

/*** Why Baqqla ***/
.wb-bg {
	/*** margin-bottom: 30px; ***/
	padding-top: 90px;
	padding-bottom: 90px;
	position: relative;
	background-color: transparent;
	overflow: hidden;
}

.wb-ttl {
	font-size: 48px;
	font-weight: 600;
	margin-bottom: 50px;
}

.wb-ttl-sbttl {
	font-size: 24px;
	font-weight: 500;
	width: 100%;
	max-width: 600px;
	color: #1f2e40;
	margin-top: 5px;
}

.wb-frb-ttl {
	font-size: 32px;
	font-weight: 600;
	margin-top: 10px;
	margin-bottom: 15px;
}

/*** Why Baqqla Accordion Buyers ***/
.wb-accordion-item {
	background: #ffffff;
	margin-bottom: 20px;
	border-radius: 10px;
}

.wb-accordion-header {
	padding: 15px 20px 0 20px;
	cursor: pointer;
}

.wb-accordion-header-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	font-size: 20px;
}

.wb-accordion-subtitle {
	font-size: 18px;
	color: #111a25;
	margin-top: 1px;
	margin-bottom: 10px;
	font-weight: 500;
}

.wb-accordion-icon {
	font-size: 20px;
	transition: transform 0.3s ease;
}

.wb-accordion-icon.wb-rotate {
	transform: rotate(180deg);
}

.wb-accordion-body {
	height: 0;
	overflow: hidden;
	padding: 0 20px;
	transition: height 0.3s ease, padding 0.3s ease;
}

.wb-accordion-body-content {
	padding: 0 0 15px 0;
	color: #1f2e40;
	line-height: 1.7;
}

.wb-accordion-body-content i {
	font-size: 14px;
}

.wb-accordion-body-content a {
	font-size: 14px;
	transition: .6s ease;
	text-decoration: none;
	color: #1f5cac;
}

.wb-accordion-body-content a:hover {
	transition: .6s ease;
	text-decoration: none;
	opacity: .7;
}

.wb-accordion-body.wb-open {
  padding: 0 20px;
}

.wb-accordion-body-content p {
	padding-bottom: 5px;
	padding-top: 5px;
}
/*** Why Baqqla Accordion Buyers ***/

/*** Why Baqqla Accordion Sellers ***/
    .wb-sllr-accordion-item {
      background: #ffffff;
      margin-bottom: 20px;
	border-radius: 10px;
    }

    .wb-sllr-accordion-header {
      padding: 15px 20px 0 20px;
      cursor: pointer;
    }

    .wb-sllr-accordion-header-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
	font-weight: 600;
	font-size: 20px;
    }

    .wb-sllr-accordion-subtitle {
      font-size: 18px;
      color: #111a25;
      margin-top: 1px;
      margin-bottom: 10px;
	  font-weight: 500;
    }

    .wb-sllr-accordion-icon {
      font-size: 20px;
      transition: transform 0.3s ease;
    }

    .wb-sllr-accordion-icon.wb-rotate {
      transform: rotate(180deg);
    }

    .wb-sllr-accordion-body {
      height: 0;
      overflow: hidden;
      padding: 0 20px;
      transition: height 0.3s ease, padding 0.3s ease;
    }

    .wb-sllr-accordion-body-content {
      padding: 0 0 15px 0;
	  color: #1f2e40;
	  line-height: 1.7;
    }

.wb-sllr-accordion-body.wb-open {
  padding: 0 20px;
}

/*** Why Baqqla Responsive Sellers***/
/* Extra small (xs) - <576px */ /* Your styles for phones */
@media (max-width: 575.98px) {
.wb-sllr-ttl {
	font-size: 28px;
}

.wb-sllr-accordion-body-content {
	font-size: 15px;
}

.wb-sllr-accordion-header-top {
	font-size: 18px;
}

.wb-sllr-accordion-subtitle {
	font-size: 16px;
}

.wb-ttl-sbttl {
	font-size: 20px;
}
}

/*** Why Baqqla Responsive Sellers ***/
/*** Why Baqqla Accordion Sellers ***/

/*** Why Baqqla Responsive ***/
/* Extra small (xs) - <576px */ /* Your styles for phones */
@media (max-width: 575.98px) {
.wb-ttl {
	font-size: 28px;
	margin-bottom: 25px;
}

.wb-frb-ttl {
  font-size: 22px;
}

.wb-ttl-sbttl {
	font-size: 18px;
}

.wb-bg {
  padding-top: 50px;
  padding-bottom: 50px;
}

.wb-accordion-body-content {
  font-size: 15px;
}

.wb-accordion-header-top {
  font-size: 18px;
}

.wb-accordion-subtitle {
  font-size: 16px;
}
}

/* Small (sm) - ≥576px */   /* Your styles for small devices */
@media (min-width: 576px) and (max-width: 767.98px) {
.wb-ttl {
	font-size: 32px;
	margin-bottom: 25px;
}

.wb-frb-ttl {
  font-size: 26px;
}

.wb-ttl-sbttl {
	font-size: 20px;
}

.wb-bg {
  padding-top: 50px;
  padding-bottom: 50px;
}
}

/* Medium (md) - ≥768px */   /* Your styles for tablets */
@media (min-width: 768px) and (max-width: 991.98px) {
.wb-ttl {
	font-size: 36px;
	margin-bottom: 30px;
}

.wb-frb-ttl {
  font-size: 28px;
}

.wb-bg {
  padding-top: 50px;
  padding-bottom: 50px;
}
}

/* Large (lg) - ≥992px */   /* Your styles for laptops/desktops */
@media (min-width: 992px) and (max-width: 1199.98px) {
.wb-ttl {
	font-size: 36px;
	margin-bottom: 45px;
}

.wb-frb-ttl {
  font-size: 28px;
}
}

/* Extra large (xl) - ≥1200px */   /* Your styles for large desktops */
@media (min-width: 1200px) and (max-width: 1399.98px) {
.wb-ttl {
	font-size: 36px;
}

.wb-frb-ttl {
  font-size: 28px;
}
}
/*** Why Baqqla Responsive ***/
/*** Why Baqqla ***/

/*** How Baqqla Works ***/
.hbw-bg {
	/*** margin-bottom: 30px; ***/
	padding-top: 90px;
	padding-bottom: 90px;
	position: relative;
	background-color: transparent;
	overflow: hidden;
}

.hbw-lft-cntnt-v-cntr {
	display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.hbw-rght-cntnt-cntr {
	
}

.hbw-ttl {
	font-size: 48px;
	font-weight: 600;
	margin-bottom: 60px;
}

.hbw-sbttl {
	font-size: 24px;
	font-weight: 500;
	width: 100%;
	max-width: 600px;
	color: #1f2e40;
	margin-top: 5px;
}

.hbw-fb-ttl {
	font-size: 32px;
	font-weight: 600;
}

.hbw-fb-sbttl {
	font-size: 17px;
	font-weight: 500;
}

.hbw-fb-content-bg {
	padding: 25px 25px;
	background-color: #ffffff;
	border-radius: 10px;
	margin-top: 20px;
}

.hbw-fb-content-ttl {
	font-size: 18px;
	font-weight: 600;
}

.hbw-fb-content-sbttl {
	font-size: 16px;
	color: #1f2e40;
	margin-top: 3px;
}

.hbw-cntnt-img {
	width: 416px;
	height: 643px;
	border-radius: 30px;
}


/*** How Baqqla Works Responsive ***/
/* Extra small (xs) - <576px */ /* Your styles for phones */
@media (max-width: 575.98px) {
.hbw-ttl {
	font-size: 28px;
	margin-bottom: 0;
}
	
.hbw-fb-sbttl {
	font-size: 15px;
}

.hbw-fb-ttl {
	font-size: 22px;
	margin-top: 40px;
}

.hbw-fb-content-ttl {
	font-size: 16px;
}

.hbw-fb-content-sbttl {
  font-size: 15px;
}

.hbw-sbttl {
	font-size: 18px;
}

.hbw-bg {
	padding-top: 50px;
	padding-bottom: 50px;
}

.hbw-cntnt-img {
	margin-top: 30px;
	display: none;
}
}

/* Small (sm) - ≥576px */   /* Your styles for small devices */
@media (min-width: 576px) and (max-width: 767.98px) {
.hbw-bg {
	padding-top: 50px;
	padding-bottom: 50px;
}

.hbw-ttl {
	font-size: 32px;
	margin-bottom: 20px;
}

.hbw-fb-ttl {
	font-size: 26px;
	margin-top: 30px;
}

.hbw-sbttl {
	font-size: 20px;
}

.hbw-cntnt-img {
	margin-top: 30px;
	display: none;
}
}

/* Medium (md) - ≥768px */   /* Your styles for tablets */
@media (min-width: 768px) and (max-width: 991.98px) {
.hbw-bg {
	padding-top: 50px;
	padding-bottom: 50px;
}

.hbw-ttl {
	font-size: 36px;
	margin-bottom: 10px;
}

.hbw-lft-cntnt-v-cntr {
	display: flex;
    justify-content: center;
    align-items: normal;
    height: auto;
}

.hbw-fb-ttl {
	font-size: 28px;
	margin-top: 20px;
}

.hbw-sbttl {
	font-size: 24px;
}

.hbw-cntnt-img {
	margin-top: 30px;
	display: none;
}
}

/* Large (lg) - ≥992px */   /* Your styles for laptops/desktops */
@media (min-width: 992px) and (max-width: 1199.98px) {
.hbw-ttl {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 45px;
}

.hbw-fb-ttl {
	font-size: 28px;
}

.hbw-fb-sbttl {
	font-size: 16px;
}

.hbw-fb-content-ttl {
	font-size: 17px;
}

.hbw-cntnt-img {
	height: 563px;
}
}

/* Extra large (xl) - ≥1200px */   /* Your styles for large desktops */
@media (min-width: 1200px) and (max-width: 1399.98px) {
.hbw-ttl {
	font-size: 36px;
}

.hbw-fb-ttl {
	font-size: 28px;
}

.hbw-cntnt-img {
	height: 520px;
}
}
/*** How Baqqla Works Responsive ***/
/*** How Baqqla Works ***/

/*** TABS ***/
.fq-bg {
	/*** margin-bottom: 30px; ***/
	padding-top: 90px;
	padding-bottom: 90px;
	position: relative;
	background-color: transparent;
	overflow: hidden;
}

/*** FAQ ONE PAGE ***/
.fq-bg-op {
	/*** margin-bottom: 30px; ***/
	padding-top: 50px;
	padding-bottom: 90px;
	position: relative;
	background-color: #fbfbfb;
	overflow: hidden;
}
/*** FAQ ONE PAGE ***/

.fq-ac-bttn {
	font-size: 16px;
	font-weight: 500;
	padding: 10px;
	background-color: transparent;
	color: #111A25;
	transition: .7s ease;
	margin: 0 auto;
	display: block;
	max-width: 180px;
	margin-top: 30px;
	border-radius: 10px;
	text-decoration: none;
	text-align: center;
}

.fq-ac-bttn:hover {
	background-color: transparent;
	color: #1F5CAC;
	transition: .7s ease;
}

.fq-bg-ttl {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 50px;
}
/*** FAQ ACCORDION ***/
/* TABS */
.fq-byrs-tab-buttons {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.fq-byrs-tab-btn {
	font-size: 18px;
	font-family: Poppins;
	font-weight: 500;
	padding: 10px 20px;
	border: none;
	background-color: #fbfbfb;
	cursor: pointer;
	border-radius: 10px;
	transition: background-color 0.3s;
	transition: .6s ease;
}

.fq-byrs-tab-btn:hover {
	color: #1f5cac;
	transition: .6s ease;
}

.fq-byrs-tab-btn.fq-byrs-active {
	background-color: #1f5cac;
	color: #ffffff;
}

.fq-byrs-tab-container {
	position: relative;
	overflow: hidden;
	min-height: 200px;
}

.fq-byrs-tab-content {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	transform: translateX(100%);
	transition: transform 0.4s ease;
	visibility: hidden;
}

.fq-byrs-tab-content.fq-byrs-active {
	transform: translateX(0);
	visibility: visible;
	position: relative;
	z-index: 1;
}

.fq-byrs-tab-content.fq-byrs-exiting {
	transform: translateX(-100%);
}

/* ACCORDION */
.fq-byrs-accordion-item {
	background: #ffffff;
	margin-bottom: 20px;
	border-radius: 20px;
	border: 0;
	padding: 15px 15px;
}

.fq-byrs-accordion-header-top span {
	font-size: 20px;
	font-weight: 600;
}

.fq-byrs-accordion-body-content p {
	line-height: 1.9;
	margin-bottom: 15px;
}

.fq-byrs-accordion-body-content span p {
	line-height: 1.9;
	margin-bottom: 0;
}

.fq-p-t {
	padding-top: 15px;
	display: inline-block;
}

.fq-byrs-accordion-header {
	padding: 15px 20px;
	cursor: pointer;
	background-color: transparent;
}

.fq-byrs-accordion-header-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: bold;
}

.fq-byrs-accordion-icon {
	font-size: 20px;
	transition: transform 0.3s ease;
	margin-left: 15px;
}

.fq-byrs-accordion-icon.fq-byrs-rotate {
	transform: rotate(180deg);
}

.fq-byrs-accordion-body {
	height: 0;
	overflow: hidden;
	padding: 0 20px;
	transition: height 0.3s ease, padding 0.3s ease;
}

.fq-byrs-accordion-body-content {
	padding: 15px 0;
	color: #1f2e40;
}

.fq-byrs-accordion-body.fq-byrs-open {
	padding: 0 20px;
}
	
p .fq-ccrdn-p-b {
	font-weight: 600;
}

.fq-ccrdn-p-b {
	font-weight: 600;
}

span .fq-ccrdn-p-b {
	font-weight: 400;
}
/*** FAQ ACCORDION ***/

/*** FAQ RESPONSIVE ***/
/* Extra small (xs) - <576px */ /* Your styles for phones */
@media (max-width: 575.98px) {
.fq-bg {
	padding-top: 50px;
}
	
.fq-bg-ttl {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 35px;
}

.fq-byrs-tab-btn {
	font-size: 16px;
}

.fq-byrs-accordion-header-top span {
	font-size: 18px;
}

.fq-byrs-accordion-body-content p {
	font-size: 15px;
}
}

/* Small (sm) - ≥576px */   /* Your styles for small devices */
@media (min-width: 576px) and (max-width: 767.98px) {
.fq-bg {
	padding-top: 60px;
}

.fq-bg-ttl {
	font-size: 32px;
}
}

/* Medium (md) - ≥768px */   /* Your styles for tablets */
@media (min-width: 768px) and (max-width: 991.98px) {
.fq-bg-ttl {
	font-size: 36px;
}
}
/*** FAQ RESPONSIVE ***/
/*** TABS ***/

/*** FOOTER ***/
.ftr-bg {
	/*** margin-bottom: 30px; ***/
	padding-top: 90px;
	padding-bottom: 90px;
	position: relative;
	background-color: #ffffff;
	overflow: hidden;
}

.footer-pg-lnk {
	text-decoration: none;
	color: #111A25;
	margin-bottom: 20px;
	display: inline-block;
	transition: .7s ease;
}

.footer-pg-lnk:hover {
	transition: .7s ease;
	opacity: .6;
}

.footer-social-lnk {
	text-decoration: none;
	color: #111A25;
	margin-bottom: 20px;
	display: inline-block;
	transition: .7s ease;
}

.footer-social-lnk:hover {
	transition: .7s ease;
	opacity: .6;
}

.ftr-cntct {
	text-decoration: none;
	color: #111A25;
	margin-bottom: 20px;
	display: inline-block;
	transition: .7s ease;
}

.ftr-cntct:hover {
	transition: .7s ease;
	opacity: .6;
}

.ftr-cpyrt-bg {
	margin-top: 50px;
}

.ftr-cpyrt {
	font-size: 15px;
	color: #6c7176;
}
/*** FOOTER RESPONSIVE ***/
/* Extra small (xs) - <576px */ /* Your styles for phones */
@media (max-width: 575.98px) {
.footer-social-lnk {
	font-size: 15px;
}

.footer-pg-lnk {
	font-size: 15px;
}

.ftr-cntct {
	font-size: 15px;
}

.ftr-cpyrt {
	font-size: 13px;
}
}
/*** FOOTER RESPONSIVE ***/
/*** FOOTER ***/

/*** 70000+ ANIMATION COUNT ***/
.go-c-e-animated-number {
	font-size: 34px;
	font-weight: 700;
	color: #1f5cac;
	width: 100%;
	max-width: 125px;
	display: inline-block;
}
	
.go-c-e-plus {
	font-weight: 700;
	color: #1f5cac;
}
/*** 70000+ ANIMATION COUNT RESPONSIVE ***/
/* Extra small (xs) - <576px */ /* Your styles for phones */
@media (max-width: 575.98px) {
.go-c-e-animated-number {
	font-size: 26px;
	max-width: 95px;
}
}
/*** 70000+ ANIMATION COUNT RESPONSIVE ***/
/*** 70000+ ANIMATION COUNT ***/

/*** APPS ***/
.app-link-bg {
	position: relative;
	height: 46px;
	width: 100%;
	max-width: 220px;
	background-color: transparent;
	font-weight: 500;
	display: inline-flex;
	color: #1f5cac;
	border: 2px solid #1f5cac;
	text-decoration: none;
	text-align: center;
	align-items: center;
	padding-left: 15px;
	border-radius: 10px;
	margin-top: 12px;
}

.app-arrow-icon {
	position: absolute;
	right: 0;
	padding-right: 15px;
	width: 33px;
	height: 33px;
	transition: .7s ease;
    top: 50%;
    transform: translateY(-50%);
}

.app-link-bg-styl {
	display: flex;
	flex-direction: column;
}

.fttr-app-title {
	font-weight: 500;
}

.app-link-bg:hover {
	opacity: .7;
	transition: .7s ease;
}

.app-link-bg:hover .app-arrow-icon {
  transform: translateX(5px) translateY(-52%) scale(1.1);
}

/*** Web Breakpoints ***/
/* Extra small (xs) - <576px */ /* Your styles for phones */
@media (max-width: 575.98px) {
.fttr-app-title {
	font-size: 15px;
}

.app-link-bg {
	font-size: 15px;
}
}
/*** APPS ***/

/*** SLIDE TEXT ***/
.slider-container {
	height: 72px;
	overflow: hidden;
	position: relative;
}

.slider-wrapper {
	display: flex;
	flex-direction: column;
	transition: transform 0.8s ease-in-out;
}

.slider-word {
	height: 72px;
	line-height: 72px;
	color: #1f5cac;
}
/*** SLIDE TEXT ***/

/*** SECTION APPS ***/
.section-apps-bg {
	padding-top: 60px;
	padding-bottom: 60px;
	overflow: hidden;
	background-color: transparent;
}

.section-apps-bg-right-content {
	display: flex;
	justify-content: center;
	align-items: center;
	height: auto;
}

.section-apps-right-content-ttl {
	font-size: 30px;
	font-weight: 600;
	line-height: 1.4;
}

.section-apps-right-content-sbttl {
	color: #1f2e40;
	font-weight: 400;
}

.section-apps-img {
	border-radius: 30px;
	width: 636px;
	height: 442.63px;
	object-fit: cover;
	display: block;
}

/* Extra small (xs) - <576px */ /* Your styles for phones */
@media (max-width: 575.98px) {
.section-apps-img {
	margin-bottom: 20px;
}

.section-apps-bg {
	padding-top: 20px;
	padding-bottom: 40px;
}
}

/* Small (sm) - ≥576px */   /* Your styles for small devices */
@media (min-width: 576px) and (max-width: 767.98px) {
.section-apps-img {
	margin-bottom: 20px;
}

.section-apps-bg {
	padding-top: 30px;
	padding-bottom: 30px;
}
}

/* Medium (md) - ≥768px */   /* Your styles for tablets */
@media (min-width: 768px) and (max-width: 991.98px) {
.section-apps-right-content-sbttl {
	font-size: 15px;
}

.section-apps-bg {
	padding-top: 30px;
	padding-bottom: 30px;
}
}
/*** SECTION APPS ***/

/*** CONTACT ***/
.cntct-bg-op {
	padding-top: 40px;
	padding-bottom: 40px;
}

.cntct-bg {
	padding: 0 20px;
	background-color: #fbfbfb;
	border-radius: 20px;
}

.cntct-ttl {
	font-size: 36px;
    font-weight: 600;
	margin-bottom: 10px;
}

.cntct-pg-sbttl {
	font-size: 24px;
	font-weight: 500;
	color: #1f2e40;
	margin-bottom: 5px;
}

.cntct-pg-dsc {
	font-size: 17px;
	font-weight: 400;
	margin-bottom: 20px;
	color: #1f2e40;
    line-height: 1.7;
}

.npt-bg {
    margin-top: 20px;
}

.cntct-npt {
	padding: 10px;
	border: 2px solid #f0f0f0;
	background-color: #f0f0f0;
	border-radius: 5px;
	font-size: 16px;
	width: 100%;
	transition: 0.6s ease;
	color: #111A25;
	font-family: 'Poppins';
}

select.cntct-npt {
	/* Icon control in select */
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("../icons/arrow-down.svg");
	background-repeat: no-repeat;
	height: 49px;
	background-position: right 1rem center;
	background-size: 24px 24px; /* Icon size */
	padding-right: 3rem;
	background-color: ;
}

.cntct-npt:focus {
	transition: .6s ease;
	border: 2px solid #1f5cac;
	outline: none;
}

textarea.cntct-npt {
	resize: vertical;
}

.error-message {
    color: #dd3232;
    font-size: 13px;
    font-weight: 500;
    margin-top: 6px;
    display: block;
	max-height: 0;
	overflow: hidden;
	transition: all 0.7s ease;
}

.error-message.show {
	max-height: 100px; /* Yeterli bir yükseklik ver, içeriğe göre ayarlanabilir */
}

.cntct-npt.error {
	border: 2px solid #dd3232;
}

.cntct-npt.success {
	border: 2px solid #71c974;
}

.npt-ttl-up {
	font-weight: 500;
	margin-bottom: 5px;
	display: block;
}

.cntct-bttn-frm {
    background-color: #1f5cac;
    width: 100%;
    padding: 17px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Poppins';
    color: #ffffff;
    outline: 0;
    border: none;
    border-radius: 10px;
    cursor: pointer;
	transition: .6s ease;
	margin-bottom: 25px;
}

.cntct-bttn-frm:hover {
	background-color: #111A25;
	transition: .6s ease;
}

/*** Contact Toast ***/
.cntct-toast {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background-color: #26a358;
	color: #ffffff;
	padding: 14px 20px;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 500;
	font-family: 'Poppins';
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
	opacity: 0;
	pointer-events: none;
	transform: translateY(20px);
	transition: opacity 0.4s ease, transform 0.4s ease;
	z-index: 999;
}

.cntct-toast.show {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

/*** Contact Toast ***/

/*** CONTACT RESPONSIVE ***/
@media (min-width: 576px) and (max-width: 767.98px) {
.cntct-ttl {
	font-size: 32px;
}

.cntct-pg-sbttl {
    font-size: 22px;
}

.cntct-pg-dsc {
    font-size: 16px;
}

.cntct-bg {
    padding: 20px 20px;
}
}

@media (max-width: 575.98px) {
.cntct-ttl {
    font-size: 28px;
}

.cntct-pg-sbttl {
    font-size: 21px;
}

.cntct-pg-dsc {
    font-size: 16px;
}

.cntct-bg {
    padding: 20px 20px;
}
}
/*** CONTACT RESPONSIVE ***/
/*** CONTACT ***/

/*** SLIDE IMAGE ANIMATION & CAROUSEL SYSTEM ***/
.baqqla-img-slide-root {
	--baqqla-img-slide-image-width: clamp(355px, 18vw, 300px);
	--baqqla-img-slide-image-height: clamp(390px, 40vh, 450px);
	--baqqla-img-slide-gap: clamp(25px, 1vw, 25px);
}

.baqqla-img-slide-root * {
	box-sizing: border-box;
}

.baqqla-img-slide-container-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow-x: hidden;
	position: relative;
	width: 100%;
	height: auto;
	padding-inline: 25px;
}

.baqqla-img-slide-image-wrapper {
	position: relative;
	width: var(--baqqla-img-slide-image-width);
	height: var(--baqqla-img-slide-image-height);
}

.baqqla-img-slide-center-image,
.baqqla-img-slide-side-image {
	width: var(--baqqla-img-slide-image-width);
	height: var(--baqqla-img-slide-image-height);
	object-fit: cover;
	border-radius: 30px;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: left 2s ease, opacity 2s ease;
}

.baqqla-img-slide-center-image {
	left: 50%;
	z-index: 3;
}

.baqqla-img-slide-side-image {
	left: 50%;
	opacity: 0;
	z-index: 2;
}

.baqqla-img-slide-show .baqqla-img-slide-left-1  {
	left: calc(50% - calc(var(--baqqla-img-slide-image-width) + var(--baqqla-img-slide-gap)));
	opacity: 1;
}

.baqqla-img-slide-show .baqqla-img-slide-right-1 {
	left: calc(50% + calc(var(--baqqla-img-slide-image-width) + var(--baqqla-img-slide-gap)));
	opacity: 1;
}

.baqqla-img-slide-carousel-wrapper {
	display: none;
	max-width: calc(100% - 0px);
	margin-inline: auto;
	position: relative;
}

.baqqla-img-slide-carousel-container {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 20px;
	gap: var(--baqqla-img-slide-gap);
	scrollbar-width: none;
}

.baqqla-img-slide-carousel-container::-webkit-scrollbar {
	display: none;
}

.baqqla-img-slide-carousel-container img {
	flex: 0 0 auto;
	width: var(--baqqla-img-slide-image-width);
	height: var(--baqqla-img-slide-image-height);
	border-radius: 12px;
	scroll-snap-align: center;
	object-fit: cover;
}

.baqqla-img-slide-carousel-buttons-wrapper {
	position: absolute;
	top: 100%;
	right: 0;
	display: flex;
	gap: 10px;
	margin-top: 0;
}

.baqqla-img-slide-carousel-button {
	background-color: #f5f5f5;
    border: none;
    color: #45566b;
    font-size: 18px;
    line-height: 18px;
    cursor: pointer;
    padding: 10px 10px;
    border-radius: 10px;
    transition: 0.5s ease;
}

.baqqla-img-slide-carousel-button:hover {
	opacity: .7;
	transition: 0.5s ease;
}

@media (max-width: 768px) {
.baqqla-img-slide-container-slide {
	display: none;
}

.baqqla-img-slide-carousel-wrapper {
	display: block;
}

.baqqla-img-slide-carousel-buttons-wrapper {
	display: flex;
}
}
	
@media (min-width: 768px) and (max-width: 1199px) {
.baqqla-img-slide-carousel-wrapper {
    display: block;
}

.baqqla-img-slide-container-slide {
    display: none;
}

.baqqla-img-slide-carousel-buttons-wrapper {
	display: flex;
}
}

.sld-anmtn-img-bg {
	padding-top: 60px;
	padding-bottom: 60px;
	background-color: transparent;
}

.sld-anmtn-img-ttl {
	font-size: 36px;
    font-weight: 600;
	margin: 0 auto;
	text-align: center;
	display: block;
    margin-bottom: 10px;
}

.sld-anmtn-img-dsc {
    font-size: 18px;
	line-height: 1.7;
    font-weight: 400;
    width: 100%;
    max-width: 750px;
    color: #1f2e40;
	display: block;
	text-align: center;
	margin: 0 auto;
	margin-bottom: 15px;
}

/*** Web Breakpoints ***/
/* Extra small (xs) - <576px */ /* Your styles for phones */
@media (max-width: 575.98px) {
.sld-anmtn-img-ttl {
    font-size: 28px;
	text-align: Left;
}

.sld-anmtn-img-dsc {
    font-size: 16px;
	margin-bottom: 5px;
	text-align: left;
}

.sld-anmtn-img-bg {
	padding-top: 20px;
	padding-bottom: 60px;
}
}

/* Small (sm) - ≥576px */   /* Your styles for small devices */
@media (min-width: 576px) and (max-width: 767.98px) {
.sld-anmtn-img-ttl {
    font-size: 28px;
}

.sld-anmtn-img-dsc {
    font-size: 17px;
}
}
/*** SLIDE IMAGE ANIMATION & CAROUSEL SYSTEM ***/
