
/* -------------------------------------------
Table of Index
--------------
1. Base css 
2. Header css
3. Home Banner css
4. About Me css
5. Services css
6. Resume css
7. Testimonial css
8. Partners css
9. Blogs css
10. Contact css
11. Portfolio css
12. Counter css
13. Footer css
14. Inner page Hero css
15. Preloader
----------------------------------------------- */
/* 1. Base css */
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Bai Jamjuree', sans-serif;
    box-sizing: border-box;
    background-color: var(--body-bg);
    color: var(--secondary-white-color);
    overflow-x: hidden !important;
}

:root {
    --theme-color: #61F7D5;
    --secondary-color: #FFA05E;
    --white-color: #edf1ff;
    --secondary-white-color: #8897b5;
--light-color: #172A46;
    --body-bg: #0A192F;
    --border-color: #61f7d42a;
    --second-lighter:#403f3e;
}

h1,
.h1 {
    font-size: 84px;
    margin: 0;
    line-height: 1.2em;
    font-weight: 700;
    font-family: 'Bai Jamjuree', sans-serif;
}

.h1-small {
    font-size: 72px;
    margin: 0;
    line-height: 1.2em;
    font-weight: 700;
    font-family: 'Bai Jamjuree', sans-serif;
}

.h1-home-4 {
    font-size: 84px;
    margin: 0;
    line-height: 1.2em;
    font-weight: 700;
    font-family: 'Bai Jamjuree', sans-serif;
}

.h1-home-2 {
    font-size: 70px;
}


.section-bg{
    background-color: #172a4647;
}

h2,
.h2 {
    font-size: 44px;
    margin: 0;
    font-weight: 700;
}

.h2-secondary {
    font-size: 42px;
}

h3,
.h3 {
    font-size: 24px;
    margin: 0;
}

h4,
.h4 {
    font-size: 21px;
    margin: 0;
}

h5,
.h5 {
    font-size: 18px;
    margin: 0;
}

h6,
.h6 {
    font-size: 16px;
    margin: 0;
}

p,
.p {
    font-size: 16px;
    margin: 0;
}

a {
    color: var(--white-color);
    font-family: 'Bai Jamjuree', sans-serif;
    text-decoration: none;
    margin: 0;
    transition: all .3s;
}

a:focus {
    outline: 0px solid;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: var(--theme-color);
}

a>h2,
a>h3,
a>h4,
a>h5,
a>h6,
a>p,
a span {
    transition: all .3s;
}

a:hover h2,
a:hover h3,
a:hover h4,
a:hover h5,
a:hover h6,
a:hover p,
a:hover span {
    color: var(--theme-color);
}

button {
    outline: 0px solid;
    text-decoration: none;
}

button:focus {
    outline: 0px solid;
    text-decoration: none;
}

.outline-0 {
    outline: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

textarea {
    border-style: none;
    border-color: Transparent;
    overflow: auto;
}
/* Prevent horizontal scroll from oversized elements */
img, .home-banner-img-col img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* Prevent horizontal scroll for 1920px width screens */
@media (min-width: 1900px) and (max-width: 1920px) {
  html, body {
    overflow-x: hidden !important;
    width: 100vw;
  }
}
/* Fix horizontal scroll for large screens (1200px to 1500px) */
@media (min-width: 1200px) and (max-width: 1500px) {
  html, body {
    overflow-x: hidden !important;
    width: 100vw;
  }
}
/* Fix horizontal scroll for devices up to 575px width */
@media (max-width: 575px) {
  html, body {
    overflow-x: hidden !important;
    width: 100vw;
  }
}

.btn-close {
  --bs-btn-close-color: #ffffff !important;
}

.img-fluid {
    border-radius: .5rem;
}

.form-control{
    background-color: var(--light-color);
    color: var(--white-color);
    border-color: transparent;
}
.form-control:focus,
.form-control:focus-within{
    background-color: var(--light-color);
    box-shadow: none !important;
    outline: none;
    color: var(--white-color) !important;
}
.form-control::placeholder{
    color: var(--secondary-white-color);
}
.white-color {
    color: var(--white-color);
}

.secondary-white {
    color: var(--secondary-white-color);
}

.theme-color {
    color: var(--theme-color);
}

.secondary-color {
    color: var(--secondary-color);
}

.pages-section-top {
    padding-top: 65px;
}

.pages-section-top-xl {
    padding-top: 130px;
}

.pages-section-bottom {
    padding-bottom: 65px;
}

.pages-section-bottom-xl {
    padding-bottom: 130px;
}

.divider-style-one {
    margin: 30px 0px;
    border-top: none;
    height: 1px;
    background-color: var(--border-color);
    opacity: 1;
}


.default-btn {
    color: #000;
    padding: 10px 32px;
    background-color: var(--theme-color);
    border-radius: 6px;
    font-size: 21px;
    font-weight: 500;
    text-transform: capitalize;
    border: 1px solid transparent;
    transition: all .3s;
}
.default-btn:hover span{
    color:#000;
}

.light-bg {
    background-color: #FFF3EA;
}

.theme-bg {
    background-color: var(--theme-color);
}

.img-zoom {
    overflow: hidden;
    width: fit-content;
}

.img-zoom img {
    transition: all .4s;
}

.img-zoom:hover img {
    transform: scale(1.1);
}

.btn_effect {
    position: relative;
    overflow: hidden;
}

.btn_effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    visibility: hidden;
    transition: all 1s ease;
}

.btn_effect::before {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    visibility: hidden;
    transition: all 1s ease;
}

.img-overlay {
    width: fit-content;
    position: relative;
}

.img-overlay-full {
    width: 100%;
    position: relative;
}

.img-overlay::after,
.img-overlay-full::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .4);
    display: block;
    z-index: 20;
    transition: all .5s;
    border-radius: 6px;
    opacity: 0;
}

.img-overlay-full::after {
    border-radius: 12px !important;
}

.img-overlay:hover::after,
.img-overlay-full:hover::after {
    opacity: 1;
}

.btn_effect:hover {
    color: #fff;
}

.btn_effect:hover::after {
    visibility: visible;
    transform: rotate(0deg);
    left: 0;
}

.btn_effect:hover::before {
    visibility: visible;
    transform: rotate(0deg);
    right: 0;
}

.section-heading-middle {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


/*
  EXTRA CSS CODE
  The following custom class is not used in your HTML structure. Keeping it commented for reference.
*/
/*
.custom-container {
    padding-left: calc((100% - 1320px)/2);
    margin-left: 15px;
    padding-right: calc((100% - 1320px)/4);
}
*/

/* scrollbar style */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--theme-color);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-white-color);
}

/* animation keyframes and classes */
.delay-one {
    animation-delay: -.3s !important;
}

.delay-two {
    animation-delay: -.7s !important;
}

.delay-100 {
    animation-delay: .1s;
}

.delay-200 {
    animation-delay: .2s;
}


@keyframes floatUpDown {
    0% {
        transform: translateY(-10px)
    }

    50% {
        transform: translateY(10px)
    }

    100% {
        transform: translateY(-10px)
    }
}

.floating-particle-one {
    animation: floatUpDown 3s infinite ease-in-out;
}

@keyframes MoveBg {
    0% {
        background-position: top;
    }

    25% {
        background-position: right;
    }

    50% {
        background-position: bottom;
    }

    75% {
        background-position: left;
    }
}

@keyframes fadeInOut {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.content-fade-in-out {
    animation-name: fadeInOut;
    animation-duration: 1.5s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}

@keyframes rotate360 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.rotate-360 {
    animation-name: rotate360;
    animation-duration: 6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes zoomInOutContent {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(.9);
    }
}

.zoom-in-out {
    animation-name: zoomInOutContent;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes bgFade {
    0% {
        background-size: 0;
    }

    50% {
        background-size: contain;
    }
}

.bg-fade {
    animation-name: bgFade;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes contentFadeInOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.content-fade-in-out {
    animation-name: contentFadeInOut;
    animation-duration: 2s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}

/* font-family */
.font-urbanist {
    font-family: 'Urbanist', sans-serif;
}

/* font-weight */
.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}

/* z-index */
.z-index-5 {
    z-index: 5;
}

.z-index-10 {
    z-index: 10;
}

.z-index-15 {
    z-index: 15;
}

.z-index-20 {
    z-index: 20;
}

.z-index-25 {
    z-index: 25;
}

/* line height */
.line-height-primary {
    line-height: 1em;
}

.line-height-1 {
    line-height: 1.1em;
}

.line-height-2 {
    line-height: 1.2em;
}

.line-height-3 {
    line-height: 1.3em;
}

.line-height-4 {
    line-height: 1.4em;
}

.line-height-5 {
    line-height: 1.5em;
}

.line-height-6 {
    line-height: 1.6em;
}

.line-height-7 {
    line-height: 1.7em;
}

.line-height-8 {
    line-height: 1.8em;
}

.line-height-9 {
    line-height: 1.9em;
}

.line-height-10 {
    line-height: 2em;
}

/* Basic margin padding */
.m-0 {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
}

.p-0 {
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
}

/* Margin top */
.mt-0 {
    margin-top: 0
}

.mt-10 {
    margin-top: 10px
}

.mt-15 {
    margin-top: 15px
}

.mt-20 {
    margin-top: 20px
}

.mt-25 {
    margin-top: 25px
}

.mt-30 {
    margin-top: 30px
}

.mt-35 {
    margin-top: 35px
}

.mt-40 {
    margin-top: 40px
}

.mt-50 {
    margin-top: 50px
}

.mt-55 {
    margin-top: 55px
}

.mt-60 {
    margin-top: 60px
}

.mt-70 {
    margin-top: 70px
}

.mt-80 {
    margin-top: 80px
}

.mt-85 {
    margin-top: 85px
}

.mt-90 {
    margin-top: 90px
}

.mt-100 {
    margin-top: 100px
}

.mt-110 {
    margin-top: 110px
}

.mt-120 {
    margin-top: 120px
}

.mt-130 {
    margin-top: 130px
}

.mt-140 {
    margin-top: 140px
}

.mt-150 {
    margin-top: 150px
}

/* Margin right */
.mr-0 {
    margin-right: 0px
}

.mr-10 {
    margin-right: 10px
}

.mr-15 {
    margin-right: 15px
}

.mr-20 {
    margin-right: 20px
}

.mr-30 {
    margin-right: 30px
}

.mr-35 {
    margin-right: 35px
}

.mr-40 {
    margin-right: 40px
}

.mr-50 {
    margin-right: 50px
}

.mr-60 {
    margin-right: 60px
}

.mr-70 {
    margin-right: 70px
}

.mr-80 {
    margin-right: 80px
}

.mr-90 {
    margin-right: 90px
}

.mr-100 {
    margin-right: 100px
}

.mr-110 {
    margin-right: 110px
}

.mr-120 {
    margin-right: 120px
}

.mr-130 {
    margin-right: 130px
}

.mr-140 {
    margin-right: 140px
}

.mr-150 {
    margin-right: 150px
}

/* Margin bottom */
.mb-0 {
    margin-bottom: 0
}

.mb-10 {
    margin-bottom: 10px
}

.mb-15 {
    margin-bottom: 15px
}

.mb-20 {
    margin-bottom: 20px
}

.mb-30 {
    margin-bottom: 30px
}

.mb-35 {
    margin-bottom: 35px
}

.mb-40 {
    margin-bottom: 40px
}

.mb-45 {
    margin-bottom: 45px
}

.mb-50 {
    margin-bottom: 50px
}

.mb-60 {
    margin-bottom: 60px
}

.mb-70 {
    margin-bottom: 70px
}

.mb-80 {
    margin-bottom: 80px
}

.mb-90 {
    margin-bottom: 90px
}

.mb-100 {
    margin-bottom: 100px
}

.mb-110 {
    margin-bottom: 110px
}

.mb-120 {
    margin-bottom: 120px
}

.mb-130 {
    margin-bottom: 130px
}

.mb-140 {
    margin-bottom: 140px
}

.mb-150 {
    margin-bottom: 150px
}

/* Margin left */
.ml-0 {
    margin-left: 0
}

.ml-10 {
    margin-left: 10px
}

.ml-15 {
    margin-left: 15px
}

.ml-20 {
    margin-left: 20px
}

.ml-30 {
    margin-left: 30px
}

.ml-40 {
    margin-left: 40px
}

.ml-50 {
    margin-left: 50px
}

.ml-60 {
    margin-left: 60px
}

.ml-70 {
    margin-left: 70px
}

.ml-80 {
    margin-left: 80px
}

.ml-90 {
    margin-left: 90px
}

.ml-95 {
    margin-left: 95px
}

.ml-100 {
    margin-left: 100px
}

.ml-110 {
    margin-left: 110px
}

.ml-120 {
    margin-left: 120px
}

.ml-130 {
    margin-left: 130px
}

.ml-140 {
    margin-left: 140px
}

.ml-150 {
    margin-left: 150px
}

/* Padding top */
.pt-0 {
    padding-top: 0
}

.pt-10 {
    padding-top: 10px
}

.pt-15 {
    padding-top: 15px
}

.pt-20 {
    padding-top: 20px
}

.pt-25 {
    padding-top: 25px
}

.pt-30 {
    padding-top: 30px
}

.pt-40 {
    padding-top: 40px
}

.pt-50 {
    padding-top: 50px
}

.pt-60 {
    padding-top: 60px
}

.pt-70 {
    padding-top: 70px
}

.pt-80 {
    padding-top: 80px
}

.pt-90 {
    padding-top: 90px
}

.pt-100 {
    padding-top: 100px
}

.pt-110 {
    padding-top: 110px
}

.pt-120 {
    padding-top: 120px
}

.pt-130 {
    padding-top: 130px
}

.pt-140 {
    padding-top: 140px
}

.pt-150 {
    padding-top: 150px
}

.pt-175 {
    padding-top: 175px
}

/* Padding right */
.pr-0 {
    padding-right: 0
}

.pr-10 {
    padding-right: 10px
}

.pr-15 {
    padding-right: 15px
}

.pr-20 {
    padding-right: 20px
}

.pr-25 {
    padding-right: 25px
}

.pr-30 {
    padding-right: 30px
}

.pr-40 {
    padding-right: 40px
}

.pr-50 {
    padding-right: 50px
}

.pr-60 {
    padding-right: 60px
}

.pr-70 {
    padding-right: 70px
}

.pr-80 {
    padding-right: 80px
}

.pr-90 {
    padding-right: 90px
}

.pr-100 {
    padding-right: 100px
}

.pr-110 {
    padding-right: 110px
}

.pr-120 {
    padding-right: 120px
}

.pr-130 {
    padding-right: 130px
}

.pr-140 {
    padding-right: 140px
}

.pr-150 {
    padding-right: 150px
}

.pr-200 {
    padding-right: 200px
}

/* Padding bottom */
.pb-0 {
    padding-bottom: 0
}

.pb-10 {
    padding-bottom: 10px
}

.pb-15 {
    padding-bottom: 15px
}

.pb-20 {
    padding-bottom: 20px
}

.pb-25 {
    padding-bottom: 25px
}

.pb-30 {
    padding-bottom: 30px
}

.pb-40 {
    padding-bottom: 40px
}

.pb-50 {
    padding-bottom: 50px
}

.pb-60 {
    padding-bottom: 60px
}

.pb-70 {
    padding-bottom: 70px
}

.pb-80 {
    padding-bottom: 80px
}

.pb-90 {
    padding-bottom: 90px
}

.pb-95 {
    padding-bottom: 95px
}

.pb-100 {
    padding-bottom: 100px
}

.pb-105 {
    padding-bottom: 105px
}

.pb-110 {
    padding-bottom: 110px
}

.pb-120 {
    padding-bottom: 120px
}

.pb-130 {
    padding-bottom: 130px
}

.pb-140 {
    padding-bottom: 140px
}

.pb-150 {
    padding-bottom: 150px
}

/* Padding left */
.pl-0 {
    padding-left: 0
}

.pl-10 {
    padding-left: 10px
}

.pl-15 {
    padding-left: 15px
}

.pl-20 {
    padding-left: 20px
}

.pl-25 {
    padding-left: 25px
}

.pl-30 {
    padding-left: 30px
}

.pl-40 {
    padding-left: 40px
}

.pl-50 {
    padding-left: 50px
}

.pl-60 {
    padding-left: 60px
}

.pl-70 {
    padding-left: 70px
}

.pl-80 {
    padding-left: 80px
}

.pl-90 {
    padding-left: 90px
}

.pl-100 {
    padding-left: 100px
}

.pl-110 {
    padding-left: 110px
}

.pl-120 {
    padding-left: 120px
}

.pl-130 {
    padding-left: 130px
}

.pl-140 {
    padding-left: 140px
}

.pl-150 {
    padding-left: 150px
}

.pl-200 {
    padding-left: 200px
}

/* 2. Header css */
header {
    z-index: 100;
}



.header {
    padding: 25px 0px;
}

.logo img {
    width: 135px;
}

.menu-link {
    color: var(--secondary-white-color);
    font-size: 18px;
    transition: all .3s;
    font-weight: 500;
}


.fixed-top{
    background-color: var(--light-color);
}

.bg-dark{
    background-color: var(--body-bg) !important;
}

.menu-link:hover,
.menu-link.active {
    color: var(--theme-color);
}

.header-menu li {
    position: relative;
}

.submenu-container {
    background-color: var(--theme-color);
    position: absolute;
    top: 30px;
    left: 15px;
    width: fit-content;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.submenu-link {
    color: #fff;
    padding: 5px 10px;
    display: inline-block;
    width: max-content;
}

.header-menu li:hover>ul {
    opacity: 1;
    visibility: visible;
}

.sidebar-header {
    position: fixed;
    top: 0;
    right: -50px;
    height: 100vh;
    left: 60px;
    width: fit-content;
}

.sidebar-menu-item {
    padding-bottom: 28px;
}

.sidebar-nav-menu .header-menu {
    padding-left: 15px;
    position: relative;
}

.sidebar-nav-menu .header-menu::before {
    content: '';
    position: absolute;
    left: 0;
    height: 95%;
    width: 1px;
    background-color: var(--second-lighter);
}

.sidebar-navigation {
    margin-top: 220px;
}

.sidebar-social-media {
    margin-top: 220px;
}

.sidebar-logo-img {
    margin-left: -10px;
}

#onepage-nav li a.scroll {
    position: relative;
}

#onepage-nav li a.scroll::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid var(--second-lighter);
    position: absolute;
    left: -22px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--second-lighter);
}

#onepage-nav li a.scroll.active::before {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.main-menu ul li {
    display: inline-block;
    padding: 30px 0;
    position: relative;
}

.main-menu ul li a {
    font-weight: 400;
    position: relative;
}

.main-menu ul li ul {
    background: #fff none repeat scroll 0 0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
    left: 0;
    opacity: 0;
    position: absolute;
    text-align: left;
    top: 100%;
    transition: all 0.3s ease 0s;
    visibility: hidden;
    width: 190px;
    z-index: 999;
}

.main-menu ul li ul li:first-child {
    border-top: none;
}

.main-menu ul li ul li {
    display: block;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    transition: all .3s ease 0s;
}

.main-menu ul li ul li a {
    display: block;
    padding: 10px 15px;
    text-transform: capitalize;
    color: var(--white-color);
}

.main-menu ul li ul li:hover a {
    color: var(--theme-color);
}

.main-menu ul li a {
    font-weight: 400;
    position: relative;
}

/* mobile canvas */
.offcanvas{
    background-color: var(--body-bg);
    width: 70%;
    padding-inline: 20px;
}
.btn-close{
    background-color: var(--white-color);
}


/* 3. Home Banner css */
.home-banner {
    background: linear-gradient(256.24deg, rgba(255, 195, 152, 0.2) 26.56%, rgba(255, 234, 190, 0.3) 100%);
}

.home-one-banner {
    background: var(--light-color);
    padding: 90px 0px 125px 0px;
}
.sub-heading img {
    width: 30px;
}
.sub-heading p {
    margin-left: 10px;
    font-size: 20px;
    font-weight: 500;
    color: var(--secondary-color);
}

.home-one-banner .sub-heading p {
    margin-left: 0px;
}




.sub-heading {
    margin-bottom: 10px;
}

.home-banner-shape {
    top: 65px;
    left: 80px;
    width: 75%;
}



.home-one-banner-circle {
    left: 3%;
    bottom: 0;
    width: 80%;
}

.sidebar-social-media .social-container a svg {
    transition: all .4s;
}

.sidebar-social-media .social-container a:hover svg {
    color: var(--theme-color) !important;
}

/* 4. About Me css */
.about {
    padding: 130px 0px 65px 0px;
}

.about-resume-page {
    padding: 65px 0px;
}



.about-two-img {
    width: 575px;
    height: 715px;
}

.about .progressbar {
    box-shadow: none;
    margin-bottom: 15px;
}

.about .percentCount {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
    margin-top: -43px;
}

.about-resume-page .progressbar {
    box-shadow: none;
    margin-bottom: 15px;
}

.about-resume-page .percentCount {
    color: var(--secondary-white-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    margin-top: -43px;
    float: right;
}


.about-img-frame {
    width: 557px;
    height: 626px;
    background-color: var(--light-color);
    position: relative;
    margin-left: auto;
    border-radius: 10px;
}

.about-four-line-shape {
    left: 4%;
    top: 8.5%;
}

.about-info-box {
    padding: 35px 45px;
    background-color: var(--theme-color);
    width: fit-content;
    position: absolute;
    border-radius: 8px;
    bottom: -30px;
    left: -60px;
}

.about-info-box h3 {
    font-size: 26px;
}

.about-info-box ul {
    list-style-type: disc;
    margin-left: 25px;
}

.about-three-shape {
    left: -80px;
    bottom: 30px;
}

.about-four-shape {
    bottom: -30px;
    left: -40px;
}

.about-count-heading {
    font-size: 32px;

}

.home-one-about-bg-circle {
    position: absolute;
    bottom: -2%;
    left: 8%;
}

/* 5. Services css */
.services {
    padding: 65px 0px 130px 0px;
}

.services-archieve {
    padding: 65px 0px;
}

.service-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 24px;
}

.service-grid-item {
    padding: 50px 30px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: all .3s;
}

.service-two-grid .service-item-img {
    padding: 20px;
    background: #FFF5EF;
    border-radius: 6px;
    width: 80px;
}

.service-grid-item:hover {
    background-color: var(--light-color);
    border: 1px solid transparent;
}

.service-item-img {
    margin-bottom: 25px;
}

.service-item-heading {
    margin-bottom: 13px;
}

.service-slider-container .owl-carousel .owl-item {
    width: 540px;
}

.service-slider-container .owl-carousel .owl-item img {
    height: 520px;
}

.service-three {
    padding-bottom: 65px;
}

.service-three .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 55px;
}

.service-three .owl-theme .owl-dots .owl-dot span {
    background-color: var(--theme-color);
    opacity: .3;
    box-shadow: 0px 0px 0px 1px var(--theme-color);
}

.service-three .owl-theme .owl-dots .owl-dot.active span {
    background-color: var(--theme-color);
    opacity: 1;
    border: 3px solid #fff;
    border-radius: 50%;
}

.partner-four-grid-list-container .owl-theme .owl-stage {
    left: 110px;
}

.service-slide-top-img {
    top: 105px;
    z-index: 2;
    right: -120px;
}

.service-slide-bottom-img {
    bottom: 30px;
    z-index: 2;
    left: -60px;
}

.servcie-three-contents {
    padding-left: 230px;
}


.servcie-three-contents .scroll.active .service-three-stroke-item-heading {
    -webkit-text-stroke-color: var(--theme-color)
}

.servcie-three-contents .scroll.active h5 {
    color: var(--theme-color);
}

/* 6. Resume css */
.resume {
    background-color: var(--light-color);
    padding: 130px 0px;
}

.resume-two {
    background-color: var(--light-color);
    padding-block: 80px;
}


.resume-three {
    padding: 0px 0px 130px 0px;
}

.resume-about {
    padding: 130px 0px;
}

.resume-archieve {
    padding: 65px 0px;
}

.resume-education,
.resume-skills {
    padding: 33px;
    border-radius: 6px;
}

.resume-first-item {
    padding-right: 78px;
}

.resume-second-item {
    padding-right: 39px;
    padding-left: 50px;
    position: relative;
}

.resume-third-item {
    padding-left: 78px;
}

.resume-second-item::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    width: 1px;
    height: 90%;
    background-color: #D1D1D1;
}

.resume-second-item::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    width: 1px;
    height: 90%;
    background-color: #D1D1D1;
}

.skill-name {
    overflow: hidden;
}

.skill-name::after {
    content: '';
    position: absolute;
    width: calc(100% - 55px);
    height: 1px;
    background-color: #D9D9D9;
    margin-left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.resume-topics {
    display: flex;
}

.resume-topic-one {
    top: 110px;
    margin-left: 23px;
}

.resume-topic-two {
    top: 350px;
    margin-left: 23px;
}

.resume-topic-three {
    bottom: 85px;
    margin-left: 23px;
}

.resume-topics::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: #929292;
    display: inline-block;
}

.resume-topic-item::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: var(--theme-color);
    display: inline-block;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    left: -31px;
}

.resume-two .resume-content-right {
    padding-left: 45px;
}

.resume-two .resume-content-left {
    padding-right: 45px;
}

.resume-three-divider {
    margin-top: 12px;
    margin-bottom: 50px;
    height: 1px;
    background-color: var(--theme-color);
    opacity: 1;
    border: none;
}

.resume-style-three-item-experience {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.resume-four {
    background-color: #FFF3EA;
    padding: 130px 0px;
}

.resume-four-skill-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
}

.resume-four-skill-title {
    border-width: 0px 3px 3px 1px;
    border-style: solid;
    border-color: rgba(255, 107, 0, 0.2);
    border-radius: 5px;
}

.resume-four-skill-icon-box {
    width: 105px;
    height: 105px;
    margin-bottom: -10px;
}

.education-experience-nav-tab {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

.education-experience-container {
    padding: 10px;
    border: 1px solid var(--theme-color);
    border-radius: 5px;
}

.resume-nav-tab-item {
    background-color: #fff;
    padding: 12px 0px;
    width: 100%;
    flex-grow: 1;
    text-align: center;
    border-radius: 5px;
    font-size: 18px;
    color: var(--white-color);
    font-weight: 600;
    transition: all .3s;
}

.resume-nav-tab-item.nav-link.active {
    border: 0;
    background-color: var(--theme-color);
    color: #fff;
}

.resume-nav-tab-item:hover {
    background-color: var(--theme-color);
    color: #fff;
}

.resume-four-right {
    padding-left: 70px;
}

.resume-tab-img-container {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 1px solid var(--theme-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.resume-tab-item {
    border-radius: 6px;
}

.resume-tab-title {
    font-size: 28px;
}

.resume-tab-time {
    font-size: 22px;
}

.resume-tab-contents {
    margin-top: 100px;
}

/* 7. Testimonial css */
.testimonial {
    padding: 130px 0px 65px 0px;
}

.testimonial-black-bg {
    background-color: #070B10;
    padding: 130px 0px;
}

.bio-img {
    width: 75px;
    height: 75px;
    margin-right: 25px;
}

.toggle-icon{
    width: 30px;
}

.testimonial .owl-carousel .owl-item img {
    width: auto;
    border-radius: 6px;
}

.testimonial-card {
    padding: 40px 30px;
    border-radius: 6px;
    /* background-color: #FFFAF7; */
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    background-color: var(--light-color);
}

.testimonial-card-white {
    padding: 40px 30px;
    border-radius: 6px;
    background-color: #fff;
}

.testimonial .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 25px;
}

.testimonial .owl-theme .owl-dots .owl-dot span {
    background-color: var(--theme-color);
    opacity: .3;
    box-shadow: 0px 0px 0px 1px var(--theme-color);
}

.testimonial .owl-theme .owl-dots .owl-dot.active span {
    background-color: var(--theme-color);
    opacity: 1;
    border: 3px solid #fff;
    border-radius: 50%;
}

.testimonial-images {
    margin-top: 45px;
}

.testimonial-four-name {
    font-size: 22px;
    margin-top: 25px;
}

.testimonial-four-client-title {
    color: #878787;
    margin-top: 6px;
}

.testimonial-four-contents {
    padding: 0px 130px 0px 130px;
}

.testimonial-four .owl-theme .owl-nav.disabled+.owl-dots {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: -130px
}

.testimonial-four {
    padding-top: 130px;
}

.testimonial-four .owl-theme .owl-dots .owl-dot span {
    background-color: var(--theme-color);
    opacity: .3;
    box-shadow: 0px 0px 0px 1px var(--theme-color);
}

.testimonial-four .owl-theme .owl-dots .owl-dot.active span {
    background-color: var(--theme-color);
    opacity: 1;
    border: 3px solid #fff;
    border-radius: 50%;
}

/* 8. Partners css */
.partners {
    padding: 65px 0px;
}

.home-three-body .partners {
    padding: 130px 0px 65px 0px;
}

.partner-card {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding-block: 20px;
}

.partner-card img {
    transition: all .8s;
    border-radius: 6px;
}

.partner-card:hover img {
    transform: scale(1.1);
}

.partner-grid-list-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    text-align: center;
}

.partner-list-container .owl-theme .owl-stage {
    left: 110px;
}

.partner-list-container-two .owl-theme .owl-stage {
    left: 110px;
}

.partner-logo-card {
    overflow: hidden;
}

.partner-logo-card:hover img {
    transform: scale(.8);
}

.partner-logo-card img {
    width: 67px;
    height: 83px;
    transition: all .4s;
}

.partners .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 50px;
}

.partners .owl-theme .owl-dots .owl-dot span {
    background-color: #D9D9D9;
    width: 20px;
    height: 4px;
    border-radius: 6px;
}

.partners .owl-theme .owl-dots .owl-dot.active span {
    background-color: var(--theme-color);
    opacity: 1;
}

.partners .owl-carousel .owl-nav button.owl-prev img {
    width: 20px;
}

.partners .owl-carousel .owl-nav button.owl-next img {
    width: 20px;
}

.partners .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -1.5%;
    background-color: var(--secondary-color);
    display: inline-grid;
    height: 40px;
    width: 40px;
    place-items: center;
}

.partners .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -1.5%;
    background-color: var(--theme-color);
    display: inline-grid;
    height: 40px;
    width: 40px;
    place-items: center;
}

.partners .owl-carousel .owl-nav button.owl-prev:hover {
    background-color: #fff;
}

.partners .owl-carousel .owl-nav button.owl-next:hover {
    background-color: #fff;
}

.partners-four {
    padding: 130px 0px 65px 0px;
}

.partners-four .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 57px;
}

.partners-four .owl-theme .owl-dots .owl-dot span {
    background-color: var(--theme-color);
    opacity: .3;
    box-shadow: 0px 0px 0px 1px var(--theme-color);
}

.partners-four .owl-theme .owl-dots .owl-dot.active span {
    background-color: var(--theme-color);
    opacity: 1;
    border: 3px solid #fff;
    border-radius: 50%;
}

.partners-four .owl-carousel .owl-item img {
    width: 67px;
    margin: auto;
}

.partner-logo-card-two {
    padding: 25px 70px;
    background: linear-gradient(90deg, rgba(255, 65, 108, 0.1) 0%, rgba(255, 75, 43, 0.1) 100%);
    border-radius: 5px;
    overflow: hidden;
}

.partner-logo-card-two img {
    transition: all .8s;
}

.partner-logo-card-two:hover img {
    transform: scale(1.1);
}

.partner-list-container-two .owl-carousel .owl-item img {
    width: 75%;
}

/* 9. Blogs css */
.blogs {
    padding: 65px 0px;
}

.single-blog-contents {
    padding: 130px 0px;
}

.blog-details-wrapper {
    padding: 0px 90px;
}

.single-blog-featured-img {
    border-radius: 6px;
}

.single-blog-meta-img {
    width: 13px;
}

.blog-content-body-quotation {
    padding: 65px 75px;
    background-color: var(--light-color);
    border-radius: 6px;
}

.single-blog-inner-img {
    border-radius: 6px;
}

.single-blog-body-list-item {
    margin-bottom: 38px;
}

.single-blog-likes-title {
    margin-right: 140px;
}

.likes-btn {
    border: 1px solid var(--border-color);
    border-radius: 3px;
    padding: 8px 20px;
}

.likes-btn span {
    transition: all .4s;
}

.likes-btn:hover span {
    color: #fff !important;
}

.likes-btn:hover {
    border: 1px solid var(--border-color);
}

.likes-btn svg {
    margin-right: 6px;
}

.likes-btn-two svg {
    margin-right: 6px;
}

.likes-btn-two span {
    transition: all .4s;
}

.likes-btn-two:hover span {
    color: var(--theme-color);
}

.reply-btn p {
    transition: all .4s;
}

.reply-btn:hover p {
    color: var(--theme-color);
}

.single-blog-comment-box {
    margin-top: 130px;
}

.single-blog-comment-input {
    padding: 20px 20px 140px 20px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    line-height: 1.7;
}

.comment-divider {
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    transform: rotate(0.29deg);
    margin: 30px 0px 50px 0px;
}

.single-blog-social-share {
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.blogs-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
}

.blog-card-btn svg {
    transition: all .4s;
    font-size: 18px;
    color: var(--theme-color);
    opacity: .8;
}

.blog-card-btn:hover svg {
    margin-left: 10px;
}

.blog-arrow {
    width: 24px;
    height: 24px;
}

.card-four-title {
    font-size: 22px;
}

.blog-card-img {
    max-height: 300px;
    width: 424px;
    border-radius: 6px 6px 0px 0px;
}

.blog-card-two-img {
    width: 424px;
    height: 215px;
    border-radius: 10px;
}

.blog-card-three-img {
    width: 384px;
    height: 214px;
    border-radius: 10px;
}

.blogs-container-three-full .blog-card-three-img {
    width: 100%;
}

.blog-card-date {
    color: var(--secondary-white-color);
}

.blog-card-body {
    padding: 30px;
}

.blog-card {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: #172a46;
}

.blog-two-card {
    border: none;
}

.blog-three-card {
    border: 1px solid rgba(255, 107, 0, 0.1);
    border-radius: 15px;
    padding: 20px;
}

.blog-card-two-body {
    padding: 0;
}

.blog-card-category {
    margin: 28px 0px 18px 0px;
    font-size: 14px;
}

.blog-time-container {
    margin: 28px 0px 18px 0px;
}

.blog-archieve {
    padding: 65px 0px 130px 0px;
}

.blog-pagination-container .pagination {
    gap: 8px;
}

.blog-pagination-container .pagination .page-item .page-link {
    width: 46px;
    height: 36px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    line-height: 24px;
}

.blog-pagination-container .pagination .page-item .page-link:hover {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    color: #fff;
}

.blog-pagination-container .pagination .page-item .pagination-link {
    line-height: 44px;
    background-color: var(--light-color);
    width: 46px;
    height: 36px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    display: inline-block;
}

.blog-pagination-container .pagination .page-item .pagination-link:hover {
    background-color: var(--theme-color);
    border: var(--theme-color);
}

.blog-pagination-container .pagination .page-item .pagination-link:hover svg {
    color: #fff !important;
}

.page-link-active {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    color: #fff;
}

.blog-details-thumb-icon {
    font-size: 15px;
}

.single-blog-social-items svg {
    transition: all .4s;
}

.single-blog-social-items svg:hover {
    transform: scale(1.3);
}

.home-one-body .blogs {
    padding: 65px 0px 130px 0px;
}

/* 10. Contact css */
.home-contact {
    padding: 65px 0px;
}

.home-four-contact {
    padding: 65px 0px 130px 0px;
}

.contact-page-form-section {
    padding: 65px 0px 130px 0px;
}

.home-contact-input {
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    line-height: 1.7;
}

.contact-page-input {
    padding: 11px 20px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    line-height: 1.7;
}

.home-one-contact-input {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    line-height: 1.7;
}

.home-four-textarea {
    height: 110px;
}

.home-four-contact-input {
    padding: 12px 24px;
    border-radius: 6px;
    line-height: 1.7;
}

.home-three-contact-input {
    padding: 12px;
    border: 1px solid var(--theme-color);
    border-radius: 6px;
    line-height: 1.7;
}

.home-contact-input ::placeholder,
.contact-page-input ::placeholder {
    color: var(--secondary-white-color);
    opacity: 1;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 0, 0.2);
}
.form-message.problem{
    color: #f97d7d;
} 
.form-message.success{
    color: #7df9a2;
}
.home-one-contact-input ::placeholder {
    color: var(--secondary-white-color);
    opacity: 1;
}

.home-contact-input:-ms-input-placeholder,
.contact-page-input:-ms-input-placeholder {
    color: var(--secondary-white-color);
}

.home-one-contact-input:-ms-input-placeholder {
    color: var(--secondary-white-color);
}

.home-contact-input::-ms-input-placeholder,
.contact-page-input::-ms-input-placeholder {
    color: var(--secondary-white-color);
}

.home-one-contact-input::-ms-input-placeholder {
    color: var(--secondary-white-color);
}

.home-contact-icon-container {
    padding-left: 80px;
}

.home-one-contact-info-col {
    padding-right: 200px;
}

.contact-three {
    padding: 65px 0px;
}

.contact-three-img {
    width: 842px;
    height: 700px;
    border-radius: 8px;
}

.contact-three-form-container {
    padding: 45px 50px;
    width: 650px;
    background: #FFF3EA;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -80px;
}

.contact-cta {
    padding: 65px 0px 130px 0px;
}

.cta-container {
    background-image: url(../img/conactCtaBg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 85px 30%;
    border-radius: 10px;
    animation-name: MoveBg;
    animation-duration: 6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.cta-container-two {
    padding: 0px 30%;
    background: linear-gradient(0deg, rgba(12, 12, 31, 0.7), rgba(12, 12, 31, 0.7));
    border-radius: 10px;
}

.contact-cta-btn {
    padding: 10px 32px;
    background-color: var(--theme-color);
    color: #fff;
    font-weight: 500;
    border-radius: 6px;
}

.contact-cta-btn:hover {
    background-color: var(--theme-color);
    color: #fff;
}

.contact-details-box-title {
    font-size: 38px;
}

.contact-details-box {
    border: 1px solid #ff6b0033;
    border-radius: 10px;
    width: fit-content;
    padding: 60px 75px;
}

.contact-map {
    margin-bottom: -7px;
}

.contact-map iframe {
    width: 100%;
}

.light-orange-bg-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-color);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-contact-icon-container .light-orange-bg-icon svg {
    font-size: 28px;
}

.orange-bg-icon {
    width: 42px;
    height: 42px;
    background-color: var(--theme-color);
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .4s;
    border-top: 3px solid transparent;
    border-right: 3px solid transparent;
}

.orange-bg-icon:hover {
    background-color: #fff;
    border-color: var(--theme-color);
}

.orange-bg-icon:hover svg {
    color: var(--theme-color) !important;
}

/* 11. Portfolio css  */
.portfolio {
    padding: 65px 0px;
}

.portfolio-text-over-img-container a {
    z-index: 99;
}

.portfolio-two {
    padding: 130px 0px 0px 0px;
}

.portfolio-archieve {
    padding: 130px 0px;
}

.portfolio-archieve-two {
    padding: 65px 0px 130px 0px;
}

.portfolio-three {
    padding-top: 65px;
}

.portfolio-three-carousel {
    padding: 0px 15px;
}

.portfolio-three-carousel .owl-theme .owl-stage {
    left: 150px;
}

.portfolio-text-over-img-container {
    bottom: 60px;
}

.portfolio-text-over-img span::after {
    content: '';
    position: absolute;
    bottom: -10px;
    height: 2px;
    width: 30%;
    background-color: var(--theme-color);
    left: 50%;
    transform: translateX(-50%);
}

.portfolio-three .owl-carousel .owl-nav button.owl-prev img {
    width: 30px;
}

.portfolio-three .owl-carousel .owl-nav button.owl-next img {
    width: 30px;
}

.portfolio-three .owl-carousel .owl-nav {
    position: absolute;
    top: -105px;
    right: 140px;
}

.portfolio-three .owl-carousel .owl-nav button.owl-prev {
    padding: 15px 20px !important;
    border-radius: 30px;
    border: 1px solid var(--theme-color);
    transition: all .3s;
}

.portfolio-three .owl-carousel .owl-nav button.owl-prev:hover {
    background-color: var(--theme-color);
}

.portfolio-three .owl-carousel .owl-nav button.owl-next {
    padding: 15px 20px !important;
    border-radius: 30px;
    border: 1px solid var(--theme-color);
    transition: all .3s;
}

.portfolio-three .owl-carousel .owl-nav button.owl-next:hover {
    background-color: var(--theme-color);
}


.portfolio-massonary-items {
    overflow: hidden;
}

.portfolio-massonary-items img {
    width: 100%;
    height: 340px;
}

.portfolio-massonary-two-items img {
    width: 100%;
    height: 340px;
}

.portfolio-massonary-four-items img {
    width: 100%;
    height: 340px;
}

.portfolio-massonary-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 24px;
}

.portfolio-massonary-four-items:nth-child(2) {
    grid-column: 2/4
}

.portfolio-massonary-two-items:nth-child(1) {
    grid-column: 1/3
}

.portfolio-massonary-items:nth-child(8) {
    grid-column: 2/4
}

.portfolio-massonary-four-items {
    padding: 20px;
    border: 1px solid rgba(255, 107, 0, 0.1);
    border-radius: 15px;
}


.portfolio-card-overlay {
    height: 0%;
    display: flex;
    justify-content: center;
    background-color: #070b1093;
    visibility: hidden;
    transition: all .4s;
    border-radius: 5px;
}

.portfolio-card-overlay-contents {
    padding: 20px;
    background-color: var(--theme-color);
    margin: auto;
    width: 75%;
    bottom: -200px;
    border-radius: 6px;
    visibility: hidden;
    transition: all .4s;
}

.portfolio-card-overlay-contents a:hover {
    color: #fff;
}

.portfolio-massonary-items:hover .portfolio-card-overlay {
    height: 100%;
    visibility: visible;
}

.portfolio-massonary-items:hover .portfolio-card-overlay-contents {
    visibility: visible;
    bottom: 20px;
}

.portfolio-massonary-item-link {
    transition: all .3s;
}

.portfolio-massonary-item-link:hover {
    color: var(--theme-color);
}

.portfolio-details {
    padding: 65px 0px 130px 0px;
}

.service-details {
    padding: 65px 0px;
}

.control:hover {
    color: var(--white-color);
    position: relative;
}

.control:hover::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 30%;
    background-color: var(--theme-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.mixitup-control-active {
    color: var(--theme-color);
    font-weight: 600;
    position: relative;
}

.mixitup-control-active::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 30%;
    background-color: var(--theme-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.portfolio-two-img-height-one {
    height: 300px !important;
}

.portfolio-two-img-height-two {
    height: 350px !important;
}

.portfolio-two-img-height-three {
    height: 300px !important;
}

/* 12. Counter css */
.home-counter {
    padding: 130px 0px;
}

.about-counter {
    padding: 65px 0px 130px 0px;
}

.counter-wrapper {
    padding: 55px 0px;
    background-color: #FFF3EA;
    border-radius: 8px;
}

.counter-heading {
    font-size: 50px;
}

.counter-item {
    padding: 0px 90px;
}

.counter-seperator {
    border-right: 1px solid #E7DCD4;
}

/* 13. Footer css */
.footer {
    background-color: var(--white-color);
}

.footer-two {
    background-color: var(--light-color);
}

.footer-top {
    padding: 130px 0px;
    border-bottom: 1px solid #515151;
}

.footer-divider {
    height: 1px;
    background-color: var(--secondary-white-color);
    opacity: .05;
}

.footer-two-top {
    padding: 95px 0px;
}

.footer-logo {
    margin-bottom: 36px;
}

.footer-col-link-container {
    list-style-type: none;
    margin-top: 57px;
}

.footerbottom-right a {
    transition: all .4s;
}

.footerbottom-right a:hover {
    color: var(--theme-color) !important;
}

.footer-col-link-container .footer-link-item a {
    transition: all .4s;
}

.footer-col-link-container .footer-link-item a:hover {
    color: var(--theme-color) !important;
}

.footer-col-link-container-two .footer-link-item a {
    transition: all .4s;
}

.footer-col-link-container-two .footer-link-item a:hover {
    color: var(--theme-color) !important;
}

.footer-link-item {
    margin-bottom: 20px;
}

.footer-social-container {
    list-style-type: none;
    margin-top: 63px;
}

.footer-social-item-2 {
    margin-right: 20px;
}

.footer-social-item {
    margin-right: 20px;
    width: 50px;
    height: 50px;
    background-color: #606060;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 3px solid transparent;
    border-right: 3px solid transparent;
    transition: all .4s;
}

.footer-social-item:hover {
    background-color: var(--theme-color);
    border-color: #606060;
}

.footer-social-item:hover {
    background-color: var(--theme-color);
    border-color: #606060;
}

.footer-bottom {
    padding: 35px 0px;
}

.footer-col-one-texts {
    padding-right: 100px;
}

.footer-contact-form {
    width: 550px;
}

.footer-form-input {
    padding: 15px 20px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.footer-form-btn img {
    width: 40px;
}

.footer-form-btn {
    /* padding: 15px 20px; */
    background-color: var(--theme-color);
    border-radius: 6px;
}

.footer-form-btn:hover {
    background-color: var(--theme-color);
}

.footer-col-link-container-two {
    list-style-type: none;
}

.footer-two-form ::placeholder {
    color: #6a6a6a;
    opacity: 1;
}

.footer-two-form :-ms-input-placeholder {
    color: #6a6a6a;
}

.footer-two-form ::-ms-input-placeholder {
    color: #6a6a6a;
}



/* 14. Inner page Hero css */
.inner-page-hero-area {
    padding: 210px 0px 120px 0px;
    background-image: url(../img/innerPageHeroBg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* 15. Preloader */
.loader-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--body-bg);
    z-index: 99999;
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    color: var(--theme-color);
    display: inline-block;
    margin: -25px 0 0 -25px;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.lead {
    font-size: 13px;
}

.loader div {
    background-color: var(--theme-color);
    display: inline-block;
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    opacity: .5;
    border-radius: 50%;
    -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
    animation: ballPulseDouble 2s ease-in-out infinite;
}

.loader div:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}