/* 
    Theme Name : AGKN (Side Header)
    Theme Type : Portfolio Website
    Author : HarmanTheme
    Theme URL : https://mountainclimbersstar.com/demo/html/agkn 
    Version : 1.0.0
*/

/*
============================== :: INDEX OF CSS :: ==============================
1. Web Fonts
2. Global Variable Define
3. Common CSS
4. Preloder Style
5. Progress Scroll to Top Bottom
6. Hambuger Menu Style
7. Style Switcher Style
8. Main Wrapper Style
9. Cursor Style
10. Button Style
11. Header Style
12. Home Style
13. Text Slider Style
14. About Style
15. Services Style
16. Resume Style
17. Portfolio Style
18. Testimonial Style
19. Blog Style
20. Quote Text Style
21. Contact Style
22. Footer Style
23. Modal Style
*/

/* ===================================
1. Web Fonts
===================================*/
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* ===================================
2. Global Variable Define
===================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --body-bg: #101E2C;
    --section-bg: #17232e;
    --card-bg: #264C5D;
    --card-bg-gradient: linear-gradient(136deg, rgba(113, 229, 255, 0.11) 0%, rgba(241, 140, 114, 0.11) 44.33%, rgba(183, 110, 231, 0.12) 100%);
    --color-border: rgba(113, 229, 255, 21%);

    --color-midnightblue-900: #101E2C;
    --color-skyblue-900: #77BEFF;
    --color-text-700: #E2E8F0;
    --color-text-50: #909EB3;
    --color-white: #FFF;

    --primary-font: 'Poppins', sans-serif;
    --secondery-font: 'Cinzel Decorative', cursive;
}

/* ===================================
3. Common CSS
===================================*/
body {
    font-family: var(--primary-font);
    font-size: 16px;
    line-height: 28px;
    color: var(--color-text-700);
    background: var(--body-bg);
    overflow-x: hidden;
}

html,
body {
    scroll-behavior: smooth;
}

section,
.section {
    position: relative;
}

.container {
    width: 100%;
    margin: 0 auto;
}

p {
    margin-bottom: 0;
}

a {
    color: var(--color-text-700);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

a:hover {
    color: var(--color-skyblue-900);
}

a,
a:hover,
a:focus,
.btn:focus,
button,
button:focus {
    text-decoration: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

ol,
ul {
    margin: 0;
    padding: 0;
}

ol li,
ul li {
    list-style: none;
}

img {
    height: auto;
    max-width: 100%;
}

::selection {
    background: var(--color-skyblue-900);
    color: var(--color-midnightblue-900);
}

/* Width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--color-border);
}

/* Handle */
::-webkit-scrollbar-thumb {
    border: 3px solid rgba(0, 0, 0, 0);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-border-radius: 9999px;
    -moz-border-radius: 9999px;
    -ms-border-radius: 9999px;
    border-radius: 9999px;
    background-color: var(--color-skyblue-900);
}

.section-bg {
    background: var(--section-bg);
}

/* Section Padding */
.ptb_100 {
    padding: 100px 0;
}

/* Home Background Color */
.home-gradient-bg {
    background: -webkit-linear-gradient(225deg, #101E2C 0%, #101E2C 41.13%, #ACADAF 50.54%, #101E2C 60.37%, #101E2C 100%);
    background: -moz-linear-gradient(225deg, #101E2C 0%, #101E2C 41.13%, #ACADAF 50.54%, #101E2C 60.37%, #101E2C 100%);
    background: -ms-linear-gradient(225deg, #101E2C 0%, #101E2C 41.13%, #ACADAF 50.54%, #101E2C 60.37%, #101E2C 100%);
    background: -o-linear-gradient(225deg, #101E2C 0%, #101E2C 41.13%, #ACADAF 50.54%, #101E2C 60.37%, #101E2C 100%);
    background: linear-gradient(225deg, #101E2C 0%, #101E2C 41.13%, #ACADAF 50.54%, #101E2C 60.37%, #101E2C 100%);
}

/* Section Heading */
.section-heading {
    margin-bottom: 80px;
}

.section-heading h6 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-skyblue-900);
    font-family: var(--secondery-font);
    text-transform: capitalize;
}

.section-heading h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--color-skyblue-900);
    line-height: 50px;
    text-transform: capitalize;
}

/* ===================================
4. Preloder Style
===================================*/
#preloader {
    background: #ffff url(../images/preloder.gif)no-repeat center center;
    background-size: 14%;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 10000;
}

/* ===================================
5. Progress Scroll to Top Bottom
===================================*/
#scrollUp {
    position: fixed;
    right: 1%;
    bottom: 1%;
    height: 2.813rem;
    width: 2.5rem;
    border-radius: 0.25rem;
    text-align: center;
    cursor: pointer;
    z-index: 500;
    background: var(--card-bg);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
    box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -ms-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

#scrollUp i {
    line-height: 2.625rem;
}

#scrollUp.scrollActive {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

/* ===================================
6. Hambuger Menu Style
===================================*/
.hamburger-menu {
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 40px;
    overflow: hidden;
    z-index: 1;
}

.hamburger-menu span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -moz-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
    -o-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
    width: calc(100% - 15px);
    height: 3px;
    border-radius: 40px;
    background: var(--color-skyblue-900);
    -webkit-box-shadow: 0 -9px 0 var(--color-skyblue-900), 0 9px 0 var(--color-skyblue-900);
    -moz-box-shadow: 0 -9px 0 var(--color-skyblue-900), 0 9px 0 var(--color-skyblue-900);
    -ms-box-shadow: 0 -9px 0 var(--color-skyblue-900), 0 9px 0 var(--color-skyblue-900);
    -o-box-shadow: 0 -9px 0 var(--color-skyblue-900), 0 9px 0 var(--color-skyblue-900);
    box-shadow: 0 -9px 0 var(--color-skyblue-900), 0 9px 0 var(--color-skyblue-900);
    -webkit-transition-property: transform, box-shadow;
    -moz-transition-property: transform, box-shadow;
    -ms-transition-property: transform, box-shadow;
    -o-transition-property: transform, box-shadow;
    transition-property: transform, box-shadow;
    -webkit-transition-delay: 0s, 1s;
    -moz-transition-delay: 0s, 1s;
    -ms-transition-delay: 0s, 1s;
    -o-transition-delay: 0s, 1s;
    transition-delay: 0s, 1s;
    -webkit-transition-duration: 0.5s, 0.5s;
    -moz-transition-duration: 0.5s, 0.5s;
    -ms-transition-duration: 0.5s, 0.5s;
    -o-transition-duration: 0.5s, 0.5s;
    transition-duration: 0.5s, 0.5s;
}

.hamburger-menu.active span {
    -webkit-box-shadow: 50px -9px 0 #2C2C2C, -50px 9px 0 #2C2C2C;
    -moz-box-shadow: 50px -9px 0 #2C2C2C, -50px 9px 0 #2C2C2C;
    box-shadow: 50px -9px 0 #2C2C2C, -50px 9px 0 #2C2C2C;
    -webkit-transform: translate(-50%, -50%) rotate(-315deg);
    -moz-transform: translate(-50%, -50%) rotate(-315deg);
    -ms-transform: translate(-50%, -50%) rotate(-315deg);
    -o-transform: translate(-50%, -50%) rotate(-315deg);
    transform: translate(-50%, -50%) rotate(-315deg);
    -webkit-transition-property: box-shadow, transform;
    -moz-transition-property: box-shadow, transform;
    -ms-transition-property: box-shadow, transform;
    -o-transition-property: box-shadow, transform;
    transition-property: box-shadow, transform;
    -webkit-transition-delay: 0s, 0.5s;
    -moz-transition-delay: 0s, 0.5s;
    -ms-transition-delay: 0s, 0.5s;
    -o-transition-delay: 0s, 0.5s;
    transition-delay: 0s, 0.5s;
    -webkit-transition-duration: 0.5s, 0.5s;
    -moz-transition-duration: 0.5s, 0.5s;
    -ms-transition-duration: 0.5s, 0.5s;
    -o-transition-duration: 0.5s, 0.5s;
    transition-duration: 0.5s, 0.5s;
}

.hamburger-menu span::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 3px;
    height: 36px;
    border-radius: 40px;
    background: var(--color-skyblue-900);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-delay: 0.5s;
    -moz-transition-delay: 0.5s;
    -ms-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.hamburger-menu.active span::before {
    top: 50%;
    -webkit-transition-delay: 1s;
    -moz-transition-delay: 1s;
    -ms-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s;
}

/* ===================================
7. Style Switcher Style
===================================*/
.color-switcher {
    position: fixed;
    top: 30%;
    right: -200px;
    width: 200px;
    padding: 10px;
    background: #FFF;
    border-radius: 0 0 0 5px;
    z-index: 10;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.color-switcher.active {
    right: 0;
}

.color-switcher h3 {
    font-size: 19px;
    font-weight: 600;
    color: var(--color-midnightblue-900);
    text-align: center;
    padding: 5px 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.color-switcher .switcher-btn {
    position: absolute;
    top: 0;
    left: -41px;
    background: #FFF;
    color: var(--color-midnightblue-900);
    padding: 9px 12px;
    font-size: 17px;
    border-radius: 5px 0 0 5px;
    cursor: pointer;
    -webkit-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
    box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
}

.color-switcher .switcher-btn i {
    vertical-align: middle;
}

.color-switcher .theme-buttons-container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
}

.color-switcher .theme-buttons-container .theme-button {
    display: block;
    height: 30px;
    width: 30px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
}

.color-switcher .default-cursor {
    font-size: 14px;
    font-weight: 500;
    color: #FFF;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 0;
    padding: 13px 0;
    background: var(--color-skyblue-900);
    border-radius: 4px;
    cursor: pointer;
    -webkit-box-shadow: 0px -20px 25px 0px rgba(0, 0, 0, 0.15) inset, 0px 17px 25px 0px rgba(0, 0, 0, 0.15) inset;
    -moz-box-shadow: 0px -20px 25px 0px rgba(0, 0, 0, 0.15) inset, 0px 17px 25px 0px rgba(0, 0, 0, 0.15) inset;
    -ms-box-shadow: 0px -20px 25px 0px rgba(0, 0, 0, 0.15) inset, 0px 17px 25px 0px rgba(0, 0, 0, 0.15) inset;
    -o-box-shadow: 0px -20px 25px 0px rgba(0, 0, 0, 0.15) inset, 0px 17px 25px 0px rgba(0, 0, 0, 0.15) inset;
    box-shadow: 0px -20px 25px 0px rgba(0, 0, 0, 0.15) inset, 0px 17px 25px 0px rgba(0, 0, 0, 0.15) inset;
}

/* ===================================
8. Main Wrapper Style
===================================*/
.main-wrapper {
    margin-left: 255px;
}

/* ===================================
9. Cursor Style
===================================*/

/* ===================================
10. Button Style
===================================*/
.btn {
    width: max-content;
    display: inline-block;
    color: var(--color-skyblue-900);
    font-size: 16px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid var(--color-skyblue-900);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.btn-fill {
    background: var(--color-skyblue-900);
    color: var(--color-midnightblue-900);
}

.btn:hover {
    background: #FFF;
    color: var(--color-midnightblue-900);
    border-color: transparent;
}

/* ===================================
11. Header Style
===================================*/
.navbar {
    width: 255px;
    height: 100vh;
    background: var(--section-bg);
    border-right: 1px solid #23405e;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0;
    z-index: 999;
    overflow: hidden;
    overflow-y: auto;
}

.navbar .navbar-collapse .navbar-nav {
    flex-direction: column !important;
    width: 100%;
    align-items: center;
}

.navbar .navbar-nav .nav-item {
    width: 100%;
}

.navbar .navbar-nav .nav-link {
    padding: 8px 0;
    color: var(--color-text-700);
    text-transform: capitalize;
    white-space: nowrap;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.navbar .navbar-nav .nav-link:hover {
    color: var(--color-skyblue-900);
}

.navbar-nav .nav-link.active {
    color: var(--color-skyblue-900) !important;
}

.navbar-brand {
    margin: 0;
    text-align: center;
}

.navbar-brand img {
    max-width: 130px;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.navbar-brand img:hover {
    opacity: .7;
}

.navbar .navbar-collapse {
    margin-top: 10px;
}

.navbar .social-icons {
    display: flex;
    padding: 0;
}

.navbar .social-icons li {
    margin: 0 8px 0;
}

/* ===================================
12. Home Style
===================================*/
.home {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.home-content {
    min-height: 100vh;
    padding-top: 70px;
}

.home .home-text {
    position: relative;
    z-index: 1;
}

.home .home-text::before {
    content: "";
    position: absolute;
    top: -15%;
    left: -15%;
    width: 470.863px;
    height: 488.155px;
    -webkit-border-radius: 488.155px;
    -moz-border-radius: 488.155px;
    -ms-border-radius: 488.155px;
    border-radius: 488.155px;
    opacity: 0.8;
    background: -webkit-linear-gradient(180deg, rgba(89, 177, 230, 0.30) 0%, rgba(183, 110, 231, 0.30) 50.34%, rgba(241, 140, 114, 0.30) 100%);
    background: -moz-linear-gradient(180deg, rgba(89, 177, 230, 0.30) 0%, rgba(183, 110, 231, 0.30) 50.34%, rgba(241, 140, 114, 0.30) 100%);
    background: -ms-linear-gradient(180deg, rgba(89, 177, 230, 0.30) 0%, rgba(183, 110, 231, 0.30) 50.34%, rgba(241, 140, 114, 0.30) 100%);
    background: -o-linear-gradient(180deg, rgba(89, 177, 230, 0.30) 0%, rgba(183, 110, 231, 0.30) 50.34%, rgba(241, 140, 114, 0.30) 100%);
    background: linear-gradient(180deg, rgba(89, 177, 230, 0.30) 0%, rgba(183, 110, 231, 0.30) 50.34%, rgba(241, 140, 114, 0.30) 100%);
    -webkit-filter: blur(99.75911712646484px);
    -moz-filter: blur(99.75911712646484px);
    -ms-filter: blur(99.75911712646484px);
    -o-filter: blur(99.75911712646484px);
    filter: blur(99.75911712646484px);
    z-index: -1;
}

.home .home-text h2 {
    font-size: 60px;
    font-weight: 800;
    padding: 17px 0;
}

.home .home-text h2 .bg-text {
    font-size: 13px;
    font-weight: 600;
    background: var(--color-skyblue-900);
    color: var(--color-midnightblue-900);
    padding: 8px 13px;
    border-radius: 30px;
    vertical-align: middle;
}

.home .home-text h2 .strok-text {
    color: transparent;
    letter-spacing: 1px;
    -webkit-text-stroke: 1px var(--color-text-700);
}

.home .home-text .home-btn-group {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.home .home-text .home-btn-group a:last-child {
    margin-left: 20px;
    color: var(--color-skyblue-900);
}

.home .home-text .home-btn-group a:last-child i {
    font-size: 15px;
}

.home .home-text .home-work-details-wrap {
    margin-top: 40px;
}

.home .home-text .home-work-details-wrap .home-work-details {
    margin-bottom: 20px;
}

.home .home-text .home-work-details-wrap .home-work-details h5 {
    color: var(--color-skyblue-900);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 5px;
}

.home .home-text .home-work-details-wrap .home-work-details p,
.home .home-text .home-work-details-wrap .home-work-details p a {
    color: var(--color-skyblue-900);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.home .home-image-exp {
    position: relative;
    text-align: right;
}

.home .home-image-exp .home-image {
    position: relative;
}

.home .home-image-exp .home-image .img {
    position: relative;
}

.home .home-image-exp .home-image .img img {
    position: relative;
    background: transparent;
}

.home .home-image-exp .home-image .img::after {
    content: "";
    width: 85%;
    position: absolute;
    top: 1.6%;
    left: 7.6%;
    bottom: 0;
    background-image: url(../images/Ellipse\ 2.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
    -webkit-animation: rotate 11.3s linear infinite;
    -moz-animation: rotate 11.3s linear infinite;
    -ms-animation: rotate 11.3s linear infinite;
    -o-animation: rotate 11.3s linear infinite;
    animation: rotate 11.3s linear infinite;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.home .home-image-exp .arrow {
    height: 250px;
    width: 250px;
    background: transparent;
    border: 2px solid var(--color-skyblue-900);
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.home .home-image-exp .arrow:hover {
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    background: var(--color-skyblue-900);
}

.home .home-image-exp .arrow i {
    font-size: 50px;
    color: var(--color-text-700);
    position: relative;
    -webkit-animation: fadeInDown 1.5s infinite;
    -moz-animation: fadeInDown 1.5s infinite;
    -ms-animation: fadeInDown 1.5s infinite;
    -o-animation: fadeInDown 1.5s infinite;
    animation: fadeInDown 1.5s infinite;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        top: -25px;
    }

    100% {
        opacity: 1;
        top: 10px;
    }
}

@-moz-keyframes fadeInDown {
    0% {
        opacity: 0;
        top: -25px;
    }

    100% {
        opacity: 1;
        top: 10px;
    }
}

@-o-keyframes fadeInDown {
    0% {
        opacity: 0;
        top: -25px;
    }

    100% {
        opacity: 1;
        top: 10px;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        top: -25px;
    }

    100% {
        opacity: 1;
        top: 10px;
    }
}


/* ===================================
13. Text Slider Style
===================================*/
.text-scroller {
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    padding-top: 50px;
    z-index: 10;
}

.text-scroller::-webkit-scrollbar {
    display: none;
}

.text-scroller-in {
    display: inline-block;
    white-space: nowrap;
    -webkit-animation-name: scroll;
    -moz-animation-name: scroll;
    -ms-animation-name: scroll;
    -o-animation-name: scroll;
    animation-name: scroll;
    -webkit-animation-duration: 30s;
    -moz-animation-duration: 30s;
    -ms-animation-duration: 30s;
    -o-animation-duration: 30s;
    animation-duration: 30s;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -ms-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.text-scroller-in h4 {
    display: inline-block;
    font-size: 110px;
    font-weight: 800;
    margin-right: 20px;
    font-family: var(--secondery-font);
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px var(--color-skyblue-900);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.text-scroller-in h4:hover {
    color: var(--color-skyblue-900);
}

@-webkit-keyframes scroll {
    from {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@-moz-keyframes scroll {
    from {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@-o-keyframes scroll {
    from {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes scroll {
    from {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

/* ===================================
14. About Style
===================================*/
.about-image-exp {
    padding: 0 50px;
    position: relative;
}

.about .about-image {
    position: relative;
    -webkit-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
    box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
}

.about .about-image img {
    border-radius: 20px;
}

.about .about-image .shap svg {
    position: absolute;
    height: 145px;
    width: 145px;
    -webkit-animation: float 3s linear infinite;
    -moz-animation: float 3s linear infinite;
    -ms-animation: float 3s linear infinite;
    -o-animation: float 3s linear infinite;
    animation: float 3s linear infinite;
}

.about .about-image .shap svg path {
    fill: var(--color-skyblue-900);
}

.about .about-image .shap svg:first-child {
    top: -25px;
    right: -25px;
}

.about .about-image .shap svg:last-child {
    bottom: -30px;
    left: -25px;
}

@-webkit-keyframes float {
    0% {
        -webkit-transform: translateY(0rem);
        -moz-transform: translateY(0rem);
        -ms-transform: translateY(0rem);
        -o-transform: translateY(0rem);
        transform: translateY(0rem);
    }

    50% {
        -webkit-transform: translateY(-0.7rem);
        -moz-transform: translateY(-0.7rem);
        -ms-transform: translateY(-0.7rem);
        -o-transform: translateY(-0.7rem);
        transform: translateY(-0.7rem);
    }
}

@-moz-keyframes float {
    0% {
        -webkit-transform: translateY(0rem);
        -moz-transform: translateY(0rem);
        -ms-transform: translateY(0rem);
        -o-transform: translateY(0rem);
        transform: translateY(0rem);
    }

    50% {
        -webkit-transform: translateY(-0.7rem);
        -moz-transform: translateY(-0.7rem);
        -ms-transform: translateY(-0.7rem);
        -o-transform: translateY(-0.7rem);
        transform: translateY(-0.7rem);
    }
}

@-o-keyframes float {
    0% {
        -webkit-transform: translateY(0rem);
        -moz-transform: translateY(0rem);
        -ms-transform: translateY(0rem);
        -o-transform: translateY(0rem);
        transform: translateY(0rem);
    }

    50% {
        -webkit-transform: translateY(-0.7rem);
        -moz-transform: translateY(-0.7rem);
        -ms-transform: translateY(-0.7rem);
        -o-transform: translateY(-0.7rem);
        transform: translateY(-0.7rem);
    }
}

@keyframes float {
    0% {
        -webkit-transform: translateY(0rem);
        -moz-transform: translateY(0rem);
        -ms-transform: translateY(0rem);
        -o-transform: translateY(0rem);
        transform: translateY(0rem);
    }

    50% {
        -webkit-transform: translateY(-0.7rem);
        -moz-transform: translateY(-0.7rem);
        -ms-transform: translateY(-0.7rem);
        -o-transform: translateY(-0.7rem);
        transform: translateY(-0.7rem);
    }
}

.about .about-content {
    margin-bottom: 25px;
}

.about .about-content h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about .about-content h3 span {
    color: var(--color-skyblue-900);
}

.about .about-content p {
    font-size: 16px;
    margin-bottom: 13px;
}

.about .about-cards {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    gap: 15px;
}

.about .about-cards .about-card {
    width: 100%;
    padding: 20px;
    background: var(--color-skyblue-900);
    color: var(--color-midnightblue-900);
    border-radius: 20px;
    text-align: center;
    border: 1px solid transparent;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.about .about-cards .about-card:hover {
    background: transparent;
    border-color: var(--color-skyblue-900);
    color: var(--color-text-700);
}

.about .about-cards .about-card i {
    font-size: 22px;
    margin-bottom: 15px;
}

.about .about-cards .about-card h5 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

.about .about-cards .about-card small {
    font-size: 12px;
    font-weight: 500;
}

.about .personal-info {
    margin-top: 90px;
}

.about .personal-info .info-item p {
    padding: 10px 0;
    font-weight: 600;
    border-bottom: 1px solid var(--color-border);
}

.about .personal-info .info-item p span {
    font-weight: 400;
    margin-left: 6px;
    display: inline-block;
}

.about .about-btn-group {
    margin-top: 40px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    gap: 20px;
}

/* ===================================
15. Services Style
===================================*/
.service .single-service-card {
    padding: 50px 45px;
    margin-bottom: 30px;
    border-radius: 10px;
    background: var(--card-bg-gradient);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.service .single-service-card:hover {
    background: -webkit-linear-gradient(136deg, rgba(183, 110, 231, 0.12)0%, rgba(241, 140, 114, 0.11) 44.33%, rgba(113, 229, 255, 0.11) 100%);
    background: -moz-linear-gradient(136deg, rgba(183, 110, 231, 0.12)0%, rgba(241, 140, 114, 0.11) 44.33%, rgba(113, 229, 255, 0.11) 100%);
    background: -ms-linear-gradient(136deg, rgba(183, 110, 231, 0.12)0%, rgba(241, 140, 114, 0.11) 44.33%, rgba(113, 229, 255, 0.11) 100%);
    background: -o-linear-gradient(136deg, rgba(183, 110, 231, 0.12)0%, rgba(241, 140, 114, 0.11) 44.33%, rgba(113, 229, 255, 0.11) 100%);
    background: linear-gradient(136deg, rgba(183, 110, 231, 0.12)0%, rgba(241, 140, 114, 0.11) 44.33%, rgba(113, 229, 255, 0.11) 100%);
    -webkit-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
    box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
}

.service .single-service-card .card-icon {
    position: relative;
    margin-bottom: 40px;
}

.service .single-service-card .card-icon img {
    width: 75px;
    position: relative;
    z-index: 1;
}

.service .single-service-card:hover .card-icon img {
    -webkit-animation: vibrate-1 0.4s linear infinite both;
    -moz-animation: vibrate-1 0.4s linear infinite both;
    -ms-animation: vibrate-1 0.4s linear infinite both;
    -o-animation: vibrate-1 0.4s linear infinite both;
    animation: vibrate-1 0.4s linear infinite both;
}

@-webkit-keyframes vibrate-1 {
    0% {
        -webkit-transform: translate(0);
        -moz-transform: translate(0);
        -ms-transform: translate(0);
        -o-transform: translate(0);
        transform: translate(0);
    }

    20% {
        -webkit-transform: translate(-2px, 2px);
        -moz-transform: translate(-2px, 2px);
        -ms-transform: translate(-2px, 2px);
        -o-transform: translate(-2px, 2px);
        transform: translate(-2px, 2px);
    }

    40% {
        -webkit-transform: translate(-2px, -2px);
        -moz-transform: translate(-2px, -2px);
        -ms-transform: translate(-2px, -2px);
        -o-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px);
    }

    60% {
        -webkit-transform: translate(2px, 2px);
        -moz-transform: translate(2px, 2px);
        -ms-transform: translate(2px, 2px);
        -o-transform: translate(2px, 2px);
        transform: translate(2px, 2px);
    }

    80% {
        -webkit-transform: translate(2px, -2px);
        -moz-transform: translate(2px, -2px);
        -ms-transform: translate(2px, -2px);
        -o-transform: translate(2px, -2px);
        transform: translate(2px, -2px);
    }

    100% {
        -webkit-transform: translate(0);
        -moz-transform: translate(0);
        -ms-transform: translate(0);
        -o-transform: translate(0);
        transform: translate(0);
    }
}

@-moz-keyframes vibrate-1 {
    0% {
        -webkit-transform: translate(0);
        -moz-transform: translate(0);
        -ms-transform: translate(0);
        -o-transform: translate(0);
        transform: translate(0);
    }

    20% {
        -webkit-transform: translate(-2px, 2px);
        -moz-transform: translate(-2px, 2px);
        -ms-transform: translate(-2px, 2px);
        -o-transform: translate(-2px, 2px);
        transform: translate(-2px, 2px);
    }

    40% {
        -webkit-transform: translate(-2px, -2px);
        -moz-transform: translate(-2px, -2px);
        -ms-transform: translate(-2px, -2px);
        -o-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px);
    }

    60% {
        -webkit-transform: translate(2px, 2px);
        -moz-transform: translate(2px, 2px);
        -ms-transform: translate(2px, 2px);
        -o-transform: translate(2px, 2px);
        transform: translate(2px, 2px);
    }

    80% {
        -webkit-transform: translate(2px, -2px);
        -moz-transform: translate(2px, -2px);
        -ms-transform: translate(2px, -2px);
        -o-transform: translate(2px, -2px);
        transform: translate(2px, -2px);
    }

    100% {
        -webkit-transform: translate(0);
        -moz-transform: translate(0);
        -ms-transform: translate(0);
        -o-transform: translate(0);
        transform: translate(0);
    }
}

@-o-keyframes vibrate-1 {
    0% {
        -webkit-transform: translate(0);
        -moz-transform: translate(0);
        -ms-transform: translate(0);
        -o-transform: translate(0);
        transform: translate(0);
    }

    20% {
        -webkit-transform: translate(-2px, 2px);
        -moz-transform: translate(-2px, 2px);
        -ms-transform: translate(-2px, 2px);
        -o-transform: translate(-2px, 2px);
        transform: translate(-2px, 2px);
    }

    40% {
        -webkit-transform: translate(-2px, -2px);
        -moz-transform: translate(-2px, -2px);
        -ms-transform: translate(-2px, -2px);
        -o-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px);
    }

    60% {
        -webkit-transform: translate(2px, 2px);
        -moz-transform: translate(2px, 2px);
        -ms-transform: translate(2px, 2px);
        -o-transform: translate(2px, 2px);
        transform: translate(2px, 2px);
    }

    80% {
        -webkit-transform: translate(2px, -2px);
        -moz-transform: translate(2px, -2px);
        -ms-transform: translate(2px, -2px);
        -o-transform: translate(2px, -2px);
        transform: translate(2px, -2px);
    }

    100% {
        -webkit-transform: translate(0);
        -moz-transform: translate(0);
        -ms-transform: translate(0);
        -o-transform: translate(0);
        transform: translate(0);
    }
}

@keyframes vibrate-1 {
    0% {
        -webkit-transform: translate(0);
        -moz-transform: translate(0);
        -ms-transform: translate(0);
        -o-transform: translate(0);
        transform: translate(0);
    }

    20% {
        -webkit-transform: translate(-2px, 2px);
        -moz-transform: translate(-2px, 2px);
        -ms-transform: translate(-2px, 2px);
        -o-transform: translate(-2px, 2px);
        transform: translate(-2px, 2px);
    }

    40% {
        -webkit-transform: translate(-2px, -2px);
        -moz-transform: translate(-2px, -2px);
        -ms-transform: translate(-2px, -2px);
        -o-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px);
    }

    60% {
        -webkit-transform: translate(2px, 2px);
        -moz-transform: translate(2px, 2px);
        -ms-transform: translate(2px, 2px);
        -o-transform: translate(2px, 2px);
        transform: translate(2px, 2px);
    }

    80% {
        -webkit-transform: translate(2px, -2px);
        -moz-transform: translate(2px, -2px);
        -ms-transform: translate(2px, -2px);
        -o-transform: translate(2px, -2px);
        transform: translate(2px, -2px);
    }

    100% {
        -webkit-transform: translate(0);
        -moz-transform: translate(0);
        -ms-transform: translate(0);
        -o-transform: translate(0);
        transform: translate(0);
    }
}

.service .single-service-card h5 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}

/* ===================================
16. Resume Style
===================================*/
.resume .title {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
}

.resume .title::before {
    content: "";
    height: 4px;
    width: 50px;
    background: var(--color-skyblue-900);
    position: absolute;
    top: 100%;
    left: 0;
}

.resume .title::after {
    content: "";
    height: 4px;
    width: 25px;
    background: var(--color-skyblue-900);
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
}

.resume .resume-box {
    padding: 20px;
    border: 1px solid var(--color-border);
    margin-bottom: 30px;
    position: relative;
}

.resume .resume-box.expriance {
    background: var(--card-bg);
    border-color: transparent;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.resume .resume-box.expriance:hover {
    background: transparent;
    border-color: var(--color-border);
}

.resume .resume-box .resume-count {
    position: absolute;
    right: 22px;
    top: 21px;
    color: var(--color-skyblue-900);
    font-size: 30px;
    font-weight: 700;
    opacity: 0.3;
}

.resume .resume-box .resume-date {
    font-size: 25px;
    font-weight: 600;
    color: var(--color-skyblue-900);
    margin-bottom: 15px;
    font-family: var(--secondery-font);
}

.resume .resume-box .resume-heading {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}

.resume .resume-box .resume-title {
    font-size: 15px;
    color: var(--color-skyblue-900);
    margin-bottom: 20px;
}

.resume .resume-box .resume-text {
    color: var(--color-text-50);
}

.resume .skill-item .skill-icon img {
    width: 30px;
}

.resume .skill-item .skill-icon h5 {
    font-size: 16px;
    font-weight: 600;
    line-height: 35px;
    margin: 0;
}

.resume .skill-item .skill-progress {
    background: var(--card-bg);
    height: 7px;
    width: 100%;
    border-radius: 4px;
    position: relative;
}

.resume .skill-item .skill-progress .progress-in {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 4px;
    background: var(--color-skyblue-900);
}

.resume .skill-item .skill-progress .skill-precent {
    position: absolute;
    right: 0;
    top: -35px;
    font-weight: 400;
    font-size: 16px;
    line-height: 35px;
}

/* ===================================
17. Portfolio Style
===================================*/
.portfolio .portfolio-card {
    padding: 25px;
    border: 1px solid transparent;
    background: var(--card-bg);
    border-radius: 30px;
    margin-bottom: 30px;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.portfolio .portfolio-card:hover {
    background: transparent;
    border-color: var(--color-border);
    -webkit-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
    box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
}

.portfolio .portfolio-card .portfolio-image {
    border-radius: 30px;
    overflow: hidden;
}

.portfolio .portfolio-card .portfolio-image img {
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.portfolio .portfolio-card:hover .portfolio-image img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.portfolio .portfolio-card h3 {
    font-size: 19px;
    font-weight: 500;
    line-height: 1.6;
    margin: 20px 0 25px;
}

.portfolio .portfolio-card .portfolio-btn-group {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
}

.portfolio .portfolio-card .portfolio-btn-group .icon {
    font-size: 22px;
    color: var(--color-midnightblue-900);
    background: var(--color-skyblue-900);
    border: 1px solid transparent;
    height: 40px;
    width: 40px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 15px;
}

.portfolio .portfolio-card .portfolio-btn-group .icon:hover {
    background: #FFF;
    border-color: var(--color-skyblue-900);
}

/* ===================================
18. Testimonial Style
===================================*/
.testimonial .testimonial-item {
    padding: 30px;
    border: 1px solid var(--color-border);
    border-radius: 30px;
    position: relative;
}

.testimonial .testimonial-item::before {
    background-image: url(../images/icon2.png);
    background-repeat: no-repeat;
    content: "";
    position: absolute;
    top: 8px;
    right: 25px;
    width: 80px;
    height: 80px;
    opacity: 0.6;
    z-index: -1;
}

.testimonial .testimonial-item .testimonial-info {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 10px;
}

.testimonial .testimonial-item p {
    font-size: 14px;
    line-height: 24px;
}

.testimonial .testimonial-item .testimonial-info .author-img img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
}

.testimonial .testimonial-item .testimonial-info .cont .rating i {
    font-size: 9px;
    color: #FED152;
}

.testimonial .testimonial-item .testimonial-info .cont h6 {
    font-size: 15px;
    margin: 0;
    line-height: 1;
}

.testimonial .testimonial-item .testimonial-info .cont span {
    font-size: 12px;
    font-weight: 400;
}

/* ----- Splide Pagination Style ----- */
.splide__pagination {
    position: static;
    margin-top: 10px;
}

.splide__pagination li button {
    border: 1px solid var(--color-border);
    border-radius: 30px;
    display: block;
    height: 20px;
    width: 20px;
    margin: 5px 3px;
    background: transparent;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.splide__pagination li button::before {
    background-color: var(--color-border);
    border-radius: 50%;
    content: "";
    height: 10px;
    width: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -5px;
    margin-top: -5px;
}

.splide__pagination li button.is-active {
    border-color: var(--color-skyblue-900);
    background: transparent;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.splide__pagination li button.is-active::before {
    background: var(--color-skyblue-900);
}

/* ===================================
19. Blog Style
===================================*/
.blog .blog-inner {
    position: relative;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.blog .blog-inner:hover {
    -webkit-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
    box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
}

.blog .blog-inner .blog-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.blog .blog-inner .blog-img::before {
    background: #101F46;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    opacity: .45;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.blog .blog-inner:hover .blog-img::before {
    opacity: .70;
}

.blog .blog-inner .blog-cta {
    position: absolute;
    top: 30px;
    left: 30px;
}

.blog .blog-inner .blog-cta a {
    color: #E2E8F0;
}

.blog .blog-inner .blog-cta a:hover {
    color: var(--color-skyblue-900);
}

.blog .blog-inner.blog-sm .blog-cta {
    top: 20px;
    left: 20px;
}

.blog .blog-inner .blog-date {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--color-skyblue-900);
    color: var(--color-midnightblue-900);
    padding: 8px 10px;
    border-radius: 5px;
}

.blog .blog-inner.blog-sm .blog-date {
    top: 20px;
    right: 20px;
}

.blog .blog-inner .blog-date span {
    display: block;
    text-align: center;
    line-height: 20px;
    font-size: 15px;
    font-weight: 500;
}

.blog .blog-inner .blog-title {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.4;
}

.blog .blog-inner .blog-title a {
    color: #E2E8F0;
}

.blog .blog-inner .blog-title a:hover {
    color: var(--color-skyblue-900);
}

.blog .blog-inner.blog-sm .blog-title {
    left: 20px;
    right: 20px;
    bottom: 20px;
    font-size: 20px;
    line-height: 1.3;
}

/* Blog Modal */
.blog-details .modal-header {
    border: none;
}

.blog-details .modal-body img {
    border-radius: 10px;
}

.blog-details .blog-content-wrap .blog-post {
    margin-bottom: 5px;
}

.blog-details .blog-content-wrap .blog-post ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.blog-details .blog-content-wrap .blog-post ul li,
.blog-details .blog-content-wrap .blog-post ul li a {
    color: #9c9c9c;
    font-size: 14px;
}

.blog-details .blog-content-wrap .blog-post ul li a:hover {
    color: var(--color-skyblue-900);
}

.blog-details .blog-content-wrap .blog-content h3 {
    color: var(--color-midnightblue-900);
    font-size: 25px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-details .blog-content-wrap .blog-content {
    margin-bottom: 20px;
}

.blog-details .blog-content-wrap .blog-content p {
    color: #656565;
    margin-bottom: 10px;
}

.blog-details .blog-content-wrap .blog-content p:last-child {
    margin: 0;
}

.blog-details .blog-content-wrap .blog-tag {
    margin-bottom: 15px;
}

.blog-details .blog-content-wrap .blog-tag h4,
.blog-details .blog-content-wrap .blog-share h4 {
    font-size: 15px;
    color: var(--color-midnightblue-900);
}

.blog-details .blog-content-wrap .blog-tag ul,
.blog-details .blog-content-wrap .blog-share ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5px;
    row-gap: 9px;
}

.blog-details .blog-content-wrap .blog-tag ul li a {
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    font-size: 14px;
    color: #656565;
    padding: 4px 10px;
}

.blog-details .blog-content-wrap .blog-tag ul li a:hover {
    background: #F5F5F5;
}

.blog-details .blog-content-wrap .blog-share ul li a {
    border: 1px solid #e6e6e6;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 15px;
    color: var(--color-midnightblue-900);
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
}

/* ===================================
20. Quote Text Style
===================================*/
.qute {
    padding: 120px 0;
}

.qute .quote-item {
    position: relative;
}

.qute .quote-item p {
    font-size: 30px;
    font-weight: 700;
    line-height: 45px;
    width: 70%;
    text-align: center;
    margin: auto;
}

.qute .quote-item svg {
    position: absolute;
    width: 80px;
}

.qute .quote-item svg path {
    fill: var(--color-skyblue-900);
}

.qute .quote-item svg.quote-left {
    top: -70px;
    left: 41px;
    -webkit-animation: qutefloat 3s linear infinite;
    -moz-animation: qutefloat 3s linear infinite;
    -ms-animation: qutefloat 3s linear infinite;
    -o-animation: qutefloat 3s linear infinite;
    animation: qutefloat 3s linear infinite;
}

.qute .quote-item svg.quote-right {
    right: 70px;
    bottom: -90px;
    -webkit-animation: qutefloat 3s linear infinite;
    -moz-animation: qutefloat 3s linear infinite;
    -ms-animation: qutefloat 3s linear infinite;
    -o-animation: qutefloat 3s linear infinite;
    animation: qutefloat 3s linear infinite;
}

@-webkit-keyframes qutefloat {

    0%,
    100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-1.5rem);
        -moz-transform: translateY(-1.5rem);
        -ms-transform: translateY(-1.5rem);
        -o-transform: translateY(-1.5rem);
        transform: translateY(-1.5rem);
    }
}

@-moz-keyframes qutefloat {

    0%,
    100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-1.5rem);
        -moz-transform: translateY(-1.5rem);
        -ms-transform: translateY(-1.5rem);
        -o-transform: translateY(-1.5rem);
        transform: translateY(-1.5rem);
    }
}

@-o-keyframes qutefloat {

    0%,
    100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-1.5rem);
        -moz-transform: translateY(-1.5rem);
        -ms-transform: translateY(-1.5rem);
        -o-transform: translateY(-1.5rem);
        transform: translateY(-1.5rem);
    }
}

@keyframes qutefloat {

    0%,
    100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-1.5rem);
        -moz-transform: translateY(-1.5rem);
        -ms-transform: translateY(-1.5rem);
        -o-transform: translateY(-1.5rem);
        transform: translateY(-1.5rem);
    }
}

/* ===================================
21. Contact Style
===================================*/
.contact .contact-item {
    background: var(--card-bg);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    gap: 15px;
    padding: 20px;
    margin-bottom: 10px;
    border: 1px solid transparent;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.contact .contact-item:hover {
    background: transparent;
    border-color: var(--color-border);
    -webkit-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
    box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.1);
}

.contact .contact-item .contact-icon {
    background: var(--color-skyblue-900);
    font-size: 16px;
    color: var(--color-midnightblue-900);
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    border-radius: 50%;
}

.contact .contact-item h5 {
    font-size: 17px;
    margin: 0;
}

.contact .contact-item p {
    font-size: 15px;
}

.contact #contact-form .form-group {
    margin-bottom: 12px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group input,
.form-group textarea {
    padding: 15px;
    background: transparent;
    border-radius: 0;
    border: 1px solid var(--color-border);
    outline: none;
    color: var(--color-skyblue-900);
    font-size: 16px;
    font-weight: 400;
}

.form-group input::-moz-placeholder,
.form-group textarea::-moz-placeholder {
    color: #77bdff63;
}

.form-group input:-moz-placeholder,
.form-group textarea:-moz-placeholder {
    color: #77bdff63;
}

.form-group input::-ms-input-placeholder,
.form-group textarea::-ms-input-placeholder {
    color: #77bdff63;
}

.form-group input::-webkit-input-placeholder,
.form-group textarea::-webkit-input-placeholder {
    color: #77bdff63;
}

.form-message {
    margin-top: 10px;
    color: var(--color-skyblue-900);
}

/* ===================================
22. Footer Style
===================================*/
.footer {
    padding: 45px 0;
    background: var(--card-bg)
}

.footer .footer-socials {
    margin-bottom: 40px;
}

.footer .footer-socials ul li {
    display: inline-block;
    margin: 0 1%;
}

.footer .footer-socials ul li a {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    color: #E2E8F0;
    background: var(--color-midnightblue-900);
    border: 1px solid transparent;
    border-radius: 5px;
}

.footer .footer-socials ul li a:hover {
    color: var(--color-skyblue-900);
    background: transparent;
    border: 1px solid var(--color-midnightblue-900);
}

.footer .copyright-text {
    font-size: 16px;
}

.footer .copyright-text a {
    color: var(--color-skyblue-900);
}

.footer .footer-nav {
    text-align: end;
}

.footer .footer-nav li {
    display: inline-block;
}

.footer .footer-nav li a {
    position: relative;
}

.footer .footer-nav li:not(:last-child):after {
    margin-left: 12px;
    margin-right: 7px;
    display: inline-block;
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    vertical-align: middle;
    background: rgba(221, 221, 221, 0.712);
}

/* ===================================
23. Modal Style
===================================*/
.modal .modal-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-midnightblue-900);
}

.modal .modal-body .privacy-policy h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-midnightblue-900);
}

.modal .modal-body .privacy-policy h5 {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--color-midnightblue-900);
}

.modal .modal-body .privacy-policy h5 span {
    color: #656565;
    font-weight: 400;
}

.modal .modal-body .privacy-policy p {
    color: #656565;
}

.modal .modal-body .privacy-policy ul li {
    list-style: disc;
    margin-left: 35px;
    color: #656565;
}