/* Theme Name: Veer - Responsive Multipurpose HTML5 Template
   Author: Themes Studio
   Version: 1.0.0
   Support: rokunuzzamanbhuiya@gmail.com
   File Description: Main CSS file of the template
*/

/* CSS Index
============================
01. Google Fonts
02. Variable CSS
03. Button Style
04. Header
05. Mobile Menu
06. Banner
07. About
08. Working Process
09. Portfolio
10. Footer
11. Preloader
============================
*/

/*=============================
	01. Google Fonts
===============================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

/*=============================
	02. Variable CSS
===============================*/
:root {
    --tg-body-font-family: 'Poppins', sans-serif;
    --tg-heading-font-family: 'Poppins', sans-serif;
    --tg-primary-color: #6b54f6;
    --tg-secondary-color: #806cfe;
    --tg-body-font-color: #666666;
    --tg-heading-font-color: #252525;
    --tg-banner-title-color: #2A2A2A;
    --tg-paragraph-color: #666666;
    --tg-body-font-size: 16px;
    --tg-body-font-weight: 400;
    --tg-heading-font-weight: 700;
    --tg-body-line-height: 1.7;
    --tg-heading-line-height: 1.2;
    --tg-section-background: #f3f7fb;
    --tg-section-background-two: #1F1D28;
    --tg-section-background-three: #26242D;
    --tg-section-background-four: #ebebfe;
    --tg-section-background-five: #f6f5ff;
    --tg-menu-background: #ffffff;
    --tg-menu-color: #252541;
    --tg-menu-color-two: #3b3f42;
    --tg-arrow-color: #6F7C90;
    --tg-border-color: #bebebe;
    --tg-border-color-two: #D9D9D9;
    --tg-border-color-three: #f5f5f5;
    --tg-border-color-four: #2a2a34;
    --tg-form-border-color: #D5D5D5;
    --tg-old-lace: #FFF2E4;
    --tg-magnolia: #F0EBFF;
    --tg-lavender: #E4F1FF;
    --tg-blue: #2B78F3;
    --tg-blue-two: #265FDB;
    --tg-blue-three: #398DDB;
    --tg-indigo: #A666F7;
    --tg-purple: #9270FF;
    --tg-dark-electric: #605E7A;
    --tg-pink: #F84D55;
    --tg-red: #F76766;
    --tg-orange: #F26F3B;
    --tg-yellow: #F1F026;
    --tg-yellow-two: #F5A623;
    --tg-yellow-three: #ECB321;
    --tg-green: #1B9A81;
    --tg-green-two: #7DDB39;
    --tg-teal: #57C0CE;
    --tg-cyan: #0dcaf0;
    --tg-white: #ffffff;
    --tg-black: #292930;
    --tg-black-two: #1D1D25;
    --tg-black-three: #1E1C1E;
    --tg-black-four: #212737;
    --tg-black-five: #000000;
    --tg-gray: #F4F3F9;
    --tg-gray-two: #FBFDFF;
    --tg-gray-three: #696969;
    --tg-gray-four: #B8B8C5;
    --tg-gray-five: #818d9c;
    --tg-gray-six: #F7F7F7;
    --tg-gray-seven: #6C7183;
    --tg-gray-eight: #F4F4F4;
    --tg-granite-gray: #6B645D;
    --tg-bright-gray: #EDEEF1;
    --tg-spanish-gray: #989898;
    --tg-cadet-grey: #92A5B4;
    --tg-cultured: #F3F7FA;
    --tg-black-coral: #5F5F71;
    --tg-silver: #C5C7CB;
    --tg-silver-two: #AEAEAE;
    --tg-silver-three: #AFAFAF;
    --tg-silver-four: #8D959B;
    --tg-silver-foil: #B0B0B0;
    --tg-manatee: #9E9DA9;
    --tg-onyx: #1D1D25;
    --facebook: #3b5998;
    --twitter: #00acee;
    --google: #d6492f;
    --apple: #a8a9ad;
    --linkedin: #1976d2;
    --pinterest: #3b5998;
    --youtube: #c4302b;
    --skype: #00aff0;
}

html {
    overflow: scroll;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 8px;
    /* Remove scrollbar space */
    background: transparent;
    /* Optional: just make scrollbar invisible */
}

/* Optional: show position indicator in own color */
::-webkit-scrollbar-thumb {
    background: var(--tg-primary-color);
}

body {
    font-family: var(--tg-body-font-family);
    font-weight: var(--tg-body-font-weight);
    font-size: var(--tg-body-font-size);
    line-height: var(--tg-body-line-height);
    color: var(--tg-body-font-color);
    font-style: normal;
}

.black-background {
    background: var(--tg-black);
}

img,
.img {
    max-width: 100%;
    transition: all 0.3s ease-out 0s;
}

.f-left {
    float: left
}

.f-right {
    float: right
}

.fix {
    overflow: hidden
}

a,
button {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-decoration: none;
}

a:focus,
.btn:focus,
button:focus {
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

a:hover,
.portfolio-cat a:hover,
.footer-menu li a:hover {
    color: var(--tg-primary-color);
    text-decoration: none;
}

a,
button {
    color: var(--tg-primary-color);
    outline: medium none;
    text-decoration: none;
}

.btn:focus,
button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
    outline: 0
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--tg-heading-font-family);
    color: var(--tg-heading-font-color);
    margin-top: 0px;
    margin-bottom: .7rem;
    font-style: normal;
    line-height: var(--tg-heading-line-height);
    font-weight: var(--tg-heading-font-weight);
    text-transform: inherit;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

.list-wrap {
    margin: 0px;
    padding: 0px;
}

.list-wrap li {
    list-style: none
}

p {
    font-size: var(--tg-body-font-size);
    font-weight: var(--tg-body-font-weight);
    line-height: var(--tg-body-line-height);
    color: var(--tg-paragraph-color);
    margin-bottom: 15px;
}

hr {
    border-bottom: 1px solid var(--tg-primary-color);
    border-top: 0 none;
    margin: 30px 0;
    padding: 0;
}

label {
    color: var(--tg-body-font-color);
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
}

*::-moz-selection {
    background: var(--tg-primary-color);
    color: var(--tg-white);
    text-shadow: none;
}

::-moz-selection {
    background: var(--tg-primary-color);
    color: var(--tg-white);
    text-shadow: none;
}

::selection {
    background: var(--tg-primary-color);
    color: var(--tg-white);
    text-shadow: none;
}

*::-moz-placeholder {
    color: var(--tg-body-font-color);
    font-size: var(--tg-body-font-size);
    opacity: 1;
}

*::placeholder {
    color: var(--tg-body-font-color);
    font-size: var(--tg-body-font-size);
    opacity: 1;
}

.theme-overlay {
    position: relative
}

.theme-overlay::before {
    background: var(--tg-primary-color) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.6;
    position: absolute;
    top: 0;
    width: 100%;
}

.separator {
    border-top: 1px solid var(--tg-primary-color);
}

/* Bootstrap 5 */
.container {
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    --bs-gutter-x: 30px;
}

.row.g-0 {
    --bs-gutter-x: 0;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

/*=============================
	03. Button style
===============================*/
.btn {
    user-select: none;
    background: var(--tg-primary-color) none repeat scroll 0 0;
    border: medium none;
    border-radius: 50px;
    color: var(--tg-white);
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 0px;
    padding: 18px 40px;
    text-align: center;
    text-transform: capitalize;
    touch-action: manipulation;
    transition: all 700ms ease 0s;
    vertical-align: middle;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn span {
    background: var(--tg-secondary-color) none repeat scroll 0 0;
    border-radius: 50%;
    display: block;
    height: 0;
    position: absolute;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transition: width 0.6s ease 0s, height 0.6s ease 0s;
    -moz-transition: width 0.6s ease 0s, height 0.6s ease 0s;
    -webkit-transition: width 0.6s ease 0s, height 0.6s ease 0s;
    -ms-transition: width 0.6s ease 0s, height 0.6s ease 0s;
    -o-transition: width 0.6s ease 0s, height 0.6s ease 0s;
    width: 0;
    z-index: -1;
}

.btn:hover>span {
    height: 400px;
    width: 500px;
}

.btn:hover {
    color: var(--tg-white);
    background: var(--tg-secondary-color) none repeat scroll 0 0;
}

.breadcrumb>.active {
    color: var(--tg-primary-color);
}

/* scrollUp */
.scroll-top {
    width: 30px;
    height: 60px;
    line-height: 30px;
    position: fixed;
    bottom: -12%;
    right: 30px;
    font-size: var(--tg-body-font-size);
    border-radius: 50px;
    z-index: 99;
    color: var(--tg-white);
    text-align: center;
    cursor: pointer;
    background: var(--tg-primary-color);
    border: 2px solid var(--tg-primary-color);
    transition: 1s ease;
}

.scroll-top.open {
    bottom: 30px;
}

.scroll-top::after {
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.scroll-top:hover {
    background: var(--tg-secondary-color);
    border: 2px solid var(--tg-primary-color);
}

.scroll-top-icon {
    margin-bottom: 26px;
    animation: scrolltopicon 1s infinite ease-in-out alternate;
    -webkit-animation: scrolltopicon 1s infinite ease-in-out alternate;
    -moz-animation: scrolltopicon 1s infinite ease-in-out alternate;
    -o-animation: scrolltopicon 1s infinite ease-in-out alternate;
    -ms-animation: scrolltopicon 1s infinite ease-in-out alternate;
}

@-webkit-keyframes scrolltopicon {
    0% {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }

    100% {
        -webkit-transform: translateY(12px);
        -moz-transform: translateY(12px);
        -ms-transform: translateY(12px);
        -o-transform: translateY(12px);
        transform: translateY(12px);
    }
}

@-moz-keyframes scrolltopicon {
    0% {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }

    100% {
        -webkit-transform: translateY(12px);
        -moz-transform: translateY(12px);
        -ms-transform: translateY(12px);
        -o-transform: translateY(12px);
        transform: translateY(12px);
    }
}

@-ms-keyframes scrolltopicon {
    0% {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }

    100% {
        -webkit-transform: translateY(12px);
        -moz-transform: translateY(12x);
        -ms-transform: translateY(12px);
        -o-transform: translateY(12px);
        transform: translateY(12px);
    }
}

@keyframes scrolltopicon {
    0% {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }

    100% {
        -webkit-transform: translateY(12px);
        -moz-transform: translateY(12px);
        -ms-transform: translateY(12px);
        -o-transform: translateY(12px);
        transform: translateY(12px);
    }
}

/*=============================
	04. Header
===============================*/
.logo {
    max-width: 200px;
    max-height: 40px;
    margin-right: 1px;
}

.logo-header {
    color: var(--tg-menu-color);
    font-size: 20px;
    font-weight: bold;
}

.custom-container {
    max-width: 1400px;
}

.transparent-header {
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    z-index: 9;
    height: auto;
}

.menu-area {
    padding: 8px 0;
    background: var(--tg-menu-background);
}

.menu-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.navbar-wrap {
    display: flex;
    flex-grow: 1;
}

.navbar-wrap ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 0;
    margin: 0 0 0 auto;
}

.navbar-wrap ul li {
    list-style: none;
    display: block;
    position: relative;
}

.navbar-wrap ul li a {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--tg-menu-color);
    padding: 34px 18px;
    display: block;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.navbar-wrap>ul>li>a:hover {
    color: var(--tg-primary-color);
}

.navbar-wrap>ul>li.menu-item-has-children>a::after {
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    margin-left: 10px;
}

.main-menu .navigation li.menu-item-has-children .dropdown-btn {
    display: none;
}

.navbar-wrap ul li .sub-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    min-width: 230px;
    border: 1px solid var(--tg-border-color-three);
    background: var(--tg-white);
    margin: 0 0;
    transform: scale(1, 0);
    transform-origin: 0 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    -moz-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    border-radius: 15px;
    padding: 18px 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
}

.navbar-wrap ul li .sub-menu .sub-menu {
    right: auto;
    left: 100%;
    top: 0;
}

.navbar-wrap ul li .sub-menu li {
    margin-left: 0;
    text-align: left;
    display: block;
}

.navbar-wrap ul li .sub-menu li a {
    padding: 9px 15px 9px 25px;
    line-height: 1.4;
    font-weight: 500;
    color: var(--tg-menu-color);
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.navbar-wrap ul li .sub-menu li a:hover {
    color: var(--tg-primary-color);
}

.navbar-wrap ul li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.sticky-menu {
    position: fixed;
    left: 0;
    margin: auto;
    top: 0;
    width: 100%;
    z-index: 99;
    background: var(--tg-white);
    -webkit-animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    border-radius: 0;
}

.sticky-menu.menu-area {
    padding: 0 0;
}

.sticky-menu .navbar-wrap ul li .sub-menu {
    border-radius: 0 0 15px 15px;
}

.menu-style-two .navbar-wrap ul li .sub-menu {
    background: var(--tg-black-two);
    border-color: var(--tg-border-color-four);
    box-shadow: 0px 30px 70px 0px rgb(0 0 0 / 15%);
}

/*=============================
	05. Mobile Menu
===============================*/
.nav-outer .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    display: none;
    color: var(--tg-white);
    margin-right: 30px;
    top: 15px;
}

.nav-logo img {
    max-width: 150px;
    max-height: 40px;
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    z-index: 99;
    border-radius: 0px;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86)e;
    -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}

.mobile-menu .navbar-collapse {
    display: block !important;
}

.mobile-menu .nav-logo {
    position: relative;
    padding: 30px 25px;
    text-align: left;
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .navigation li.current>a::before {
    height: 100%;
}

.menu-backdrop {
    position: fixed;
    right: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: all 700ms ease 0s;
    opacity: 0;
    visibility: hidden;
    background: rgb(255 255 255 / 50%);
}

.mobile-menu-visible .menu-backdrop {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--tg-white);
    padding: 0px 0px;
    z-index: 5;
    box-shadow: -9px 0 14px 0px rgb(0 0 0 / 6%);
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .close-btn {
    position: absolute;
    right: 15px;
    top: 28px;
    line-height: 30px;
    width: 35px;
    text-align: center;
    font-size: 20px;
    color: var(--tg-primary-color);
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    float: none;
    margin: 0;
    padding: 0;
}

.mobile-menu .navigation ul {
    padding: 0;
    margin: 0;
}

.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-top: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu .navigation:last-child {
    border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu .navigation li>ul>li:first-child {
    border-top: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu .navigation li>a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 60px 10px 25px;
    font-size: 16px;
    font-weight: 500;
    color: var(--tg-heading-font-color);
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none;
}

.mobile-menu .navigation li>a:hover {
    color: var(--tg-primary-color);
}

.mobile-menu .navigation li ul li>a {
    font-size: 16px;
    margin-left: 20px;
    text-transform: capitalize;
}

.mobile-menu .navigation li ul li>a:hover {
    color: var(--tg-primary-color);
}

.mobile-menu .navigation li ul li ul li a {
    margin-left: 40px;
}

.mobile-menu .navigation li ul li ul li ul li a {
    margin-left: 60px;
}

.mobile-menu .navigation li>a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .navigation li.menu-item-has-children .dropdown-btn {
    position: absolute;
    right: 15px;
    top: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 16px;
    line-height: 32px;
    color: var(--tg-white);
    background: var(--tg-primary-color);
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 5;
}

.mobile-menu .navigation li.menu-item-has-children .dropdown-btn i {
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .navigation li.menu-item-has-children .dropdown-btn.open i {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    color: var(--tg-primary-color);
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul {
    display: none;
}

.mobile-menu .social-links ul {
    display: flex;
    position: relative;
    text-align: center;
    padding: 30px 20px 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.mobile-menu .social-links li {
    position: relative;
    display: inline-block;
    margin: 0px 6px 10px;
}

.mobile-menu .social-links li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: relative;
    line-height: 32px;
    font-size: 16px;
    color: var(--tg-heading-font-color);
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 1px solid var(--tg-gray);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.mobile-menu .social-links li a:hover {
    background: var(--tg-primary-color);
    color: var(--tg-white);
}

.menu-area .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    color: var(--tg-primary-color);
    display: none;
    margin-top: 12px;
}

/*=============================
	06. Banner
===============================*/
.carousel-dark .carousel-control-next-icon,
.carousel-dark .carousel-control-prev-icon {
    filter: none;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    height: 50px;
    width: 50px;
    outline: var(--tg-primary-color);
    background-size: 50%, 50%;
    border-radius: 50%;
    border: 1px solid var(--tg-primary-color);
    background-image: none;
}

.carousel-control-next-icon {
    height: 50px;
    width: 50px;
    outline: var(--tg-primary-color);
    background-size: 50%, 50%;
    border-radius: 50%;
    border: 1px solid var(--tg-primary-color);
    background-image: none;
}

.carousel-control-next-icon::after {
    content: '>';
    font-size: 30px;
    color: var(--tg-primary-color);
}

.carousel-control-prev-icon::after {
    content: '<';
    font-size: 30px;
    color: var(--tg-primary-color);
}

.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: var(--tg-primary-color);
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
} 

.banner-caption {
    padding-top: 180px !important;
}

.banner-caption h5 {
    color: var(--tg-primary-color);
    letter-spacing: 4px;
}

.banner-caption h2 {
    line-height: 45px;
}

.banner-caption p {
    font-weight: 600;
    color: #000000;
}

/*=============================
	07. About
===============================*/
.about-section {
    background: var(--tg-section-background-four);
}

.about-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tg-primary-color);
    color: var(--tg-white);
    font-size: 20px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 20px;
    transition: all 0.8s ease 0s;
}

.about-icon:hover {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tg-secondary-color);
    color: var(--tg-black-four);
    font-size: 20px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 20px;
    transition: all 0.8s ease 0s;
}

.text-right {
    margin-left: 0;
}

.image-box {
    position: relative;
    width: 100%;
    min-height: 680px;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .image-box {
        min-height: 400px;
    }
}

.image-1 {
    top: 0;
    left: 0;
    border-radius: 10px;
    position: absolute;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.image-2 {
    bottom: 0;
    right: 0;
    border-radius: 10px;
    position: absolute;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.image-3 {
    top: 5px;
    right: 0;
    border-radius: 10px;
    position: absolute;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

/* about video button */
.video-about {
    position: absolute;
    top: 42%;
    right: 17%;
}

.play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tg-primary-color);
    color: var(--tg-white);
    font-size: 14px;
    width: 50px;
    height: 50px;
    z-index: 2;
    border-radius: 100%;
    position: relative;
    transition: all 0.8s ease 0s;
}

.play-btn:hover {
    background: var(--tg-white);
    color: var(--tg-primary-color);
    transition: all 0.8s ease 0s;
}

.play-btn::before {
    content: '';
    position: absolute;
    border: 15px solid var(--tg-white);
    border-radius: 50%;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    animation: bloom1 1.5s linear infinite;
    opacity: 0;
    z-index: 1;
}

.play-btn::after {
    content: '';
    position: absolute;
    border: 15px solid var(--tg-white);
    border-radius: 50%;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    animation: bloom2 1.5s linear infinite;
    opacity: 0;
    animation-delay: .4s;
    z-index: 1;
}

@keyframes bloom1 {
    0% {
        transform: scale(.6);
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
    }
}

@-webkit-keyframes bloom1 {
    0% {
        transform: scale(.6);
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
    }
}

@-moz-keyframes bloom1 {
    0% {
        transform: scale(.6);
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
    }
}

@-ms-keyframes bloom1 {
    0% {
        transform: scale(.6);
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
    }
}

@keyframes bloom2 {
    0% {
        transform: scale(.6);
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
    }
}

@-webkit-keyframes bloom2 {
    0% {
        transform: scale(.6);
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
    }
}

@-moz-keyframes bloom2 {
    0% {
        transform: scale(.6);
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
    }
}

@-ms-keyframes bloom2 {
    0% {
        transform: scale(.6);
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
    }
}

/* circle text effect */
.about-circle-area {
    position: absolute;
    bottom: 2%;
    left: 2%;
    display: flex;
    justify-content: center;
    background: var(--tg-white);
    border-radius: 50%;
    padding: 12px;
    z-index: 11;
}

.about-circle {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.about-photo {
    position: absolute;
    width: 150px;
    height: 150px;
    background: url(../img/about/award.png);
    background-size: cover;
    background-position: center;
    border: 1px solid var(--tg-primary-color);
    border-radius: 50%;
}

.about-text-image {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateText 10s linear infinite;
    -webkit-animation: rotateText 10s linear infinite;
    -moz-animation: rotateText 10s linear infinite;
    -ms-animation: rotateText 10s linear infinite;
}

@keyframes rotateText {
    0% {
        transform: rotate(-360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@-webkit-keyframes rotateText {
    0% {
        transform: rotate(-360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@-moz-keyframes rotateText {
    0% {
        transform: rotate(-360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@-ms-keyframes rotateText {
    0% {
        transform: rotate(-360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.content-box {
    display: grid;
    align-items: center;
    justify-content: center;
}

.single-item {
    display: flex;
}

.about-ceo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ceo-part {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ceo-part {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--tg-black);
    border-radius: 80px;
    padding: 4px 8px;
    width: 58%;
}

.ceo-img img {
    border: 2px solid var(--tg-white);
    border-radius: 50px;
}

.ceo-text-right {
    margin-left: 15px;
}

/*=============================
	08. Working Process
===============================*/
.working-process-section {
    background: var(--tg-section-background-five);
    position: relative;

}

.working-block {
    position: relative;
}

.working-block .inner-box .count-text {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 15;
    margin-bottom: 1rem;
}

.working-block .inner-box .count-text h3 {
    position: relative;
    display: inline-block;
    width: 90px;
    height: 90px;
    text-align: center;
    border-radius: 50%;
    font-size: 22px;
    line-height: 22px;
    font-weight: 600;
    color: var(--tg-white);
    padding-top: 23px;
    background: var(--tg-primary-color);
}

.working-block .inner-box .count-text h3::before {
    position: absolute;
    content: '';
    width: 120px;
    height: 120px;
    left: -15px;
    top: -15px;
    border-radius: 50%;
    border: 2px dashed var(--tg-primary-color);
}

.working-block .inner-box .count-text h3 span {
    display: block;
    font-size: 16px;
    font-weight: 500;
}

.working-block .inner-box .text {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 290px;
    top: -50px;
    text-align: center;
    background: var(--tg-white);
    border-radius: 25px;
    box-shadow: 0px 0px 120px rgba(0, 0, 0, 0.07);
    padding: 0px 20px;
    transition: all 1000ms;
    z-index: 11;
}

.working-block .inner-box .text:hover {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 290px;
    top: -50px;
    text-align: center;
    background: var(--tg-secondary-color);
    border-radius: 25px;
    box-shadow: 0px 0px 120px rgba(0, 0, 0, 0.07);
    padding: 0px 20px;
    transition: all 1000ms;
}

.working-block .inner-box .text h5 {
    display: block;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: all 1000ms;
}

.working-block .inner-box .text p {
    transition: all 1000ms;
}

.working-block .inner-box .text:hover h5 {
    color: var(--tg-white);
    transition: all 1000ms;
}

.working-block .inner-box .text:hover p {
    color: var(--tg-white);
    transition: all 1000ms;
}

/*=============================
	09. Services
===============================*/
.service-section {
    position: relative;
    background: var(--tg-section-background-four);
}

.service-div {
    position: relative;
}

.image-work {
    position: relative;
    text-align: center;
}

.image-size {
    position: relative;
    width: 80%;
    height: 80%;
    border-radius: 20px;
    top: 2px;
    z-index: 11;
}

.service-div:hover .image-size {
    position: relative;
    width: 80%;
    height: 80%;
    border-radius: 20px;
    top: 2px;
    z-index: 11;
    content: "";
    transform: scale(1.1);
    opacity: 0.8;
}

.icon-work {
    position: relative;
    text-align: center;
    z-index: 11;
}

.service-icon {
    position: relative;
    background: var(--tg-primary-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    color: var(--tg-white);
    font-size: 32px;
    line-height: 60px;
}

.service-design {
    top: -68px;
    background: var(--tg-white);
    transition: all 400ms;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-bottom: 4px solid transparent;
}

.service-div:hover .service-design {
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    background: var(--tg-white);
    transition: all 400ms;
    border-bottom: 4px solid var(--tg-primary-color);
}

.second-btn {
    transition: all 400ms;
}

.second-icon {
    margin-left: 8px;
    transition: all 400ms;
}

.second-btn:hover .second-icon {
    margin-left: 15px;
}

/* Contact Banner */
.call-banner {
    background: url("../img/contact-banner.png") no-repeat fixed center center / cover;
    display: block;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 260px;
    text-align: center;
    position: relative;
}

.call-banner::after {
    background: var(--tg-black-five) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

.call-banner .container>h2 {
    font-size: 33px;
    letter-spacing: 0;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.call-box {
    position: relative;
    z-index: 11;
}

.call {
    position: absolute;
    top: 260px;
    left: 50%;
}

.call-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--tg-primary-color);
    color: var(--tg-white);
    border-radius: 50%;
    text-align: center;
    line-height: 80px;
    font-size: 38px;
}

.call-button::before,
.call-button::after {
    content: '';
    display: block;
    position: absolute;
    border-radius: 50%;
    border: 4px solid var(--tg-white);
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: animate 1.5s linear infinite;
    opacity: 0;
    backface-visibility: hidden;
}

.call-button::after {
    animation-delay: .5s;
}

@keyframes animate {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@-webkit-keyframes animate {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@-moz-keyframes animate {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@-ms-keyframes animate {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/*=============================
	10. Portfolio
===============================*/
.portfolio-section {
    position: relative;
    background: var(--tg-section-background-five);
}

.portfolio-thumb {
    position: relative;
    overflow: hidden;
}

.portfolio-thumb::before {
    background: var(--tg-primary-color) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: all 0.3s ease 0s;
    visibility: hidden;
    width: 100%;
    z-index: 1;
}

.portfolio-wrapper:hover .portfolio-thumb::before {
    opacity: .85;
    visibility: visible;
}

.portfolio-thumb>img {
    width: 100%;
    transition: .3s;
}

.portfolio-wrapper:hover .portfolio-thumb>img {
    transform: scale(1.2);
}

.portfolio-content {
    left: 0;
    padding: 30px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
}

.portfolio-wrapper:hover .portfolio-content {
    opacity: 1;
    visibility: visible;
}

.portfolio-wrapper {
    position: relative;
}

.portfolio-content>h3 {
    color: var(--tg-white);
    font-size: 18px;
    font-weight: 600;
}

.portfolio-content>span {
    color: var(--tg-white);
    font-size: 16px;
}

.portfolio-content>h3:hover a {
    color: var(--tg-white);
}

.icon a {
    display: inline-block;
    height: 20px;
    margin-bottom: 10px;
    position: relative;
    width: 20px;
}

.icon a::before,
.icon a::after {
    background: var(--tg-white) none repeat scroll 0 0;
    content: "";
    height: 2px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 20px;
}

.icon a::after {
    height: 20px;
    top: -9px;
    width: 2px;
}

.portfolio-menu>button {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: medium none;
    border-radius: 10px;
    color: var(--tg-menu-color-two);
    cursor: pointer;
    font-weight: 500;
    margin: 2px 8px;
    padding: 10px 15px;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
}

.portfolio-menu>button:focus {
    outline: 0 none;
}

.portfolio-menu>button:hover,
.portfolio-menu>button.active {
    background: var(--tg-primary-color);
    color: var(--tg-white);
}

@keyframes animate {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@-webkit-keyframes animate {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@-moz-keyframes animate {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@-ms-keyframes animate {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/*=============================
	21. Footer
===============================*/
.footer {
    background: var(--tg-section-background-two);
}

.footer-logo {
    margin-right: 4px;
    width: 75%;
    height: auto;
}

.footer-menu h5 {
    font-size: 16px;
    color: var(--tg-white);
}

.footer-menu p,
.footer span {
    font-size: 15px;
}

.footer-icon {
    font-size: 16px;
    height: 36px;
    width: 36px;
    line-height: 36px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    margin: 10px 2px;
}

.footer-menu li a {
    font-size: 15px;
    display: inline-block;
    transition: all 0.5s;
    line-height: 32px;
    color: var(--tg-gray-five) !important;
}

@media screen and (max-width: 1023px) {
    .footer-wrapper {
        justify-content: center !important;
        align-items: center !important;
    }

    .footer-menu a {
        justify-content: center !important;
    }

    .footer-menu h5, li {
        text-align: center;
    }
}

/*=============================
	22. Preloader
===============================*/
#preloader {
    background-color: var(--tg-white);
    height: 100%;
    width: 100%;
    position: fixed;
    margin-top: 0px;
    top: 0px;
    z-index: 9999;
}

#preloader .loader .loader-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 3px solid var(--tg-border-color);
    border-radius: 50%;
}

#preloader .loader .loader-container::before {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-top: 3px solid var(--tg-primary-color);
    border-radius: 50%;
    animation: loaderspin 1.8s infinite ease-in-out;
    -webkit-animation: loaderspin 1.8s infinite ease-in-out;
}

#preloader .loader .loader-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    text-align: center;
}

#preloader .loader .loader-icon img {
    animation: loaderpulse alternate 900ms infinite;
    width: 40px;
}

@keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-webkit-keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-moz-keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-ms-keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes loaderpulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

@-webkit-keyframes loaderpulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

@-moz-keyframes loaderpulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

@-ms-keyframes loaderpulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}