@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Oswald:wght@300;400;500&family=PT+Sans:wght@400;700&family=Roboto:ital,wght@0,100;0,300;0,400;1,100;1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

/* Global Styles STARTS */
:root {
	/*========== Website Fonts STARTS ==========*/
	/* Menu and Logo */
	--ttbb-menu-font-family: "Open Sans", roboto, arial, Helvetica;
	--ttbb-logo-font-family: Oswald, roboto, arial, Helvetica;
	/* Hero section fonts */
	--ttbb-hero-h1-font-family: "Montserrat", roboto, arial, Helvetica;
	--ttbb-hero-h2-font-family: 'PT Sans', sans-serif;
	/* heading */
	--ttbb-h1-font-family: "Montserrat", roboto, arial, Helvetica;
	--ttbb-h2-font-family: "Montserrat", roboto, arial, Helvetica;
	--ttbb-h3-font-family: "Montserrat", roboto, arial, Helvetica;
	--ttbb-h4-font-family: "Montserrat", roboto, arial, Helvetica;
	/* Cards */
	--ttbb-card-font-family: 'PT Sans', sans-serif;
	/* Body Font */
	--ttbb-body-font-family: 'PT Sans', sans-serif;
	/* Other Font */
	--ttbb-p1-font-family: 'PT Sans', sans-serif;
	--ttbb-bttn-font-family: 'PT Sans', sans-serif;
	/*========== Website Fonts ENDS ==========*/
	/* Website Colors */
	--ttbb-white: #fff;
	--ttbb-grey: #3a3a3a;
	--ttbb-light-grey: #D9D9D9;
	--ttbb-black: #202124;
	--ttbb-orange: #f48024;
	--ttbb-yellow: #ffcf10;
	--code-red: #ff0000;
	--ttbb-a-link-blue: #1a73e8;
	--code-blue: #006eff;
	--bttn-blue: #1A73e8;
	--bttn-blue-hover: #185abc;
	/* Download Card Colors */
	--bg-color: #282828;
	/* Font and typography */
	--max-w: 1200px;
	--card-img-height: 200px;
}

* {
	margin: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	border: none;
	text-decoration: none;
	transition: 0.2s linear;
}

html {
	font-size: 62.5%;
	overflow-x: hidden;
	scroll-behavior: smooth;
	scroll-padding-top: 5rem;
}

body {
	word-wrap: break-word;
	background: var(--ttbb-white);
	cursor: auto;
	margin: 0;
	padding: 0;
}

.a-blog {
	font-family: var(--ttbb-p1-font-family);
	font-size: 1.6rem;
	color: var(--ttbb-a-link-blue);
}

h1 {
	font-family: var(--ttbb-h1-font-family);
	font-size: 40px;
}

h2 {
	font-family: var(--ttbb-h2-font-family);
}

h3 {
	font-family: var(--ttbb-h3-font-family);
}

.material-symbols-outlined {
	font-variation-settings:
		'FILL' 0,
		'wght' 400,
		'GRAD' 0,
		'opsz' 48
}

ol {
	overflow: visible;

	li {
		overflow: visible;
	}
}

li {
	list-style-type: circle;
	text-align: left;
	font-family: var(--ttbb-p1-font-family);
	font-size: 1.6rem;
	font-weight: 400;
	margin-left: 40px;
	padding-left: 0px;
}

li li {
	list-style-type: square;
	text-align: left;
	font-family: var(--ttbb-p1-font-family);
	font-size: 1.6rem;
	font-weight: 400;
}

.li-as-heading {
	list-style-type: square;
	text-align: left;
	font-family: var(--ttbb-p1-font-family);
	font-size: 1.6rem;
	font-weight: 600;
	margin-block-start: 1em;
	margin-block-end: 1em;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
}

.p-with-heading {
	list-style-type: square;
	text-align: left;
	font-family: var(--ttbb-p1-font-family);
	font-size: 16px;
	display: block;
	font-weight: 400;
}

section {
	padding: 1rem 1%;
}

.youtube-video {
	aspect-ratio: 16 / 9;
	width: 100%;
}

.code {
	color: var(--color-body-color);
	border-bottom: 1px solid #eee;
	color: var(--code-blue);
	border-top: 1px solid #eee;
	font-size: 1.5em;
	padding: 8px 0;
	font-weight: 600;
	letter-spacing: .5px;
	display: flex;
	width: 100%;
	text-align: left;
	justify-content: space-between;
}

.code-important {
	color: var(--color-body-color);
	border-bottom: 1px solid #eee;
	color: var(--code-red);
	border-top: 1px solid #eee;
	font-size: 2em;
	padding-top: 20px;
	padding-bottom: 10px;
	font-weight: 600;
	letter-spacing: .5px;
	display: flex;
	width: 100%;
	text-align: left;
	justify-content: space-between;
}
.codehighlight {
    background-color: #f6f6f6;
	color: #7f0037;
    border-radius: 3px;
    padding: 0.4rem;
}

/* Global Styles ENDS */

/* Header Styles STARTS */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	padding: 2rem 9%;
	z-index: 1000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.header.active {
	background: var(--ttbb-white);
	-webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.header .logo {
	font-family: var(--ttbb-logo-font-family);
	margin-right: auto;
	font-size: 2.5rem;
	color: #10221b;
}

.header .logo i {
	color: var(--ttbb-black);
}

.header .navbar a {
	font-family: var(--ttbb-menu-font-family);
	font-weight: 400;
	margin-left: 2rem;
	font-size: 12.5px;
	color: #10221b;
}

.header .navbar a:hover {
	color: #ff9900;
	text-decoration-line: underline;
}

.header .navbar #nav-close {
	font-size: 5rem;
	cursor: pointer;
	color: #10221b;
	display: none;
}

.header .icons a,
.header .icons div {
	font-size: 2.5rem;
	margin-left: 2rem;
	cursor: pointer;
	color: #10221b;
}

.header .icons a:hover,
.header .icons div:hover {
	color: #219150;
}

.header #menu-btn {
	display: none;
}

.search-form {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	z-index: 10000;
	-webkit-transform: translateY(-110%);
	transform: translateY(-110%);
}

.search-form.active {
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
}

.search-form #close-search {
	position: absolute;
	top: 1.5rem;
	right: 2.5rem;
	cursor: pointer;
	color: var(--ttbb-white);
	font-size: 6rem;
}

.search-form #close-search:hover {
	color: #219150;
}

.search-form form {
	width: 70rem;
	margin: 0 2rem;
	padding-bottom: 2rem;
	border-bottom: 0.2rem solid #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.search-form form input {
	width: 100%;
	font-size: 2rem;
	color: var(--ttbb-white);
	text-transform: none;
	background: none;
	padding-right: 2rem;
}

.search-form form input::-webkit-input-placeholder {
	color: #aaa;
}

.search-form form input:-ms-input-placeholder {
	color: #aaa;
}

.search-form form input::-ms-input-placeholder {
	color: #aaa;
}

.search-form form input::placeholder {
	color: #aaa;
}

.search-form form label {
	font-size: 3rem;
	cursor: pointer;
	color: var(--ttbb-white);
}

.search-form form label:hover {
	color: #219150;
}

/* Header Styles ENDS */
/* Hero Styles STARTS*/
.hero {
	background-image: url("../images/ttbb-hero-background.png");
	background-repeat: no-repeat;
	background-position: top center;
	height: 60vh;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 0px;
}

.hero-content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero-title {
	color: var(--ttbb-black);
	font-family: var(--ttbb-hero-h1-font-family);
	letter-spacing: -.5px;
	line-height: 64px;
	font-size: 44px;
	text-align: center;
	max-width: 100%;
	margin-top: 90px;
}

.hero-paragraph {
	margin: 2rem 0;
	font-family: var(--ttbb-hero-h2-font-family);
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--ttbb-black);
	max-width: 90rem;
	text-align: center;
}

.hero-options {
	display: flex;
}

.read-btn {
	margin-top: 3rem;
	font-family: var(--ttbb-bttn-font-family);
	font-weight: 400;
	border-radius: 5px;
	display: inline-block;
	cursor: pointer;
	background: #1A73e8;
	font-size: 1.6rem;
	color: var(--ttbb-white);
	padding: 13px 24px 11px;
}

.read-btn:hover {
	background: #185abc;
	font-size: 1.6rem;
}

/* Hero Styles ENDS*/
/* Blog-Section style STARTS */
.important-box {
	margin: auto;
	padding: 10px;
	font-size: 1.5rem;
	font-family: var(--ttbb-p1-font-family);
	height: auto;
	width: auto;
	background: #d7eaf8;
	border-radius: 5px;
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
}

.blog-holder {
	width: 100%;
	margin: auto;
	text-align: center;
	padding-top: 100px;
}

.blog-item {
	max-width: 1200px;
	margin: auto;
	margin-bottom: 1rem;
	align-content: center;
	transition: 0.5s;
	background-color: #ffffff;
	box-shadow: 0 0 5px #8dbbf7;
	border-radius: 0%;
	padding-top: 10px;
}

.blog-holder .blog-item .primary-tag {
	font-family: var(--ttbb-h1-font-family);
	padding-top: 40px;
	color: var(--ttbb-black);
	margin: 0;
	padding: 10 5 5 5;
	text-align: left;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1.5px;
	display: inline-block;
}

.blog-holder .blog-item h1 {
	font-family: var(--ttbb-h1-font-family);
	padding-top: 10px;
	color: var(--ttbb-black);
	font-weight: 600;
	font-size: 44px;
	text-align: center;
	max-width: 100%;
}

.img-with-text {
	position: relative;
	/*display: inline-block; */
	/* Make the width of box same as image */
}

.img-with-text .text-over-img {
	position: absolute;
	z-index: 999;
	margin: 0 auto;
	left: 0;
	right: 0;
	top: 90%;
	/* Adjust this value to move the positioned div up and down */
}

.img-with-text .text-over-img-left {
	position: sticky;
	z-index: 999;
	margin: 0 auto;
	left: 0;
	right: 0;
	top: 90%;
	/* Adjust this value to move the positioned div up and down */
}

.blog-item .blog-img {
	display: block;
	width: 80%;
	margin: auto;
	border-radius: 0.5%;
	box-shadow: 0 0 5px #d1d1d1;
}

.blog-item .blog-details {
	padding: 30px;
}

.blog-item .blog-details .blog-meta {
	padding-bottom: 20px;
	margin-bottom: 15px;
	border-bottom: 1px solid #dee2e6;
}

.blog-holder .blog-item .blog-details h2 {
	font-family: var(--ttbb-h1-font-family);
	padding-top: 20px;
	color: var(--ttbb-black);
	font-weight: 600;
	font-weight: bold;
	font-size: 2.5rem;
	text-align: left;
	max-width: 100%;
	padding-bottom: 10px;
}

.blog-item .blog-details .blog-meta ul {
	list-style: none;
	margin-bottom: 0;
	padding-left: 0;
	gap: 10px;
	display: flex;
	justify-content: space-between;
}

.blog-item .blog-details .blog-meta ul li a {
	color: #495057;
	font-weight: bold;
	font-size: 14px;
	text-decoration: none;
}

.blog-item .blog-details .blog-meta ul li a:hover {
	color: #2874f0;
}

.blog-item .blog-details .title a {
	color: #212529;
	font-weight: bold;
	font-size: 20px;
	line-height: 1.5em;
	text-decoration: none;
	font-size: 20px;
}

.blog-item .blog-details .title a:hover {
	color: #2874f0;
}

.blog-item .blog-details .blog-para {
	font-family: var(--ttbb-p1-font-family);
	padding-top: 20px;
	font-size: 16px;
	color: var(--ttbb-black);
	margin-bottom: 30px;
	text-align: left;
}

.blog-item .blog-details .blog-para-left {
	font-family: var(--ttbb-p1-font-family);
	padding-top: 15px;
	font-size: 14px;
	color: var(--ttbb-black);
	margin-bottom: 30px;
	text-align: left;
}

.blog-item .blog-details .blog-h3 {
	font-family: var(--ttbb-p1-font-family);
	padding-top: 15px;
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--ttbb-black);
	margin-bottom: 30px;
	text-align: left;
}

.blog-item .blog-details .blog-p {
	font-family: var(--ttbb-p1-font-family);
	padding-top: 15px;
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--ttbb-black);
	margin-bottom: 30px;
	text-align: left;
}

.author-main-blog-page {
	font-family: var(--ttbb-p1-font-family);
	color: var(--ttbb-grey);
	font-weight: bold;
	font-size: 10px;
	display: flex;
}

.author-section {
	margin-left: 2rem;
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.avatar-section {
	display: flex;
}

.avatar-section .avatar-img {
	vertical-align: middle;
}

.avatar-section .author {
	font-family: var(--ttbb-h2-font-family);
	font-size: 12px;
	font-weight: bold;
	padding-top: 20px;
	height: auto;
}

.social-sharing {
	margin-right: 2rem;
}

/* blockquote Styles STARTS */
.blog-item .blog-details .blockquote{
	font-size: 1.5em;
	text-align: left;
	width:90%;
	margin:20px auto;
	font-family: var(--ttbb-p1-font-family);
	font-style:italic;
	color: #555555;
	padding:1.2em 10px 1.2em 40px;
	border-left:8px solid #0CC0DF ;
	line-height:1.6;
	position: relative;
	background:#EDEDED;
  }
  
.blog-item .blog-details .blockquote::before{
	font-family:Arial;
	content: "\201C";
	color:#78C0A8;
	font-size:4em;
	position: absolute;
	left: 10px;
	top:-10px;
  }
  
.blog-item .blog-details .blockquote::after{
	content: '';
  }
  
.blog-item .blog-details .blockquote span{
	display:block;
	color:#333333;
	font-style: normal;
	font-weight: bold;
	margin-top:1em;
  }

  /* blockquote Styles ENDS */

/* Blog-Section style ENDS */
/* Index Page Blog cards section STARTS */
@keyframes down-btn {
	0% {
		bottom: 20px;
	}

	100% {
		bottom: 0px;
	}

	0% {
		opacity: 0;
	}

	100% {
		opaicty: 1;
	}
}

@-webkit-keyframes down-btn {
	0% {
		bottom: 20px;
	}

	100% {
		bottom: 0px;
	}

	0% {
		opacity: 0;
	}

	100% {
		opaicty: 1;
	}
}

@-moz-keyframes down-btn {
	0% {
		bottom: 20px;
	}

	100% {
		bottom: 0px;
	}

	0% {
		opacity: 0;
	}

	100% {
		opaicty: 1;
	}
}

@-o-keyframes down-btn {
	0% {
		bottom: 20px;
	}

	100% {
		bottom: 0px;
	}

	0% {
		opacity: 0;
	}

	100% {
		opaicty: 1;
	}
}

.category-name {
	font-family: sans-serif;
	width: -webkit-fill-available;
	text-align: center;
	font-size: 40px;
}

.card-category-2 ul,
.card-category-3 ul,
.card-category-4 ul,
.card-category-5 ul .card-category-6 ul {
	padding: 0;
}

.card-category-2 ul li,
.card-category-3 ul li,
.card-category-4 ul li,
.card-category-5 ul li,
.card-category-6 ul li {
	list-style-type: none;
	display: inline-block;
	vertical-align: top;
}

.card-category-2 ul li,
.card-category-3 ul li {
	margin: 10px 5px;
}

.card-category-1,
.card-category-2,
.card-category-3,
.card-category-4,
.card-category-5,
.card-category-6 {
	font-family: sans-serif;
	margin-bottom: 10px;
	text-align: center;
}

.card-category-1 div,
.card-category-2 div {
	display: inline-block;
}

.card-category-1>div,
.card-category-2>div:not(:last-child) {
	margin: 10px 5px;
	text-align: left;
}

/* Basic Card */
.basic-card {
	width: 300px;
	position: relative;
	-webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
	-o-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
}

.basic-card .card-content {
	padding: 30px;
}

.basic-card .card-title {
	font-size: 15px;
	font-family: var(--ttbb-h2-font-family);
}

.basic-card .card-text {
	line-height: 1.5;
	font-family: var(--ttbb-card-font-family);
}

.basic-card .card-link {
	padding: 25px;
	width: -webkit-fill-available;
}

.basic-card .card-link a {
	text-decoration: none;
	position: relative;
	padding: 10px 0px;
}

.basic-card .card-link a:after {
	top: 30px;
	content: "";
	display: block;
	height: 2px;
	left: 50%;
	position: absolute;
	width: 0;
	-webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
	-moz-transition: width 0.3s ease 0s, left 0.3s ease 0s;
	-o-transition: width 0.3s ease 0s, left 0.3s ease 0s;
	transition: width 0.3s ease 0s, left 0.3s ease 0s;
}

.basic-card .card-link a:hover:after {
	width: 100%;
	left: 0;
}

.basic-card-aqua {
	background-image: linear-gradient(to bottom right, #00bfad, #99a3d4);
}

.basic-card-aqua .card-content,
.basic-card .card-link a {
	color: var(--ttbb-white);
}

.basic-card-aqua .card-link {
	border-top: 1px solid #82c1bb;
}

.basic-card-aqua .card-link a:after {
	background: var(--ttbb-white);
}

.basic-card-lips {
	background-image: linear-gradient(to bottom right, #ec407b, #ff7d94);
}

.basic-card-lips .card-content {
	color: var(--ttbb-white);
}

.basic-card-lips .card-link {
	border-top: 1px solid #ff97ba;
}

.basic-card-lips .card-link a:after {
	background: var(--ttbb-white);
}

.basic-card-light {
	border: 1px solid #eee;
}

.basic-card-light .card-title,
.basic-card-light .card-link a {
	color: #636363;
}

.basic-card-light .card-text {
	color: #7b7b7b;
}

.basic-card-light .card-link {
	border-top: 1px solid #eee;
}

.basic-card-light .card-link a:after {
	background: #636363;
}

.basic-card-dark {
	background-image: linear-gradient(to bottom right, #252525, #4a4a4a);
}

.basic-card-dark .card-title,
.basic-card-dark .card-link a {
	color: #eee;
}

.basic-card-dark .card-text {
	color: #dcdcdcdd;
}

.basic-card-dark .card-link {
	border-top: 1px solid #636363;
}

.basic-card-dark .card-link a:after {
	color: var(--ttbb-white);
}

.error-page-h2 {
	font-family: var(--ttbb-h2-font-family);
	color: var(--ttbb-black);
	font-size: 2.0rem;
	font-weight: 600;
	margin-top: 20px;
	margin-bottom: 10px;
}

/* Image Card */
.img-card {
	width: 300px;
	position: relative;
	border: 1px solid #dadce0;
	border-radius: 8px;
	text-align: left;
}

.img-card:hover {
	-webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
	-o-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
}

.img-card .card-image {
	position: relative;
	margin: auto;
	overflow: hidden;
	border-radius: 5px 5px 0px 0px;
	height: 200px;
}

.img-card .card-image img {
	width: 100%;
	border-radius: 5px 5px 0px 0px;
	-webkit-transition: all 0.8s;
	-moz-transition: all 0.8s;
	-o-transition: all 0.8s;
	transition: all 0.8s;
}

.img-card .card-image:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

.img-card .card-text {
	padding: 0 10px 10px;
	line-height: 1.5;
}

.img-card .card-text p {
	font-family: var(--ttbb-card-font-family);
	color: var(--ttbb-black);
	font-weight: 300;
	font-size: 14px;
	text-align: left;
	padding-top: 5px;
}

.img-card .card-link {
	padding: 20px 15px 30px;
	width: -webkit-fill-available;
}

.img-card .card-link a {
	text-decoration: none;
	position: relative;
	padding: 10px 0;
}

.img-card .card-link a:after {
	top: 30px;
	content: "";
	display: block;
	height: 2px;
	left: 50%;
	position: absolute;
	width: 0;
	-webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
	-moz-transition: width 0.3s ease 0s, left 0.3s ease 0s;
	-o-transition: width 0.3s ease 0s, left 0.3s ease 0s;
	transition: width 0.3s ease 0s, left 0.3s ease 0s;
}

.img-card .card-link a:hover:after {
	width: 100%;
	left: 0;
}

.img-card.iCard-style1 .card-title {
	position: absolute;
	margin: 0 10px;
	font-family: var(--ttbb-card-font-family);
	z-index: 1;
	font-size: 16px;
	font-weight: 400;
	color: var(--ttbb-white);
}

.img-card.iCard-style1 .card-link a {
	color: var(--ttbb-a-link-blue);
	font-size: 12px;
}

.img-card.iCard-style1 .card-link a:after {
	background: var(--ttbb-a-link-blue);
}

.img-card.iCard-style2 .card-title {
	padding: 15px;
	font-size: 25px;
	font-family: var(--ttbb-card-font-family);
}

.img-card.iCard-style2 .card-image {
	margin-bottom: 15px;
}

.img-card.iCard-style2 .card-caption {
	text-align: center;
	top: 80%;
	font-size: 17px;
	color: var(--ttbb-white);
	position: absolute;
	width: 100%;
	font-family: 'Roboto', sans-serif;
	z-index: 1;
}

.img-card.iCard-style2 .card-link a {
	border: 1px solid;
	padding: 8px;
	border-radius: 3px;
	color: ttbb-black;
	font-size: 13px;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.img-card.iCard-style2 .card-link a:hover {
	background: ttbb-black;
}

.img-card.iCard-style2 .card-link a:hover span {
	color: var(--ttbb-white);
}

.img-card.iCard-style3 {
	text-align: center;
}

.img-card.iCard-style3 .card-title {
	top: 80%;
	font-size: 30px;
	color: var(--ttbb-white);
	position: absolute;
	width: 100%;
	font-family: var(--ttbb-card-font-family);
	z-index: 1;
}

.img-card.iCard-style3 .card-text {
	color: #636060;
}

.img-card.iCard-style3 .card-link {
	border-top: 1px solid #e8e8e8;
}

.img-card.iCard-style3 .card-link a {
	color: #585858;
}

.img-card.iCard-style3 .card-link a:after {
	background: #585858;
}

.img-card.iCard-style4 {
	text-align: right;
}

.img-card.iCard-style4 .card-caption {
	position: absolute;
	width: 100%;
	font-family: var(--ttbb-card-font-family);
	z-index: 1;
	top: 10px;
	right: 10px;
	color: var(--ttbb-white);
}

.img-card.iCard-style4 .card-title {
	width: 100%;
	padding: 20px 0px 12px 0;
	color: #E91E63;
}

.img-card.iCard-style4 .card-title span {
	font-size: 25px;
	margin-right: 12px;
}

.img-card.iCard-style4 .toggle {
	cursor: pointer;
	padding: 8px 0px 13px 0px;
	width: 55px;
}

.img-card.iCard-style4 .toggle span,
.img-card.iCard-style4 .toggle span:nth-child(2),
.img-card.iCard-style4 .toggle span:nth-child(3) {
	position: absolute;
	width: 8px;
	height: 8px;
	background: #E91E63;
	cursor: pointer;
}

.img-card.iCard-style4 .toggle span:nth-child(1) {
	right: 15px;
}

.img-card.iCard-style4 .toggle span:nth-child(2) {
	right: 27px;
}

.img-card.iCard-style4 .toggle span:nth-child(3) {
	right: 39px;
}

.img-card.iCard-style4 .card-text {
	opacity: 0;
	line-height: 0;
	padding-bottom: 0;
	color: #4c4c4c;
	-webkit-transition: ease-in-out 0.5s;
	-moz-transition: ease-in-out 0.5s;
	-o-transition: ease-in-out 0.5s;
	transition: ease-in-out 0.5s;
}

.img-card.iCard-style4 .toggle.active~.card-text {
	opacity: 1;
	line-height: 1.5;
	padding-bottom: 10px;
}

.img-card.iCard-style4 .card-link {
	border-top: 1px solid #e8e8e8;
}

.img-card.iCard-style4 .card-link a {
	color: #E91E63;
}

.img-card.iCard-style4 .card-link a:after {
	background: #E91E63;
}


/* Blog Card - STARTS */

.cards-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 2fr));
	grid-auto-rows: 200px;
	grid-gap: 20px;
	height: 100%;
	justify-content: center;
}

.cards-card {
	display: flex;
	background: #f2f2f2;
	border-radius: 5px;
	justify-content: center;
	box-shadow: 4px 4px 8px -3px rgba(0, 0, 0, 0.15);
}

.cards-avatar {
	align-items: center;
	justify-content: center;
	display: flex;
	padding: 15px 0 15px 15px;
}

.cards-image {
	width: 90px;
	height: auto;
}

.content-container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 20px;
	justify-content: center;
}

.cards-title {
	margin: 0 0 5px 0;
	font-weight: bold;
}

.cards-content {
	font-size: 0.8em;
	margin: 0;
}

/* Blog Card - ENDS */


/* Overlay Image Card */
.ioverlay-card {
	position: relative;
	text-align: left;
}

.ioverlay-card img {
	height: auto;
	width: 100%;
	border-radius: 4px;
}

.ioverlay-card .card-content {
	position: absolute;
	top: 25px;
	left: 20px;
}

.ioverlay-card .card-content .card-title {
	font-size: 25px;
}

.io-card-1 {
	color: var(--ttbb-white);
}

.io-card-1 .card-content .card-text {
	width: 95%;
	line-height: 1.5;
	padding-bottom: 10px;
}

.io-card-1 .card-link {
	position: absolute;
	top: 140px;
	left: 20px;
}

.io-card-1 .card-link a {
	color: var(--ttbb-white);
	text-decoration: none;
	padding: 10px;
	border: 1px solid;
	border-radius: 4px;
	background: #3F51B5;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.io-card-1 .card-link a:hover {
	color: #3F51B5;
	background: var(--ttbb-white);
	border-color: var(--ttbb-white);
}

.io-card-2 .card-content {
	color: var(--ttbb-white);
}

.io-card-2 .card-link {
	position: absolute;
	bottom: 30px;
	left: 20px;
}

.io-card-2 .card-link a {
	color: var(--ttbb-white);
	text-decoration: none;
	padding: 10px;
	border: 1px solid #fff;
	border-radius: 4px;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.io-card-2 .card-link a:hover {
	color: ttbb-black;
	background-color: var(--ttbb-white);
}

.io-card-2 .card-content .card-text {
	line-height: 1.5;
	padding-bottom: 10px;
}

/* Product & Shop Cards */
.card-category-4 .sp-card-1 {
	background-image: linear-gradient(#f74545, #673AB7);
	height: 245px;
	width: 535px;
	text-align: left;
	-webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
	-o-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
}

.card-category-4 .sp-card-1 .shop-button {
	padding-left: 20px;
}

.card-category-4 .sp-card-1 ul {
	padding: 0;
}

.card-category-4 .sp-card-1 ul li {
	list-style-type: none;
	display: inline-block;
}

.card-category-4 .sp-card-1 ul li:nth-child(1) {
	padding: 20px 20px;
	float: left;
}

.card-category-4 .sp-card-1 ul li:nth-child(1) .off-label {
	border: 1px solid #fff;
	background: var(--ttbb-white);
	font-size: 11px;
	padding: 7px;
}

.card-category-4 .sp-card-1 ul li:nth-child(1) .return-line {
	font-size: 13px;
	padding: 20px 0 15px 0;
	color: var(--ttbb-white);
}

.card-category-4 .sp-card-1 .shop-button a {
	text-decoration: none;
	color: var(--ttbb-white);
	border: 1px solid;
	padding: 10px 15px;
	background: #1f3c3d;
	-webkit-transition: ease-in-out .2s;
	-moz-transition: ease-in-out .2s;
	-o-transition: ease-in-out .2s;
	transition: ease-in-out .2s;
}

.card-category-4 .sp-card-1 .shop-button a:hover {
	background: transparent;
}

.card-category-4 .sp-card-1 ul li:nth-child(2) {
	text-align: right;
	padding: 0;
	float: right;
}

.card-category-4 .sp-card-1 ul li:nth-child(2) img {
	height: 170px;
	padding: 15px 0 0;
	-webkit-transition: all .3s ease-in;
	-moz-transition: all .3s ease-in;
	-o-transition: all .3s ease-in;
	transition: all .3s ease-in;
}

.card-category-4 .sp-card-1 ul li:nth-child(2) img:hover {
	-webkit-transform: scale(0.90);
	-moz-transform: scale(0.90);
	-o-transform: scale(0.90);
	transform: scale(0.90);
}

.card-category-4 .sp-card-1 ul li:nth-child(2) .price-start {
	text-align: center;
	font-size: 18px;
	color: var(--ttbb-white);
	padding: 18px 0px 0px;
}

.card-category-4 .sp-card-1 .card-title {
	color: var(--ttbb-white);
	font-size: 23px;
	font-weight: 550;
}

.card-category-4 .sp-card-1 .sub-line {
	padding: 8px 0px 15px 0px;
	color: var(--ttbb-white);
	font-size: 20px;
}

.card-category-4 .sp-card-2 {
	width: 230px;
	border: 1px solid #f9f9f9;
	text-align: left;
	-webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
	-o-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
}

.card-category-4 .sp-card-2 .overlap {
	background: #3f51b57a;
	width: inherit;
	height: 0;
	position: absolute;
	text-align: center;
	opacity: 0;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}

.card-category-4 .sp-card-2:hover .overlap {
	opacity: 1;
	height: 204px;
}

.card-category-4 .sp-card-2 .overlap a {
	position: relative;
	top: 50%;
	text-decoration: none;
	color: #673AB7;
	padding: 10px;
	font-size: 14px;
	font-weight: 600;
	background: var(--ttbb-white);
}

.card-category-4 .sp-card-2 .card-image {
	text-align: center;
}

.card-category-4 .sp-card-2 .card-image img {
	height: 200px;
}

.card-category-4 .sp-card-2 .card-content {
	padding: 20px;
}

.card-category-4 .sp-card-2 .card-content .card-title {
	font-weight: 600;
}

.card-category-4 .sp-card-2 .card-content .price-start {
	font-weight: 600;
	color: #673AB7;
	float: right;
}

.card-category-4 .sp-card-2 .card-content .card-caption {
	font-size: 14px;
	color: #717171;
	padding: 15px 0px 10px;
}

.card-category-4 .sp-card-2 .card-content .cloth-size,
.card-category-4 .sp-card-2 .card-content .cloth-colors {
	padding: 10px 0;
	font-size: 13px;
	color: #545454;
	text-transform: uppercase;
}

.card-category-4 .sp-card-2 .card-content .cloth-colors span:not(:nth-child(1)) {
	position: absolute;
	width: 15px;
	height: 15px;
	border-radius: 40px;
}

.card-category-4 .sp-card-2 .card-content .cloth-colors .color1 {
	background: red;
	border: 1px solid ttbb-black;
	margin-left: 10px;
}

.card-category-4 .sp-card-2 .card-content .cloth-colors .color2 {
	background: blue;
	border: 1px solid ttbb-black;
	margin-left: 35px;
}

.card-category-4 .sp-card-2 .card-content .cloth-colors .color3 {
	background: Orange;
	border: 1px solid ttbb-black;
	margin-left: 60px;
}

.card-category-4 .sp-card-2 .card-content .cloth-colors .color4 {
	background: ttbb-black;
	border: 1px solid ttbb-black;
	margin-left: 85px;
}

.card-category-4 .sp-card-3 {
	width: 550px;
	height: 345px;
	border: 1px solid #efefef;
	-webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
	-o-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
}

.card-category-4 .sp-card-3 .card-title {
	color: #525252;
	font-weight: 600;
	font-size: 25px;
	padding: 15px 20px;
	text-align: right;
	width: 40%;
	float: right;
}

.card-category-4 .sp-card-3 .footer-card {
	padding: 0;
}

.card-category-4 .sp-card-3 .footer-card p {
	font-size: 15px;
	color: #505050;
	line-height: 1.5;
}

.card-category-4 .sp-card-3 .buy-btn {
	padding: 0px 0px 35px 0;
}

.card-category-4 .sp-card-3 .buy-btn a {
	text-decoration: none;
	padding: 12px 65px;
	border: 1px solid;
	background-color: #ff4f1d;
	color: var(--ttbb-white);
}

.card-category-4 .sp-card-3 .cart-btn a {
	text-decoration: none;
	padding: 12px 53px;
	border: 1px solid;
	background-color: #ff4f1d;
	color: var(--ttbb-white);
}

.card-category-4 .sp-card-3 .footer-card li:nth-child(1) {
	display: inline-block;
	padding-top: 30px;
}

.card-category-4 .sp-card-3 .footer-card li:nth-child(2) {
	display: inline-block;
	width: 55%;
	text-align: right;
}

.card-category-4 .sp-card-3 .footer-card li:nth-child(2) span {
	font-weight: 600;
}

.card-category-4 .sp-card-3 ul {
	padding: 0px 10px 10px 10px;
}

.card-category-4 .sp-card-3 ul li img {
	height: 180px;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}

.card-category-4 .sp-card-3 ul li img:hover {
	-webkit-transform: scale(0.90);
	-moz-transform: scale(0.90);
	-o-transform: scale(0.90);
	transform: scale(2);
}

.card-category-4 .sp-card-3 .product-details .product-img {
	width: 49%;
	float: left;
	padding-top: 20px;
}

.card-category-4 .sp-card-3 .product-details .product-description {
	width: 50%;
	text-align: right;
}

.card-category-4 .sp-card-3 .product-details .product-description a {
	text-decoration: none;
	color: #525252;
}

.card-category-4 .sp-card-3 .product-details .product-description ul li {
	display: list-item;
	font-size: 15px;
	color: #585858;
	direction: rtl;
	line-height: 1.5;
}

.card-category-5 .all-pr-cards {
	padding: 0;
}

.card-category-5 .per-card-1 {
	text-align: center;
	width: 250px;
	background-image: linear-gradient(#315386, #ffffff);
	-webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	-o-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.card-category-5 .per-card-1 .card-image {
	padding: 20px;
}

.card-category-5 .per-card-1 .card-image img {
	height: 200px;
}

.card-category-5 .per-card-1 .card-content .card-title {
	font-size: 20px;
	padding-bottom: 6px;
}

.card-category-5 .per-card-1 .card-content .per-position {
	color: #002255;
	padding-bottom: 10px;
}

.card-category-5 .per-card-1 .card-content .social-icons i {
	font-size: 30px;
	padding: 5px;
	-webkit-transition: all .2s ease-in;
	-moz-transition: all .2s ease-in;
	-o-transition: all .2s ease-in;
	transition: all .2s ease-in;
}

.card-category-5 .per-card-1 .card-content .social-icons i:hover {
	color: #383838;
}

.card-category-5 .per-card-1 .card-content .card-btn button {
	margin-top: 15px;
	width: 100%;
	padding: 15px;
	background: ttbb-black;
	color: var(--ttbb-white);
	border: none;
	font-size: 18px;
	cursor: pointer;
	-webkit-transition: all .2s ease-in;
	-moz-transition: all .2s ease-in;
	-o-transition: all .2s ease-in;
	transition: all .2s ease-in;
}

.card-category-5 .per-card-1 .card-content .card-btn button:hover {
	background: #383838;
}

.card-category-5 .per-card-2 {
	width: 300px;
	padding: 30px 0 0 0;
	margin: 0 40px;
	/*You may have remove this CSS. I used this CSS for apply some margin from the card before*/
	-webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	-o-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.card-category-5 .per-card-2 .card-image {
	padding: 10px 15px;
	background-image: linear-gradient(#3F51B5, #673AB7);
	width: 319px;
	position: relative;
	right: 25px;
}

.card-category-5 .per-card-2 .card-image::before {
	content: '';
	position: absolute;
	width: 0px;
	height: 0px;
	border: 12px solid #430ca5;
	top: -24px;
	left: 0px;
	border-left-color: transparent;
	border-top-color: transparent;
}

.card-category-5 .per-card-2 .card-image::after {
	content: '';
	position: absolute;
	width: 0px;
	height: 0px;
	border: 12px solid #430ca5;
	top: 104px;
	right: 0;
	border-right-color: transparent;
	border-bottom-color: transparent;
}

.card-category-5 .per-card-2 .card-image img {
	border-radius: 40px;
	height: 80px;
}

.card-category-5 .per-card-2 .card-image ul {
	padding: 0;
}

.card-category-5 .per-card-2 .card-image .per-name {
	font-size: 23px;
	color: var(--ttbb-white);
	margin: 5px 0px 0px 10px;
}

.card-category-5 .per-card-2 .card-image .per-position {
	font-size: 18px;
	color: var(--ttbb-white);
	margin: 15px 0px 0px 15px;
}

.card-category-5 .per-card-2 .card-image .card-btn {
	position: absolute;
	width: 40px;
	height: 40px;
	top: 80px;
	right: 40px;
	border: 4px solid #fff;
	border-radius: 30px;
	background: #653cb7;
	cursor: pointer;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.card-category-5 .per-card-2 .card-image .card-btn:hover {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}

.card-category-5 .per-card-2 .card-image .card-btn span,
.card-category-5 .per-card-2 .card-image .card-btn span::after {
	content: '';
	width: 23px;
	height: 3px;
	background: var(--ttbb-white);
	position: absolute;
	top: 18px;
	left: 8px;
}

.card-category-5 .per-card-2 .card-image .card-btn span::after {
	left: 0;
	top: 0;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}

.card-category-5 .per-card-2 .card-content {
	padding: 40px 30px 20px;
	text-align: justify;
}

.card-category-5 .per-card-2 .card-content .card-text {
	line-height: 1.5;
	color: #585858;
	font-size: 15px;
}

.card-category-5 .per-card-2 .card-content .social-icons {
	text-align: center;
	padding-top: 20px;
}

.card-category-5 .per-card-2 .card-content .social-icons i {
	padding: 10px;
	font-size: 30px;
	color: #430ca5;
	cursor: pointer
}

.card-category-5 .per-card-2 .card-content .social-icons i:hover {
	color: ttbb-black;
}

.card-category-5 .per-card-3 {
	width: 400px;
	height: 240px;
	-webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	-o-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.card-category-5 .per-card-3:hover .card-content .social-icons {
	opacity: 1;
	height: 100%;
}

.card-category-5 .per-card-3:hover .social-icons .card-btn {
	bottom: 0px !important;
	-webkit-animation: down-btn 1.5s;
	-moz-animation: down-btn 1.5s;
	-o-animation: down-btn 1.5s;
	animation: down-btn 1.5s;
}

.card-category-5 .per-card-3 .card-image {
	position: relative;
	background: #009688;
	padding-left: 20px;
	text-align: left;
}

.card-category-5 .per-card-3 .card-image img {
	height: 90px;
	border-radius: 50px;
	padding: 5px;
	margin-right: 10px;
}

.card-category-5 .per-card-3 .card-image .per-name {
	position: absolute;
	top: 40%;
	text-transform: uppercase;
	letter-spacing: 7px;
	font-size: 20px;
	color: var(--ttbb-white);
}

.card-category-5 .per-card-3 .card-content {
	text-align: center;
	padding: 20px;
	position: relative;
}

.card-category-5 .per-card-3 .card-content .per-position {
	font-size: 22px;
	text-transform: uppercase;
	letter-spacing: 4px;
	color: #009688;
}

.card-category-5 .per-card-3 .card-content .card-text {
	padding: 10px;
}

.card-category-5 .per-card-3 .card-content .card-text span {
	font-size: 13px;
	color: #007368;
}

.card-category-5 .per-card-3 .card-content .social-icons {
	position: absolute;
	top: 0;
	width: 100%;
	left: 0;
	opacity: 0;
	height: 0%;
	background: #009688;
	border-top: 1px solid #5eada5;
	cursor: pointer;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}

.card-category-5 .per-card-3 .card-content .social-icons i {
	margin: 15px;
	font-size: 30px;
	color: var(--ttbb-white);
	cursor: pointer;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.card-category-5 .per-card-3 .card-content .social-icons i:hover {
	-webkit-transform: scale(2);
	-moz-transform: scale(2);
	-o-transform: scale(2);
	transform: scale(2);
}

.card-category-5 .per-card-3 .card-content .social-icons .card-btn {
	position: absolute;
	bottom: 10px;
	text-align: center;
	width: 100%;
}

.card-category-5 .per-card-3 .card-content .social-icons .card-btn button {
	cursor: pointer;
	width: 100%;
	padding: 15px;
	font-size: 18px;
	color: var(--ttbb-white);
	background: #03695f;
	border: none;
}
/* Index Page Blog cards section ENDS */




/* Google Blog cards section STARTS */
.article-list__feed .feed-article {
    grid-gap: 8px 24px;
    border: 1px solid #dadce0;
    border-radius: 8px;
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    min-height: 132px;
    padding: 24px 16px 16px 24px;
    transition: all .15s;
}
.feed-article {
    border-top: 1px solid #d7d7d7;
    display: flex;
    padding: 30px 0;
}
blockquote, dd, div, dl, dt, form, h1, h2, h3, h4, h5, h6, li	{
    margin: 0;
    padding: 0;
}
*, :after, :before {
    box-sizing: border-box;
}

/* Google Blog cards section ENDS */

/* Blog Hero Styles STARTS*/
.blog-hero {
	background-image: url("../images/CloudBlogs.png");
	background-repeat: no-repeat;
	background-position: top center;
	height: 50vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.blog-hero-content {
	font-family: var(--ttbb-p1-font-family);
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 3rem;
}

.blog-hero-title {
	color: var(--ttbb-black);
	font-weight: 600;
	font-weight: bold;
	font-size: 3.5rem;
	text-align: center;
	max-width: 100%;
}

.blog-hero-paragraph {
	font-family: var(--ttbb-p1-font-family);
	margin: 2rem 0;
	font-size: 2rem;
	color: var(--ttbb-black);
	max-width: 90rem;
	font-weight: 400;
	text-align: center;
}

.blog-hero-options {
	display: flex;
}

.blog-bttn-read {
	background-color: var(--ttbb-white);
	color: var(--orange);
	border: 1px solid var(--orange);
}

.blog-bttn-pdf {
	background-color: var(--orange);
	color: var(--ttbb-white);
	margin-left: 0.5rem;
}

/*Blog Hero Styles ENDS*/
/*Blog List Styles STARTS*/
/* Featured */
.featured,
.recipes {
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 20px 10px 35px;
}

.featured h1,
.recipes h1 {
	font-size: 35px;
	margin-bottom: 25px;
	text-align: center;
}

.featured .cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: 215px 215px;
	grid-gap: 10px;
	grid-template-areas:
		"one one three four"
		"one one two two";
}

.cards .card {
	display: block;
	border-radius: 5px;
	overflow: hidden;
	transition: all 0.2s;
}

.featured .card:hover,
.recipes .card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, .25);
}

.featured .card:hover img,
.recipes .card:hover img {
	transform: scale(1.05);
	filter: brightness(90%);
}

.tag-1 {
	font-family: var(--ttbb-h2-font-family);
	font-weight: bold;
	position: relative;
	float: left;
	color: var(--ttbb-white);
	background: var(--ttbb-a-link-blue);
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: 5px;
	letter-spacing: 1px;
}

.card-1 {
	grid-area: one;
}

.card-2 {
	grid-area: two;
}

.card-3 {
	grid-area: three;
}

.card-4 {
	grid-area: four;
}

.featured article,
.recipes article {
	height: 100%;
	position: relative;
	padding: 12px;
}

img {
	object-fit: cover;
}

.featured img,
.recipes img {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transition: all 0.4s;
}

.featured .tag {
	float: left;
	color: rgb(255, 0, 0);
	background: var(--ttbb-orange);
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: 5px;
	letter-spacing: 1px;
}

.featured .comments {
	float: right;
	color: rgb(255, 0, 0);
}

.featured .fa-comment {
	color: var(--ttbb-orange);
}

.featured h2,
.recipes h2 {
	color: rgb(255, 255, 255);
	text-transform: capitalize;
	font-weight: normal;
	line-height: 1;
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 15px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
	width: 100%;
}

.card-1 h2 {
	font-size: 40px;
}

.card-2 h2 {
	font-size: 30px;
}

.fa-play-circle {
	color: ttbb-white;
	font-size: 60px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* News Hero Styles STARTS*/
.news-hero {
	background-image: url("../images/news-hero.png");
	background-repeat: no-repeat;
	background-position: top center;
	height: 50vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.news-hero-content {
	font-family: var(--ttbb-p1-font-family);
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 3rem;
}

.news-hero-title {
	color: var(--ttbb-black);
	font-weight: 600;
	font-weight: bold;
	font-size: 3.5rem;
	text-align: center;
	max-width: 100%;
}

.news-hero-paragraph {
	font-family: var(--ttbb-p1-font-family);
	margin: 2rem 0;
	font-size: 2rem;
	color: var(--ttbb-black);
	max-width: 90rem;
	font-weight: 400;
	text-align: center;
}

.news-hero-options {
	display: flex;
}

.news-bttn-read {
	background-color: var(--ttbb-white);
	color: var(--orange);
	border: 1px solid var(--orange);
}

.news-bttn-pdf {
	background-color: var(--orange);
	color: var(--ttbb-white);
	margin-left: 0.5rem;
}

/*News Hero Styles ENDS*/
/* Ad 1 */
.ad-1 {
	max-width: 1180px;
	margin: 0 auto;
	background: var(--grey-1);
	height: 150px;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 25px;
}

.ad-1 h1 {
	font-size: 33px;
	transform: translateY(-3px);
	text-transform: capitalize;
	font-family: var(--cardfont);
}

aside .btn {
	background: ttbb-white;
	color: var(--ttbb-orange);
	margin-left: 30px;
	transition: all 0.2s;
}

aside .btn:hover {
	transform: translateY(-5px);
	box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
}

/* Mid Area */
.mid-area {
	display: grid;
	grid-template-columns: 2.5fr 1.5fr;
	grid-column-gap: 5px;
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 0 1px;
	margin-bottom: 40px;
}

/* Latest */
.latest h1 {
	font-size: 35px;
	margin-bottom: 30px;
	text-align: center;
}

.latest .card {
	display: block;
}

.latest .card:not(:last-child) {
	margin-bottom: 30px;
}

.latest .card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.latest .card:hover h2 {
	color: var(--ttbb-orange);
}

.latest article {
	display: flex;
}

.latest .img-container {
	height: 250px;
	flex: 1;
}

.latest img {
	height: 100%;
	width: 100%;
}

.latest .description {
	flex: 1.25;
	background: rgb(248, 246, 246);
	padding: 20px 25px;
	display: flex;
	flex-direction: column;
}

.tag-2 {
	font-family: var(--ttbb-h2-font-family);
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--ttbb-orange);
	font-weight: bold;
}

.latest h2 {
	font-weight: normal;
	color: var(--ttbb-black);
	font-size: 25px;
	line-height: 1;
	margin-bottom: 10px;
	text-transform: capitalize;
	transition: all 0.2s;
}

.latest .tag-2 {
	font-size: 14px;
	margin-bottom: 10px;
}

.latest p {
	font-size: 14px;
	color: var(--ttbb-black);
}

.latest footer {
	margin-top: auto;
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	color: var(--grey-2);
	padding-top: 15px;
}

.fa-clock {
	margin-left: 8px;
}

/* Sidebar */
.sidebar {
	position: sticky;
	top: 90px;
	align-self: start;
	padding: 10px 1px;
}

/* Popular */
.popular {
	padding: 1px 1px;
}

.popular ul {
	list-style-type: none;
}

.popular h1 {
	font-size: 35px;
	margin-bottom: 30px;
	backface-visibility: hidden;
	text-align: center;
}

/* 
.popular li:not(:last-child) {
	margin-bottom: 20px;
}
*/

.popular li {
	margin-bottom: 20px;
	margin-left: 0;
}


.popular article {
	height: 150px;
	display: flex;
	border-bottom: 1px solid #e8eaed;
	padding: 10px 1px;
}

.popular .article_image {
	height: 80%;
	-o-object-fit: cover;
	object-fit: cover;
	transition: all .2s;
	width: 60%;
	border-radius: 2%;
}

.lazy-image--no-blur {
	filter: none !important;
}

.popular li:hover img {
	transform: scale(1.01);
	box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
	transition: all 0.2s;
}

.popular .description {
	padding: 1px 1px 1px 1px;
	display: flex;
	flex-direction: column;
}

.popular .tag-2 {
	font-family: var(--ttbb-card-font-family);
	color: var(--ttbb-black);
	padding-top: 1px;
	font-size: 16px;
	text-transform: capitalize;
}

.popular h2 {
	font-family: var(--ttbb-card-font-family);
	font-size: 14px;
	font-weight: 800px;
	color: var(--ttbb-black);
	line-height: 2;
	margin: 1px 0;
}

.popular li {
	list-style-type: none;
}

.popular li:hover h2 {
	color: var(--ttbb-orange);
}

.popular .stars {
	font-size: 12px;
}

.fa-star {
	color: gold;
}

/* Ad 2 */
.ad-2 {
	background: var(--grey-1);
	height: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--grey-2);
	border-radius: 5px;
}

/* Collections */
.collections {
	background: var(--ttbb-light-grey);
	padding: 30px 0 20px;
}

.collections h1 {
	font-size: 35px;
	margin-bottom: 33px;
	text-align: center;
}

.collections h2 {
	font-family: var(--ttbb-h2-font-family);
	font-size: 16px;
	text-align: center;
}

.collections p {
	font-family: var(--ttbb-card-font-family);
	font-size: 12px;
	margin-bottom: 33px;
	text-align: center;
}

.collections .cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 auto;
	/*max-width: calc(var(--max-w) * 0.95);  Control width of "Cloud certifications | Exam questions|Cloud certifications | Exam questions" section in blog.php */
}

.collections .card {
	margin: 0 20px;
	flex: 0.35 1 300px;
}

.collections .card:hover {
	transform: translateY(-5px);
}

.collections img {
	height: 200px;
	width: 100%;
	border-radius: 5px;
}

.collections .card:hover img {
	box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
}

.collections .description {
	background: rgb(235, 235, 235);
	border-radius: 5px;
	width: 255px;
	margin: 0 auto;
	transform: translateY(-45px);
	text-align: center;
	padding: 0px 6px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
	transition: all 0.3s;
}

.collections .card:hover .description {
	transform: translateY(-60px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
}

.collections .tag-2 {
	font-family: var(--ttbb-h2-font-family);
	font-size: 12px;
	font-weight: bold;
}

/* Browse Recipes Section */
.recipes {
	margin-top: 10px;
	margin-bottom: 20px;
}

.recipes h1 {
	margin-bottom: 35px;
	text-align: center;
}

.recipes .cards {
	margin-bottom: 50px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	grid-auto-rows: 125px;
	grid-gap: 20px;
}

.small {
	grid-row: span 2;
}

.medium {
	grid-row: span 3;
}

.big {
	grid-row: span 4;
}

.recipes .stars {
	color: ttbb-white;
	position: relative;
}

.recipes .fa-star {
	font-size: 19px;
	margin-left: 2px;
}

.recipes .stars,
.recipes h2 {
	opacity: 0;
	transform: translateY(10px);
	transition: all .4s;
}

.recipes .card:hover .stars,
.recipes .card:hover h2 {
	opacity: 1;
	transform: translateY(0);
}

.recipes .special-link {
	display: block;
	margin: 0 auto;
	width: max-content;
}

/* Ad 3 */
.ad-3 {
	background: var(--ttbb-yellow);
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
}

.ad-3 .container {
	text-align: center;
}

.ad-3 h1 {
	font-weight: bold;
}

/*Blog List Styles ENDS*/
/* Social Media ICONS style STARTS */
.fa {
	margin-top: 3rem;
	padding-top: 3rem;
	padding: 1px;
	font-size: 20px;
	width: 40px;
	text-align: center;
	text-decoration: none;
	border-radius: 50%;
}

/* Add a hover effect if you want */
.fa:hover {
	opacity: 0.7;
	cursor: pointer;
	font-size: 20px;
	color: var(--bttn-blue);
}

/* Set a specific color for each brand */
/* YouTube */
.fa-youtube {
	color: ttbb-white;
}

/* Facebook */
.fa-facebook {
	color: ttbb-white;
}

/* Twitter */
.fa-twitter {
	color: ttbb-white;
}

/* Instagram */
.fa-instagram {
	color: ttbb-white;
}

/* LinkedIn */
.fa-linkedin {
	color: ttbb-white;
}

/* Google */
.fa-google {
	color: ttbb-white;
}

/* Pinterest */
.fa-pinterest {
	color: ttbb-white;
}

/* Reddit */
.fa-reddit {
	color: ttbb-white;
}

/* Tumblr */
.fa-tumblr {
	color: ttbb-white;
}

/* WhatsApp */
.fa-whatsapp {
	color: ttbb-white;
}

/* Social Media ICONS style ENDS */
/* Latest Upload style STARTS */
.section-title {
	font-family: var(--ttbb-h2-font-family);
	font-size: 36px;
	text-align: center;
	font-weight: 600;
	margin: 1rem auto;
}

.section-line {
	width: 72px;
	height: 6px;
	margin: 1rem auto;
	border-radius: 100rem;
	background-color: var(--bttn-blue);
}

.container {
	max-width: 1400px;
	margin: auto;
}

.container.two .card::after {
	content: "";
	width: 80px;
	height: 80px;
	background: #fff9d8;
	position: absolute;
	top: -30px;
	border-radius: 35%;
	left: -20px;
}

.container .grid-cards {
	display: flex;
	justify-content: center;
	flex: 1;
	max-width: 1024px;
	margin: 1rem auto;
}

.container .grid-cards .card {
	position: relative;
	text-align: justify;
	flex: 1;
	padding: 1rem 1rem 1.5rem;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
	border-radius: 1rem;
	min-height: 200px;
	margin: 10px;
	transition: all ease 0.3s;
	overflow: hidden;
	animation: fadeInLeft 1.5s backwards;
}

.container .grid-cards .card:nth-child(2) {
	animation-delay: 0.15s;
}

.container .grid-cards .card:nth-child(3) {
	animation-delay: 0.2s;
}

.container .grid-cards .card:nth-child(4) {
	animation-delay: 0.3s;
}

.container .grid-cards .card:hover {
	transform: translateY(-6px);
	-webkit-transform: translateY(-6px);
}

.container .grid-cards .card img {
	aspect-ratio: inherit;
	width: 100%;
	border-radius: 5px;
	margin-bottom: 10px;
	position: relative;
	max-height: 320px;
	object-fit: cover;
	box-shadow: 0 6px 16px -7px #aaa;
}

.container .grid-cards .card .card-body {
	color: var(--ttbb-black);
	width: 100%;
	margin-bottom: 40px;
	padding: 0 0.8rem;
	position: relative;
}

.container .grid-cards .card .card-body .icon {
	display: flex;
	width: 100%;
	text-align: left;
	padding: 15px 0;
}

.container .grid-cards .card .card-body .icon i {
	position: relative;
	font-size: 25px;
	transition: 0.5s;
	line-height: 0;
	top: -7px;
	left: -12px;
	z-index: 2;
}

.container .grid-cards .card .card-body .icon i::before {
	background: #ffd854;
	background-clip: border-box;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.container .grid-cards .card .card-body .icon h3 {
	margin: -2px 0 0 20px;
}

.container .grid-cards .card .card-body .card-title {
	font-family: var(--ttbb-card-font-family);
	font-weight: 400;
	font-size: 16px;
	text-align: left;
	padding-bottom: 2px;
}

.container .grid-cards .card .card-body .card-body-text {
	font-family: var(--ttbb-card-font-family);
	font-weight: 300;
	font-size: 14px;
	text-align: left;
	padding-top: 5px;
}

.container .grid-cards .card .card-footer {
	font-family: var(--ttbb-card-font-family);
	display: flex;
	justify-content: flex-end;
	position: absolute;
	bottom: 0;
	width: calc(100% - 1rem);
}

.container .grid-cards .card .card-footer a {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	width: 56%;
	height: 40px;
}

.container .grid-cards .card .card-footer a:hover {
	filter: brightness(0.98);
}

@keyframes fadeInLeft {
	0% {
		transform: translate(-100%, 0);
	}

	100% {
		opacity: 1;
		transform: none;
	}
}

/* Table style: used in many pages STARTS */
table {
	border: 1px solid #ccc;
	border-collapse: collapse;
	margin: 0;
	padding: 0;
	width: 100%;
	table-layout: fixed;
}

table caption {
	font-family: var(--ttbb-h1-font-family);
	font-size: 2em;
	margin: .5em 0 .75em;
}

table tr {
	background-color: #fff;
	border: 1px solid #e1e5e9;
	padding: .35em;
	border-radius: 3px;
}

table thead tr:first-child {
	border: 1px solid #0f82e6;
}

table th {
	padding: 1.625em;
	text-align: left;
	color: #9da9b9;
	font-size: 14px;
	font-family: var(--ttbb-h1-font-family);
}

table td {
	padding: 1.625em;
	text-align: Left;
	color: #000000;
	font-size: 14px;
	font-family: var(--ttbb-h1-font-family);
}

table td:nth-child(4) {
	font-size: 18px;
}

table th {
	font-family: var(--ttbb-h1-font-family);
	font-size: 14px;
	letter-spacing: .1em;
	text-transform: uppercase;
	background: #0f82e6;
	color: #FFF;
}

table tbody tr td .btn-invoice {
	background: #0f82e6;
	color: #FFF;
	font-size: 13px;
	padding: 10px 20px;
	border: 0;
	font-family: var(--ttbb-h1-font-family);
}

tbody tr:nth-child(even) {
	background-color: #eee;
}

tbody tr:nth-child(odd) {
	background-color: #fff;
}

/* Table style: used in many pages ENDS */
/* Latest Upload style ENDS */
/* Round Buttons style: used in many pages STARTS */
.btn {
	font-family: var(--ttbb-bttn-font-family);
	font-weight: 400;
	margin-top: 3rem;
	border-radius: 5px;
	display: inline-block;
	cursor: pointer;
	background: var(--bttn-blue);
	font-size: 1.5rem;
	color: var(--ttbb-white);
	padding: 13px 24px 11px;
}

.btn:hover {
	font-family: var(--ttbb-bttn-font-family);
	background: var(--bttn-blue-hover);
	color: var(--ttbb-white);
	font-size: 1.5rem;
}

.heading {
	text-align: center;
	margin-bottom: 2.5rem;
	font-size: 4rem;
	color: #10221b;
}

/* Round Buttons style ENDS */
/* Cound style STARTS */
.category .box-container {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (minmax(29rem, 1fr)) [auto-fit];
	grid-template-columns: repeat(auto-fit, minmax(29rem, 1fr));
	gap: 1.5rem;
}

.category .box-container .box {
	text-align: center;
	padding: 1rem;
}

.category .box-container .box img {
	height: 20rem;
	width: 20rem;
	border-radius: 50%;
	margin-bottom: 1rem;
}

.category .box-container .box h2 {
	font-size: 1.8rem;
	font-weight: bold;
	color: var(--ttbb-black);
}

.category .box-container .box p {
	font-family: var(--ttbb-card-font-family);
	font-size: 14px;
	font-weight: 400;
	text-align: center;
	color: var(--ttbb-black);
	padding: 1rem 0;
	line-height: 1.5;
}

/* Category style STARTS */
/* About style: used in many pages  STARTS */
.about {
	padding-top: 100px;
	color: var(--ttbb-white);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 2rem;
}

.about .image {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 42rem;
	flex: 1 1 42rem;
	padding-right: 5rem;
	padding-bottom: 5rem;
}

.about .image img {
	width: 100%;
	-webkit-box-shadow: 4rem 4rem 0 rgba(0, 0, 0, 0.1);
	box-shadow: 4rem 4rem 0 rgba(0, 0, 0, 0.1);
}

.about .content {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 52rem;
	flex: 1 1 52rem;
}

.about .content h3 {
	font-size: 3rem;
	color: #0097b2;
}

.about .content p {
	font-size: 2rem;
	font-family: var(--ttbb-body-font-family);
	color: var(--ttbb-black);
	padding: 1rem 0;
	line-height: 2;
}

.about .content .sub-page-h1 {
	font-size: 2.5rem;
	text-align: left;
	color: #0097b2;
}

.about .content .sub-page-h2 {
	font-size: 1.5rem;
	color: #10221b;
	padding: 1rem 0;
	line-height: 2;
}


.about .content .error-sub-page-h2 {
	font-size: 2rem;
	font-family: var(--ttbb-body-font-family);
	color: #10221b;
	padding: 1rem 0;
	line-height: 2;
}


/* Blog Hero Styles STARTS*/
.download-hero {
	background-image: url("../images/downloads.png");
	background-repeat: no-repeat;
	background-position: top center;
	height: 50vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.download-h1 {
	text-align: center;
	font-size: 2rem;
	color: #038ba3;
	font-family: var(--ttbb-h1-font-family);
}

.download-h2 {
	font-family: var(--ttbb-h2-font-family);
	font-size: 1.5rem;
	text-align: center;
	color: #10221b;
}

/* About style: used in many pages  ENDS */
/* Packages style: used in many pages  STARTS */
.packages {
	background: rgb(238, 238, 238);
}

.packages .box-container {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (minmax(32rem, 1fr)) [auto-fit];
	grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
	gap: 1.5rem;
}

.packages .box-container .box {
	text-align: center;
	background: rgb(255, 255, 255);
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
	border-radius: 0.5rem;
}

.packages .box-container .box:hover {
	background: hsl(189, 100%, 50%);
}

.packages .box-container .box:hover .content>* {
	color: var(--ttbb-white);
}

.packages .box-container .box:hover .btn {
	border-color: var(--ttbb-white);
}

.packages .box-container .box:hover .btn:hover {
	background: var(--ttbb-white);
	color: #10221b;
}

.packages .box-container .box .image {
	height: 25rem;
	overflow: hidden;
	padding: 2rem;
	padding-bottom: 0;
	border-radius: 0.5rem;
}

.packages .box-container .box .image img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 0.5rem;
}

.packages .box-container .box .content {
	padding: 2rem;
}

.packages .box-container .box .content h3 {
	font-size: 2rem;
	color: #10221b;
}

.packages .box-container .box .content p {
	font-size: 1.5rem;
	color: #10221b;
	padding: 1rem 0;
	line-height: 2;
}

.packages .box-container .box .content .price {
	font-family: var(--ttbb-card-font-family);
	padding-top: 15px;
	font-weight: 400;
	font-size: 1.5rem;
	color: #002fff;
}

/* Packages style: used in many pages ENDS */
/* Download style: used in many pages STARTS */
/*==================== REUSABLE CSS CLASSES ====================*/
.downloadcontainer {
	max-width: 1140px;
	width: 100%;
	margin: 0 auto;
	padding: 1rem 0;
	display: grid;
	place-items: center;
}

/*==================== SERVICE download ====================*/
.download__container {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
	width: 100%;
	max-width: 90%;
	margin: 10px auto;
}

.download__bx {
	--bg-clr: var(--ttbb-white);
	--txt-clr: var(--ttbb-black);
	--btn-txt-clr: #333333;
	--transition: all 0.5s;
	font-family: 'Poppins', sans-serif;
	height: 400px;
	width: 300px;
	overflow: hidden;
	border-radius: 20px;
	border-top-left-radius: 70px;
	position: relative;
	overflow: hidden;
	background: var(--clr);
	transition: var(--transition);
}

.download__1 {
	--clr: var(--ttbb-a-link-blue);
}

.download__2 {
	--clr: var(--ttbb-a-link-blue);
}

.download__3 {
	--clr: var(--ttbb-a-link-blue);
}

.download__bx .download__data {
	position: absolute;
	inset: 10px;
	border-radius: 10px;
	background: var(--bg-clr);
}

.download__bx .download__data .download__icon {
	position: absolute;
	top: 0;
	left: 0;
	border-bottom-right-radius: 50%;
	height: 140px;
	width: 140px;
	background: var(--clr);
}

.download__bx .download__data .download__icon::before {
	content: '';
	position: absolute;
	bottom: -30px;
	left: 0;
	height: 30px;
	width: 30px;
	border-top-left-radius: 30px;
	background: transparent;
	box-shadow: -5px -5px 0 5px var(--clr);
}

.download__bx .download__data .download__icon::after {
	content: '';
	position: absolute;
	right: -30px;
	top: 0;
	height: 30px;
	width: 30px;
	border-top-left-radius: 30px;
	background: transparent;
	box-shadow: -5px -5px 0 5px var(--clr);
}

.download__bx .download__data .download__icon .download__icon-bx {
	position: absolute;
	inset: 10px;
	border-radius: 10px;
	border-top-left-radius: 50%;
	border-bottom-right-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 60px;
	background: var(--bg-clr);
	color: var(--clr);
}

.download__bx .download__data .download__icon .download__icon-bx i {
	font-size: 60px;
	justify-content: center;
	align-items: center;
}

.download__bx:hover .download__data .download__icon .download__icon-bx {
	background: var(--clr);
	color: var(--txt-clr);
	transition: var(--transition);
}

.download__bx .download__data .download__content {
	position: absolute;
	top: 150px;
	padding: 20px;
	text-align: center;
	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 15px;
	color: var(--txt-clr);
}

.download__bx .download__data .download__content h3 {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.download__bx .download__data .download__content h4 {
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
}

.download__bx .download__data .download__content p {
	font-size: 14px;
	opacity: 0.75;
}

.download__bx .download__data .download__content a {
	display: inline-flex;
	align-self: center;
	padding: 10px 25px;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 600;
	border-radius: 30px;
	border: 2px solid var(--clr);
	color: var(--btn-txt-clr);
	background: var(--clr);
	transition: var(--transition);
}

.download__bx .download__data .download__content a:hover {
	background: transparent;
	color: var(--clr);
}

/* Download style: used in many pages ENDS */
/* qafacilities style: used in many pages STARTS */
.qafacilities {
	width: 100%;
	margin: auto;
	text-align: center;
}

.qafacilities .row {
	display: flex;
}

.qafacilities .row .examqa-col {
	flex: 50%;
	padding: 50px;
}

.qafacilities .row .examqa-col a img {
	width: 100%;
	border: 1px solid ttbb-black;
	border-radius: 10px;
}

.qafacilities .row .examqa-col a h3 {
	margin-top: 16px;
	margin-bottom: 5px;
	text-align: left;
	font-size: 2rem;
	font-family: "Oswald", "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
		"Lucida Sans", Arial, sans-serif;
}

.qafacilities .row .examqa-col p {
	margin-bottom: 5px;
	text-align: left;
	font-size: 2rem;
	font-family: "Oswald", "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
		"Lucida Sans", Arial, sans-serif;
}

/* qafacilities style: used in many pages ENDS */
/* Exam Videos section ENDS style STARTS  */
.blog-video-holder {
	align-items: center;
	text-align: center;
	margin: 40px 0px 0px 0px;
}

.blog-video-holder .blog-video-holder_title {
	margin: 0px 0px 30px;
	color: #666;
}

.blog-video-holder .blog-video-holder_wrapper {
	margin: auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	width: 90%;
}

.blog-video-holder .blog-video-holder_wrapper .blog-video-holder_item {
	margin: auto;
	padding-top: 10px;
	min-height: 300px;
	background-size: cover;
	border-radius: 5px;
	text-decoration: none;
	box-shadow: 8px 14px 38px rgba(0, 153, 255, 0.06),
		1px 3px 8px rgba(17, 0, 255, 0.03);
	transition: all 0.5s ease;
}

.blog-video-holder .blog-video-holder_wrapper .blog-video-holder_item .bi_img {
	height: 300px;
	margin: 0px 0px 20px;
}

.blog-video-holder .blog-video-holder_wrapper .blog-video-holder_item .bi_img img {
	width: 90%;
	border-radius: 2%;
	box-shadow: 1px 1px 5px #ccc;
}

.blog-video-holder .blog-video-holder_wrapper .blog-video-holder_item .bi_title {
	font-family: var(--ttbb-p1-font-family);
	font-size: 1.8rem;
	color: var(--ttbb-black);
	padding: 10px;
}

.blog-video-holder .blog-video-holder_wrapper .blog-video-holder_item .bi_content {
	padding: 10px;
	font-family: var(--ttbb-bttn-font-family);
	font-size: 1.5rem;
	font-weight: 400;
	text-align: justify;
	color: var(--ttbb-black);
}

.blog-video-holder .blog-video-holder_wrapper .blog-video-holder_item .reading_time {
	font-size: 1.5rem;
	color: var(--ttbb-black);
	font-family: var(--ttbb-p1-font-family);
	line-height: 33px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.blog-video-holder .blog-video-holder_wrapper .blog-video-holder_item:hover {
	box-shadow: 8px 28px 50px rgba(39, 44, 49, 0.07),
		1px 6px 12px rgba(39, 44, 49, 0.04);
	transition: all 0.4s ease;
	transform: translate3D(0, -1px, 0) scale(1.02);
}

/* Exam Videos section ENDS style ENDS  */
/*"Privacy Policy" style STARTS*/
.privacypolicy {
	padding-top: 100px;
	background: var(--ttbb-white);
	/*display: flex;
    */
}

.privacypolicy h1 {
	font-size: 3.5rem;
	font-family: var(--ttbb-h1-font-family);
	color: rgb(0, 0, 0);
	text-align: center;
}

.privacypolicy h2 {
	font-size: 2.5rem;
	font-family: var(--ttbb-h2-font-family);
	color: rgb(0, 0, 0);
	text-align: left;
	padding-top: 20px;
}

.privacypolicy h3 {
	font-size: 2rem;
	font-family: var(--ttbb-h3-font-family);
	font-weight: bold;
	color: rgb(0, 0, 0);
	text-align: left;
	padding-top: 20px;
}

.privacypolicy p {
	font-size: 1.6rem;
	color: #10221b;
	padding: 1rem 0;
	line-height: 2;
}

.privacypolicy ul {
	font-size: 1.6rem;
	color: #10221b;
	padding: 1rem 0;
	padding-left: 40px;
	line-height: 2;
}

.privacypolicy ol {
	font-size: 1.6rem;
	color: #10221b;
	padding: 1rem 0;
	padding-left: 40px;
	line-height: 2;
	list-style-type: lower-alpha;
}

/*"Privacy Policy" style ENDS*/
/*"Term of use" style STARTS*/
.termofuse {
	padding-top: 100px;
	color: var(--ttbb-white);
	/*display: flex;
    */
}

.termofuse h1 {
	font-size: 3.5rem;
	font-family: var(--ttbb-h1-font-family);
	color: rgb(0, 0, 0);
	text-align: center;
}

.termofuse h2 {
	font-size: 2.5rem;
	font-family: var(--ttbb-h2-font-family);
	color: rgb(0, 0, 0);
	text-align: left;
	padding-top: 20px;
}

.termofuse h3 {
	font-size: 2rem;
	font-family: var(--ttbb-h3-font-family);
	font-weight: bold;
	color: rgb(0, 0, 0);
	text-align: left;
	padding-top: 20px;
}

.termofuse p {
	font-size: 1.6rem;
	color: #10221b;
	padding: 1rem 0;
	line-height: 2;
}

.termofuse ul {
	font-size: 1.6rem;
	color: #10221b;
	padding: 1rem 0;
	padding-left: 40px;
	line-height: 2;
}

/*"Term of use" style ENDS*/
/*Footer style STARTS*/
.footer {
	background: url(../images/Global-footer-TheTechBlackBoard.png) no-repeat;
}

.footer .box-container {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (minmax(25rem, 1fr)) [auto-fit];
	grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
	gap: 1rem;
}

.footer .box-container .box {
	text-align: center;
}

.footer .box-container .socialmediafooter {
	text-align: center;
}

.footer .box-container .socialmediafooter h3 {
	font-size: 1.5rem;
	padding: 1rem 0;
	color: var(--ttbb-white);
}

.footer .box-container .box h3 {
	font-family: var(--ttbb-menu-font-family);
	font-size: 1.5rem;
	padding: 1rem 0;
	color: var(--ttbb-white);
}

.footer .box-container .box a {
	font-family: var(--ttbb-menu-font-family);
	display: block;
	font-size: 1.4rem;
	color: var(--ttbb-black);
	padding: 1rem 0;
}

.footer .box-container .box a i {
	color: var(--ttbb-black);
	padding-right: 0.5rem;
}

.footer .box-container .box a:hover {
	color: #f48024;
	text-decoration: underline;
}

.footer .box-container .box a:hover i {
	padding-right: 2rem;
}

.footer .credit {
	font-family: var(--ttbb-menu-font-family);
	text-align: center;
	padding-top: 2rem;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--ttbb-white);
}

.footer .credit span {
	color: rgb(0, 0, 0);
}

/*Footer style ENDS*/
/*Responsive Media style STARTS*/
@media (max-width: 1200px) {
	.header {
		padding: 2rem;
	}

	.heading {
		font-size: 2rem;
	}

	.header .logo {
		font-family: var(--ttbb-logo-font-family);
		margin-right: auto;
		font-size: 2.5rem;
		color: #10221b;
	}

	.header .logo i {
		color: var(--ttbb-black);
	}

	.header .navbar a {
		font-family: var(--ttbb-menu-font-family);
		font-weight: 400;
		margin-left: 2rem;
		font-size: 12.5px;
		color: #10221b;
	}

	.header .navbar a:hover {
		color: #ff9900;
		text-decoration-line: underline;
	}

	.header .navbar #nav-close {
		font-size: 5rem;
		cursor: pointer;
		color: #10221b;
		display: none;
	}

	.header .icons a,
	.header .icons div {
		font-size: 2.5rem;
		margin-left: 2rem;
		cursor: pointer;
		color: #10221b;
	}

	.header .icons a:hover,
	.header .icons div:hover {
		color: #219150;
	}

	.header #menu-btn {
		display: none;
	}

	.hero-title {
		font-size: 24px;
		padding-top: 60px;
		padding-bottom: 0px;
	}

	.hero-options {
		flex-direction: column;
	}

	.blog-hero-title {
		font-size: 2rem;
		padding-top: 60px;
	}

	.container .grid-cards .card .card-body .card-title {
		font-family: var(--ttbb-card-font-family);
		font-weight: 400;
		font-size: 14px;
		text-align: left;
		padding-bottom: 2px;
	}

	.container .grid-cards .card .card-body .card-body-text {
		font-family: var(--ttbb-card-font-family);
		font-weight: 400;
		font-size: 14px;
		text-align: left;
		padding-top: 5px;
	}

	.img-card .card-text p {
		font-family: var(--ttbb-card-font-family);
		color: var(--ttbb-black);
		font-weight: 400;
		font-size: 14px;
		text-align: left;
		padding-top: 5px;
	}

	.section-title {
		font-family: var(--ttbb-h2-font-family);
		font-size: 24px;
		text-align: center;
		font-weight: 600;
		margin: 1rem auto;
	}

	.blog-hero-options {
		flex-direction: column;
	}

	.hero-paragraph {
		font-size: 1.8rem;
		color: var(--ttbb-black);
		max-width: 80rem;
		font-weight: 300;
		text-align: center;
	}

	.read-btn {
		font-family: var(--ttbb-bttn-font-family);
		font-weight: 300;
		border-radius: 5px;
		display: inline-block;
		cursor: pointer;
		background: #1A73e8;
		font-size: 1.6rem;
		color: var(--ttbb-white);
		padding: 13px 24px 11px;
	}

	.blog-hero-paragraph {
		font-family: var(--ttbb-p1-font-family);
		margin: 2rem 0;
		font-size: 1.8rem;
		color: var(--ttbb-black);
		max-width: 50rem;
		font-weight: 400;
		text-align: center;
	}

	section {
		padding: 3rem 2rem;
	}

	.footer .credit {
		text-align: center;
		margin-top: 1.5rem;
		padding: 1rem;
		padding-top: 0.5rem;
		font-size: 1.2rem;
		font-weight: 400;
		color: var(--ttbb-a-link-blue);
	}
}

@media (max-width: 991px) {
	html {
		scroll-padding-top: 7rem;
	}

	.hero-title {
		font-size: 2rem;
		padding-top: 40px;
	}

	.hero-options {
		flex-direction: column;
	}

	.blog-hero-title {
		font-size: 2rem;
		padding-top: 60px;
	}

	.blog-hero-options {
		flex-direction: column;
	}

	.hero-paragraph {
		margin: 2rem 0;
		font-size: 2rem;
		color: var(--ttbb-black);
		max-width: 50rem;
		font-weight: 400;
		text-align: center;
	}

	.blog-hero-paragraph {
		font-family: var(--ttbb-p1-font-family);
		margin: 2rem 0;
		font-size: 3rem;
		color: var(--ttbb-black);
		max-width: 40rem;
		font-weight: 400;
		text-align: center;
	}

	.home .box {
		padding: 2rem;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		background-position: right !important;
	}

	.home .box.second {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		background-position: left !important;
	}

	.home .box .content {
		text-align: center;
	}

	.home .box .content span {
		font-size: 3rem;
	}

	.home .box .content h3 {
		font-size: 4rem;
	}
}

@media (max-width: 950px) {
	html {
		scroll-padding-top: 7rem;
	}

	.hero {
		background-repeat: no-repeat;
		background-position: top center;
		height: 40vh;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 0px;
	}

	.hero-title {
		font-size: 26px;
		padding-top: 10px;
	}

	.blog-hero-title {
		font-size: 3rem;
		padding-top: 200px;
	}

	.hero-options {
		flex-direction: column;
	}

	.hero-paragraph {
		margin: 2rem 0;
		font-size: 18px;
		color: var(--ttbb-black);
		max-width: 80rem;
		font-weight: 400;
		text-align: center;
	}

	.blog-hero-paragraph {
		font-family: var(--ttbb-p1-font-family);
		margin: 2rem 0;
		font-size: 2.5rem;
		color: var(--ttbb-black);
		max-width: 60rem;
		font-weight: 400;
		text-align: center;
	}

	.container .grid-cards .card .card-body .card-title {
		font-family: var(--ttbb-card-font-family);
		font-weight: 400;
		font-size: 16px;
		text-align: left;
		padding-bottom: 2px;
	}

	.container .grid-cards .card .card-body .card-body-text {
		font-family: var(--ttbb-card-font-family);
		font-weight: 300;
		font-size: 16px;
		text-align: left;
		padding-top: 5px;
	}

	.home .box {
		padding: 2rem;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		background-position: right !important;
	}

	.p-with-heading {
		list-style-type: square;
		text-align: left;
		font-family: var(--ttbb-p1-font-family);
		font-size: 16px;
		display: block;
		font-weight: 400;
	}

	.home .box.second {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		background-position: left !important;
	}

	.home .box .content {
		text-align: center;
	}

	.home .box .content span {
		font-size: 3rem;
	}

	.home .box .content h3 {
		font-size: 4rem;
	}

	.header .navbar a {
		font-family: var(--ttbb-menu-font-family);
		font-weight: 400;
		margin-left: 2rem;
		font-size: 18px;
		color: #10221b;
	}
}

@media (max-width: 820px) {
	.hero {
		background-repeat: no-repeat;
		background-position: top center;
		height: 50vh;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 0px;
	}

	.header #menu-btn {
		display: inline-block;
	}

	.hero-title {
		font-size: 26px;
		padding-top: 10px;
	}

	.blog-hero-title {
		font-size: 3rem;
		padding-top: 200px;
	}

	.blog-hero-options {
		flex-direction: column;
	}

	.hero-options {
		flex-direction: column;
	}

	.container .grid-cards .card .card-body .card-title {
		font-family: var(--ttbb-card-font-family);
		font-weight: 400;
		font-size: 16px;
		text-align: left;
		padding-bottom: 2px;
	}

	.container .grid-cards .card .card-body .card-body-text {
		font-family: var(--ttbb-card-font-family);
		font-weight: 300;
		font-size: 16px;
		text-align: left;
		padding-top: 5px;
	}

	.blog-holder .blog-item h1 {
		font-family: var(--ttbb-h1-font-family);
		padding-top: 20px;
		color: var(--ttbb-black);
		text-align: center;
		max-width: 100%;
		font-size: 20px;
		letter-spacing: -.25px;
		line-height: 20px;
		margin: initial;
	}

	.blog-holder .blog-item .blog-details h2 {
		font-family: var(--ttbb-h1-font-family);
		padding-top: 20px;
		color: var(--ttbb-black);
		font-weight: 600;
		font-weight: bold;
		font-size: 20px;
		text-align: left;
		max-width: 100%;
		padding-bottom: 10px;
	}

	.hero-paragraph {
		font-family: var(--ttbb-p1-font-family);
		margin: 1rem 0;
		font-size: 20px;
		color: var(--ttbb-black);
		max-width: 80rem;
		font-weight: 400;
		text-align: center;
	}

	.blog-hero-paragraph {
		font-family: var(--ttbb-p1-font-family);
		margin: 2rem 0;
		font-size: 1.2rem;
		color: var(--ttbb-black);
		max-width: 50rem;
		font-weight: 400;
		text-align: left;
	}

	.blog-item .blog-details .blog-p {
		font-family: var(--ttbb-p1-font-family);
		padding-top: 15px;
		font-size: 16px;
		color: var(--ttbb-black);
		margin-bottom: 30px;
		text-align: left;
	}

	.category .box-container .box p {
		font-family: var(--ttbb-card-font-family);
		font-size: 16px;
		font-weight: 400;
		text-align: center;
		color: var(--ttbb-black);
		padding: 1rem 0;
		line-height: 1.5;
	}

	.btn {
		font-family: var(--ttbb-bttn-font-family);
		font-weight: 400;
		margin-top: 3rem;
		border-radius: 5px;
		display: inline-block;
		cursor: pointer;
		background: var(--bttn-blue);
		font-size: 14px;
		color: var(--ttbb-white);
		padding: 13px 24px 11px;
	}

	.search input::placeholder {
		visibility: hidden;
	}

	.search ul {
		flex-direction: column;
	}

	.search li:first-child {
		margin-bottom: 20px;
	}

	.header .navbar {
		position: fixed;
		top: 0;
		left: -110%;
		background: var(--ttbb-white);
		z-index: 10000;
		width: 35rem;
		height: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-flow: column;
		flex-flow: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.header .navbar.active {
		left: 0;
		-webkit-box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.8);
		box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.8);
	}

	.header .navbar a {
		margin: 1rem 0;
		font-size: 12.5px;
	}

	.header .navbar #nav-close {
		display: block;
		position: absolute;
		top: 1rem;
		right: 2rem;
	}

	.swiper-button-next::after,
	.swiper-button-prev::after {
		display: none;
	}
}

@media (max-width: 768px) {
	.header #menu-btn {
		display: inline-block;
	}

	.header .navbar {
		position: fixed;
		top: 0;
		left: -110%;
		background: var(--ttbb-white);
		z-index: 10000;
		width: 35rem;
		height: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-flow: column;
		flex-flow: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.header .navbar.active {
		left: 0;
		-webkit-box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.8);
		box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.8);
	}

	.header .navbar a {
		margin: 1rem 0;
		font-size: 12.5px;
	}

	.header .navbar #nav-close {
		display: block;
		position: absolute;
		top: 1rem;
		right: 2rem;
	}

	.swiper-button-next::after,
	.swiper-button-prev::after {
		display: none;
	}
}

@media (max-width: 700px) {
	.blog-hero-title {
		font-size: 3rem;
		padding-top: 140px;
	}

	.blog-hero-options {
		flex-direction: column;
	}

	.row {
		flex-direction: column;
	}

	.qafacilities .row .examqa-col a img {
		width: auto;
		height: auto;
		border: 1px solid rgb(17, 0, 255);
		border-radius: 5px;
	}
}

@media screen and (max-width: 640px) {
	.hero {
		background-image: url(../images/homepage-scaled.png);
	}

	.blog-hero {
		background-image: url(../images/CloudBlogs-scaled.png);
		background-repeat: no-repeat;
		background-position: top center;
		height: 50vh;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.download-hero {
		background-image: url(../images/Downloads-scaled.png);
		background-repeat: no-repeat;
		background-position: top center;
		height: 50vh;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.news-hero {
		background-image: url(../images/news-hero-scaled.png);
		background-repeat: no-repeat;
		background-position: top center;
		height: 50vh;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.hero-title {
		font-size: 2rem;
		padding-top: 60px;
	}

	.hero-options {
		flex-direction: column;
	}

	.blog-hero-title {
		font-size: 2rem;
		padding-top: 60px;
	}

	.blog-hero-options {
		flex-direction: column;
	}

	.hero-paragraph {
		margin: 2rem 0;
		font-size: 1.8rem;
		color: var(--ttbb-black);
		max-width: 40rem;
		font-weight: 400;
		text-align: center;
	}

	.blog-hero-paragraph {
		font-family: var(--ttbb-p1-font-family);
		margin: 2rem 0;
		font-size: 1.8rem;
		color: var(--ttbb-black);
		max-width: 40rem;
		font-weight: 400;
		text-align: center;
	}

	.bttn .bttn-read {
		margin-bottom: 1rem;
	}

	.bttn .bttn-pdf {
		margin-left: initial;
	}

	.section-title {
		font-size: 2rem;
	}

	.section-description {
		font-size: 1.4rem;
		line-height: 2rem;
	}

	.for-businesses .option-description {
		font-size: 1.4rem;
		line-height: 2rem;
	}
}

@media (max-width: 540px) {
	.heading {
		font-size: 3rem;
	}

	.hero {
		background-image: url("../images/homepage-scaled.png");
		background-repeat: no-repeat;
		background-position: top center;
		height: 50vh;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 0px;
	}

	.blog-hero {
		background-image: url(../images/CloudBlogs-scaled.png);
		background-repeat: no-repeat;
		background-position: top center;
		height: 50vh;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.download-hero {
		background-image: url(../images/Downloads-scaled.png);
		background-repeat: no-repeat;
		background-position: top center;
		height: 50vh;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.news-hero {
		background-image: url(../images/news-hero-scaled.png);
		background-repeat: no-repeat;
		background-position: top center;
		height: 50vh;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}

/* For cards Mobile Queries start here*/
@media only screen and (max-width: 480px) {
	.io-card-1 .card-content .card-text {
		display: none;
	}

	.io-card-1 .card-link {
		top: 85px;
	}

	.card-category-4 .sp-card-1 {
		height: 100%;
		width: 100%;
		text-align: center;
		padding: 0 0px 30px 0;
		margin: 30px 0;
	}

	.card-category-4 .sp-card-1 .shop-button {
		padding: 0;
	}

	.card-category-4 .sp-card-1 ul li:nth-child(1) {
		padding: 20px;
		float: none;
	}

	.card-category-4 .sp-card-1 ul li:nth-child(2) {
		text-align: center;
		padding: 0 0 30px 0;
		float: none;
	}

	.card-category-4 .sp-card-2 {
		width: 300px;
	}

	.card-category-4 .sp-card-3 {
		width: 100%;
		height: auto;
	}

	.card-category-4 .sp-card-3 .card-title {
		text-align: center;
		width: 100%;
		float: none;
	}

	.card-category-4 .sp-card-3 .product-details .product-img {
		width: 100%;
		float: none;
		padding-top: 10px;
		display: block;
	}

	.card-category-4 .sp-card-3 .product-details .product-img img {
		height: auto;
		width: 90%;
	}

	.card-category-4 .sp-card-3 .product-details .product-description {
		width: 100%;
		padding: 20px 0px;
	}

	.card-category-4 .sp-card-3 .product-details .product-description ul {
		text-align: center;
	}

	.card-category-4 .sp-card-3 .product-details .product-description ul li {
		font-size: 25px;
	}

	.card-category-4 .sp-card-3 .product-details .product-description ul li:last-child {
		text-decoration: underline;
		padding-top: 20px;
	}

	.card-category-4 .sp-card-3 .footer-card p {
		font-size: 20px;
	}

	.card-category-4 .sp-card-3 .footer-card li:nth-child(1) {
		padding-top: 5px;
	}

	.card-category-4 .sp-card-3 .footer-card li:nth-child(2) {
		width: 100%;
		padding: 30px 0;
		text-align: center;
	}

	.card-category-4 ul li:nth-child(3) {
		margin-top: 25px;
		padding: 0 15px;
	}

	.card-category-5 .per-card-2 {
		margin: 20px 40px;
	}

	.card-category-5 .per-card-3 {
		width: 350px;
	}

	.card-category-5 .per-card-3 .card-image .per-name {
		letter-spacing: 4px;
	}
}

@media (max-width: 450px) {
	.heading {
		font-size: 3rem;
	}

	.hero {
		background-image: url("../images/homepage-scaled.png");
		background-repeat: no-repeat;
		background-position: top center;
		height: 50vh;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 0px;
	}

	.blog-hero {
		background-image: url(../images/CloudBlogs-scaled.png);
		background-repeat: no-repeat;
		background-position: top center;
		height: 50vh;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.download-hero {
		background-image: url(../images/Downloads-scaled.png);
		background-repeat: no-repeat;
		background-position: top center;
		height: 50vh;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.news-hero {
		background-image: url(../images/news-hero-scaled.png);
		background-repeat: no-repeat;
		background-position: top center;
		height: 50vh;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.header #menu-btn {
		display: inline-block;
	}

	.hero-title {
		font-size: 18px;
		padding-top: 10px;
	}

	.blog-hero-title {
		font-size: 3rem;
		padding-top: 200px;
	}

	.blog-hero-options {
		flex-direction: column;
	}

	.hero-options {
		flex-direction: column;
	}

	.blog-holder .blog-item h1 {
		font-family: var(--ttbb-h1-font-family);
		padding-top: 20px;
		color: var(--ttbb-black);
		text-align: center;
		max-width: 100%;
		font-size: 20px;
		letter-spacing: -.25px;
		line-height: 20px;
		margin: initial;
	}

	.hero-paragraph {
		font-family: var(--ttbb-p1-font-family);
		margin: 1rem 0;
		font-size: 14px;
		color: var(--ttbb-black);
		max-width: 50rem;
		font-weight: 400;
		text-align: center;
	}

	.blog-hero-paragraph {
		font-family: var(--ttbb-p1-font-family);
		margin: 2rem 0;
		font-size: 1.2rem;
		color: var(--ttbb-black);
		max-width: 50rem;
		font-weight: 400;
		text-align: left;
	}

	.search input::placeholder {
		visibility: hidden;
	}

	.search ul {
		flex-direction: column;
	}

	.search li:first-child {
		margin-bottom: 20px;
	}

	.header .navbar {
		position: fixed;
		top: 0;
		left: -110%;
		background: var(--ttbb-white);
		z-index: 10000;
		width: 35rem;
		height: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-flow: column;
		flex-flow: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.header .navbar.active {
		left: 0;
		-webkit-box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.8);
		box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.8);
	}

	.header .navbar a {
		margin: 1rem 0;
		font-size: 12.5px;
	}

	.header .navbar #nav-close {
		display: block;
		position: absolute;
		top: 1rem;
		right: 2rem;
	}

	.img-card.iCard-style1 .card-text p {
		color: var(--ttbb-black);
		font-family: var(--ttbb-card-font-family);
		font-size: 14px;
	}

	.swiper-button-next::after,
	.swiper-button-prev::after {
		display: none;
	}
}

/* Blog List Styles Media Query STARTS*/
@media (max-width: 1180px) {
	.ad-1 {
		border-radius: 0;
	}

	.mid-area {
		display: block;
	}

	.latest {
		margin-bottom: 30px;
	}

	.latest .cards {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 25px;
	}

	.latest .card:not(:last-child) {
		margin: 0;
	}

	.latest article {
		flex-direction: column;
		height: 100%;
	}

	.latest .description {
		padding: 15px 15px;
	}

	.latest h2 {
		margin-bottom: 20px;
	}

	.popular {
		padding: 0;
	}

	.popular h1 {
		text-align: center;
		margin-bottom: 35px;
	}

	.popular ul {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		grid-column-gap: 20px;
		justify-content: center;
	}
}

@media (max-width: 1000px) {
	.featured .cards {
		grid-template-columns: 1fr 1fr;
		grid-template-areas:
			"one two"
			"three four";
	}

	.featured img {
		filter: brightness(90%);
	}

	.featured h2 {
		font-size: 30px;
	}

	.site-footer .wrapper {
		grid-template-columns: repeat(3, 1fr);
		grid-row-gap: 25px;
	}

	.site-footer section:first-child {
		grid-column: 1 / -1;
	}

	.site-footer section:first-child p,
	.socials {
		text-align: center;
		margin: 0 auto;
		margin-bottom: 25px;
	}

	.site-footer section:not(:first-child) {
		justify-self: center;
	}
}

@media (max-width: 770px) {
	.site-header .wrapper {
		grid-template-columns: minmax(max-content, 1fr) 1fr;
	}

	.site-header h1 {
		order: 1;
		justify-self: start;
	}

	.menu-icon {
		order: 2;
		justify-self: end;
	}

	.site-header .special-link {
		display: none;
	}

	.search input,
	.search .btn {
		animation: none;
	}

	.ad-1,
	.ad-3 {
		flex-direction: column;
		height: auto;
	}

	.ad-1 h1,
	.ad-3 .container {
		margin-bottom: 20px;
		margin-top: 30px;
		text-align: center;
	}

	.ad-1 .btn,
	.ad-3 .btn {
		margin: 0;
		margin-bottom: 30px;
	}
}

@media (max-width: 680px) {
	.search ul li:last-child {
		display: none;
	}

	.featured .cards {
		grid-template-columns: 1fr;
		grid-auto-rows: 215px;
		grid-template-areas:
			"one"
			"two"
			"three"
			"four";
	}
}

@media (max-width: 390px) {
	.search {
		padding: 40px 0;
	}

	.hero-title {
		font-size: 2.2rem;
		padding-top: 60px;
		line-height: 20px;
	}

	.hero-options {
		flex-direction: column;
	}

	.blog-hero-title {
		font-size: 1.8rem;
		padding-top: 60px;
	}

	.blog-hero-options {
		flex-direction: column;
	}

	.section-title {
		font-size: 2rem;
	}

	.blog-holder .blog-item h1 {
		font-family: var(--ttbb-h1-font-family);
		padding-top: 10px;
		color: var(--ttbb-black);
		text-align: center;
		max-width: 100%;
		font-size: 20px;
		letter-spacing: -.25px;
		line-height: 20px;
		margin: initial;
	}

	.hero-paragraph {
		font-family: var(--ttbb-p1-font-family);
		margin: 1rem 0;
		font-size: 1.6rem;
		color: var(--ttbb-black);
		max-width: 80rem;
		font-weight: 400;
		text-align: center;
	}

	.blog-hero-paragraph {
		font-family: var(--ttbb-p1-font-family);
		margin: 2rem 0;
		font-size: 1.2rem;
		color: var(--ttbb-black);
		max-width: 50rem;
		font-weight: 400;
		text-align: left;
	}

	.search input::placeholder {
		visibility: hidden;
	}

	.search ul {
		flex-direction: column;
	}

	.search li:first-child {
		margin-bottom: 20px;
	}

	.read-btn {
		font-family: var(--ttbb-bttn-font-family);
		font-weight: 400;
		border-radius: 5px;
		display: inline-block;
		cursor: pointer;
		background: #1A73e8;
		font-size: 1.2rem;
		color: var(--ttbb-white);
		padding: 10px 20px 8px;
	}
}

@media only screen and (max-width: 360px) {
	.ioverlay-card .card-content {
		top: 10px;
	}

	.io-card-1 .card-link {
		top: 70px;
	}

	.card-category-5 .per-card-2 {
		width: 275px;
	}

	.card-category-5 .per-card-2 .card-image {
		width: 295px;
	}

	.card-category-5 .per-card-3 {
		width: 320px;
		height: 254px;
	}
}

@media (max-width: 922px) and (min-width: 601px) {
	.container .grid-cards {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.container .grid-cards {
		flex-direction: column;
	}
}

@media screen and (max-width: 600px) {
	table {
		border: 0;
	}

	table caption {
		font-size: 1.3em;
	}

	table thead {
		border: none;
		clip: rect(0 0 0 0);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		position: absolute;
		width: 1px;
		padding: 0;
	}

	table tr {
		border-bottom: 3px solid #e1e5e9;
		display: block;
		margin-bottom: .625em;
	}

	table th,
	table td {
		padding: 0.625em;
	}

	table td {
		border-bottom: 1px solid #e1e5e9;
		display: block;
		font-size: 12px;
		text-align: left;
		color: var(--ttbb-black)
	}

	table td::before {
		float: left;
		font-weight: bold;
		text-transform: uppercase;
		color: #656971;
	}

	table td:last-child {
		border-bottom: 0;
	}

	table td:nth-child(4) {
		font-size: 0.8em;
	}
}

@media only screen and (max-width: 900px) {
	.blog-video-holder .blog-video-holder_wrapper {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.blog-video-holder .blog-video-holder_wrapper .blog-video-holder_item .bi_img {
		height: 200px;
		margin: 0px 0px 20px;
	}
}

@media only screen and (max-width: 600px) {
	.blog-video-holder .blog-video-holder_wrapper {
		display: grid;
		grid-template-columns: 1fr;
	}

	.blog-video-holder .blog-video-holder_wrapper .blog-video-holder_item .bi_img {
		height: 180px;
		margin: 0px 0px 20px;
	}
}

/*Responsive Media style ENDS*/