/* ****************************************************************
    Name   			 : Techvio - by Cute Themes
    Author           : Branko Pereira
    Version          : 1.0
    Created          : 2024
    File Description : Main css file of the template
**************************************************************** */

/* ****************************************************************

** - 01 - Default CSS
** - 02 - Preloader Section CSS
** - 03 - Navbar Section CSS
** - 04 - Home All Section CSS
** - 05 - Services All Section CSS
** - 06 - Services Details Page CSS
** - 07 - About Section CSS
** - 08 - Feature All Section CSS
** - 09 - Work Process Section CSS
** - 10 - Technology Work Section CSS
** - 11 - Overview Section CSS
** - 12 - Counter Section CSS
** - 13 - Portfolio Section CSS
** - 14 - Portfolio Details Page CSS
** - 15 - Testimonial Section CSS
** - 16 - Team Section CSS
** - 17 - Hire Section CSS
** - 18 - Partner Section CSS
** - 19 - Blog Section CSS
** - 20 - Blog Details Page CSS
** - 21 - Blog Page Sidebar Widget CSS
** - 22 - Other Page Banner Title Section CSS
** - 23 - Contact Page CSS
** - 24 - Pricing Page CSS
** - 25 - Faq Page CSS
** - 26 - 404 Error Page CSS
** - 27 - Coming Soon Page CSS
** - 28 - Terms & Conditions Page CSS
** - 29 - Privacy Policy Page CSS
** - 30 - Subscribe Section CSS
** - 31 - All Page Footer Section CSS
** - 32 - All Page Copyright Section CSS
** - 33 - Custom DT CSS

**************************************************************** */

:root {
    --tojo-orange: #FBB03B;    /* Main color (Marketing) */
    --tojo-blue: #0071BC;      /* Secondary color (Systems) */
    --tojo-purple: #68339D;    /* Third color (Design) */
    --tojo-black: #2F343A;     /* Black (VFX) */
    --tojo-white: #F4F4F4;     /* White */
    
    /* Accent Colors */
    --tojo-light-orange: #F9D93D;
    --tojo-light-blue: #57CCFF;
    --tojo-light-purple: #8B54C7;

	/* Dark ones */
	--tojo-dark-orange: #D99316;
    --tojo-dark-blue: #0063AD;
    --tojo-dark-purple: #4B0082;
}

/* Define the global font for the entire website */
@font-face {
    font-family: 'DigitalTojo'; /* Name of the global font */
    src: url('../fonts/AvenirRegular.ttf') format('truetype'); /* Path to the global font file */
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Tojo';
    src: url('../fonts/Tojo.ttf') format('truetype'),
         url('../fonts/Tojo.otf') format('opentype'); /* Use the appropriate format */
    font-weight: normal;
    font-style: normal;
}
.tojo-font {
    font-family: 'Tojo', sans-serif; /* Use the custom font */
    letter-spacing: 0.08em;
}

/**************************************
 ** - 01 - Default CSS
 **************************************/
*, *:before, *:after {
  box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}

html, body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
  scroll-padding-top: 150px;
  scroll-behavior: smooth;
}

body {
	padding: 0;
	font-size: 15px;
	font-family: 'DigitalTojo', sans-serif;
	margin: 0;
}

img {
	max-width: 100%;
	height: auto;
	border-radius: 5px;
}

button {
	outline: 0 !important;
}

dl, ol, ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.d-table {
	width: 100%;
	height: 100%;
}

.d-table-cell {
	vertical-align: middle;
}

.ptb-100 {
	padding-top: 100px;
	padding-bottom: 100px;
}

.pb-30 {
	padding-bottom: 30px;
}
.pb-40 {
	padding-bottom: 40px;
}
.pb-50 {
	padding-bottom: 50px;
}
.pb-70 {
	padding-bottom: 70px;
}
.pb-80 {
	padding-bottom: 80px;
}

.pb-100 {
	padding-bottom: 100px;
}

.pt-30 {
	padding-top: 30px;
}
.pt-40 {
	padding-top: 40px;
}
.pt-50 {
	padding-top: 50px;
}
.pt-70 {
	padding-top: 70px;
}
.pt-80 {
	padding-top: 80px;
}
.pt-100 {
	padding-top: 100px;
}

.bg-grey {
	background-color: #f7f8f8;
}

.section-padding {
	padding: 100px 0;
}

a {
	color: var(--tojo-blue);
	text-decoration: none;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	outline: 0 !important;
}

a:hover {
	color: var(--tojo-light-purple);
	text-decoration: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.4;
	/* font-family: 'Dosis', sans-serif; */
	margin: 0;
}

p {
	color: #5f5f5f;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.2px;
	/* font-family: 'Catamaran', sans-serif; */
	margin-bottom: 15px;
}

p:last-child {
	margin-bottom: 0;
}

.read-more {
    color: var(--tojo-blue);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    -webkit-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
}

.read-more i {
	color: var(--tojo-blue);
    font-size: 24px;
    display: flex;
    align-items: center;
    -webkit-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
    margin-right: 5px;
}

.read-more:hover i {
    color: var(--tojo-blue);
	transform: translateX(5px);
    -webkit-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
}

.more-button-box {
	text-align: center;
    margin-top: 40px;
}

.default-btn {
	position: relative;
	z-index: 1;
	overflow: hidden;
	color: var(--tojo-black);
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	padding-left: 35px;
	padding-right: 35px;
	padding-top: 13px;
	padding-bottom: 13px;
	border-radius: 5px;
	display: inline-block;
	background-color: var(--tojo-orange);
	box-shadow: 0 7px 25px rgb(47,52,58,0.25);
	margin-top: 5px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	border: none;
}

.default-btn span {
	position: absolute;
	z-index: -1;
	width: 0;
	height: 0;
	display: block;
	border-radius: 30px;
	background-color: var(--tojo-blue);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
	transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
}

.default-btn:hover, .default-btn:focus {
	color: var(--tojo-white);
}

.default-btn:hover span, .default-btn:focus span {
	width: 200%;
	height: 500px;
}

.default-btn-one {
	position: relative;
	z-index: 1;
	overflow: hidden;
	color: var(--tojo-blue);
	font-size: 16px;
	font-weight: 600;
	padding-left: 35px;
	padding-right: 35px;
	padding-top: 13px;
	padding-bottom: 13px;
	border-radius: 5px;
	text-align: center;
	display: inline-block;
	background-color: var(--tojo-white);
	box-shadow: 0 7px 25px rgb(17,46,87,0.25);
	-webkit-transition: 0.4s;
	transition: 0.4s;
	border: none;
	margin-top: 5px;
	margin-right: 20px;
}

.default-btn-one span {
	position: absolute;
	z-index: -1;
	width: 0;
	height: 0;
	display: block;
	border-radius: 30px;
	background-color: var(--tojo-blue);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
	transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
}

.default-btn-one:hover, .default-btn-one:focus {
	color: var(--tojo-white);
}

.default-btn-one:hover span, .default-btn-one:focus span {
	width: 200%;
	height: 500px;
}

.default-btn-two {
	position: relative;
	z-index: 1;
	overflow: hidden;
	color: var(--tojo-white);
	font-weight: 600;
	font-size: 16px;
	padding-left: 35px;
	padding-right: 35px;
	padding-top: 13px;
	padding-bottom: 13px;
	text-align: center;
	border-radius: 5px;
	display: inline-block;
	background-color: var(--tojo-blue);
	box-shadow: 0 7px 25px rgb(123,104,238,0.25);
	-webkit-transition: 0.4s;
	transition: 0.4s;
	border: none;
	margin-top: 5px;
	margin-right: 20px;
}

.default-btn-two span {
	position: absolute;
	z-index: -1;
	width: 0;
	height: 0;
	display: block;
	border-radius: 30px;
	background-color: var(--tojo-white);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
	transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
}

.default-btn-two:hover, .default-btn-two:focus {
	color: var(--tojo-light-purple);
}

.default-btn-two:hover span, .default-btn-two:focus span {
	width: 200%;
	height: 500px;
}

.section-title {
	text-align: center;
	line-height: 1.5;
	margin-bottom: 65px;
}
.sub-title {
    color: var(--tojo-orange);
	font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.sub-title-center {
    color: var(--tojo-black);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 25px;
	text-align: center;
	line-height: 1.5;
	font-size: 40px;
	font-weight: 800;
	margin: 10px 0 0 0;
	width: 100%;
}
/*
.section-title h6 {
	font-size: 16px;
	font-weight: 700;
	color: #ff9800;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}
*/

.section-title h2 {
	color: var(--tojo-black);
	font-size: 40px;
	font-weight: 800;
	margin: 10px 0 0 0;
}

.color-text {
    color: var(--tojo-blue);
}

.text-gradient {
	/** TEXT GRADIENT */
    color: #f44336;
    background-image: -webkit-linear-gradient(45deg, #f44336 48%, var(--tojo-orange) 56%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.valign {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/* [ Start Overlay ] */
[data-overlay-dark],
[data-overlay-light] {
	position: relative;
}

[data-overlay-dark] .container,
[data-overlay-light] .container {
	position: relative;
	z-index: 2;
}

[data-overlay-dark]:before,
[data-overlay-light]:before {
	content: '';
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

[data-overlay-dark]:before {
	background-color: #02050b;
}

[data-overlay-light]:before {
	background-color: #fff;
}

[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6,
[data-overlay-dark] span,
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6,
.bg-dark span,
.bg-color h1,
.bg-color h2,
.bg-color h3,
.bg-color h4,
.bg-color h5,
.bg-color h6,
.bg-color span {
	color: #fff;
}

[data-overlay-dark] p,
.bg-dark p,
.bg-color p {
	color: #dad6d6;
}

[data-overlay-dark="0"]:before,
[data-overlay-light="0"]:before {
	opacity: 0;
}

[data-overlay-dark="1"]:before,
[data-overlay-light="1"]:before {
	opacity: .1;
}

[data-overlay-dark="2"]:before,
[data-overlay-light="2"]:before {
	opacity: .2;
}

[data-overlay-dark="3"]:before,
[data-overlay-light="3"]:before {
	opacity: .3;
}

[data-overlay-dark="4"]:before,
[data-overlay-light="4"]:before {
	opacity: .4;
}

[data-overlay-dark="5"]:before,
[data-overlay-light="5"]:before {
	opacity: .5;
}

[data-overlay-dark="6"]:before,
[data-overlay-light="6"]:before {
	opacity: .6;
}

[data-overlay-dark="7"]:before,
[data-overlay-light="7"]:before {
	opacity: .7;
}

[data-overlay-dark="8"]:before,
[data-overlay-light="8"]:before {
	opacity: .8;
}

[data-overlay-dark="9"]:before,
[data-overlay-light="9"]:before,
[data-overlay-color="9"]:before {
	opacity: .9;
}

[data-overlay-dark="10"]:before,
[data-overlay-light="10"]:before {
	opacity: 1;
}
/* [ End Overlay ] */

/*********************************
 ** - 00 -  Go Top CSS
 *********************************/
.go-top {
	color: #ffffff;
	position: fixed;
	z-index: 4;
	top: 0;
	right: 15px;
	width: 45px;
	height: 45px;
	opacity: 0;
	visibility: hidden;
	text-align: center;
	line-height: 45px;
	border-radius: 5px;
	background-color: var(--tojo-light-purple);
	-webkit-transition: .9s;
	transition: .9s;
	cursor: pointer;
}

.go-top.active {
	top: 98%;
	-webkit-transform: translateY(-98%);
	transform: translateY(-98%);
	opacity: 1;
	visibility: visible;
}

.go-top i {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: 0.4s;
	transition: 0.4s;
	margin: 0 auto;
}

.go-top i:last-child {
	top: 60%;
	opacity: 0;
	visibility: hidden;
}

.go-top::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	border-radius: 5px;
	background-color: var(--tojo-orange);
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.go-top:hover, .go-top:focus {
	color: #ffffff;
}

.go-top:hover::before, .go-top:focus::before {
	opacity: 1;
	visibility: visible;
}

.go-top:hover i:first-child, .go-top:focus i:first-child {
	top: 0;
	opacity: 0;
	visibility: hidden;
}

.go-top:hover i:last-child, .go-top:focus i:last-child {
	top: 50%;
	opacity: 1;
	visibility: visible;
}

/**************************************
 ** - 02 - Preloader Section CSS
 **************************************/

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background-color: var(--tojo-blue); 
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1; /* Start fully visible */
    visibility: visible; /* Ensure it's visible initially */
    transition: opacity 1s ease, visibility 1s ease; /* Add transition for smooth fade out */
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Add space between shapes */
}

.shape {
    width: 50px;
    height: 50px;
    border: 5px solid var(--tojo-orange); /* Tojo's orange color */
    animation: float 2s infinite; /* Float animation */
}

.circle {
    border-radius: 50%; /* Circle */
    animation-delay: 0s; /* No delay */
    background: transparent; /* Ensure no background for the circle */
}

.squircle {
    border: 0;
    animation-delay: 0.2s; /* Delay for the second shape */
    background: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="UTF-8"%3F><svg id="Layer_2" data-name="Layer 2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 880 880"><defs><style> .cls-1 { fill: %23f8ad3b; stroke-width: 0px; } </style></defs><g id="Layer_1-2" data-name="Layer 1"><path class="cls-1" d="M440,880h-.25c-86.38-.53-150.5-5.6-201.79-15.96-65.98-13.25-115.08-36.78-150.06-71.93-35.16-34.98-58.69-84.09-71.95-150.12C5.6,590.76.53,526.64,0,440.25v-.25s0-.25,0-.25c.53-86.38,5.6-150.5,15.96-201.79,13.25-65.97,36.77-115.07,71.91-150.04C122.86,52.76,171.97,29.22,238.01,15.96,289.25,5.6,353.37.53,439.76,0h.25s.25,0,.25,0c86.39.53,150.51,5.6,201.79,15.96,65.98,13.25,115.09,36.78,150.06,71.93,35.16,34.98,58.69,84.09,71.95,150.12,10.35,51.24,15.42,115.36,15.95,201.74v.25s0,.25,0,.25c-.53,86.38-5.6,150.5-15.96,201.79-13.25,65.97-36.77,115.07-71.91,150.05-34.98,35.17-84.09,58.71-150.14,71.97-51.23,10.35-115.35,15.42-201.74,15.95h-.25ZM80,440c.51,80.97,5.08,140.14,14.38,186.19,10.2,50.78,26.08,85.48,50.01,109.26l.17.17c23.77,23.92,58.48,39.8,109.2,49.99,46.1,9.31,105.27,13.88,186.24,14.39,80.97-.51,140.15-5.08,186.19-14.38,50.78-10.2,85.48-26.08,109.26-50.01l.17-.17c23.92-23.77,39.8-58.47,49.99-109.2,9.31-46.1,13.88-105.27,14.39-186.24-.51-80.97-5.08-140.14-14.38-186.19-10.2-50.78-26.08-85.48-50.01-109.26l-.17-.17c-23.77-23.92-58.47-39.8-109.2-49.99-46.09-9.31-105.27-13.88-186.24-14.39-80.97.51-140.15,5.08-186.19,14.38-50.78,10.2-85.48,26.08-109.26,50.01l-.17.17c-23.92,23.77-39.8,58.47-49.99,109.2-9.31,46.1-13.88,105.27-14.39,186.24Z"/></g></svg>'); /* Set background image */
    background-size: cover; /* Ensure the image covers the shape */
}

.square {
    border-radius: 7px; /* Square */
    animation-delay: 0.4s; /* Delay for the third shape */
    background: transparent; /* Ensure no background for the square */
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.preloader.preloader-deactivate {
    opacity: 0; /* Fade out to invisible */
    visibility: hidden; /* Ensure it becomes invisible */
    transition: opacity 1s ease, visibility 1s ease; /* Smooth transition for both */
}

.preloader.preloader-deactivate .loader {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease; /* Ensure loader fades out too */
}

/*************************************
 ** - 03 - Navbar Section CSS
 *************************************/

/* Desktop/Mobile - Floating Pill Navbar */

.mobilenav{
	display: none;
}

header {
	display: block;
    position: fixed;
    width: auto;
    top: 20px;
    z-index: 1000;
    left: 50%;
    transform: translateX(-50%);
}

.megamenu {
    background-color: var(--tojo-white);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
	gap: 2.5rem;
	min-height: 11vh;
}

.megamenu hr {
	margin: -5px 0;
}

.mmenu-links {
    display: flex;
    gap: 10px;
}

.mmenu-item {
    position: relative;
}

.mmenu-link {
    font-size: 20px;
    color: var(--tojo-black);
    font-weight: 500;
    padding: 8px 16px;
    display: block;
	margin-top: 10px;
}

.mmenu-link.active {
	position: relative;
	z-index: 1;
	overflow: hidden;
	color: var(--tojo-black);
	text-align: center;
	border-radius: 5px;
	display: inline-block;
	background-color: var(--tojo-orange);
	box-shadow: 0 7px 25px rgb(47,52,58,0.25);
	/* box-shadow: 4px 7px 12px rgb(47,52,58,0.35); //floating button */
	margin-top: 10px;
	border: none;
}

.mmenu-link:hover {
	color: #FFFF;
	background-color: var(--tojo-blue);
	position: relative;
	z-index: 1;
	overflow: hidden;
	text-align: center;
	border-radius: 5px;
	display: inline-block;
	box-shadow: 0 7px 25px rgb(47,52,58,0.25);
	margin-top: 5px;
	border: none;
}

.mmenu-dropdown {
    display: none;
    position: absolute;
    top: 85%;
    left: 0;
    background-color: #FFF;
    padding: 5px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    gap: 20px;
    z-index: 1000;
    width: fit-content;
	min-width: 100px;
}

.mmenu-item:hover .mmenu-dropdown {
    display: flex;
}

.mmenu-column {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: max-content;
	margin: 5px 7px;
}

.mmenu-column h4 {
    font-size: 16px;
    font-weight: bold;
    color: var(--tojo-blue);
    margin-bottom: 5px;
}

.mmenu-column a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
	font-weight: 500;
    padding: 5px 10px;;
    transition: color 0.2s;
}

.mmenu-column a:hover {
    color: var(--tojo-black);
    background-color: var(--tojo-orange);
    border-radius: 5px;
}

.mmenu-column .submenu {
    display: none;
    position: absolute;
    left: 88%;
    background-color: #FFF;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mmenu-column .submenu a {
    font-size: 14px;
    color: #333;
	display: flex;
}

.mmenu-column a:hover + .submenu, 
.mmenu-column .submenu:hover {
    display: block;
	width: max-content;
	min-width: 100px;
}

/* Level 1 submenu */
.submenu-level-1 {
    top: 3%; /* Moves the submenu right below the parent (first level) */
}

/* Level 2 submenu */
.submenu-level-2 {
    top: 19%; /* Adjust the offset for the second level */
}

/* Level 3 submenu */
.submenu-level-3 {
    top: 35%; /* Adjust further for deeper levels */
}

/* Level 4 submenu */
.submenu-level-4 {
    top: 50%;
}

/* Level 5 submenu */
.submenu-level-5 {
    top: 66%;
}

/* Level 6 submenu */
.submenu-level-6 {
    top: 82%;
}

.settings-btn {
    position: absolute;
	width: fit-content;
    right: 0vw;
	bottom: 0vh;
    background-color: var(--tojo-orange);
    padding: 2px;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    /* justify-content: left; */
	z-index: -1;
	transition: margin-top 0.3s ease-in-out;
}

.settings-btn i {
    font-size: 24px;
    margin: 10px;
}

.settings-btn:hover, .settings-btn:focus {
	color: var(--tojo-black);
	height: 80px;
    right: 0vw;
    bottom: -3vh;
	flex-direction: row;
    align-items: end;
    justify-content: normal;
	cursor: pointer;
}

.setting-check {
    display: flex;
    align-items: flex-end;
    align-content: flex-end;
    margin: 5px;
	cursor: pointer;
}

.settings-btn span {
	margin-left: 15px;
    margin-top: 15px;
    font-size: 20px;
}

.lan{
	display: flex;
	align-items: center;
	padding: 0 0 0 5px;
}

.other-option{
	display: flex;
	align-items: center;
}

.dlogo img {
    width: 150px;
    min-width: 135px;
}

.responsive-logo {
    display: none;
}

.dhamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.dhamburger span {
    background-color: var(--tojo-black); /* Tojo's Black for mobile hamburger */
    width: 25px;
    height: 3px;
    margin: 4px;
    border-radius: 2px;
}

#services{
	padding: 0px 0px 100px 0px;
}

.single-services-two-item:hover {
	cursor: pointer;
}

@media (max-width: 1200px) {
    .full-logo{
        display: none;
    }

	#mobile-logo{
		display: none;
	}

	.responsive-logo{
		display: block;
	}

    .dlogo img {
		width: 70px;
		min-width: 70px;
	}
}


@media (max-width: 991px) {
	html, body {
		scroll-padding-top: 100px;
	}

	.tojo-font {
		letter-spacing: 0.05em;
	}

	/* .services-icon-box {
		-webkit-transition: none;
		transition: none;
	}

	.single-services-two-item:hover {
		cursor: pointer;
	} */

	.mobilenav{
		display: block;
		box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
	}

	header{
		display: none;
	}

	.full-logo .responsive-logo{
        display: none;
    }

	#mobile-logo{
		display: block;
		width: 150px;
		min-width: 150px;
	}

	.offcanvas-body{
		text-align: center;
	}

	.offcanvas-body a{
		font-size: 20px;
		min-width: 100%;
	}

	.nav-item{
		margin: .2rem 1rem;
	}

	.navbar-nav .dropdown-menu{
		padding: 10px;
		/* background-color: var(--tojo-blue); */
	}

	.dropdown-item{
		color: var(--tojo-black);
		border-radius: 5px !important;
		padding: 10px;
	}

	.dropdown-item:hover{
		/* background-color: var(--tojo-orange); */
		color: #FFFF;
		background-color: var(--tojo-blue);
	}

	.nav-link{
		margin-top: 5px;
		font-weight: 500px;
	}

	.nav-link.active {
		/* color: var(--tojo-orange) !important; */
		position: relative;
		z-index: 1;
		overflow: hidden;
		color: var(--tojo-black);
		text-align: center;
		border-radius: 5px;
		display: inline-block;
		background-color: var(--tojo-orange);
		box-shadow: 0 7px 25px rgb(47,52,58,0.25);
		margin-top: 5px;
		border: none;
	}

	.nav-link:hover {
		/* color: var(--tojo-blue) !important; */
		color: #FFFF;
		background-color: var(--tojo-blue);
		position: relative;
		z-index: 1;
		overflow: hidden;
		text-align: center;
		border-radius: 5px;
		display: inline-block;
		box-shadow: 0 7px 25px rgb(47,52,58,0.25);
		margin-top: 5px;
		border: none;
	}

	/* Tojo logo image in landing dissapear in mobile */
	.banner-image{
		display: none;
	}

	
}

/**************************************
 ** - 04 - Home Section CSS
 **************************************/
.home-section.home-2 {
    position: relative;
    z-index: 1;
    height: 800px;
    min-height: 100vh;
    background: url(../images/7sPg193yChTA.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.home-section.home-2 .main-banner-content {
    padding-top: 70px;
}

.home-section.home-2 .main-banner-content .banner-btn {
    margin-top: 25px;
    display: flex;
    align-items: center;
}

.home-section.home-2 .main-banner-content h1 {
    color: #362c72;
    font-size: 68px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.home-section.home-2 .main-banner-content p {
    color: #333333;
}

.video-box {
    position: relative;
	margin-left: 15px;
    display: inline-block;
}

.home-section.home-2 .video-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: var(--tojo-light-purple);
    border-radius: 50%;
    -webkit-animation: ripple-white 1s linear infinite;
    animation: ripple-white 1s linear infinite;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.home-section.home-2 .video-btn i {
	color: #ffffff;
	font-size: 16px;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	padding-left: 2px;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.home-section.home-2 .video-btn:hover {
    background-color: #ffffff;
}

.home-section.home-2 .video-btn:hover i {
	color: var(--tojo-light-purple);
}

@-webkit-keyframes ripple-white {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(123, 104, 238, 0.4), 0 0 0 5px rgba(123, 104, 238, 0.4), 0 0 0 10px rgba(123, 104, 238, 0.4);
		box-shadow: 0 0 0 0 rgba(123, 104, 238, 0.4), 0 0 0 5px rgba(123, 104, 238, 0.4), 0 0 0 10px rgba(123, 104, 238, 0.4);
	}
	100% {
		-webkit-box-shadow: 0 0 0 5px rgba(123, 104, 238, 0.4), 0 0 0 10px rgba(123, 104, 238, 0.4), 0 0 0 20px rgba(123, 104, 238, 0);
		box-shadow: 0 0 0 5px rgba(123, 104, 238, 0.4), 0 0 0 10px rgba(123, 104, 238, 0.4), 0 0 0 20px rgba(123, 104, 238, 0);
	}
}
@keyframes ripple-white {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(123, 104, 238, 0.4), 0 0 0 5px rgba(123, 104, 238, 0.4), 0 0 0 10px rgba(123, 104, 238, 0.4);
		box-shadow: 0 0 0 0 rgba(123, 104, 238, 0.4), 0 0 0 5px rgba(123, 104, 238, 0.4), 0 0 0 10px rgba(123, 104, 238, 0.4);
	}
	100% {
		-webkit-box-shadow: 0 0 0 5px rgba(123, 104, 238, 0.4), 0 0 0 10px rgba(123, 104, 238, 0.4), 0 0 0 20px rgba(123, 104, 238, 0);
		box-shadow: 0 0 0 5px rgba(123, 104, 238, 0.4), 0 0 0 10px rgba(123, 104, 238, 0.4), 0 0 0 20px rgba(123, 104, 238, 0);
	}
}


/****************************************
 ** - 04.2 - Home-2 Shape Animation
 ****************************************/
.home-shape-animation .shape-1 {
    position: absolute;
    right: 10%;
    top: 16%;
    z-index: -1;
    -webkit-animation: animationFramesOne 20s infinite linear;
    animation: animationFramesOne 20s infinite linear;
}
.home-shape-animation .shape-2 {
    position: absolute;
    left: 33%;
    top: 18%;
    z-index: -1;
}
.home-shape-animation .shape-2 img {
    -webkit-animation-name: rotateMe;
    animation-name: rotateMe;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
.home-shape-animation .shape-3 {
    position: absolute;
    left: 5%;
    bottom: 25%;
    z-index: -1;
    -webkit-animation: animationFramesOne 20s infinite linear;
    animation: animationFramesOne 20s infinite linear;
}
.home-shape-animation .shape-4 {
    position: absolute;
    right: 10%;
    bottom: 25%;
    z-index: -1;
    -webkit-animation: animationFramesTwo 20s infinite linear;
    animation: animationFramesTwo 20s infinite linear;
}
.home-shape-animation .shape-5 {
    position: absolute;
    left: 5%;
    top: 26%;
    z-index: -1;
    -webkit-animation: moveLeftBounce 3s linear infinite;
    animation: moveLeftBounce 3s linear infinite;
}
.home-shape-animation .shape-6 {
    position: absolute;
    left: 50%;
    bottom: 15%;
    z-index: -1;
    -webkit-animation: rotate3d 4s linear infinite;
    animation: rotate3d 4s linear infinite;
}
.home-shape-animation .shape-7 {
    position: absolute;
    left: 50%;
    top: 15%;
    z-index: -1;
    -webkit-animation: moveScale 3s linear infinite;
    animation: moveScale 3s linear infinite;
}
@-webkit-keyframes rotateMe {
    0% {
        -webkit-transform: rotate(0deg) translate(0px, 0px);
        transform: rotate(0deg) translate(0px, 0px);
    }
    25% {
        -webkit-transform: rotate(90deg) translate(30px, 30px);
        transform: rotate(90deg) translate(30px, 30px);
    }
    50% {
        -webkit-transform: rotate(180deg) translate(0px, 60px);
        transform: rotate(180deg) translate(0px, 60px);
    }
    75% {
        -webkit-transform: rotate(270deg) translate(-30px, 30px);
        transform: rotate(270deg) translate(-30px, 30px);
    }
    100% {
        -webkit-transform: rotate(360deg) translate(0px, 0px);
        transform: rotate(360deg) translate(0px, 0px);
    }
}
@keyframes rotateMe {
    0% {
        -webkit-transform: rotate(0deg) translate(0px, 0px);
        transform: rotate(0deg) translate(0px, 0px);
    }
    25% {
        -webkit-transform: rotate(90deg) translate(30px, 30px);
        transform: rotate(90deg) translate(30px, 30px);
    }
    50% {
        -webkit-transform: rotate(180deg) translate(0px, 60px);
        transform: rotate(180deg) translate(0px, 60px);
    }
    75% {
        -webkit-transform: rotate(270deg) translate(-30px, 30px);
        transform: rotate(270deg) translate(-30px, 30px);
    }
    100% {
        -webkit-transform: rotate(360deg) translate(0px, 0px);
        transform: rotate(360deg) translate(0px, 0px);
    }
}
@-webkit-keyframes animationFramesOne {
    0%{
        -webkit-transform:translate(0px,0px) rotate(0deg);
        transform:translate(0px,0px) rotate(0deg)
    }
    20%{
        -webkit-transform:translate(73px,-1px) rotate(36deg);
        transform:translate(73px,-1px) rotate(36deg)
    }
    40%{
        -webkit-transform:translate(141px,72px) rotate(72deg);
        transform:translate(141px,72px) rotate(72deg)
    }
    60%{
        -webkit-transform:translate(83px,122px) rotate(108deg);
        transform:translate(83px,122px) rotate(108deg)
    }
    80%{
        -webkit-transform:translate(-40px,72px) rotate(144deg);
        transform:translate(-40px,72px) rotate(144deg)
    }
    100%{
        -webkit-transform:translate(0px,0px) rotate(0deg);
        transform:translate(0px,0px) rotate(0deg)
    }
}
@keyframes animationFramesOne {
    0%{
        -webkit-transform:translate(0px,0px) rotate(0deg);
        transform:translate(0px,0px) rotate(0deg)
    }
    20%{
        -webkit-transform:translate(73px,-1px) rotate(36deg);
        transform:translate(73px,-1px) rotate(36deg)
    }
    40%{
        -webkit-transform:translate(141px,72px) rotate(72deg);
        transform:translate(141px,72px) rotate(72deg)
    }
    60%{
        -webkit-transform:translate(83px,122px) rotate(108deg);
        transform:translate(83px,122px) rotate(108deg)
    }
    80%{
        -webkit-transform:translate(-40px,72px) rotate(144deg);
        transform:translate(-40px,72px) rotate(144deg)
    }
    100%{
        -webkit-transform:translate(0px,0px) rotate(0deg);
        transform:translate(0px,0px) rotate(0deg)
    }
}
@-webkit-keyframes animationFramesTwo {
    0%{
        -webkit-transform:translate(0px,0px) rotate(0deg);
        transform:translate(0px,0px) rotate(0deg)
    }
    20%{
        -webkit-transform:translate(-73px,1px) rotate(-36deg);
        transform:translate(-73px,1px) rotate(-36deg)
    }
    40%{
        -webkit-transform:translate(-141px,-72px) rotate(-72deg);
        transform:translate(-141px,-72px) rotate(-72deg)
    }
    60%{
        -webkit-transform:translate(-83px,-122px) rotate(-108deg);
        transform:translate(-83px,-122px) rotate(-108deg)
    }
    80%{
        -webkit-transform:translate(40px,-72px) rotate(-144deg);
        transform:translate(40px,-72px) rotate(-144deg)
    }
    100%{
        -webkit-transform:translate(0px,0px) rotate(0deg);
        transform:translate(0px,0px) rotate(0deg)
    }
}
@keyframes animationFramesTwo {
    0%{
        -webkit-transform:translate(0px,0px) rotate(0deg);
        transform:translate(0px,0px) rotate(0deg)
    }
    20%{
        -webkit-transform:translate(-73px,1px) rotate(-36deg);
        transform:translate(-73px,1px) rotate(-36deg)
    }
    40%{
        -webkit-transform:translate(-141px,-72px) rotate(-72deg);
        transform:translate(-141px,-72px) rotate(-72deg)
    }
    60%{
        -webkit-transform:translate(-83px,-122px) rotate(-108deg);
        transform:translate(-83px,-122px) rotate(-108deg)
    }
    80%{
        -webkit-transform:translate(40px,-72px) rotate(-144deg);
        transform:translate(40px,-72px) rotate(-144deg)
    }
    100%{
        -webkit-transform:translate(0px,0px) rotate(0deg);
        transform:translate(0px,0px) rotate(0deg)
    }
}
@-webkit-keyframes rotate3d {
    0% {
        -webkit-transform: rotateY(0deg) translateY(0) translateX(0);
        transform: rotateY(0deg) translateY(0) translateX(0);
    }
    50% {
        -webkit-transform: rotateY(180deg) translateY(-20px) translateX(20px);
        transform: rotateY(180deg) translateY(-20px) translateX(20px);
    }
    100% {
        -webkit-transform: rotateY(360deg) translateY(0) translateX(0);
        transform: rotateY(360deg) translateY(0) translateX(0);
    }
}
@keyframes rotate3d {
    0% {
        -webkit-transform: rotateY(0deg) translateY(0) translateX(0);
        transform: rotateY(0deg) translateY(0) translateX(0);
    }
    50% {
        -webkit-transform: rotateY(180deg) translateY(-20px) translateX(20px);
        transform: rotateY(180deg) translateY(-20px) translateX(20px);
    }
    100% {
        -webkit-transform: rotateY(360deg) translateY(0) translateX(0);
        transform: rotateY(360deg) translateY(0) translateX(0);
    }
}
@-webkit-keyframes moveScale {
    0% {
        -webkit-transform: scale(.6) translateY(0);
        transform: scale(.6) translateY(0);
    }
    50% {
        -webkit-transform: scale(.8) translateY(-20px);
        transform: scale(.8) translateY(-20px);
    }
    100% {
        -webkit-transform: scale(.6) translateY(0);
        transform: scale(.6) translateY(0);
    }
}
@keyframes moveScale {
    0% {
        -webkit-transform: scale(.6) translateY(0);
        transform: scale(.6) translateY(0);
    }
    50% {
        -webkit-transform: scale(.8) translateY(-20px);
        transform: scale(.8) translateY(-20px);
    }
    100% {
        -webkit-transform: scale(.6) translateY(0);
        transform: scale(.6) translateY(0);
    }
}
@-webkit-keyframes moveLeftBounce {
    0%{
        -webkit-transform:translateX(0px);
        transform:translateX(0px)
    }
    50%{
        -webkit-transform:translateX(20px);
        transform:translateX(20px)
    }
    100%{
        -webkit-transform:translateX(0px);
        transform:translateX(0px)
    }
}
@keyframes moveLeftBounce {
    0%{
        -webkit-transform:translateX(0px);
        transform:translateX(0px)
    }
    50%{
        -webkit-transform:translateX(20px);
        transform:translateX(20px)
    }
    100%{
        -webkit-transform:translateX(0px);
        transform:translateX(0px)
    }
}
@-webkit-keyframes moveBounce {
    0%{
        -webkit-transform:translateY(0px);
        transform:translateY(0px)
    }
    50%{
        -webkit-transform:translateY(20px);
        transform:translateY(20px)
    }
    100%{
        -webkit-transform:translateY(0px);
        transform:translateY(0px)
    }
}
@keyframes moveBounce {
    0%{
        -webkit-transform:translateY(0px);
        transform:translateY(0px)
    }
    50%{
        -webkit-transform:translateY(20px);
        transform:translateY(20px)
    }
    100%{
        -webkit-transform:translateY(0px);
        transform:translateY(0px)
    }
}

/**************************************
 ** - 05 - Services Section CSS
 **************************************/
.services-section .section-title {
	margin-bottom: 35px;
}

.single-services-item {
	position: relative;
	z-index: 1;
	display: block;
	text-align: left;
	padding: 35px 30px;
	border-radius: 5px;
	background-color: #ffffff;
    -webkit-box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.12);
    -moz-box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.12);
    box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.12);
    -webkit-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
	margin-top: 30px;
}

.services-icon {
    display: inline-block;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-bottom: 15px;
    will-change: transform;
}

.services-icon i {
    color: #ff561d;
	font-size: 50px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.single-services-item h3 {
	font-size: 20px;
    font-weight: 700;
    -webkit-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
	margin-bottom: 0;
}

.single-services-item h3 a {
	display: inline-block;
}

.single-services-item p {
	font-size: 16px;
    -webkit-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
    will-change: transform;
	margin-top: 15px;
	margin-bottom: 15px;
}


.single-services-item:hover {
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
}
.single-services-item:hover .services-icon {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

/****************************************
 ** - 05.2 - Services Two Section CSS
 ****************************************/
.services-section-two .section-title {
	margin-bottom: 35px;
}

.single-services-two-item {
	position: relative;
	z-index: 1;
	display: block;
	text-align: left;
	padding: 45px 30px;
	border-radius: 5px;
	background-color: #ffffff;
    -webkit-box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.12);
    -moz-box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.12);
    box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.12);
    -webkit-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
	min-height: 100%;
}

.services-icon-box {
	position: relative;
	width: 50px;
	height: 50px;
    display: inline-block;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-bottom: 25px;
    will-change: transform;
}

.services-icon-box .hover-icon {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

/* .single-services-two-item:hover .services-icon-box .default-icon {
    opacity: 0;
    visibility: hidden;
}

.single-services-two-item:hover .services-icon-box .hover-icon {
    opacity: 1;
    visibility: visible;
} */
.single-services-two-item:hover .services-icon-box .default-icon,
.single-services-two-item.hover-active .services-icon-box .default-icon {
    opacity: 0;
    visibility: hidden;
}

.single-services-two-item:hover .services-icon-box .hover-icon,
.single-services-two-item.hover-active .services-icon-box .hover-icon {
    opacity: 1;
    visibility: visible;
}


.single-services-two-item h3 {
	font-size: 20px;
    font-weight: 700;
    -webkit-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
	margin-bottom: 0;
}

.single-services-two-item h3 a {
	display: inline-block;
}

.single-services-two-item p {
	font-size: 16px;
    -webkit-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
    will-change: transform;
	margin-top: 20px;
	margin-bottom: 20px;
}

/* .single-services-two-item:hover, .single-services-two-item:focus, .single-services-two-item.hover-active{
	background-color: var(--tojo-orange);
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
}

.single-services-two-item:hover .services-icon-box {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.single-services-two-item:hover h3 {
	color: var(--tojo-black);
}
.single-services-two-item:hover p {
	color: var(--tojo-black);
}
.single-services-two-item:hover .services-btn a,
.single-services-two-item:hover .services-btn a i {
	color: var(--tojo-black);
} */
.single-services-two-item:hover,
.single-services-two-item.hover-active {
    background-color: var(--tojo-orange);
    transform: translateY(-10px);
}

.single-services-two-item:hover .services-icon-box,
.single-services-two-item.hover-active .services-icon-box {
    transform: rotateY(180deg);
}

.single-services-two-item:hover h3,
.single-services-two-item.hover-active h3 {
    color: var(--tojo-black);
}

.single-services-two-item:hover p,
.single-services-two-item.hover-active p {
    color: var(--tojo-black);
}

.single-services-two-item:hover .services-btn a,
.single-services-two-item.hover-active .services-btn a,
.single-services-two-item:hover .services-btn a i,
.single-services-two-item.hover-active .services-btn a i {
    color: var(--tojo-black);
}

/******************************************
 ** - 05.3 - Services Three Section CSS
 ******************************************/
.services-section-three .section-title {
	margin-bottom: 35px;
}

.single-services-three-item {
	position: relative;
	z-index: 1;
	display: block;
	text-align: left;
	padding: 35px 30px;
	border-radius: 5px;
	background-color: #ffffff;
    -webkit-box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.12);
    -moz-box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.12);
    box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.12);
    -webkit-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
	margin-top: 30px;
}

.single-services-three-item .services-icon {
	position: relative;
	width: 50px;
	height: 50px;
    display: inline-block;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-bottom: 25px;
    will-change: transform;
}

.single-services-three-item h3 {
	font-size: 20px;
    font-weight: 700;
    -webkit-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
	margin-bottom: 0;
}

.single-services-three-item h3 a {
	display: inline-block;
}

.single-services-three-item p {
	font-size: 16px;
    -webkit-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
    will-change: transform;
	margin-top: 20px;
	margin-bottom: 20px;
}

.services-three-content .features-list {
    padding: 5px 0;
    border-top: 2px solid var(--tojo-white);
    border-bottom: 2px solid var(--tojo-white);
    margin-bottom: 20px;
}

.services-three-content .features-list li {
	position: relative;
    color: var(--tojo-black);
    font-size: 16px;
    padding-left: 20px;
    margin: 10px 0;
}

.services-three-content .features-list li:before {
	content: "";
	position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
	border-radius: 10px;
    background-color: var(--tojo-blue);
}

.single-services-three-item:hover {
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
}

/*****************************************
 ** - 06 - Services Details Page CSS
 *****************************************/
.services-details-image {
	text-align: center;
    margin-bottom: 40px;
}
.services-details-image img {
    border-radius: 5px;
}

.services-details-content h3 {
    font-size: 25px;
    margin-bottom: 15px;
}

.services-details-content .features-text {
    margin-top: 20px;
}

.services-details-content .features-text h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.services-widget .widget {
	padding: 30px 25px;
    border-radius: 5px;
	background-color: rgb(11, 11, 49, 0.05);
	margin-top: 35px;
}

.services-widget .widget:first-child {
	margin-top: 0;
}

.services-widget .widget .widget-title {
	position: relative;
	font-size: 22px;
	padding-bottom: 10px;
	text-transform: capitalize;
	border-bottom: 1px solid #ffffff;
	margin-bottom: 30px;
}

.services-widget .widget .widget-title::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 50px;
	height: 1px;
	background-color: var(--tojo-light-purple);
}

.services-widget .widget_categories ul {
	margin-bottom: 0;
}

.services-widget .widget_categories ul li {
	position: relative;
	color: #747576;
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 12px;
}

.services-widget .widget_categories ul li:last-child {
	margin-bottom: 0;
}

.services-widget .widget_categories ul li a {
    display: block;
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
    padding: 12px 15px;
    border-radius: 5px;
    background-color: var(--tojo-light-purple);
    transition: all ease 350ms;
    -moz-transition: all ease 350ms;
    -webkit-transition: all ease 350ms;
}

.services-widget .widget_categories ul li a:hover {
	color: #ffffff;
    background-color: var(--tojo-blue);
}
.widget_download_btn a {
    display: block;
    padding: 12px 20px;
    border-radius: 5px;
}
.widget_download_btn a:first-child {
    margin: 0 0 12px;
}

/***********************************
 ** - 07 - About Section CSS
 ***********************************/
.about-area {
	position: relative;
	z-index: 1;
}

.about-content {
	margin-right: 15px;
}

.about-content h2 {
	font-size: 38px;
	font-weight: 700;
	margin-bottom: 20px;
}

.about-content p {
	margin-bottom: 15px;
}

.about-content p:nth-last-child(2) {
	margin-bottom: 0px;
}

.about-area .skills {
	margin-top: 20px;
}
.about-area .skills .skill-item {
	margin-bottom: 20px;
}

.about-area .skills .skill-item:last-child {
	margin-bottom: 0px;
}

.about-area .skills .skill-item h6 {
	position: relative;
	z-index: 4;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}
.about-area .skills .skill-item h6 em {
	float: right;
	font-size: 15px;
	font-style: normal;
}
.about-area .skills .skill-item .skill-progress {
	position: relative;
	height: 7px;
	border-radius: 5px;
	background-color: #ddddff;
}
.about-area .skills .skill-item .skill-progress .progres {
	position: absolute;
	top: 0;
	left: 0;
	width: 10%;
	height: 100%;
	border-radius: 5px;
	background-color: var(--tojo-light-purple);
	-webkit-transition: all 1.5s;
	transition: all 1.5s;
}

.about-btn-box {
    display: inline-block;
    margin-top: 25px;
}

.about-image {
	position: relative;
	text-align: center;
	margin-left: 0px;
}
.about-image img {
	border-radius: 5px;
}

.about-image .years-design {
	position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    max-width: 250px;
    padding: 15px 10px;
    border-radius: 5px;
    background-color: #ffffff;
    border-bottom: 2px solid #ff9800;
	-webkit-box-shadow: -1px 3px 20px 0px rgb(82, 90, 101, 0.1);
	box-shadow: -1px 3px 20px 0px rgb(82, 90, 101, 0.1);
    margin-left: auto;
    margin-right: auto;
}

.about-image .years-design h2 {
    font-size: 70px;
    font-weight: 800;
    background: url(../images/dN48Vv0FBp9U.jpg) no-repeat;
    background-position: 50% 50%;
    -webkit-background-clip: text; /* For WebKit browsers */
    background-clip: text; /* Standard property */
    -webkit-text-fill-color: transparent; /* WebKit-specific property to hide text color */
    line-height: 1.1;
}

.about-image .years-design h5 {
    color: var(--tojo-orange);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 10px;
}

/**************************************
 ** - 08 - Feature Section CSS
 **************************************/
.feature-single-item {
    position: relative;
	z-index: 1;
    padding: 40px 30px;
	text-align: center;
    border-radius: 5px;
    background-color: #ffffff;
	-webkit-box-shadow: 0px 10px 57px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 10px 57px 0px rgba(0, 0, 0, 0.08);
    transition: all .4s ease;
	margin-bottom: 30px;
}
.feature-single-item:hover {
    transform: translate(0, -10px);
}
.feature-single-item h3 {
	color: #0b0b31;
    font-size: 20px;
    margin-bottom: 15px;
}
.feature-single-item img {
	width: 85px;
	margin: auto;
	margin-bottom: 25px;
}

.feature-btn-box .read-more {
    display: flex;
    align-items: center;
    justify-content: center;
}

/***************************************
 ** - 08.2 - Feature Two Section CSS
 ***************************************/
.feature-two-single-item {
    position: relative;
	z-index: 1;
    padding: 40px 30px;
	text-align: center;
    border-radius: 5px;
    background-color: #ffffff;
	-webkit-box-shadow: 0px 10px 57px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 10px 57px 0px rgba(0, 0, 0, 0.08);
    transition: all .4s ease;
	margin-bottom: 30px;
}
.feature-two-single-item:hover {
    transform: translate(0, -10px);
}
.feature-two-single-item h3 {
	color: #0b0b31;
    font-size: 20px;
    margin-bottom: 15px;
}
.feature-two-single-item img {
	width: 70px;
	margin: auto;
	margin-bottom: 25px;
}

/**************************************
 ** - 09 - Work Process Section CSS
 **************************************/
/* .workprocess-section {} */

.workprocess-section .section-title {
    margin-bottom: 30px;
}

.workprocess-single-item {
    position: relative;
	z-index: 1;
    padding: 35px 30px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 5px 20px 0px rgb(82, 90, 101, 0.1);
    box-shadow: 0px 5px 20px 0px rgb(82, 90, 101, 0.1);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    margin-top: 35px;
	min-height: 100%;
}

.workprocess-single-item:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

.workprocess-icon-box {
    display: inline-block;
	font-size: 60px;
	color: var(--tojo-blue);
}
.workprocess-single-item:hover .workprocess-icon-box {
    color: var(--tojo-light-purple);
}

.workprocess-icon-box .workprocess-icon-number {
    font-size: 3rem;
    color: var(--tojo-blue);
    width: 64px;
    height: 64px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    background-color: red;
}

/* .workprocess-info {
} */

.workprocess-info h3 {
	font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}
.workprocess-number-bg {
	position: absolute;
    z-index: -1;
    right: 5px;
    bottom: -45px;
}

.workprocess-number-bg span {
    color: rgb(123, 104, 238, .05);
    font-size: 12rem;
    font-weight: 700;
    line-height: 1;
}

/**************************************
 ** - 10 - Technology Section CSS
 **************************************/
.single-technology-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 10px 20px 10px;
    text-align: center;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 10px 15px 0 rgba(0, 0, 0, .07);
    -webkit-box-shadow: 0 10px 15px 0 rgba(0, 0, 0, .07);
    -moz-box-shadow: 0 10px 15px 0 rgba(0, 0, 0, .07);
    margin-bottom: 30px;
}

.single-technology-item .technology-icon {
    display: inline-block;
    width: 70px;
    margin-right: 10px;
}

.single-technology-item .technology-icon img {
    width: 50px;
}

.single-technology-item h3 {
    color: #505050;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

/**************************************
 ** - 11 - Overview Section CSS
 **************************************/
.overview-content h2 {
	color: #404040;
	font-size: 38px;
	margin: 8px 0 15px 0;
}

.overview-content p {
	margin: 0 0 0 0;
}

.overview-content .features-list {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	flex-direction: column;
	padding-left: 0;
	list-style-type: none;
	margin-bottom: 0;
	margin-left: -10px;
	margin-right: -10px;
}

.overview-content .features-list li {
	-ms-flex: 0 0 50%;
	-webkit-box-flex: 0;
	flex: 0 0 50%;
	margin-top: 18px;
	padding-left: 10px;
	padding-right: 10px;
}

.overview-content .features-list li span {
	position: relative;
	z-index: 1;
	color: var(--tojo-black);
	font-size: 16px;
	font-weight: 600;
	display: block;
	padding: 13px 15px;
	border-radius: 5px;
	border-left: 2px solid var(--tojo-blue);
	background-color: var(--tojo-white);
	-webkit-box-shadow: -1px 3px 20px 0px rgb(82, 90, 101, 0.1);
	box-shadow: -1px 3px 20px 0px rgb(82, 90, 101, 0.1);
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.overview-content .features-list li span::before {
	content: '';
	position: absolute;
	z-index: -1;
	left: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	border-radius: 5px;
	background-color: var(--tojo-blue);
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.overview-content .features-list li span:hover,  .overview-content .features-list li span:hover p {
	color: #ffffff;
}

.overview-content .features-list li span:hover::before {
	width: 100%;
}

.overview-image {
	text-align: center;
}

/*************************************
 ** - 12 - Counter Section CSS
 *************************************/
.counter-area {
	position: relative;
	z-index: 1;
	padding: 120px 0;
	text-align: center;
	background: url(../images/0a9XKtLfiFt4.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}
.counter-area::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.6;
	background-color: #1f1f54;
}
.counter-area .section-title h5 {
	color: #ffffff;
}
.counter-area .section-title h2 {
	color: #fff;
}
.counter-contents h2 {
	color: #fff;
	font-size: 45px;
	font-weight: 700;
	margin-bottom: 5px;
	word-spacing: -5px;
}
.counter-contents h3 {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
}

/*************************************
 ** - 13 - Portfolio Section CSS
 *************************************/
.portfolio-area {
	position: relative;
}

.portfolio-area .portfolio-list {
	text-align: center;
	margin-bottom: 25px;
}

.portfolio-area .portfolio-list .nav {
	position: relative;
	display: inline-block;
	margin: 0;
}

.portfolio-area .portfolio-list .nav li {
	display: inline-block;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    padding: 14px 25px;
    border-radius: 3px;
    text-transform: capitalize;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 5px 15px 0px rgb(94, 94, 94, 0.15);
    box-shadow: 0px 5px 15px 0px rgb(94, 94, 94, 0.15);
    transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	-webkit-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
    margin: 0 5px;
}

.portfolio-area .portfolio-list .nav li:hover, .portfolio-area .portfolio-list .nav li.filter-active {
    color: var(--tojo-black);
    background-color: var(--tojo-orange);
	-moz-transition: all 0.5s ease-in-out 0s;
	-ms-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
}

.portfolio-area .portfolio-container {
	width: 100%;
	display: inline-block;
}

.portfolio-area .portfolio-grid-item {
	overflow: hidden;
}

.portfolio-grid-item img {
	width: 100%;
    border-radius: 0px;
}

.portfolio-item {
	position: relative;
	display: block;
	overflow: hidden;
    border-radius: 5px;
	margin-top: 30px;
}

.portfolio-item .portfolio-content-overlay {
    position: absolute;
    z-index: 2;
    left: 10px;
    right: 10px;
    bottom: -20px;
    padding: 15px 20px;
    opacity: 0;
    visibility: hidden;
	overflow: hidden;
    border-radius: 5px;
    background-color: #ffffff;
    -webkit-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.portfolio-item .portfolio-content-overlay p {
    color: var(--tojo-black);
    font-size: 15px;
    font-weight: 700;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
    -webkit-transition: all .4s;
    transition: all .4s;
    margin-bottom: 0;
}
.portfolio-item .portfolio-content-overlay h3 {
    color: #1b1b1b;
    font-size: 18px;
    font-weight: 700;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
    -webkit-transition: all .4s;
    transition: all .4s;
    margin-top: 5px;
    margin-bottom: 0;
}
.portfolio-item:hover .portfolio-content-overlay p,
.portfolio-item:hover .portfolio-content-overlay h3 {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
}
.portfolio-item:hover .portfolio-content-overlay {
    bottom: 10px;
    opacity: 1;
    visibility: visible;
}

.portfolio-item .portfolio-content-overlay .portfolio-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    color: #fff;
    height: 100%;
    padding: 0 20px;
    font-size: 25px;
	overflow: hidden;
	line-height: normal;
    background-color: var(--tojo-blue);
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out 0s;
    transition-delay: 0.2s;
}
.portfolio-item:hover .portfolio-content-overlay .portfolio-link-icon {
    transform: translateX(0);
	visibility: visible;
}

/******************************************
 ** - 14 - Portfolio Details Page CSS
 ******************************************/
.portfolio-details-image {
	margin-bottom: 30px;
}

.portfolios-details-desc {
	margin-top: 5px;
}

.portfolios-details-desc h3 {
	font-size: 25px;
	margin-bottom: 13px;
}

.portfolios-details-desc .features-text {
	margin-top: 25px;
	margin-bottom: 25px;
}

.portfolios-details-desc .features-text h4 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 12px;
}

.portfolios-details-desc .features-text h4 i {
	color: var(--tojo-light-purple);
	font-size: 16px;
	margin-right: 4px;
}

.portfolios-details-desc .portfolio-details-info {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 35px;
	margin-left: -15px;
	margin-right: -15px;
}

.portfolios-details-desc .portfolio-details-info .single-info-box {
	-ms-flex: 0 0 20%;
	-webkit-box-flex: 0;
	flex: 0 0 20%;
	max-width: 20%;
	padding-left: 15px;
	padding-right: 15px;
}

.portfolios-details-desc .portfolio-details-info .single-info-box h4 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 15px;
}

.portfolios-details-desc .portfolio-details-info .single-info-box span {
	display: block;
	color: #5f5f5f;
	font-size: 16px;
}

.portfolios-details-desc .portfolio-details-info .single-info-box .social {
	padding-left: 0;
	margin-bottom: 0;
	list-style-type: none;
}

.portfolios-details-desc .portfolio-details-info .single-info-box .social li {
	display: inline-block;
	margin-right: 8px;
}

.portfolios-details-desc .portfolio-details-info .single-info-box .social li a {
    color: var(--tojo-light-purple);
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    display: inline-block;
    border-radius: 25px;
    border: 1px solid var(--tojo-light-purple);
    background-color: transparent;
}

.portfolios-details-desc .portfolio-details-info .single-info-box .social li a:hover {
	color: #ffffff;
	border: 1px solid var(--tojo-light-purple);
	background-color: var(--tojo-light-purple);
}

/**************************************
 ** - 15 - Testimonial Section CSS
 **************************************/
.testimonial-section {
	position: relative;
	z-index: 1;
	text-align: center;
}

.single-testimonial {
	position: relative;
	padding: 35px 20px;
	border-radius: 5px;
	background-color: #fafafa;
    height: 95%;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

.single-testimonial .testimonial-content {
	text-align: center;
	margin-bottom: 25px;
}

.single-testimonial .rating-box {
	margin-bottom: 12px;
}
.rating-box ul li {
	display: inline-block;
	margin-right: 0px;
}

.rating-box ul li i {
	color: var(--tojo-orange);
	font-size: 18px;
}

.single-testimonial .testimonial-content p {
	color: #333;
	font-size: 17px;
	font-style: italic;
	line-height: 1.8;
}

.single-testimonial .avatar {
	margin: 0 auto;
	margin-bottom: 15px;
}

.single-testimonial .avatar img {
	width: 90px;
	border-radius: 50%;
	border: 5px solid #ffffff;
	border-left-color: var(--tojo-light-purple);
	border-bottom-color: var(--tojo-light-purple);
	margin: 0 auto;
}

.single-testimonial .testimonial-bio {
	text-align: center;
}

.single-testimonial .testimonial-bio .bio-info h3 {
	color: #333;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 5px;
}

.single-testimonial .testimonial-bio .bio-info span {
	color: var(--tojo-blue);
    font-size: 16px;
    font-weight: 500;
    display: block;
}

.owl-stage{
    display: flex;
    align-items: stretch;
}

.testimonial-slider.owl-theme .owl-nav {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	margin-top: 0;
}

.testimonial-slider.owl-theme .owl-nav [class*=owl-] {
	position: absolute;
	top: 50%;
	left: 10px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color: #fff;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	color: #333;
	font-size: 18px;
	width: 50px;
	height: 45px;
	line-height: 50px;
	padding: 0;
	margin: 0;
}

.testimonial-slider.owl-theme .owl-nav [class*=owl-].owl-next {
	left: auto;
	right: 10px;
}

.testimonial-slider.owl-theme .owl-nav [class*=owl-]:hover {
	color: var(--tojo-light-purple);
	background-color: transparent;
}

.testimonial-slider.owl-theme .owl-dots {
	margin-top: 30px;
	margin-bottom: 0;
}

.testimonial-slider.owl-theme .owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	border-radius: 30px;
	background-color: #fff;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	margin: 0 4px;
}

.testimonial-slider.owl-theme .owl-dots .owl-dot:hover span {
	background-color: #7b68ee;
}

.testimonial-slider.owl-theme .owl-dots .owl-dot.active span {
	background-color: #7b68ee;
}

.testimonial-slider.owl-theme:hover .owl-nav {
	opacity: 1;
	visibility: visible;
}

/************************************
 ** - 16 - Team Section CSS
 ************************************/
/* .team-area {} */

.team-area .section-title {
	margin-bottom: 35px;
}
.single-team-box {
	margin-top: 30px;
	overflow: hidden;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.team-image {
	position: relative;
	z-index: 1;
	border-radius: 5px;
	overflow: hidden;
}

.team-image::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    background-color: #000;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.single-team-box:hover .team-image::before {
    opacity: .8;
    visibility: visible;
}

.single-team-box .team-image img {
	width: 100%;
	height: auto;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.single-team-box:hover .team-image img {
	-webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.team-social-icon {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 100%;
	text-align: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.team-social-icon a {
	color: #fff;
    font-size: 18px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 8px;
    margin: 0 2px;
    opacity: 0;
    visibility: hidden;
    border: 1px solid #ffffff;
    display: inline-block;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    will-change: transform;
}

.single-team-box:hover .team-social-icon a {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.single-team-box .team-social-icon a:hover {
	color: #fff;
	background-color: var(--tojo-light-purple);
    border: 1px solid var(--tojo-light-purple);
	
}
.team-info {
	text-align: center;
	padding: 20px 15px 0px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.team-info h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 5px;
}
.team-info span {
	color: var(--tojo-light-purple);
	font-size: 16px;
	font-weight: 500;
	display: block;
}

/**********************************
 ** - 17 - Hire Section CSS
 **********************************/
.hire-section {
	position: relative;
	z-index: 1;
	padding: 70px 0;
	text-align: center;
	background-image: url(../images/building_bg.jpg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.hire-section::before {
	content: "";
	position: absolute;
    z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.6;
	background-color: #1f1f54;
}

.hire-content h2 {
	color: #fff;
	font-size: 38px;
	font-weight: 700;
	margin: 0;
}

.hire-content p {
	color: #fff;
	font-size: 18px;
	margin: 20px 0 0 0;
}

.hire-content .hire-btn {
	margin-top: 20px;
}

.hire-content .hire-btn .default-btn {
    margin-right: 15px;
}

/************************************
 ** - 18 - Partner Section CSS
 ************************************/
.partner-section {
	position: relative;
	z-index: 1;
	overflow: hidden;
	background-color: #fff;
}

.partner-title {
	text-align: center;
	line-height: 1.5;
	/* margin-bottom: 65px; */
}

.partner-section .owl-dots{
	display: none;
}

.partner-title h2 {
	color: #404040;
	font-size: 40px;
	font-weight: 800;
	margin: 10px 0 0 0;
}

.partner-list {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: -5px;
	margin-right: -5px;
}

.partner-list .partner-item {
	-ms-flex: 0 0 20%;
	-webkit-box-flex: 0;
	flex: 0 0 20%;
	max-width: 100% !important;
	padding-left: 10px;
	padding-right: 10px;
}

.partner-list .partner-item a {
	position: relative;
    display: block;
    padding: 5px 20px;
    text-align: center;
    border-radius: 10px;
    border: 2px solid #ededed;
    margin-bottom: 30px;
}

.partner-list .partner-item:nth-child(6) {
	margin-left: 10%;
}

.cust-logo{
	max-width: 100%;
    height: auto;
    border-radius: 5px;
    aspect-ratio: 16/9;
	object-fit: contain;
}

.cust-logo-aws{
	max-width: 64%;
    height: auto;
    border-radius: 5px;
    aspect-ratio: 16/9;
	object-fit: contain;
	margin: 10% auto;
}

@media only screen and (max-width: 767px) and (max-width: 991px) {
    .partner-list .partner-item {
		-webkit-box-flex: 0;
		max-width: 100% !important;
	}
}
/***********************************
 ** - 19 - Blog Section CSS
 ***********************************/
.blog-single-item {
	position: relative;
	border-radius: 5px;
	overflow: hidden;
	background-color: #ffffff;
	-webkit-box-shadow: 0px 5px 20px 0px rgb(82, 90, 101, 0.1);
	box-shadow: 0px 5px 20px 0px rgb(82, 90, 101, 0.1);
	-webkit-transition: 0.4s;
	transition: 0.4s;
	margin-bottom: 30px;
}

.blog-single-item .blog-description {
	padding: 20px 25px;
}

.blog-single-item .blog-description .blog-info {
	-webkit-transition: 0.4s;
	transition: 0.4s;
	margin-bottom: 0;
}

.blog-single-item .blog-description .blog-info li {
	color: var(--tojo-light-purple);
	font-size: 16px;
	font-weight: 600;
	display: inline-block;
	list-style-type: none;
	margin-right: 15px;
}

.blog-single-item .blog-description .blog-info li:last-child {
	margin-right: 0;
}

.blog-single-item .blog-description .blog-info li i {
	position: relative;
	top: 0px;
	color: #7b68ee;
	margin-right: 3px;
}

.blog-single-item .blog-description .blog-info li i::before {
	font-size: 15px;
}

.blog-single-item .blog-description .blog-info a {
	color: #555;
	text-decoration: none;
}

.blog-single-item .blog-description .blog-text {
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.blog-single-item .blog-description .blog-text h3 {
	color: #404040;
	font-size: 22px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	margin: 10px 0px 10px 0px;
}

.blog-single-item .blog-description .blog-text h3:hover {
	color: #7b68ee;
	text-decoration: none;
	-webkit-transition: .5s;
	transition: .5s;
}

.blog-single-item .blog-description .blog-text p {
	color: #6a6c72;
	font-size: 16px;
	font-weight: 400;
	margin: 0;
}

.blog-single-item .blog-description .blog-text a {
	text-decoration: none;
}

.blog-single-item .blog-description .blog-text .blog-btn {
	margin-top: 15px;
}

.blog-single-item:hover .blog-description {
	border-top: none;
}

.blog-single-item:hover .blog-text h3 {
	color: #7b68ee;
}

/**************************************
 ** - 20 - Blog Details Page CSS
 **************************************/
.blog-details-desc .article-content {
	margin-top: 30px;
}

.blog-details-desc .article-content .entry-meta {
	margin-bottom: -8px;
}

.blog-details-desc .article-content .entry-meta ul {
	margin-bottom: 0;
}

.blog-details-desc .article-content .entry-meta ul li {
	position: relative;
	color: #404040;
	display: inline-block;
	margin-right: 20px;
}

.blog-details-desc .article-content .entry-meta ul li span {
	display: inline-block;
    color: #404040;
    font-size: 16px;
    font-weight: 600;
    margin-right: 3px;
}

.blog-details-desc .article-content .entry-meta ul li a {
	display: inline-block;
    color: #7b68ee;
    font-size: 16px;
    font-weight: 600;
}

.blog-details-desc .article-content .entry-meta ul li a:hover {
	color: #7b68ee;
}

.blog-details-desc .article-content .entry-meta ul li i {
	color: #7b68ee;
	margin-right: 2px;
}

.blog-details-desc .article-content .entry-meta ul li::before {
	content: '';
	position: absolute;
	top: 10px;
	right: -15px;
	width: 6px;
	height: 1px;
	background-color: #404040;
}

.blog-details-desc .article-content .entry-meta ul li:last-child {
	margin-right: 0;
}

.blog-details-desc .article-content .entry-meta ul li:last-child::before {
	display: none;
}

.blog-details-desc .article-content h3 {
	font-size: 24px;
	margin-top: 25px;
	margin-bottom: 15px;
}

.blog-details-desc .article-content .wp-block-gallery.columns-2 {
	padding-left: 0;
	list-style-type: none;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 30px;
	margin-left: -10px;
	margin-right: -10px;
	margin-bottom: 30px;
}

.blog-details-desc .article-content .wp-block-gallery.columns-2 li {
	-ms-flex: 0 0 50%;
	-webkit-box-flex: 0;
	flex: 0 0 50%;
	max-width: 50%;
	padding-left: 10px;
	padding-right: 10px;
}

.blog-details-desc .article-content .wp-block-gallery.columns-2 li figure {
	margin-bottom: 0;
}

.blog-details-desc .article-footer {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 30px;
}

.blog-details-desc .article-footer .article-tags {
	-ms-flex: 0 0 50%;
	-webkit-box-flex: 0;
	flex: 0 0 50%;
	max-width: 50%;
	color: #5f5f5f;
}

.blog-details-desc .article-footer .article-tags span {
	display: inline-block;
	color: #333;
	font-size: 15px;
	font-weight: 700;
	margin-right: 5px;
}


.blog-details-desc .article-footer .article-tags a {
	display: inline-block;
	color: #7b68ee;
	font-size: 14px;
	font-weight: 600;
	padding: 6px 15px;
	border-radius: 50px;
	border: 1px solid #7b68ee;
	background-color: transparent;
	margin-top: 5px;
	margin-right: 5px;
}

.blog-details-desc .article-footer .article-tags a:hover {
	color: #ffffff;
    border-color: #7b68ee;
    background-color: #7b68ee;
}

.blog-details-desc .article-footer .article-share {
	-ms-flex: 0 0 50%;
	-webkit-box-flex: 0;
	flex: 0 0 50%;
	max-width: 50%;
}

.blog-details-desc .article-footer .article-share .social {
	padding-left: 0;
	list-style-type: none;
	text-align: right;
	margin-bottom: 0;
}

.blog-details-desc .article-footer .article-share .social li {
	display: inline-block;
	margin-left: 5px;
}

.blog-details-desc .article-footer .article-share .social li span {
	display: inline-block;
	color: #333;
	font-size: 15px;
	font-weight: 700;
	margin-right: 5px;
}


.blog-details-desc .article-footer .article-share .social li a {
	display: block;
    color: #7b68ee;
    font-size: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #7b68ee;
    background-color: transparent;
}

.blog-details-desc .article-footer .article-share .social li a i {
	font-size: 15px;
}

.blog-details-desc .article-footer .article-share .social li a:hover {
	color: #ffffff;
    border: 1px solid #7b68ee;
	background-color: #7b68ee;
}

.blog-details-desc .post-navigation {
	margin-top: 30px;
}

blockquote, .blockquote {
	position: relative;
	z-index: 1;
	overflow: hidden;
	text-align: center;
	padding: 50px !important;
	background-color: #fafafa;
	margin-top: 20px;
	margin-bottom: 20px;
}

blockquote p, .blockquote p {
	color: #404040;
	font-size: 24px !important;
	font-weight: 500;
	line-height: 1.6;
	font-style: italic;
	margin-bottom: 0;
}

blockquote cite, .blockquote cite {
	display: none;
}

blockquote::before, .blockquote::before {
	content: "\f10e";
	position: absolute;
	z-index: -1;
	top: -50px;
	left: 50px;
	color: #efefef;
	font-size: 15px;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
}

blockquote::after, .blockquote::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 3px;
	background-color: #7b68ee;
	margin-top: 20px;
	margin-bottom: 20px;
}

.post-navigation {
	padding-top: 20px;
	padding-bottom: 20px;
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #eeeeee;
}

.post-navigation .navigation-links {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.post-navigation .navigation-links .nav-previous {
	-ms-flex: 0 0 50%;
	-webkit-box-flex: 0;
	flex: 0 0 50%;
	max-width: 50%;
}

.post-navigation .navigation-links .nav-previous a i {
	margin-right: 2px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.post-navigation .navigation-links .nav-previous a:hover i {
	margin-right: 0;
}

.post-navigation .navigation-links .nav-next {
	-ms-flex: 0 0 50%;
	-webkit-box-flex: 0;
	flex: 0 0 50%;
	max-width: 50%;
	text-align: right;
}

.post-navigation .navigation-links .nav-next a i {
	-webkit-transition: 0.4s;
	transition: 0.4s;
	margin-left: 2px;
}

.post-navigation .navigation-links .nav-next a:hover i {
	margin-left: 0;
}

.post-navigation .navigation-links div a {
	display: inline-block;
	font-weight: 600;
}

.comments-area {
	padding: 30px 25px;
	background-color: #ffffff;
	-webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
	box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
	margin-top: 30px;
}

.comments-area .comments-title {
	position: relative;
	font-size: 24px;
	font-weight: 600;
	line-height: initial;
	margin-bottom: 30px;
}

.comments-area ol, .comments-area ul {
	margin: 0;
	list-style-type: none;
}

.comments-area .comment-list {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.comments-area .comment-body {
	color: #404040;
	font-size: 14px;
	padding-left: 65px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eeeeee;
	margin-bottom: 20px;
}

.comments-area .comment-body .reply {
	margin-top: 15px;
}

.comments-area .comment-body .reply a {
	position: relative;
	z-index: 1;
	color: #404040;
	font-size: 15px;
	font-weight: 600;
	padding: 5px 20px;
	border-radius: 30px;
	display: inline-block;
	border: 1px solid #ded9d9;
	text-transform: capitalize;
}

.comments-area .comment-body .reply a:hover {
	color: #ffffff;
	border-color: #7b68ee;
	background-color: #7b68ee;
}

.comments-area .comment-author {
	position: relative;
	z-index: 2;
	font-size: 17px;
	margin-bottom: 0.1em;
}

.comments-area .comment-author .avatar {
	position: absolute;
	left: -65px;
	width: 50px;
	height: 50px;
}

.comments-area .comment-author .fn {
	font-weight: 600;
}

.comments-area .comment-author .says {
	display: none;
}

.comments-area .comment-metadata {
	color: #5f5f5f;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	margin-bottom: .8em;
}

.comments-area .comment-metadata a {
	color: #5f5f5f;
}

.comments-area .comment-metadata a:hover {
	color: #7b68ee;
}

.comments-area .comment-respond {
	margin-top: 30px;
}

.comments-area .comment-respond .comment-reply-title {
	position: relative;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 0;
}

.comments-area .comment-respond .comment-reply-title #cancel-comment-reply-link {
	display: inline-block;
}

.comments-area .comment-respond .comment-form {
	overflow: hidden;
}

.comments-area .comment-respond .comment-notes {
	margin-top: 10px;
	margin-bottom: 0;
}

.comments-area .comment-respond .comment-form-comment {
	float: left;
	width: 100%;
	margin-top: 15px;
}

.comments-area .comment-respond label {
	display: block;
	color: #404040;
	font-weight: 600;
	margin-bottom: 5px;
}

.comments-area .comment-respond input[type="date"], .comments-area .comment-respond input[type="time"], .comments-area .comment-respond input[type="datetime-local"], .comments-area .comment-respond input[type="week"], .comments-area .comment-respond input[type="month"], .comments-area .comment-respond input[type="text"], .comments-area .comment-respond input[type="email"], .comments-area .comment-respond input[type="url"], .comments-area .comment-respond input[type="password"], .comments-area .comment-respond input[type="search"], .comments-area .comment-respond input[type="tel"], .comments-area .comment-respond input[type="number"], .comments-area .comment-respond textarea {
	display: block;
	width: 100%;
	border-radius: 5px;
	padding: 0.625em 0.7375em;
	border: 1px solid #eeeeee;
	background-color: #ffffff;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	outline: 0;
}

.comments-area .comment-respond input[type="date"]:focus, .comments-area .comment-respond input[type="time"]:focus, .comments-area .comment-respond input[type="datetime-local"]:focus, .comments-area .comment-respond input[type="week"]:focus, .comments-area .comment-respond input[type="month"]:focus, .comments-area .comment-respond input[type="text"]:focus, .comments-area .comment-respond input[type="email"]:focus, .comments-area .comment-respond input[type="url"]:focus, .comments-area .comment-respond input[type="password"]:focus, .comments-area .comment-respond input[type="search"]:focus, .comments-area .comment-respond input[type="tel"]:focus, .comments-area .comment-respond input[type="number"]:focus, .comments-area .comment-respond textarea:focus {
	border-color: #7b68ee;
}

.comments-area .comment-respond .comment-form-author {
	float: left;
	width: 50%;
	padding-right: 10px;
	margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-email {
	float: left;
	width: 50%;
	padding-left: 12px;
	margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-url {
	float: left;
	width: 100%;
	margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-cookies-consent {
	position: relative;
	width: 100%;
	float: left;
	padding-left: 20px;
	margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-cookies-consent input {
	position: absolute;
	top: 4px;
	left: 0;
}

.comments-area .comment-respond .comment-form-cookies-consent label {
	position: relative;
	top: -2px;
	color: #5f5f5f;
	font-weight: normal;
	display: inline-block;
	margin: 0;
}

.comments-area .comment-respond .form-submit {
	float: left;
	width: 100%;
}

.comments-area .comment-respond .form-submit input {
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	padding: 10px 30px;
	border-radius: 5px;
	display: inline-block;
	text-transform: capitalize;
	background-color: #7b68ee;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	cursor: pointer;
	border: none;
	outline: 0;
}

.comments-area .comment-respond .form-submit input:hover, .comments-area .comment-respond .form-submit input:focus {
	color: #ffffff;
	background-color: #3e57d0;
}

/************************************************
 ** - 21 - Blog Page Sidebar Widget CSS
 ************************************************/
.widget-area .widget {
	margin-bottom: 35px;
}

.widget-area .widget:last-child {
	margin-bottom: 0;
}

.widget-area .widget .widget-title {
	position: relative;
	font-size: 22px;
	padding-bottom: 10px;
	text-transform: capitalize;
	border-bottom: 1px solid #eeeeee;
	margin-bottom: 25px;
}

.widget-area .widget .widget-title::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 50px;
	height: 1px;
	background-color: #7b68ee;
}

.widget-area .widget_search {
	padding: 15px 15px;
	border-radius: 3px;
	background-color: #ffffff;
	-webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
	box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
}

.widget-area .widget_search form {
	position: relative;
}

.widget-area .widget_search form label {
	display: block;
	margin-bottom: 0;
}

.widget-area .widget_search form .screen-reader-text {
	display: none;
}

.widget-area .widget_search form .search-field {
    display: block;
    width: 100%;
    height: 50px;
    padding: 6px 15px;
    font-weight: 500;
    border-radius: 5px;
    border: 1px solid #eeeeee;
    border-left: 2px solid #7b68ee;
    background-color: transparent;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    outline: 0;
}

.widget-area .widget_search form .search-field:focus {
	border-color: #7b68ee;
}

.widget-area .widget_search form button {
	color: #ffffff;
	position: absolute;
	z-index: 1;
	right: 0;
	bottom: 0;
	width: 50px;
	height: 50px;
	border-radius: 3px;
	background-color: #7b68ee;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	border: none;
	outline: 0;
}

.widget-area .widget_search form button:hover {
	color: #ffffff;
	background-color: #404040;
}

.widget-area .widget_techvio_posts_thumb {
	position: relative;
	overflow: hidden;
}

.widget-area .widget_techvio_posts_thumb .item {
    display: flex;
    align-items: center;
    justify-content: left;
	overflow: hidden;
    margin-bottom: 15px;
}

.widget-area .widget_techvio_posts_thumb .item:last-child {
	margin-bottom: 0;
}

.widget-area .widget_techvio_posts_thumb .item .thumb {
	position: relative;
	width: 130px;
	height: auto;
	overflow: hidden;
	margin-right: 15px;
}

.widget-area .widget_techvio_posts_thumb .item .info {
	overflow: hidden;
	margin-top: 5px;
}

.widget-area .widget_techvio_posts_thumb .item .info span {
	display: block;
    color: #5f5f5f;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 3px;
}

.widget-area .widget_techvio_posts_thumb .item .info .title {
	font-size: 16px;
    font-weight: 600;
	line-height: 1.4;
	margin-bottom: 0;
}

.widget-area .widget_techvio_posts_thumb .item .info .title a {
	display: inline-block;
}

.widget-area .widget_recent_comments ul {
	padding-left: 0;
	margin-bottom: 0;
	list-style-type: none;
}

.widget-area .widget_recent_comments ul li {
	position: relative;
	color: #5f5f5f;
	font-weight: 400;
	font-size: 16px;
	padding-left: 14px;
	line-height: 1.5;
	margin-bottom: 12px;
}

.widget-area .widget_recent_comments ul li:last-child {
	margin-bottom: 0;
}

.widget-area .widget_recent_comments ul li::before {
	content: '';
	position: absolute;
	top: 7px;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50px;
	background-color: #7b68ee;
	border-right-style: inset;
}

.widget-area .widget_recent_comments ul li a {
	color: #404040;
	display: inline-block;
}

.widget-area .widget_recent_comments ul li a:hover {
	color: #7b68ee;
}

.widget-area .widget_categories ul {
	padding-left: 0;
	margin-bottom: 0;
	list-style-type: none;
}

.widget-area .widget_categories ul li {
	position: relative;
	color: #5f5f5f;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 12px;
}

.widget-area .widget_categories ul li:last-child {
	margin-bottom: 0;
}

.widget-area .widget_categories ul li a {
    padding: 10px 15px;
	color: #404040;
    display: flex;
    justify-content: space-between;
    border-radius: 3px;
    background-color: #f5f5f5;
}

.widget-area .widget_categories ul li a:hover {
	color: #ffffff;
	background-color: #7b68ee;
}

.widget-area .widget_tag_cloud .widget-title {
	margin-bottom: 12px;
}

.widget-area .tagcloud a {
	display: inline-block;
	color: #404040;
	font-size: 16px;
	font-weight: 500;
	padding: 7px 15px;
	border-radius: 5px;
	border: 1px solid #eeeeee;
	margin-top: 8px;
	margin-right: 5px;
}

.widget-area .tagcloud a:hover, .widget-area .tagcloud a:focus {
	color: #ffffff;
	border-color: #7b68ee;
	background-color: #7b68ee;
}

/************************************************
 ** - 21 - Blog Page Number Pagination CSS
 ************************************************/
.pagination-area {
	text-align: center;
	margin-top: 20px;
}

.pagination-area .page-numbers {
	color: #404040;
	font-size: 18px;
	font-weight: 700;
	width: 45px;
	height: 45px;
	line-height: 48px;
	display: inline-block;
	border-radius: 3px;
	background-color: #ffffff;
	-webkit-box-shadow: 0 2px 10px 0 #d8dde6;
	box-shadow: 0 2px 10px 0 #d8dde6;
	margin: 0 5px;
}

.pagination-area .page-numbers.current, .pagination-area .page-numbers:hover, .pagination-area .page-numbers:focus {
	color: #ffffff;
	background-color: #7b68ee;
	-webkit-box-shadow: 0 2px 10px 0 #d8dde6;
	box-shadow: 0 2px 10px 0 #d8dde6;
}

/**************************************************
 ** - 22 - Other Page Banner Title Section CSS
 **************************************************/
.page-title-area {
	position: relative;
	z-index: 1;
	height: 400px;
	background-image: url(../images/contact.jpg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.page-title-area::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.5;
	background-color: #030821;
}

.page-title-content {
	text-align: center;
	margin-top: 45px;
}

.page-title-content h2 {
	color: #ffffff;
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 0;
}

.page-title-content ul {
	margin-top: 12px;
	margin-bottom: 0;
}

.page-title-content ul li {
	display: inline-block;
	position: relative;
	color: #ffffff;
	font-size: 17px;
	font-weight: 600;
	margin-left: 10px;
	margin-right: 10px;
}

.page-title-content ul li a {
	display: inline-block;
	color: #ffffff;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.page-title-content ul li a:hover {
	color: #7b68ee;
}

.page-title-content ul li::before {
	content: '';
	position: absolute;
	top: 10px;
	right: -15px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: #ffffff;
}

.page-title-content ul li:last-child::before {
	display: none;
}

.item-bg1 {
	background-image: url(../images/1q48gsXvUGva.jpg);
}

.item-bg2 {
	background-image: url(../images/98l0tqT4WScd.jpg);
}

/**********************************
 ** - 23 - Contact Page CSS
 **********************************/
.contact-section {
	position: relative;
    z-index: 1;
    background: url(../images/world_dots.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.contact-form .form-group {
	margin-bottom: 30px;
}

.contact-form form .form-control {
    border: 0;
    width: 100%;
    height: 55px;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 5px;
	border: 1px solid transparent;
    border-left: 2px solid #7b68ee;
    background-color: #ffffff;
    -webkit-box-shadow: 0 5px 20px rgba(218, 225, 232, 0.8);
    box-shadow: 0 5px 20px rgba(218, 225, 232, 0.8);
}

.contact-form form .form-control:focus {
	border: none;
	outline: none;
	border: 1px solid #7b68ee;
    border-left: 2px solid #7b68ee;
}

.contact-form form textarea.form-control {
	height: auto;
	padding-top: 15px;
	line-height: initial;
}

.contact-info-wrapper {
	padding: 100px 0;
}

.contact-info-wrapper .section-title {
	text-align: center;
	margin-bottom: 45px;
}

.contact-info-content {
	padding: 45px 20px;
	text-align: center;
	border-radius: 5px;
	border-top: 3px solid var(--tojo-light-purple);
	background-color: #fff;
	-webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.03);
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.03);
	margin-top: 30px;
	min-height: 90%;
}

.contact-info-content:hover {
	border-top: 3px solid var(--tojo-purple);
	-webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.33);
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.33);
	transition: ease;
}

.contact-info-content h5 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
}

.contact-info-content a {
	display: block;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
}

.contact-info-content p {
	font-size: 16px;
	margin-bottom: 12px;
}

.contact-section .form-message.success {
	color: #fff;
	padding: 10px 15px;
	border-radius: 5px;
	background-color: #03b103;
	margin-bottom: 30px;
}

.contact-section .form-message.error {
	color: #fff;
	padding: 10px 15px;
	border-radius: 5px;
	background-color: #ff4d15;
	margin-bottom: 30px;
}

/*******************************
 ** - 23 - Map Section CSS
 *******************************/
.map-section {
    margin-bottom: -10px;
}

.map-section .google-map iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/**********************************
 ** - 24 - Pricing Page CSS
 **********************************/
.single-pricing-content {
	text-align: left;
	padding: 30px 30px;
	border-radius: 5px;
	background-color: #ffffff;
	-webkit-box-shadow: 0px 5px 20px 0px rgb(82, 90, 101, 0.1);
	box-shadow: 0px 5px 20px 0px rgb(82, 90, 101, 0.1);
	transition: all 0.4s ease 0s;
	margin-bottom: 30px;
}

.single-pricing-content:hover {
	box-shadow: 0 7px 25px rgba(31, 45, 61, 0.1)!important;
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
}

.price-tag {
	position: relative;
}

.price-tag h3 {
	color: #fff;
	font-size: 20px;
	position: absolute;
	top: 2px;
	left: -45px;
	width: 115px;
	height: 50px;
	display: block;
	line-height: 50px;
	text-align: center;
	border-radius: 25px 0 0 25px;
	background-color: #7b68ee;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(-90deg);
	will-change: transform;
}

.price-heading {
	text-align: center;
	margin-bottom: 20px;
}

.price-heading .price-usd h2 {
	color: #6f64e7;
	font-size: 50px;
	font-weight: 900;
	padding: 15px 0;
}

.price-heading .price-usd .price-small-text {
	display: block;
	color: #3e3e3e;
	font-size: 15px;
	font-weight: 500;
	margin-top: -8px;
}

.price-body ul li {
	display: block;
	font-size: 16px;
	padding: 10px 0;
	border-top: 1px dashed #dfe4e8;
}

.single-pricing-content .price-body {
	text-align: center;
}

.price-body ul li:last-child {
	padding-bottom: 0;
}

.price-body .offer-list-none {
	color: #b7b7b7;
}

.single-pricing-content .price-btn {
	text-align: center;
	margin-top: 25px;
}

.single-pricing-content .price-btn .price-btn-one {
	padding: 12px 30px;
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	border-radius: 5px;
	display: inline-block;
	border: 1px solid #7b68ee;
	background-color: #7b68ee;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.single-pricing-content .price-btn .price-btn-one:hover {
	color: #7b68ee;
	background-color: transparent;
}

/********************************
 ** - 25 - Faq Page CSS
 ********************************/
.faq-accordion .accordion {
	position: relative;
}

.faq-accordion .accordion .accordion-item {
	display: block;
	overflow: hidden;
}

.faq-accordion .accordion .accordion-item:last-child {
	margin-bottom: 0;
}

.faq-accordion .accordion .accordion-item .accordion-title {
	position: relative;
    color: #333;
    font-size: 18px;
    font-weight: 600;
    display: block;
    padding: 18px 15px;
    cursor: pointer;
}

.faq-accordion .accordion .accordion-item .active.accordion-title {
	color: #fff;
	background-color: #7b68ee;
}

.faq-accordion .accordion .accordion-item .accordion-title i {
	color: #333;
	font-size: 15px;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.faq-accordion .accordion .accordion-item .active.accordion-title i {
	color: #fff;
}

.faq-accordion .accordion .accordion-item .accordion-title.active i::before {
	content: "\f068";
}

.faq-accordion .accordion .accordion-item .accordion-content {
	display: none;
	font-size: 15px;
	display: none;
	padding: 20px 20px;
	background-color: #ffffff;
	-webkit-box-shadow: 0px 5px 20px 0px rgb(82, 90, 101, 0.1);
	box-shadow: 0px 5px 20px 0px rgb(82, 90, 101, 0.1);
	margin-bottom: 0;
	border-radius: 5px;
}

.faq-accordion .accordion .accordion-item .accordion-content.show {
	display: block;
}

.faq-section.home-faq .section-title {
    text-align: left;
    line-height: 1.5;
    margin-bottom: 35px;
}


.home-faq .faq-accordion .accordion .accordion-item {
	display: block;
	border: 0;
	margin-bottom: 30px;
	background-color: transparent;
}

.home-faq .faq-accordion .accordion .accordion-item .accordion-title {
	position: relative;
    color: #333;
    font-size: 18px;
    font-weight: 600;
    display: block;
    padding: 0px 20px;
    border-radius: 0;
    padding-right: 25px;
    background-color: #f3f3f9;
    border-left: 0px solid #ffc107;
    border-bottom: 0px solid #c1c1c1;
    cursor: pointer;
    background: transparent;
	margin-bottom: 10px;
}

.home-faq .faq-accordion .accordion .accordion-item .active.accordion-title {
	color: var(--tojo-blue);
	background-color: transparent;
}
.home-faq .faq-accordion .accordion .accordion-item .active.accordion-title i {
    color: #7b68ee;
}

.faq-img{
	margin: 5rem 2rem;
}

#faqcontainer {
	padding: 80px 0;
}

/************************************
 ** - 26 - 404 Error Page CSS
 ************************************/
.error-area {
	height: 100vh;
    padding: 100px 0;
}

.error-content {
	max-width: 700px;
	text-align: center;
	margin: 0 auto;
}

.error-content h3 {
	font-size: 35px;
	margin-top: 10px;
	margin-bottom: 18px;
}

.error-content p {
    max-width: 520px;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    margin: 0 auto 20px;
}

.error-content .default-btn-one {
	display: inline-block;
	color: #ffffff;
	font-size: 16px;
	font-weight: 500;
	padding: 12px 30px;
	border: 1px solid #7b68ee;
	background-color: #7b68ee;
	-webkit-transition: .6s;
	transition: .6s;
	margin-right: 0;
}

.error-content .default-btn-one:hover {
	color: #7b68ee;
	background-color: #ffffff;
	text-decoration: none;
}

/**************************************
 ** - 27 - Coming Soon Page CSS
 **************************************/
.coming-soon-area {
	position: relative;
	z-index: 1;
	height: 750px;
	min-height: 100vh;
	padding: 100px 0;
	background-image: url(../images/2TYiYewuTgVw.jpg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.coming-soon-area::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .80;
	background-color: #000000;
}

.coming-soon-area .social-list {
	text-align: center;
    list-style-type: none;
    margin-top: 50px;
}

.coming-soon-area .social-list li {
	display: inline-block;
}

.coming-soon-area .social-list li.list-heading {
	display: block;
	color: #ffffff;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 10px;
}

.coming-soon-area .social-list li a {
	color: #ffffff;
	font-size: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    display: inline-block;
    border-radius: 50%;
    border: 1px solid #7b68ee;
    background-color: #7b68ee;
    margin: 0 2px;
}

.coming-soon-area .social-list li a:hover {
	color: #ffffff;
	border: 1px solid #ffffff;
	background-color: transparent;
	transition: .5s;
	-webkit-transition: .5s;
	-webkit-transition: 0.5s;
}

.coming-soon-content {
	max-width: 820px;
	text-align: center;
	margin: 0 auto;
}

.coming-soon-content h1 {
	color: #ffffff;
	font-size: 45px;
	font-weight: 700;
	margin-bottom: 15px;
}

.coming-soon-content p {
	color: #ffffff;
	max-width: 620px;
	line-height: 30px;
	margin: 0 auto;
}

.coming-soon-content form {
	position: relative;
	max-width: 520px;
	margin: 35px auto 55px;
}

.coming-soon-content form .email-input {
	display: block;
	color: #404040;
	font-size: 15px;
	font-weight: 500;
	width: 100%;
	height: 55px;
	border: none;
	border-radius: 40px;
	padding: 15px 25px;
	outline: 0 !important;
	background-color: #ffffff;
	-webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1), 0px 0px 0px 5px rgba(255, 255, 255, 0.3);
	box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1), 0px 0px 0px 5px rgba(255, 255, 255, 0.3);
}

.coming-soon-content form .submit-btn {
	position: absolute;
	top: 3px;
	right: 3px;
	width: 130px;
	height: 50px;
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	border-radius: 40px;
	text-transform: uppercase;
	background-color: #7b68ee;
	cursor: pointer;
	border: none;
	outline: 0 !important;
}

.coming-soon-content form .submit-btn:hover, .coming-soon-content form .submit-btn:focus {
	background-color: #7b68ee;
}

.coming-soon-content #timer div {
	display: inline-block;
	width: 120px;
	height: 120px;
	color: #7b68ee;
	font-size: 40px;
	font-weight: 700;
	padding-top: 18px;
	border-radius: 50%;
	background-color: #ffffff;
	-webkit-box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.5);
	box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.5);
	margin: 0 10px;
}

.coming-soon-content #timer div span {
	display: block;
	color: #404040;
	font-size: 15px;
	font-weight: 600;
	margin-top: -4px;
}

/*******************************************
 ** - 28 - Terms & Conditions Page CSS
 *******************************************/
.terms-conditions-info h3 {
	font-size: 24px;
	margin: 0 0 15px 0;
}

/*************************************
 ** - 29 - Privacy Policy Page CSS
 *************************************/
.privacy-policy-info h3 {
	font-size: 24px;
	margin: 0 0 15px 0;
}

/**************************************
 ** - 30 - Subscribe Section CSS
 **************************************/
.subscribe-area {
	position: relative;
	padding-top: 50px;
	padding-bottom: 50px;
	line-height: 1.5;
	border-bottom: 1px solid rgb(255, 255, 255, 0.2);
}

.subscribe-content {
	text-align: left;
}

.subscribe-content p {
	color: #fff;
	display: block;
	font-size: 16px;
	text-transform: capitalize;
}

.subscribe-content h2 {
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 15px;
}

.newsletter-form {
	position: relative;
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
}

.newsletter-form .input-newsletter {
	color: var(--tojo-black);
	font-size: 16px;
	font-weight: 600;
	width: 100%;
	height: 50px;
	display: block;
	padding-left: 25px;
	border-radius: 5px;
	background-color: #ffffff;
	border: none;
	outline: 0;
}

.newsletter-form .input-newsletter::-webkit-input-placeholder {
	color: #5f5f5f;
}

.newsletter-form .input-newsletter:-ms-input-placeholder {
	color: #5f5f5f;
}

.newsletter-form .input-newsletter::-ms-input-placeholder {
	color: #5f5f5f;
}

.newsletter-form .input-newsletter::placeholder {
	color: #5f5f5f;
}

.newsletter-form button {
	position: absolute;
	top: 0;
	right: 0;
	height: 50px;
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	padding: 0 30px;
	border-radius: 0px 5px 5px 0px;
	text-transform: capitalize;
	background-color: var(--tojo-blue);
	-webkit-transition: 0.4s;
	transition: 0.4s;
	border: none;
}

.newsletter-form button:hover {
	color: var(--tojo-black);
	background-color: var(--tojo-orange);
}

/******************************************
 ** - 31 - All Page Footer Section CSS
 ******************************************/
.footer-subscribe-wrapper {
	position: relative;
	z-index: 1;
	background-color: #042c4c;
}

.footer-subscribe-wrapper:before {
	content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    /* background-image: url(../images/F4vobKiCnQlc.png); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 25px;
	background-color: var(--tojo-white);
    border-radius: 25px;
    padding: 25px;
}

.white-logo {
	max-width: 85%;
}

.footer-heading {
	margin-bottom: 20px;
}

.footer-heading h3 {
	position: relative;
	color: #ffffff;
	font-size: 20px;
	font-weight: 600;
	padding-bottom: 10px;
	border-bottom: 1px solid rgb(255, 255, 255, 0.2);
	margin: 0;
}

.single-footer-widget .footer-social {
	padding-left: 0;
	margin-top: 20px;
	margin-bottom: 0;
}

.single-footer-widget .footer-social li {
	display: inline-block;
	margin-right: 10px;
}

.single-footer-widget .footer-social li:last-child {
	margin-right: 0;
}

.single-footer-widget .footer-social i {
	color: var(--tojo-blue);
	font-size: 20px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 8px;
	display: inline-block;
	border: 1px solid #ffffff;
	background-color: #ffffff;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.single-footer-widget .footer-social i:hover {
	color: var(--tojo-white);
	border: 1px solid var(--tojo-orange);
	background-color: var(--tojo-orange);
}

.single-footer-widget p {
	color: #ececec;
	font-size: 16px;
	font-weight: 400;
}

.single-footer-widget .footer-heading {
	margin-bottom: 25px;
}

.single-footer-widget .footer-heading h3 {
	color: #ffffff;
	font-size: 20px;
	font-weight: 700;
	margin: 0;
}

.single-footer-widget .footer-quick-links {
	padding-left: 0;
	margin-bottom: 0;
}

.single-footer-widget .footer-quick-links li {
	padding-bottom: 18px;
	list-style-type: none;
}

.single-footer-widget .footer-quick-links li:last-child {
	padding-bottom: 0;
}

.single-footer-widget .footer-quick-links li a {
	display: inline-block;
	color: #ececec;
	font-size: 16px;
	font-weight: 400;
}

.single-footer-widget .footer-quick-links li a:hover {
	color: #7b68ee;
	text-decoration: underline !important;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.single-footer-widget .footer-info-contact {
	position: relative;
	padding-left: 35px;
	margin-bottom: 16px;
}

.single-footer-widget .footer-info-contact:last-child {
	margin-bottom: 0;
}

.single-footer-widget .footer-info-contact i {
	color: #ffffff;
	position: absolute;
	top: 0;
	left: 0;
}

.single-footer-widget .footer-info-contact i::before {
	font-size: 20px;
}

.single-footer-widget .footer-info-contact h3 {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 10px 0;
}

.single-footer-widget .footer-info-contact span {
	color: #ececec;
	font-size: 15px;
	font-weight: 400;
}

.single-footer-widget .footer-info-contact span a {
	color: #ececec;
	font-size: 16px;
	font-weight: 400;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.single-footer-widget .footer-info-contact span a:hover {
	color: #7b68ee;
}

/*********************************************
 ** - 32 - All Page Copyright Section CSS
 *********************************************/
.copyright-area {
	padding: 35px 0;
	background-color: #042c4c;
	border-top: 1px solid rgb(255, 255, 255, 0.2);
}

.copyright-area .cctag a {
	color: #ffffff;
	font-size: 16px;
}

.copyright-area .cctag a:hover {
	color: #7b68ee;
	font-size: 16px;
}

.copyright-area .cctag a:last-child:hover {
	color: var(--tojo-light-blue);
	font-size: 16px;
}

.copyright-area p {
	color: #ffffff;
	font-size: 16px;
}

.copyright-area p a {
	color: var(--tojo-white);
	font-weight: 600;
	display: inline-block;
}

.copyright-area p a:hover {
	color: var(--tojo-light-purple);
}

.copyright-area ul {
	padding-left: 0;
	text-align: right;
	margin-bottom: 0;
}

.copyright-area ul li {
	position: relative;
	color: #ececec;
	font-size: 16px;
	display: inline-block;
	margin-left: 10px;
	margin-right: 10px;
}

.copyright-area ul li a {
	color: #ffffff;
	display: inline-block;
}

.copyright-area ul li a:hover {
	color: #7b68ee;
}

.copyright-area ul li::before {
	content: '';
	position: absolute;
	top: 5px;
	right: -13px;
	width: 1px;
	height: 14px;
	background-color: #ffffff;
}

.copyright-area ul li:last-child {
	margin-right: 0;
}

.copyright-area ul li:last-child::before {
	display: none;
}

.copyright-area ul li:first-child {
	margin-left: 0;
}

/*********************************************
 ** - 33 - Custom DT CSS
 *********************************************/

 /* Sticky button for animations */
 .sticky-switch {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: var(--tojo-orange); /* Tojo's main color (orange) */
    color: white;
    width: 30px; /* Initially short */
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: width 0.3s ease, padding 0.3s ease; /* Smooth transition */
    border-radius: 0 5px 5px 0;
    padding: 0 5px;
}

.sticky-switch span {
    display: none; /* Hide text initially */
    white-space: nowrap; /* Prevent text from wrapping */
    font-size: 14px;
    padding-left: 10px;
}

.sticky-switch:hover {
    width: 180px; /* Full width on hover */
    padding: 0 10px;
}

.sticky-switch:hover span {
    display: inline-block; /* Show the text when hovering */
}

#cursor-switch {
    top: 55%; /* Position for the second switch */
}



 .shape-1{
	width: 1.7rem;
 }
 .shape-2{
	width: 3.2rem;
 }
 .shape-3{
	width: 4rem;
 }
 .shape-4{
	width: 2rem;
 }
 .shape-5{
	width: 1.5rem;
 }
 .shape-6{
	width: 2.2rem;
 }
 .shape-7{
	width: 1.5rem;
 }

.cursor {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
	position: absolute;
	z-index: 999;
	pointer-events: none;
	mix-blend-mode: difference;
  }
  
  .cursor-f {
	width: 36px;
	height: 36px;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='47' height='47' viewBox='0 0 47 47' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M42.4202 42.4202C38.8403 46 33.3594 46 23.5 46C13.6406 46 8.15966 46 4.57983 42.4202C1 38.8403 1 33.3594 1 23.5C1 13.6406 1 8.15966 4.57983 4.57983C8.15966 1 13.6406 1 23.5 1C33.3594 1 38.8403 1 42.4202 4.57983C46 8.15966 46 13.6406 46 23.5C46 33.3594 46 38.8403 42.4202 42.4202Z' stroke='white'/%3E%3C/svg%3E%0A");
	background-size: cover;
	mix-blend-mode: difference;
	pointer-events: none;
	opacity: 0.5;
	z-index: 999;
  }

  /* ======== start scroll-to-top button style  =========== */

	#progress {
		position: fixed;
		bottom: 20px;
		right: 10px;
		height: 70px;
		width: 70px;
		display: none;
		place-items: center;
		border-radius: 30%;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
		cursor: pointer;
		z-index: 800;
	}
	
	#progress-value {
		display: block;
		height: calc(100% - 15px);
		width: calc(100% - 15px);
		border-radius: 40%;
		display: grid;
		background-color: var(--tojo-white);
		place-items: center;
		font-size: 35px;
		color: var(--tojo-black);
	}

	#h-logo{
		width: 150px;
	}

	.banner-image{
		pointer-events: none;
		user-select: none;
	}

	/* ======== Lan flag toggle  =========== */

	.language-toggle {
        display: flex;
        align-items: center;
        cursor: pointer;
    }
    
    .language-toggle .toggle-switch, .language-toggle .toggle-switch-mobile {
        width: 40px;
        height: 20px;
        background-color: var(--tojo-orange); /* Active color as default */
        border-radius: 15px;
        position: relative;
        transition: background-color 0.3s;
    }
    
    .language-toggle .toggle-switch::before, .language-toggle .toggle-switch-mobile::before {
        content: "";
        width: 18px;
        height: 18px;
        background-color: #fff;
        border-radius: 50%;
        position: absolute;
        top: 1px;
        right: 1px; /* Switch starts on the right side */
        transition: transform 0.3s;
    }
    
    .language-toggle .toggle-switch.active, .language-toggle .toggle-switch-mobile.active {
        background-color: var(--tojo-blue); /* Color for the inactive state */
    }
    
    .language-toggle .toggle-switch.active::before, .language-toggle .toggle-switch-mobile.active::before {
        transform: translateX(-20px); /* Move to the left when inactive */
    }
    
    .language-toggle .flags {
        margin-left: 10px;
    }

    /* terms and conditions */
    .scroll-container {
        position: relative;
        max-height: 900px;
        overflow-y: auto;
        border: 1px solid #ddd;
        padding: 5vw;
        scrollbar-color: rgba(0, 0, 0, 0) transparent;
      }

      .scrollspy-tc:hover {
        scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
        cursor: text;
      }
      
      .scrollspy-tc {
        height: 500px;
        overflow-y: scroll;
      }
      
      .navbar {
        position: sticky;
        top: 0;
        background-color: white;
      }

      .navbar-brand {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        line-height: 1;
      }
      
      .navbar-subtitle {
        font-size: 0.75em;
        margin-top: 2px;
      }
      
      .scroll-container .scrollspy-tc ul {
        color: #5f5f5f;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.8;
        letter-spacing: 0.2px;
        list-style: disc;
        padding: 0 3rem 1rem;
      }

	  .scroll-container .scrollspy-tc ol {
        color: #5f5f5f;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.8;
        letter-spacing: 0.2px;
        list-style: auto;
        padding: 0 3rem 1rem;
      }

	  .scroll-container .scrollspy-tc h6, .scroll-container .scrollspy-tc h5 {
		margin: 7px 0;
	  }