/*--------------------------------------------------------------
>> TABLE OF CONTENTS:
----------------------------------------------------------------
/*--------------------------------------------------------------
01_Typography
02_ General_Style
    *Style Initialization
    *Button Style
    *Preloader
    *Back To Top
03_ Navbar_Header_Style
04_ Footer_Style
05_ Sizing Spacing Style
06_ Hero_Header & Breadcrum_Style
07_ Call_To_Action_Style
08_ Blog_Section & Page_Style
09_ About_Section & Page_Style
10_ Fun Fact Counter Style
11_ Marquee Text Style
12_ Project Section & Page Style
13_ Feature Section Style
14_ Award Section Style
15_ Team Section & Page Style
16_ Testimonial Section Style
17_ Contact Page Style
18_ Client Section Style
19_ Services Section & Pages Style
----------------------------------------------------------------*/


/*--------------------------------------------------------------
## Basic Color
----------------------------------------------------------------*/


/*--------------------------------------------------------------
01__Typography
----------------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=DM+Sans&family=Syne:wght@400;500;600&display=swap");
body,
html {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    overflow-x: hidden;
    background-color: #081D34;
    background-image: url(../img/Noise_BG_Main.jpg);
    background-position: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
    color: #CFDDE8;
    padding: 0;
    margin: 0px 0px 15px 0px;
    font-weight: 600;
    line-height: 1.3em;
    font-family: "Syne", sans-serif;
}

h1 {
    font-size: 3.25rem;
}

h2 {
    font-size: 3rem;
    line-height: 1.2;
    color: #fff;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.625rem;
}

h5 {
    font-size: 1.375rem;
}

h6 {
    font-size: 1.125rem;
}

p {
    font-size: 16px;
    line-height: 1.8rem;
    margin-bottom: 15px;
    color: #8FA8BD;
}

.text-upper {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
}

ul {
    list-style: square outside none;
}

ol {
    margin-left: 20px;
    margin-bottom: 25px;
}

li {
    list-style: none;
}

span {
    color: #fff;
}

img {
    border: 0;
    max-width: 100%;
    height: auto;
    overflow: hidden;
}

a {
    color: inherit;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s ease;
}

a:hover {
    text-decoration: none;
    color: #64cdd2;
}

button {
    color: inherit;
    transition: all 0.4s ease;
}

b,
strong {
    font-weight: bold;
}

input,
textarea {
    color: #0C464E;
}

ol>li {
    text-align: center;
    list-style-position: inside;
}

@media screen and (max-width: 991px) {
    h1 {
        font-size: 3rem;
        margin-bottom: 10px;
    }
    h2 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
}


/*--------------------------------------------------------------
02__General Style
----------------------------------------------------------------*/


/* Background Image */

.cs-bg-secondary {
    background-image: url(../img/Noise_BG_Secondary.jpg);
}

.cs-btn {
    display: inline-block;
    position: relative;
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #fff;
}

.cs-btn:hover {
    color: #64cdd2;
}

.cs-btn::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 1px;
    transition: all 0.3s ease-in-out;
}

.cs-btn:hover::before {
    width: 80%;
    transition: all 0.3s ease-in-out;
    background-color: #64cdd2;
}

button {
    background-color: #64cdd2;
    padding: 16px 30px;
    border: none;
    transition: all 0.4s ease-in-out;
}

button span {
    color: #081D34;
    font-family: "syne";
    font-size: 18px;
}

button:hover {
    background-color: #00428a;
}

button:hover span {
    color: #fff;
}


/* Section Heading Style */

.heading-caption {
    text-align: center;
    font-family: "Syne", sans-serif;
    background-image: url(../img/sec_caption.svg);
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 27px;
}

.heading-caption span {
    color: #64cdd2;
    font-size: 16px;
}

.section-title {
    text-align: center;
    margin-top: 12.5px;
    padding-bottom: 4.063rem;
}


/* Svg Button Style */

.svg-btn svg {
    background: #081D34;
    box-shadow: -1px -1px 4px #114546, 4px 4px 9px #070618, 0px 0px 7px #0E4D4E;
    padding: 15px;
    border-radius: 24px;
    transition: all 0.3s ease-in-out;
    width: 50px;
    margin-left: 10px;
}

.svg-btn:hover {
    color: #FFD55B;
}

.svg-btn:hover svg {
    background: #64cdd2;
    fill: #081D34;
    stroke: #081D34;
    transition: all 0.3s ease-in-out;
    box-shadow: inset -10px -10px 4px #04FFBC, inset 4px 4px 9px #005F2C, inset 10px 5px 7px #081D34;
}

.cs-item-middle {
    display: flex;
    align-items: center;
}

.border-bottom-1px {
    border-bottom: 1px solid #0D2238;
}

.color-white {
    color: #fff;
}

.margin-0 {
    margin: 0px;
}

.cs-paragraph-large {
    font-size: 20px;
    line-height: 150%;
}

.bg-color-primary {
    background: #64cdd2;
}

.bg-color-secondary {
    background: #FFD55B;
}


/* Preloader */

.loader {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #051A28;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader.hidden {
    animation: fadeOut 1s;
    animation-fill-mode: forwards;
}

@keyframes fadeOut {
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.cs-loader-line {
    margin: 0 auto;
    width: 10%;
    height: 3px;
    background-color: #74CCD3;
    animation: cs-loader-line 1s ease-in-out infinite alternate;
}

@keyframes cs-loader-line {
    0% {
        transform: scaleX(0.1);
        -webkit-transform: scaleX(0.1);
    }
    100% {
        transform: scaleX(2);
        -webkit-transform: scaleX(2);
    }
}


/* To Top */

.to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s;
}

.to-top.active {
    bottom: 30px;
    pointer-events: auto;
    opacity: 1;
}

@media screen and (min-width: 1199px) {
    .cs-zigzag {
        margin-top: 1.5rem;
    }
}

.cs_round_btn_wrap {
    padding: 15px;
    margin: -15px;
    display: inline-block;
}

.cs_round_btn {
    position: relative;
    overflow: hidden;
    height: 155px;
    width: 155px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #64ccd2;
    border-radius: 50%;
    padding: 30px 15px;
    color: #fff;
}

.cs_round_btn span {
    position: absolute;
    width: 0px;
    height: 0px;
    left: 0;
    top: 0;
    background-color: #64ccd2;
    z-index: -1;
    border-radius: 100%;
    transition: all 0.7s;
    transform: translate(-50%, -50%);
}

.cs_round_btn:hover {
    color: #081D34;
}

.cs_round_btn:hover span {
    height: 400px;
    width: 400px;
    opacity: 1;
}

.cs_circle_btn_wrap {
    position: relative;
    display: inline-block;
    transform: rotate(-20deg);
    opacity: 0;
    top: -30px;
    transition: all 0.65s ease-in-out;
}

.cs_circle_btn_wrap {
    top: 0;
    opacity: 1;
}

.cs_circle_btn_wrap {
    transform: rotate(0deg);
    transition-delay: 1.3s;
}


/*----------------------------------------*/


/*  ** CURSOR CSS START
/*----------------------------------------*/

[data-cursor] {
    border-radius: 50%;
}

[data-cursor="0"] {
    background-color: #FFD55B;
    height: 5px;
    width: 5px;
}

[data-cursor="1"] {
    border: 1px solid #FFD55B;
    height: 30px;
    width: 30px;
    transition: all 0.15s ease, left 0.3s linear, top 0.3s linear;
}

.cursor-hover--a [data-cursor="1"] {
    height: 60px;
    width: 60px;
    mix-blend-mode: difference;
    background-color: #FFD55B;
    opacity: 0.2;
    z-index: 100000;
}


/*--------------------------------------------------------------
**__General Style For home 2
----------------------------------------------------------------*/

.cs-heading-style-2 .heading-caption {
    text-align: left;
    background: none;
    margin-bottom: 0px;
}

.cs-heading-style-2 .heading-caption span {
    text-transform: uppercase;
}

.cs-heading-style-2 .section-title {
    padding: 0px;
}

.cs-heading-style-2 .section-title h2 {
    text-align: left;
    max-width: 800px;
    font-size: 52px;
    text-transform: capitalize;
    color: #fff;
}

.cs-heading-style-2 {
    display: flex;
    align-items: center;
    padding-bottom: 1.063rem;
    justify-content: flex-end;
}

.cs_round_btn_wrap_style_2 a {
    height: auto;
    width: auto;
    padding: 12px 26px;
    border-radius: 0px;
    text-transform: uppercase;
}

.cs-btn-for-arrow {
    max-width: none;
    display: inline;
}

.cs-btn-for-arrow a {
    padding: 10px;
    display: inline-flex;
    height: auto;
    width: auto;
}

@media screen and (max-width: 991px) {
    .cs-heading-style-2 {
        flex-direction: column;
        align-items: flex-start;
    }
    .cs-heading-style-2 .heading-area-arrow {
        margin-top: 1.5rem;
    }
}

@media screen and (max-width: 767px) {
    .cs-heading-style-2 {
        padding-bottom: 2.5rem;
    }
    .cs-heading-style-2 .section-title h2 {
        font-size: 42px;
    }
}


/*--------------------------------------------------------------
**__General Style For home 3
----------------------------------------------------------------*/

.cs-height-100vh {
    height: 100vh;
}


/***__Caption Style -*/

.cs-caption-style3 p {
    padding: 5px 15px;
    border: 1px solid #0C464E;
    border-radius: 25px;
    display: inline-block;
    color: #8FA8BD;
    text-transform: uppercase;
}

.cs-align-item-center {
    display: flex;
    align-items: center;
}


/***__Button Style -*/

.cs_btn.cs_style_1 {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding: 20px 0;
    padding-left: 32px;
    white-space: nowrap;
    color: #64cdd2;
}

.cs_btn.cs_style_1::before {
    content: "";
    position: absolute;
    height: 65px;
    width: 65px;
    border-radius: 50%;
    background-color: #0C464E;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
    transition: all 0.6s ease-in-out;
}

.cs_btn.cs_style_1 svg {
    margin-left: 15px;
}

.cs_btn.cs_style_1>* {
    position: relative;
    z-index: 2;
}

.cs_btn.cs_style_1:hover::before {
    height: 36px;
    width: 36px;
    left: 100%;
    margin-left: -28px;
}

.cs_btn.cs_style_1.cs_color_1 {
    color: #fff;
}

.cs-font-number {
    font-family: "dm sans";
}


/*--------------------------------------------------------------
03__Header Style
----------------------------------------------------------------*/

.cs-site-navbar {
    position: relative;
    z-index: 101;
}

.cs_site-branding {
    display: inline-block;
    max-width: 180px;
}

.cs-site-navbar {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0px;
    transition: all 0.4s ease;
}

.cs-site-navbar.cs-navbar-style .cs_main_header_in,
.cs-site-navbar.cs-navbar-style .cs_top_header_in {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 80px;
    position: relative;
}

.cs-site-navbar.cs-navbar-style .cs_main_header_right {
    display: flex;
    align-items: center;
    height: 100%;
    font-family: "syne";
    text-transform: uppercase;
}

.cs_nav+.cs_toolbox {
    margin-left: 55px;
}

.cs-site-navbar.cs-navbar-style.cs_sticky-active {
    background-color: #FFD55B;
    box-shadow: 0 10px 10px -10px rgba(33, 43, 53, 0.1);
}

.cs_nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.cs_sticky_header {
    position: fixed !important;
    width: 100%;
    z-index: 999;
}

.cs_gescout_sticky {
    position: fixed !important;
    top: -110px;
    opacity: 0;
    transition: all 0.4s ease;
    background-color: #031a2d;
}

.cs_gescout_show {
    top: 0 !important;
    opacity: 1;
}

.cs_site_branding {
    display: inline-block;
}

.cs_site_branding img {
    max-height: 45px;
    width: 300px;
}

@media screen and (min-width: 1200px) {
    .cs_main_header {
        position: relative;
    }
    .cs_main_header .container-fluid {
        padding-right: 40px;
        padding-left: 40px;
    }
    .cs_main_header_center,
    .cs_top_header_center {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .cs-site-navbar.cs-navbar-style .cs_main_header_center {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        width: 100%;
        max-width: calc(100% - 300px);
    }
    .cs-site-navbar.cs-navbar-style .cs_main_header_left {
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .cs_nav {
        display: flex;
        align-items: center;
        height: 100%;
        line-height: 1.6em;
        font-size: 16px;
    }
    .cs_nav .cs_nav_list {
        display: flex !important;
        flex-wrap: wrap;
        height: inherit;
    }
    .cs_nav .cs_nav_list>li {
        margin-right: 50px;
        height: inherit;
    }
    .cs_nav .cs_nav_list>li:last-child {
        margin-right: 0;
    }
    .cs_nav .cs_nav_list>li>a {
        padding: 10px 0;
        display: inline-flex;
        position: relative;
        height: inherit;
        align-items: center;
    }
    .cs_nav .cs_nav_list>li>ul {
        left: 0;
        top: calc(100% + 15px);
    }
    .cs_nav .cs_nav_list>li:hover>ul {
        top: 100%;
        opacity: 1;
        visibility: visible;
        transition: all 0.4s ease;
    }
    .cs_nav .cs_nav_list>li.menu-item-has-children>a {
        position: relative;
    }
    .cs_nav .cs_nav_list li:not(.cs_mega_menu) {
        position: relative;
    }
    .cs_nav .cs_nav_list ul {
        width: 260px;
        background-color: #0C464E;
        position: absolute;
        box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
        border-top: 2px solid #FFD55B;
        padding: 10px 0;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        display: block !important;
        border-radius: 0px 0px 5px 5px;
        transition: all 0.1s ease;
    }
    .cs_nav .cs_nav_list ul li:hover ul {
        top: 0px;
    }
    .cs_nav .cs_nav_list ul li:hover>ul {
        opacity: 1;
        visibility: visible;
        transition: all 0.4s ease;
    }
    .cs_nav .cs_nav_list ul a {
        display: block;
        line-height: inherit;
        padding: 10px 20px;
    }
    .cs_nav .cs_nav_list ul ul {
        top: 15px;
        left: 100%;
    }
    .cs_munu_toggle,
    .cs_munu_dropdown_toggle {
        display: none;
    }
    .cs_nav .cs_nav_list .cs_mega_wrapper {
        width: 1296px !important;
        left: 50%;
        transform: translateX(-50%);
        display: flex !important;
        position: absolute;
        padding: 5px 15px 10px;
    }
    .cs_nav .cs_nav_list .cs_mega_wrapper a {
        padding: 5px 10px;
    }
    .cs_nav .cs_nav_list .cs_mega_wrapper a img {
        border-radius: 5px;
        border: 1px solid rgba(181, 181, 181, 0.1);
        transition: all 0.5s ease;
    }
    .cs_nav .cs_nav_list .cs_mega_wrapper a:hover img {
        border-color: rgba(255, 213, 91, 0.6);
    }
    .cs_nav .cs_nav_list .cs_mega_wrapper>li {
        flex: 1;
        padding: 10px 0;
    }
    .cs_nav .cs_nav_list .cs_mega_wrapper>li>a:hover {
        background-color: transparent;
    }
    .cs_nav .cs_nav_list .cs_mega_wrapper>li ul {
        position: initial;
        border: none;
        padding: 0;
        width: 100%;
        box-shadow: none;
        background-color: transparent;
    }
    .cs_nav .cs_nav_list>li ul:not(.cs_mega_wrapper) .menu-item-has-children>a {
        position: relative;
    }
}

@media screen and (max-width: 1199px) {
    .cs_munu_dropdown_toggle {
        position: absolute;
        height: 30px;
        width: 100%;
        right: 20px;
        top: 5px;
    }
    .cs_munu_dropdown_toggle:before,
    .cs_munu_dropdown_toggle:after {
        content: "";
        display: block;
        position: absolute;
        left: 95%;
        top: 50%;
        transform: translate(-50%, -50%);
        height: 2px;
        width: 10px;
        background-color: #64cdd2;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    .cs_munu_dropdown_toggle:before {
        transform: translate(-50%, -50%) rotate(90deg);
    }
    .cs_munu_dropdown_toggle.active:before {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    .cs_nav .cs_nav_list {
        position: absolute;
        width: 100vw;
        left: -15px;
        background-color: #0C464E;
        padding: 10px 0;
        display: none;
        top: 100%;
        border-top: 1px solid #64cdd2;
        border-bottom: 1px solid #64cdd2;
        overflow: auto;
        max-height: calc(100vh - 80px);
        line-height: 1.6em;
    }
    .cs_nav .cs_nav_list ul {
        padding-left: 15px;
        display: none;
    }
    .cs_nav .cs_nav_list a {
        display: block;
        padding: 8px 20px;
    }
    .cs_nav .menu-item-has-children {
        position: relative;
    }
    /*     Mobile Menu Button     */
    .cs_munu_toggle {
        display: inline-block;
        width: 30px;
        height: 27px;
        cursor: pointer;
        position: absolute;
        top: 27px;
        right: 30px;
    }
    .cs_munu_toggle span,
    .cs_munu_toggle span:before,
    .cs_munu_toggle span:after {
        width: 100%;
        height: 2px;
        background-color: currentColor;
        display: block;
    }
    .cs_munu_toggle span {
        margin: 0 auto;
        position: relative;
        top: 12px;
        transition-duration: 0s;
        transition-delay: 0.2s;
    }
    .cs_munu_toggle span:before {
        content: "";
        position: absolute;
        margin-top: -9px;
        transition-property: margin, transform;
        transition-duration: 0.2s;
        transition-delay: 0.2s, 0s;
    }
    .cs_munu_toggle span:after {
        content: "";
        position: absolute;
        margin-top: 9px;
        transition-property: margin, transform;
        transition-duration: 0.2s;
        transition-delay: 0.2s, 0s;
    }
    .cs-site-navbar.cs-navbar-style .cs_munu_toggle {
        top: 50%;
        right: 0px;
        margin-top: -13px;
    }
    .cs_toggle_active span {
        background-color: rgba(0, 0, 0, 0);
        transition-delay: 0.2s;
    }
    .cs_toggle_active span:before {
        margin-top: 0;
        transform: rotate(45deg);
        transition-delay: 0s, 0.2s;
    }
    .cs_toggle_active span:after {
        margin-top: 0;
        transform: rotate(-45deg);
        transition-delay: 0s, 0.2s;
    }
    .cs_nav .cs_nav_list a {
        position: relative;
    }
    .cs-site-navbar.cs-navbar-style .cs_main_header_in {
        height: 80px;
    }
    .cs_hamburger span {
        height: 3px;
    }
    .cs-site-navbar .current-menu-item>a:before {
        display: none;
    }
    .cs-site-navbar.cs-navbar-style .cs_main_header_center .cs_site_branding {
        position: absolute;
        left: 0px;
        top: 50%;
        transform: translateY(-50%);
    }
    .cs-site-navbar.cs-navbar-style {
        top: 0;
    }
    .cs-site-navbar.cs-navbar-style .cs_icon_btn {
        width: 38px;
        height: 38px;
    }
    .cs_side_header {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    .cs-site-navbar .container {
        max-width: 100%;
    }
    .cs-site-navbar.cs-navbar-style .cs_action_box>*:not(:last-child) {
        margin-right: 25px;
    }
    .cs-site-navbar.cs-navbar-style .cs_btn {
        padding: 8px;
    }
}

@media screen and (max-width: 575px) {
    .cs_hamburger_wrap .cs_hamburger {
        margin-right: 0;
    }
    .cs-site-navbar.cs-navbar-style .cs_btn span {
        display: none;
    }
    .cs-site-navbar.cs-navbar-style .cs_btn svg {
        margin-right: 0;
        width: 20px;
        height: 20px;
    }
}

.cs-header-fluid {
    padding: 0rem 5rem;
}

@media screen and (max-width: 490px) {
    .cs-header-fluid {
        padding: 0rem 2rem;
    }
}


/*--------------------------------------------------------------
04__Footer Style
----------------------------------------------------------------*/

.cs-footer-container {
    background-image: url(../img/Footer_BG.jpg);
}

.cs-footer-container .cs-footer-img {
    background-image: url(../images/footlogo.svg);
    background-repeat: no-repeat;
    background-position: right;
}

.cs-footer-container .cs-footer-img h6 {
    margin-bottom: 0px;
}

.cs-footer-container .cs-footer-img h2 {
    color: #fff;
}

.cs-footer-container .cs-footer-img .cs-social {
    display: flex;
    flex-wrap: wrap;
    max-width: 540px;
    transition: all 0.3s ease-in-out;
}

.cs-footer-container .cs-footer-img .cs-social .cs-social-item:hover {
    transition: all 0.4s ease-in-out;
}

.cs-footer-container .cs-footer-img .cs-social .cs-social-item:hover a {
    color: #081D34;
    background: #64cdd2;
    box-shadow: inset -10px -10px 4px #04FFBC, inset 4px 4px 9px #005F2C, inset 0px 0px 7px #000000;
    transition: all 0.3s ease-in-out;
}

.cs-footer-container .cs-footer-img .cs-social a {
    border: 1px solid #64cdd2;
    color: #64cdd2;
    padding: 16px 25px;
    border-radius: 50px;
    display: inline-block;
    margin: 15px 15px 0px 0px;
}

.cs-footer-container .cs-footer-img .cs-footer-divider {
    max-width: 566px;
    height: 2px;
    background-color: #64cdd2;
    margin: 1rem 0rem;
}

.cs-footer-container .cs-footer-img .cs-quick-link a {
    font-family: "Syne", sans-serif;
    margin-right: 25px;
    font-weight: 500;
}

.footer-circle-text {
    display: flex;
    align-items: center;
    padding: 0px;
}

@media screen and (min-width: 1199px) {
    .footer-circle-text {
        margin-left: -150px;
    }
}

@media screen and (max-width: 1024px) {
    .cs-footer-img {
        background-image: none !important;
    }
}

@media screen and (max-width: 991px) {
    .footer-circle-text {
        margin-top: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .cs-footer-container {
        background-size: cover;
    }
}


/*--------------------------------------------------------------
**__footer Section Style 2 for personal portfolio
----------------------------------------------------------------*/

.cs-footer-container-style-2 {
    background-color: #081D34;
    background-image: url(../img/personal_portfolio/pattern.png);
}

.cs-footer-container-style-2 .cs-footer-form h2 {
    margin-bottom: 3rem;
}

.cs-footer-container-style-2 .cs-footer-img {
    background-image: none;
}

.cs-footer-container-style-2 .footer-copy-style-3 {
    text-align: center;
}

.cs-footer-container-style-2 .cs-footer-copyright {
    border-top: 1px solid #0C464E;
    margin-bottom: 2rem;
}

.cs-footer-container-style-2 .cs-footer-copyright p {
    margin-top: 1.5rem;
    color: #fff;
}


/*--------------------------------------------------------------
05__Sizing Spacing Style
----------------------------------------------------------------*/


/*  Bootstrap Gutter Fix  */

.col-sm-6 {
    margin-bottom: 24px;
}

.col-sm-12 {
    margin-bottom: 24px;
}


/* Padding_Style */

@media screen and (min-width: 767px) {
    .p-tb-10 {
        padding-top: 10rem;
        padding-bottom: 10rem;
    }
    .p-t-10 {
        padding-top: 10rem;
    }
    .p-b-10 {
        padding-bottom: 10rem;
    }
    .p-tb-5 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    .p-t-5 {
        padding-top: 5rem;
    }
    .p-b-5 {
        padding-bottom: 5rem;
    }
    .p-b-6 {
        padding-bottom: 6rem;
    }
    .p-b-7 {
        padding-bottom: 8rem;
    }
    .p-tb-3 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .p-t-3 {
        padding-top: 3rem;
    }
    .p-t-1 {
        padding-top: 1rem;
    }
    .p-b-3 {
        padding-bottom: 3rem;
    }
    .p-tb-2 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .p-t-2 {
        padding-top: 2rem;
    }
    .p-l-1 {
        padding-left: 1rem;
    }
    .p-lr-1 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .p-l-2 {
        padding-left: 2rem;
    }
    .p-r-2 {
        padding-right: 2rem;
    }
    .p-lr-5 {
        padding-left: 5rem;
        padding-right: 5rem;
    }
    .p-lr-10 {
        padding-left: 10rem;
        padding-right: 10rem;
    }
    .p-b-2 {
        padding-bottom: 0.5rem;
    }
}

@media screen and (max-width: 991px) {
    .p-tb-10 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    .p-t-10 {
        padding-top: 5rem;
    }
    .p-b-10 {
        padding-bottom: 5rem;
    }
    .p-tb-5 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .p-t-5 {
        padding-top: 2rem;
    }
    .p-b-5 {
        padding-bottom: 2rem;
    }
    .p-b-6 {
        padding-bottom: 2.5rem;
    }
    .p-b-7 {
        padding-bottom: 2.5rem;
    }
    .p-tb-3 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    .p-t-3 {
        padding-top: 1.5rem;
    }
    .p-t-1 {
        padding-top: 0.5rem;
    }
    .p-b-3 {
        padding-bottom: 1.5rem;
    }
    .p-tb-2 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    .p-t-2 {
        padding-top: 0.5rem;
    }
    .p-l-1 {
        padding-left: 0.5rem;
    }
    .p-l-2 {
        padding-left: 0.5rem;
    }
    .p-r-2 {
        padding-right: 0.5rem;
    }
    .p-lr-5 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .p-lr-10 {
        padding-left: 5rem;
        padding-right: 5rem;
    }
    .p-b-2 {
        padding-bottom: 0.5rem;
    }
}

@media screen and (max-width: 767px) {
    .p-tb-10 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    .p-t-10 {
        padding-top: 5rem;
    }
    .p-b-10 {
        padding-bottom: 5rem;
    }
    .p-tb-5 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .p-t-5 {
        padding-top: 3rem;
    }
    .p-b-5 {
        padding-bottom: 3rem;
    }
}


/*----------- Margine_Style ---------*/

.margin-right-20px {
    margin-right: 20px;
}

@media screen and (min-width: 767px) {
    .m-tb-10rem {
        margin-top: 10rem;
        margin-bottom: 10rem;
    }
    .m-lr-25 {
        margin-left: 25px;
        margin-right: 25px;
    }
    .m-t-1rem {
        margin-top: 1rem;
    }
    .m-b-1rem {
        margin-bottom: 1rem;
    }
    .m-b-2rem {
        margin-bottom: 2rem;
    }
    .m-tb-2rem {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    .m-r-5 {
        margin-right: 5rem;
    }
    .m-t-2rem {
        margin-top: 2rem;
    }
    .m-t-3 {
        margin-top: 3rem;
    }
    .m-t-5 {
        margin-top: 5rem;
    }
}

@media screen and (max-width: 991px) {
    .m-tb-10rem {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    .cs-gutter-20 {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    .m-tb-10rem {
        margin-top: 5rem;
        margin-bottom: 5rem;
    }
}


/*--------------------------------------------------------------
06__Hero Header & Breadcrum Style
----------------------------------------------------------------*/

.cs-header {
    padding: 9rem 0rem;
    background-color: #051A28;
    background-repeat: no-repeat;
    background-size: cover;
}

.cs-header .hero-container {
    padding-top: 80px;
    width: 90vw;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    justify-content: center;
}

.cs-header .hero-images .hero-top-img {
    z-index: 100;
    margin-top: -50px;
}

.cs-header .hero-images .hero-back-img {
    margin-bottom: -700px;
    z-index: 0;
}

.cs-header .hero-content .hero-heading {
    display: flex;
    flex-wrap: wrap;
}

.cs-header .hero-content .hero-heading:first-child {
    margin-right: 15px;
}

.cs-header .hero-content span {
    font-family: "Syne";
    font-style: normal;
    font-weight: 700;
    font-size: 75px;
    line-height: 87px;
    color: #fff;
}

.cs-header .hero-content .hero-focus-text {
    background: rgba(12, 70, 78, 0.3);
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    padding: 0rem 1rem;
}

.cs-header .hero-content .hero-btn-with-text {
    margin-top: 3rem;
    display: flex;
}

.cs-header .hero-content .hero-btn-with-text .hero-btn {
    margin-right: 2rem;
}

.cs-header .hero-content .hero-btn-with-text .hero-subheading .hero-stock {
    width: 100px;
    height: 1px;
    background-color: #FFD55B;
    margin-bottom: 2rem;
}

.cs-header .hero-content .hero-btn-with-text .hero-subheading p {
    font-size: 18px;
    color: #8FA8BD;
    max-width: 545px;
}

@media screen and (max-width: 1199px) {
    .hero-container {
        padding-top: 0px !important;
        width: 95vw !important;
    }
    .hero-content span {
        font-size: 80px !important;
        line-height: 100px !important;
    }
    .hero-content .hero-btn-with-text {
        margin-top: 1rem;
        display: flex;
    }
    .hero-content .hero-btn-with-text .hero-btn {
        margin-right: 1rem !important;
    }
}

@media screen and (max-width: 991px) {
    .hero-images {
        padding-bottom: 4rem;
    }
}

@media screen and (max-width: 500px) {
    .cs-header {
        padding: 5rem 0rem !important;
    }
    .hero-images {
        padding-bottom: 1rem;
    }
    .hero-images {
        max-width: 450px;
    }
    .hero-images .hero-back-img {
        max-height: 360px;
        margin-bottom: -150px !important;
    }
    .hero-content span {
        font-size: 60px !important;
        line-height: 70px !important;
    }
    .hero-content .hero-btn-with-text .hero-subheading {
        display: none;
    }
}

.cs-location h2,
.cs-email h2 {
    font-size: 22px;
}

.cs-location.p-b-3 {
    padding-bottom: 0;
}

@media screen and (max-width: 428px) {
    .hero-images {
        max-width: 408px;
        margin: auto;
    }
    .hero-content span {
        font-size: 50px !important;
        line-height: 70px !important;
    }
}

@media screen and (max-width: 360px) {
    .hero-images {
        max-width: 350px;
    }
    .hero-content span {
        font-size: 40px !important;
        line-height: 50px !important;
    }
}

@media screen and (max-width: 760px) {
    .hero-content span {
        font-size: 29px !important;
        line-height: 38px !important;
    }
    .hero-heading {
        margin-top: 60px;
    }
    .cs-header-style-2 {
        height: 100vh !important;
        background-position: right -227px top;
    }
    .cs-heading-style-2 {
        padding-bottom: 0;
    }
    .heading-area-arrow {
        margin: auto;
    }
    .member-contact-info {
        display: none !important;
    }
    .member-social-link {
        display: none;
    }
    .cs-location h2,
    .cs-email h2 {
        font-size: 21px;
    }
    .cs-location.p-b-3 {
        padding-bottom: 0;
    }
    .cs_nav .cs_nav_list {
        position: absolute;
        width: 100vw;
        left: -15px;
        background-color: #00428a;
        padding: 10px 0;
        display: none;
        top: 100%;
        border-top: 1px solid #004687;
        border-bottom: 1px solid #004687;
        overflow: auto;
        max-height: calc(100vh - 80px);
        line-height: 1.6em;
    }
}


/*------- Breadcrumb Style -------*/

.cs-bread-container {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cs-bread-container .cs-bread-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cs-bread {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cs-bread ul {
    display: flex;
    margin-top: 2rem;
    margin-bottom: 5px;
    padding-left: 0px;
}

.cs-bread ul li {
    padding: 0rem 0.8rem;
}

.cs-bread ul li a {
    color: #8FA8BD;
}

@media screen and (max-width: 991px) {
    .cs-bread-container .cs-bread-content ul {
        margin-top: 5rem;
        margin-bottom: 5px;
    }
    .cs-bread-container .cs-bread-img img {
        width: 991px;
        height: 230px;
    }
}


/*--------------------------------------------------------------
**__Hero Header & Breadcrum Style For home 2
----------------------------------------------------------------*/

.cs-header-style-2 {
    height: 100vh;
    background-image: url(../images/vent.jpg);
}

.hero-btn-with-text-style-2 .hero-subheading {
    max-width: 800px;
}

.hero-btn-with-text-style-2 .hero-subheading p {
    color: #fff;
    font-size: 18px;
    padding: 2rem 0rem;
}

.hero-content-style-2 .hero-focus-text {
    margin-left: 1rem;
}

@media screen and (max-width: 991px) {
    .cs-header-style-2 {
        height: 125vh;
    }
    .hero-content-style-2 .hero-focus-text {
        margin-left: 0rem;
    }
}


/*--------------------------------------------------------------
**__Hero Header For home 3
----------------------------------------------------------------*/

.personal-portfolio-hero-image {
    background-image: url(../img/personal_portfolio/hero_image_Personal_portfolio.jpg);
    background-position: right;
}

.cs-header-style-3 {
    height: 100vh;
}

.cs-header-style-3 .hero-btn {
    text-align: center;
}

.cs-header-style-3 .hero-container {
    display: block;
}

.cs-header-style-3 .hero-style-3 .pp-hero-subheading p {
    max-width: 800px;
    padding: 0px;
    color: #fff;
    font-size: 18px;
}

.cs-header-style-3 .hero-style-3 .hero-content-style-3 .hero-heading .cs-pp-spacial .fs-italic {
    font-style: italic;
    display: inline-block;
}

.cs-header-style-3 .hero-style-3 .hero-content-style-3 .hero-heading .cs-pp-spacial span {
    font-size: 95px;
}

.cs-header-style-3 .hero-style-3 .hero-content-style-3 .hero-heading span {
    font-size: 50px;
    line-height: normal;
}

.cs-header-style-3 .cs-align-item-center {
    justify-content: space-between;
    max-width: 50%;
}

@media screen and (max-width: 1199px) {
    .cs-header-style-3 .hero-style-3 .hero-content-style-3 .hero-heading .cs-pp-spacial span {
        font-size: 60px !important;
    }
    .cs-header-style-3 .hero-style-3 .hero-content-style-3 .hero-heading span {
        font-size: 40px !important;
    }
}

@media screen and (max-width: 991px) {
    .personal-portfolio-hero-image {
        background-position: center !important;
    }
    .cs-header-style-3 .hero-container {
        width: 90vw !important;
    }
    .cs-header-style-3 .hero-style-3 .hero-content-style-3 .hero-heading .cs-pp-spacial span {
        font-size: 50px !important;
    }
    .cs-header-style-3 .hero-style-3 .hero-content-style-3 .hero-heading span {
        font-size: 40px !important;
    }
    .cs-header-style-3 .cs-align-item-center {
        flex-direction: column;
        max-width: auto;
        align-items: self-start;
    }
    .cs-header-style-3 .cs-align-item-center .member-social-link {
        display: none;
    }
}

@media screen and (max-width: 450px) {
    .cs-header-style-3 .hero-style-3 {
        margin-top: 4rem;
    }
    .cs-header-style-3 .hero-style-3 .hero-content-style-3 .hero-heading .cs-pp-spacial span {
        font-size: 40px !important;
        line-height: normal !important;
    }
    .cs-header-style-3 .hero-style-3 .hero-content-style-3 .hero-heading span {
        font-size: 30px !important;
        line-height: normal !important;
    }
}

@media screen and (max-width: 360px) {
    .cs-header-style-3 .hero-style-3 .pp-hero-subheading p {
        font-size: 14px;
    }
    .cs-header-style-3 .hero-style-3 .hero-content-style-3 .hero-heading .cs-pp-spacial span {
        font-size: 40px !important;
    }
    .cs-header-style-3 .hero-style-3 .hero-content-style-3 .hero-heading span {
        font-size: 30px !important;
    }
}


/*--------------------------------------------------------------
07__Call To Action Style
----------------------------------------------------------------*/

.cs-cta {
    text-align: center;
}

.cs-cta .cta-container {
    padding: 5rem 0rem;
    border-top: 1px solid #0C464E;
    border-bottom: 1px solid #0C464E;
    max-width: 100%;
}

.cs-cta .cs-cta-content .cs-cta-text {
    font-size: 80px;
    color: #fff;
    display: inline;
    padding-right: 0.7rem;
}

.cs-cta .cs-cta-content .cs-cta-btn {
    font-family: "Syne", sans-serif;
    color: #64cdd2;
    font-weight: 600;
    display: inline;
    transition: all 0.3s ease-in-out;
}

.cs-cta .cs-cta-content .cs-cta-btn:hover {
    color: #FFD55B;
}

@media screen and (max-width: 1199px) {
    .cs-cta-btn {
        width: 35%;
        margin-left: 7px;
    }
    .cs-cta-btn svg {
        max-width: 40px !important;
        padding: 10px;
        border-radius: 25px;
    }
    .cs-cta-text {
        font-size: 60px !important;
        color: #fff;
    }
}

@media screen and (max-width: 767px) {
    .cs-cta-btn {
        width: 35% !important;
        margin-left: 7px;
    }
    .cs-cta-btn svg {
        max-width: 40px !important;
        padding: 10px;
        border-radius: 25px;
    }
    .cs-cta-text {
        font-size: 40px !important;
        color: #fff;
    }
}


/*--------------------------------------------------------------
08__Blog_Section & Page_Style
----------------------------------------------------------------*/

.cs-blog .cs-blog-items .cs-blog-item {
    background: #081D34;
    box-shadow: -1px -1px 4px #114546, 4px 4px 9px #070618, 0px 0px 7px #0E4D4E;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
}

.cs-blog .cs-blog-items .cs-blog-item:hover {
    background: #0C464E;
}

.cs-blog .cs-blog-items .cs-blog-img {
    border-radius: 15px 15px 0px 0px;
    transition: 0.5s;
    overflow: hidden;
}

.cs-blog .cs-blog-items .cs-blog-img a img {
    width: 100%;
}

.cs-blog .cs-blog-items .cs-blog-img .cs-blog-image-zoom {
    transition: all 0.5s ease-in-out;
}

.cs-blog .cs-blog-items .cs-blog-img .cs-blog-image-zoom:hover {
    transform: scale(1.1);
}

.cs-blog .cs-blog-items .cs-blog-item-content {
    padding: 20px;
}

.cs-blog .cs-blog-items .cs-blog-item-content .cs-blog-info {
    display: flex;
    justify-content: space-between;
}

.cs-blog .cs-blog-items .cs-blog-item-content .cs-blog-info .cs-blog-tag {
    color: #64cdd2;
}

.cs-blog .cs-blog-items .cs-blog-item-content .cs-blog-info .cs-blog-time {
    display: flex;
    align-items: center;
}

.cs-blog .cs-blog-items .cs-blog-item-content .cs-blog-info .cs-blog-time img {
    margin-right: 7px;
    margin-bottom: 2px;
}

.cs-blog .cs-blog-items .cs-blog-item-content .cs-blog-title {
    margin-bottom: 15px;
    transition: all 0.4s ease-in-out;
}

.cs-blog .cs-blog-items .cs-blog-item-content .cs-blog-title h5:hover {
    color: #FFD55B;
    text-decoration: underline;
}

.cs-blog .cs-blog-items .cs-blog-item-content .cs-blog-text-btn {
    display: flex;
    justify-content: space-between;
}

.cs-blog-item:hover .cs-blog-image-zoom {
    transform: scale(1.1);
}

@media screen and (max-width: 767px) {
    .cs-blog-text-btn {
        display: none !important;
    }
}


/* Blog Details Page */

.blog-info-details-page {
    display: flex;
}

.cs-blog-details-divider {
    height: 2px;
    background-color: #0C464E;
    max-width: 900px;
    margin: auto;
    margin-top: 5rem;
}

.cs-blog-share {
    display: flex;
    justify-content: center;
}

.cs-blog-share .social-icon-blog {
    margin-left: 1.5rem;
}

.cs-blog-share .social-icon-blog svg {
    margin: 0rem 1rem;
}

.cs-blog-share .social-icon-blog a svg:hover {
    fill: #FFD55B;
}

.cs-blog-quote {
    display: flex;
    background-color: #0C464E;
    padding: 3rem 5rem;
}

.cs-blog-quote .quote-svg {
    margin-right: 2rem;
}

.cs-blog-quote .cs-quote-text .cs-quote-divider {
    width: 60px;
    height: 1px;
    background-color: #64cdd2;
    margin-bottom: 2rem;
}

.cs-blog-quote .cs-quote-text p {
    font-style: italic;
}


/*--------------------------------------------------------------
**__Blog_Section & Page_Style For Home 2
----------------------------------------------------------------*/

.cs-blog-wrapper-style-2 {
    display: flex;
    flex-direction: row;
    width: 84vw;
    margin-right: 0px;
}

.cs-heading-left-control {
    position: absolute;
}

.blog-heading-style-2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media screen and (max-width: 1600px) {
    .cs-blog-wrapper-style-2 {
        width: 100vw;
    }
}

@media screen and (max-width: 1320px) {
    .cs-blog-wrapper-style-2 {
        width: 125vw;
    }
}

@media screen and (max-width: 1199px) {
    .cs-blog-wrapper-style-2 {
        width: 100vw;
    }
}

@media screen and (max-width: 991px) {
    .cs-blog-wrapper-style-2 {
        width: auto;
    }
}

@media screen and (max-width: 400px) {
    .blog-items-style-2 {
        width: 90%;
        margin: auto;
    }
}


/*--------------------------------------------------------------
09__About Section & Page Style
----------------------------------------------------------------*/

.cs-about-content {
    max-width: 90%;
}

.cs-about-content .about-title {
    padding-bottom: 2rem;
}

.cs-about-content .cs-about-text {
    padding-bottom: 1rem;
}

.cs-about-image .cs-top-image {
    margin-top: -300px;
    margin-left: -20px;
}

.cs-about-stock {
    margin-top: 1rem;
    width: 135px;
    height: 1px;
    background: #FFD55B;
}

@media screen and (max-width: 991px) {
    .cs-about-image {
        margin-top: 2rem;
    }
    .cs-about-image .cs-top-image {
        margin-top: -300px;
        margin-left: -20px;
    }
}

.cs-full-width {
    max-width: 1520px;
}

.title-left span {
    color: #64cdd2;
}

.skills-divider {
    width: 100%;
    height: 2px;
    background-color: #64cdd2;
    margin-top: 1.5rem;
}

.cs-skill-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cs-skill-items .cs-skill-item {
    max-width: 535px;
    margin-top: 3rem;
}

.cs-skill-items .cs-skill-item span {
    color: #64cdd2;
}

.skill-title {
    padding-bottom: 1rem;
    padding-top: 0.5rem;
}

.skill-title a h2 {
    color: #fff;
    transition: all 0.4s ease-in-out;
}

.skill-title:hover a h2 {
    color: #64cdd2;
}

@media screen and (max-width: 991px) {
    .cs-skills-wrapper {
        max-width: 690px;
        margin: auto;
    }
}

@media screen and (max-width: 767px) {
    .cs-skills-wrapper {
        max-width: 550px !important;
    }
}

.feature-circle {
    margin-top: 3rem;
    display: flex;
}

.feature-circle .cirdle-mid {
    margin: 0px -20px;
}

.feature-circle .feature-circle-item {
    width: 410px;
    height: 410px;
    border-radius: 410px;
    border: 1px solid #0C464E;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-items {
    margin-top: 5rem;
}

.feature-items .feature-item {
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
}

.feature-items .feature-item .cs-feature-title span {
    color: #64cdd2;
}

.feature-items .feature-item .cs-feature-text {
    max-width: 850px;
    margin-top: 1.2rem;
}

@media screen and (max-width: 1199px) {
    .feature-circle .feature-circle-item {
        width: 240px;
        height: 240px;
    }
    .feature-circle .feature-circle-item h3 {
        font-size: 26px;
    }
    .feature-item {
        flex-direction: column;
    }
}

@media screen and (max-width: 767px) {
    .feature-circle .feature-circle-item {
        display: none;
    }
}

@media screen and (max-width: 500px) {
    .cs-about-style-2 .cs-about-content .about-title h2 {
        font-size: 40px;
    }
}


/*--------------------------------------------------------------
**__About Style for home 2
----------------------------------------------------------------*/

.cs-about-style-2 .cs-about-content {
    text-align: center;
    margin: auto;
}

.cs-about-style-2 .cs-about-content .about-title h2 {
    font-size: 60px;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    transition: all 0.5s ease-in-out;
}

.cs-about-style-2 .cs-about-content .about-title h2:hover {
    color: #fff;
    transition: all 0.5s ease-in-out;
}

.cs-about-style-2 .cs-about-content .cs-about-text p {
    font-size: 20px;
    max-width: 1000px;
    margin: auto;
    margin-bottom: 0rem;
    color: #8FA8BD;
}

.kurultitle {
    display: flex;
    justify-content: center;
}

.kurultitle h2 {
    text-align: center;
}

.yatirimkomite h3 {
    margin-top: 20px;
    display: block;
}

.skill-title {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.skill-title h3 {
    margin: 0;
}

.skill-title img {
    margin-right: 10px;
}


/*--------------------------------------------------------------
**__About Style for home 3
----------------------------------------------------------------*/

.cs-about-style-3 {
    background-color: #081D34;
}

.cs-about-style-3 .cs-about-content {
    text-align: left;
    max-width: 100%;
}

.cs-about-style-3 .cs-about-content .about-title {
    padding-bottom: 15px;
}

.cs-about-style-3 .cs-about-content .about-title h2 {
    font-size: 42px;
}

.cs-about-style-3 .fun-items-style-3 {
    max-width: 500px;
    margin-bottom: 2rem;
}

.cs-about-style-3 .fun-items-style-3 .fun-item .fun-content {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.cs-about-style-3 .fun-items-style-3 .fun-item .fun-content .counter {
    margin-right: 1.5rem;
}

.cs-about-style-3 .fun-items-style-3 .fun-item .fun-content .counter span {
    font-size: 60px;
}

.pp-about-ex .fun-content .counter span {
    font-size: 80px;
}

.pp-about-ex h4 {
    font-family: "dm sans";
    color: #fff;
    text-transform: uppercase;
}

.personal-portfolio-about-image {
    background-image: url(../img/personal_portfolio/personal-portfolio-hero-image.png);
    background-repeat: no-repeat;
    background-position: right;
}

.cs-item-bottom {
    align-items: flex-end;
}


/*--------------------------------------------------------------
10__Fun Fact Counter Style
----------------------------------------------------------------*/

.fun-item .counter span {
    font-size: 130px;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #64cdd2;
    line-height: 130%;
}

.fun-item .fun-divider {
    background-color: #FFD55B;
    width: 200px;
    height: 1px;
    margin-bottom: 1.5rem;
}

.fun-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fun-line {
    height: 200px;
    width: 2px;
    background-color: #0C464E;
}

@media screen and (max-width: 991px) {
    .fun-items {
        flex-wrap: wrap;
    }
    .fun-line {
        display: none !important;
    }
}


/*--------------------------------------------------------------
11__Marquee Text Style
----------------------------------------------------------------*/

.cs-marquee svg {
    margin: 0rem 1.5rem;
}

:root {
    --marquee-width: 80vw;
    --marquee-height: 100px;
    --marquee-elements-displayed: 5;
    --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
    --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}

.marquee {
    height: 100px;
    background-color: #0C464E;
    color: #fff;
    overflow: hidden;
}

.cs-marquee-content {
    font-size: 32px;
    font-weight: 500;
    margin-right: 50px;
}

.marquee-content {
    list-style: none;
    height: 100%;
    display: flex;
    animation: scrolling var(--marquee-animation-duration) linear infinite;
}

.marquee-innter-text {
    margin-right: 1rem;
}

@keyframes scrolling {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements)));
    }
}

.marquee-content li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    max-height: 100%;
    white-space: nowrap;
}

@media (max-width: 600px) {
     :root {
        --marquee-width: 100vw;
        --marquee-height: 16vh;
        --marquee-elements-displayed: 3;
    }
    .marquee:before,
    .marquee:after {
        width: 5rem;
    }
}

.line-text {
    text-align: center;
    animation: animate-first-screen 40s -40s linear infinite;
    will-change: transform;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.line-text:nth-child(2) {
    animation: animate-second-screen 100s -50s linear infinite;
}

.line {
    display: flex;
    width: 100%;
}

.line-violet {
    z-index: 1;
}

@keyframes animate-first-screen {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes animate-second-screen {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-200%);
    }
}

@media (max-width: 769px) {
    .promo-lines {
        min-height: 195px;
    }
    .line-red {
        top: -73px;
        height: 95px;
    }
    .line-violet {
        top: -115px;
        height: 95px;
    }
    .line-text {
        font-size: 40px;
        line-height: 76px;
    }
}

.cs_moving_section_wrap {
    overflow-x: hidden;
}

.cs_moving_section_in {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    min-width: 100%;
}

.cs_moving_section {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    padding: 5px 0px;
    animation: slide-left 20s linear infinite;
}

.cs_moving_section.cs_stroke_text {
    margin: 0 10px;
}

.cs_animation_speed_10 {
    animation: slide-left 10s linear infinite;
}

.cs_animation_speed_30 {
    animation: slide-left 30s linear infinite;
}

.cs_animation_speed_40 {
    animation: slide-left 40s linear infinite;
}

.cs_animation_speed_50 {
    animation: slide-left 50s linear infinite;
}

.cs_moving_section_hover_push:hover .cs_moving_section {
    animation-play-state: paused;
}

@keyframes slide-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.cs-marquee {
    display: flex;
    overflow: hidden;
    width: 100vw;
    gap: 1rem;
}

.cs_moving_section span {
    font-size: 4rem;
    white-space: nowrap;
    align-self: center;
    font-family: "Syne";
    font-style: normal;
    font-weight: 600;
    font-size: 60px;
    line-height: 72px;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #64cdd2;
}


/*--------------------------------------------------------------
**__Style for home 2
----------------------------------------------------------------*/

.cs_moving_section_style_2 span {
    font-size: 120px;
    line-height: 152px;
    text-transform: uppercase;
}

.marquee-style-2 {
    background-color: transparent;
}

.marquee-style-2 .marquee-content-style-2 li {
    font-size: 60px;
    text-transform: uppercase;
    color: #64cdd2;
}


/*--------------------------------------------------------------
12__Project Section & Page Style
----------------------------------------------------------------*/

.project-item .project-img {
    position: relative;
    padding-bottom: 1.5rem;
    display: flex;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
}

.project-item .project-img img {
    width: 100%;
    height: 100%;
    transition: all 0.4s ease-in-out;
}

.project-item .project-img:hover {
    cursor: pointer;
}

.project-item .project-img:hover img {
    transition: all 0.4s ease-in-out;
    transform: scale(1.1);
}

.project-item .project-hover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    background-color: rgba(12, 70, 78, 0.411);
    margin: 1rem;
}

.project-item .project-hover a {
    padding: 2rem;
    margin-bottom: 0px;
    display: flex;
}

.project-item .project-hover a span {
    font-family: "Syne";
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 120%;
    color: #fff;
    transition: all 0.4s ease-in-out;
}

.project-item .project-hover a .project-hover-text {
    color: #fff;
}

.project-item .project-hover a .portfolio-btn svg {
    background-color: #0C464E;
    box-shadow: none;
}

.project-item .project-hover a:hover .project-hover-text {
    color: #FFD55B;
}

.project-item .project-img:hover .project-hover {
    opacity: 1;
    padding-bottom: 10px;
}

.service-feature-width {
    max-width: 1520px;
}

.service-feature-width .cs-portfolio-feature-content .project-feature-top h4 {
    color: #64cdd2;
}

.service-feature-width .cs-portfolio-feature-content .project-feature-top .divider {
    width: 100%;
    height: 2px;
    background-color: #64cdd2;
    margin-bottom: 1.5rem;
}

.service-feature-width .cs-portfolio-feature-content .project-feature-bottom {
    margin-top: 3rem;
}

.service-feature-width .cs-portfolio-feature-content .project-feature-bottom .line-100px {
    width: 100px;
    height: 2px;
    margin-top: 3rem;
}


/* Portfolio Details Page */

.project-info {
    max-width: 1090px;
    margin: auto;
}

.project-info .project-inf0-item {
    max-width: 300px;
}

.project-info .project-inf0-item p {
    font-size: 18px;
}

.project-info .details-width-content .text-row-full-center {
    max-width: 870px;
    margin: auto;
}

.project-info .details-width-content .double-image {
    display: flex;
    justify-content: center;
}

.project-info .details-width-content .img-full-container {
    display: flex;
    justify-content: center;
}

.error-content-container {
    text-align: center;
    max-width: 770px;
    margin: auto;
}

.error-content-container .error-404 span {
    font-size: 300px;
    line-height: 100%;
    color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #FFD55B;
    margin-bottom: 1.5rem;
}

.error-content-container a {
    color: #FFD55B;
    font-size: 18px;
    margin-top: 1rem;
}

.error-content-container a svg {
    margin-left: 5px;
}

@media screen and (max-width: 767px) {
    .error-404 span {
        font-size: 120px !important;
        line-height: 120%;
    }
}


/*--------------------------------------------------------------
**__For Home 2
----------------------------------------------------------------*/

.cs-portfolio-style-2 .project-hover a:hover .project-hover-text {
    color: #fff;
    align-items: center;
}

.error-content-container {
    text-align: center;
    max-width: 770px;
    margin: auto;
}

.error-content-container .error-404 span {
    font-size: 300px;
    line-height: 100%;
    color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #FFD55B;
    margin-bottom: 1.5rem;
}

.error-content-container a {
    color: #FFD55B;
    font-size: 18px;
    margin-top: 1rem;
}

.error-content-container a svg {
    margin-left: 5px;
}

@media screen and (max-width: 767px) {
    .error-404 span {
        font-size: 120px !important;
        line-height: 120%;
    }
}


/*--------------------------------------------------------------
**__For Personal portfolio style 3
----------------------------------------------------------------*/

.project-style-3 .all-project-style-3 .col-lg-6 {
    margin-bottom: 30px;
}

.project-style-3 .all-project-style-3 h4 {
    margin-bottom: 0px;
}

.project-style-3 .all-project-style-3 .project-item img {
    border-radius: 10px;
}

.error-content-container {
    text-align: center;
    max-width: 770px;
    margin: auto;
}

.error-content-container .error-404 span {
    font-size: 300px;
    line-height: 100%;
    color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #FFD55B;
    margin-bottom: 1.5rem;
}

.error-content-container a {
    color: #FFD55B;
    font-size: 18px;
    margin-top: 1rem;
}

.error-content-container a svg {
    margin-left: 5px;
}

@media screen and (max-width: 767px) {
    .error-404 span {
        font-size: 120px !important;
        line-height: 120%;
    }
}


/*--------------------------------------------------------------
13__Feature Section Style
----------------------------------------------------------------*/

.thumbnail-container {
    position: relative;
    min-width: 100%;
}

.cs-feature {
    background-image: url(../img/Background_Fixed.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.feature-content {
    transition: all 0.4s ease-in-out;
}

.feature-content h2 {
    padding-bottom: 1.5rem;
}

.feature-content p {
    padding-bottom: 1.5rem;
}

.feature-content a {
    max-width: 165px;
}

@media screen and (max-width: 991px) {
    .cs_circle_btn_wrap {
        margin-bottom: 2rem;
    }
}

.overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
}

.video-play-button {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
}

.video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #0C464E;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #0C464E;
    border-radius: 50%;
    transition: all 200ms;
}

.video-play-button:hover:after {
    background-color: #051e22;
}

.video-play-button img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #fff;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.video-overlay {
    position: fixed;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: all ease 500ms;
}

.video-overlay.open {
    position: fixed;
    z-index: 1000;
    opacity: 1;
}

.video-overlay-close {
    position: absolute;
    z-index: 1000;
    top: 15px;
    right: 20px;
    font-size: 36px;
    line-height: 1;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 200ms;
}

.video-overlay-close:hover {
    color: #FFD55B;
}

.video-overlay iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
}


/*--------------------------------------------------------------
**__Style for home 2
----------------------------------------------------------------*/

.cs-feature-style-2 {
    background-image: url(../img/Background_Fixed.jpg);
    background-position: center;
}


/*--------------------------------------------------------------
14__Award Section Style
----------------------------------------------------------------*/

.cs-award .cs-award-container .award-items .award-item {
    display: flex;
    justify-content: space-between;
    padding: 3rem 2rem;
    border-top: 1px solid #0C464E;
}

.cs-award .cs-award-container .award-items .award-item .award-text {
    max-width: 650px;
}

.cs-award .cs-award-container .award-items .award-item .award-text p {
    margin-bottom: 0px;
}

.cs-award .cs-award-container .award-items .award-item .award-name {
    min-width: 185px;
}

.cs-award .cs-award-container .award-items .award-item .award-btn a {
    color: #64cdd2;
}

.cs-award .cs-award-container .award-items .award-item .award-btn a svg {
    margin-left: 10px;
}

@media screen and (max-width: 1199px) {
    .award-item {
        flex-direction: column;
        padding: 1.5rem 1rem !important;
    }
    .award-item .award-btn {
        margin-top: 1rem;
    }
}


/*--------------------------------------------------------------
**__Award Style for home 2
----------------------------------------------------------------*/

.award-style-2 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.award-style-2 .cs-service-animated-text {
    margin-bottom: 0px;
    margin-top: 2.5rem;
}

@media screen and (max-width: 1199px) {
    .award-style-2 {
        width: 100vw;
    }
}

@media screen and (max-width: 1024px) {
    .award-style-2 .award-items {
        margin-left: 3rem;
    }
    .award-style-2 .award-items .award-item {
        flex-direction: row;
        width: 80%;
    }
    .award-style-2 .award-items .award-item .award-btn {
        margin-top: 0px;
    }
    .award-style-2 .award-items .award-item .award-name {
        min-width: auto !important;
    }
}

@media screen and (max-width: 991px) {
    .award-style-2 {
        width: initial;
        flex-direction: column;
    }
    .award-style-2 .award-items {
        margin-top: 4.063rem;
        margin-left: 0px;
        width: 100% !important;
    }
    .award-style-2 .award-items .award-item {
        width: 100% !important;
    }
}


/*--------------------------------------------------------------
**__Award & Experiecnce Style for home 3
----------------------------------------------------------------*/

.cs-award-expe3 .award-items-style-2 {
    max-width: 500px;
}

.cs-award-expe3 .award-items-style-2 .award-item-style-2 {
    padding: 1rem 0rem !important;
}

.cs-award-expe3 .award-items-style-2 .award-item-style-2 a {
    color: #FFD55B;
}

.cs-award-expe3 .award-items-style-2 .award-item-style-2 .award-name h6 {
    padding-bottom: 0rem;
}

.cs-award-expe3 .experience-items {
    display: flex;
    justify-content: space-evenly;
}

.cs-award-expe3 .experience-items .ex-couple-items {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cs-award-expe3 .experience-items .ex-couple-items .experience-item {
    padding: 10px;
}

.cs-award-expe3 .experience-items .ex-couple-items .experience-item .cs-service-box {
    border-radius: 50%;
}

.cs-award-expe3 .experience-items .ex-couple-items .experience-item .cs-service-box .ex-box-content {
    text-align: center;
    padding: 1rem;
    min-width: 200px;
}

.cs-award-expe3 .experience-items .ex-couple-items .experience-item .cs-service-box .ex-box-content img {
    max-height: 100px !important;
    margin-bottom: 1rem;
}

.cs-award-expe3 .experience-items .ex-couple-items .experience-item .cs-service-box .ex-box-content h4 {
    padding: 0px;
    margin: 0px;
}

.cs-award-expe3 .experience-items .ex-couple-items .experience-item .cs-service-box .ex-box-content .skill-prog {
    color: #64cdd2;
    text-transform: uppercase;
}

@media screen and (max-width: 1199px) {
    .cs-award-expe3 .award-items-style-2 .award-item-style-2 {
        flex-direction: row;
    }
}

@media screen and (max-width: 991px) {
    .cs-award-expe3 .experience-items {
        justify-content: flex-start;
    }
}

@media screen and (max-width: 399px) {
    .cs-award-expe3 .award-items-style-2 {
        max-width: 500px;
    }
    .cs-award-expe3 .award-items-style-2 .award-item-style-2 .award-date {
        display: none;
    }
    .cs-award-expe3 .experience-items .ex-couple-items .experience-item .cs-service-box .ex-box-content {
        min-width: 150px;
    }
    .cs-award-expe3 .experience-items .ex-couple-items .experience-item .cs-service-box .ex-box-content img {
        max-height: 50px !important;
    }
}


/*--------------------------------------------------------------
15__Team Section & Page Style
----------------------------------------------------------------*/

.cs-team .members .member .member-img {
    position: relative;
    padding-bottom: 1.5rem;
    display: flex;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
}

.cs-team .members .member .member-img img {
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.cs-team .members .member .member-img:hover {
    cursor: pointer;
}

.cs-team .members .member .member-img:hover img {
    opacity: 50%;
    transition: all 0.5s ease-in-out;
    transform: scale(1.1);
}

.cs-team .members .member .member-img:hover .member-social a {
    margin-bottom: 25px;
}

.cs-team .members .member .member-social {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.cs-team .members .member .member-social a {
    padding: 1rem;
    background: #0C464E;
    margin-bottom: 50px;
}

.cs-team .members .member .member-img:hover .member-social {
    opacity: 1;
}

.cs-team .members .member .member-info {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #0C464E;
    padding-top: 0.5rem;
}

.cs-team .members .member .member-info:hover h6 {
    color: #FFD55B;
}

.border-right {
    border-right: 1px solid #0C464E;
}

@media screen and (max-width: 1199px) {
    .member-info {
        flex-direction: column;
    }
}

@media screen and (max-width: 991px) {
    .member-info {
        flex-direction: row;
    }
}


/* Team Details Page Style */

.team-details-divider {
    width: 100%;
    height: 1.5px;
    background-color: #64cdd2;
    margin: 1rem 0rem;
}

.basvurrow {
    align-items: flex-start;
}

.member-contact-info {
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    max-width: 640px;
}

.member-contact-info .contact-details p {
    margin: 5px;
}

.member-contact-info .contact-address {
    max-width: 270px;
}

.member-contact-info .contact-address p {
    margin: 5px;
}

.member-social-link {
    margin-top: 3rem;
}

.member-social-link p {
    margin: 5px;
}

.member-social-link .member-details-social {
    display: flex;
}

.member-social-link .member-details-social a {
    padding-right: 1.5rem;
    transition: all 0.4s ease-in-out;
}

.member-social-link .member-details-social a p {
    color: #fff;
}

.member-social-link .member-details-social a :hover {
    color: #FFD55B;
    transition: all 0.4s ease-in-out;
}

@media screen and (max-width: 991px) {
    .member-details-image {
        margin-bottom: 0;
        width: 100%;
    }
}


/*--------------------------------------------------------------
**__Team Style For home 2
----------------------------------------------------------------*/

.member-style-2 {
    height: 360px;
}

.member-style-2 .member-info-style-2 {
    text-align: center;
    margin-top: -100px;
    position: sticky;
    transition: all 0.4s ease-in-out;
}

.member-style-2 .member-info-style-2 h4 {
    margin-bottom: 0px;
}

.member-style-2 .member-social {
    margin-bottom: 20px;
}

.member-style-2:hover .member-info-style-2 {
    display: none;
}

@media screen and (max-width: 991px) {
    .member-style-2 {
        height: auto;
    }
}

@media screen and (max-width: 400px) {
    .member-style-2 {
        width: 90%;
        margin: auto;
    }
}


/*--------------------------------------------------------------
16__Testimonial Section Style
----------------------------------------------------------------*/

.testi-item {
    text-align: center;
    display: flex;
    justify-content: center;
}

.testi-item .testi-text h5 {
    padding: 0rem 13.5rem;
}

.testi-item .testi-client-info {
    padding-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testi-item .testi-client-info img {
    padding-bottom: 1rem;
}

.arrow-middle {
    position: relative;
}

.testi-arrow {
    position: absolute;
    bottom: 50%;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.testi-arrow .testi-previous-btn {
    cursor: pointer;
    margin-left: -50px;
}

.testi-arrow .testi-next-btn {
    cursor: pointer;
    margin-right: -50px;
}

@media screen and (max-width: 1199px) {
    .testi-text h5 {
        padding: 0rem 2.5rem !important;
    }
    .testi-previous-btn {
        margin-left: -25px !important;
    }
    .testi-next-btn {
        margin-right: -25px !important;
    }
}

@media screen and (max-width: 991px) {
    .testi-text h5 {
        padding: 0rem 0.5rem !important;
    }
    .testi-previous-btn {
        margin-left: -50px !important;
    }
    .testi-next-btn {
        margin-right: -50px !important;
    }
}

@media screen and (max-width: 767px) {
    .testi-text h5 {
        padding: 0rem;
        font-size: 20px;
        line-height: 130%;
    }
}

@media screen and (max-width: 450px) {
    .testi-arrow {
        display: none;
    }
}


/*--------------------------------------------------------------
**__Style for home 2
----------------------------------------------------------------*/

.cs-testi-style-2 {
    background-image: url(../img/home-2/home-2-testi-bg.jpg);
    background-size: cover;
}

.testi-cap-style-2 {
    text-transform: uppercase;
    background: none;
    font-size: 18px;
}


/*--------------------------------------------------------------
**__Style for home 3
----------------------------------------------------------------*/

.cs-testi-style-3 {
    background-color: #0D2238;
    background-image: url(../img/personal_portfolio/pattern.png);
}

.cs-testi-style-3 .service-box-content img {
    margin-bottom: 15px;
}

.cs-testi-style-3 .service-box-content h5 {
    color: #fff;
    margin-bottom: 0px;
}

.cs-testi-style-3 .service-box-content .designation p {
    margin-top: 0px;
    color: #64cdd2;
    text-transform: uppercase;
}

.fs-italic {
    font-style: italic;
}


/*--------------------------------------------------------------
17__Contact Page Style
----------------------------------------------------------------*/

.cs-contact-page-content {
    max-width: 80%;
}

@media screen and (max-width: 1199px) {
    .cs-contact-page-content {
        max-width: 95%;
    }
}

@media screen and (max-width: 767px) {
    .cs-contact-page-content {
        max-width: 100%;
    }
}


/* Reset Rules */

label {
    cursor: pointer;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/* Remove native arrow on IE */

select::-ms-expand {
    display: none;
}

select:-moz-focusring {
    color: transparent !important;
}

textarea {
    resize: none;
}


/* Form Elements */

.cs-contact-form li,
.cs-contact-form .grid {
    margin-bottom: 1.5rem;
}

.grid input:first-child {
    margin-bottom: 1.5rem;
}

.cs-contact-form select,
.cs-contact-form input,
.cs-contact-form textarea {
    width: 100%;
    line-height: 1.5;
    padding: 15px 10px;
    border: 1px solid #0C464E;
    color: #fff;
    background: #081D34;
}

.cs-contact-form textarea {
    height: 170px;
}

.cs-contact-form ul {
    margin-left: 0px;
    padding: 0px;
}

.cs-contact-form ::-moz-placeholder {
    color: inherit;
    opacity: 1;
}

.cs-contact-form ::placeholder {
    color: inherit;
    opacity: 1;
}

.cs-contact-form select:focus,
.cs-contact-form input:focus,
.cs-contact-form textarea:focus,
.cs-contact-form input[type=checkbox]:focus+label {
    background: #0D2238;
}


/* Custom Checkbox */

.cs-contact-form input[type=checkbox] {
    position: absolute;
    left: -9999px;
}

.cs-contact-form input[type=checkbox]+label {
    position: relative;
    display: inline-block;
}

@media screen and (min-width: 600px) {
    .cs-contact-form .grid {
        display: grid;
        grid-gap: 1.5rem;
    }
    .cs-contact-form .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
    .cs-contact-form .grid-3 {
        grid-template-columns: auto auto auto;
        align-items: center;
    }
    .cs-contact-form .grid>*:not(:last-child) {
        margin-bottom: 0;
    }
    .cs-contact-form .required-msg {
        display: block;
    }
}

@media screen and (min-width: 541px) {
    .cs-contact-form input[type=checkbox]+label::before {
        top: 50%;
        transform: translateY(-50%);
    }
    .cs-contact-form input[type=checkbox]:checked+label::after {
        top: 3px;
    }
}


/* Chatbox CTA Style */

.cta-chatbox-container {
    background-color: #0C464E;
    padding: 3rem 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-chatbox-container .cta-chatbox-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-chatbox-container .cta-chatbox-action a {
    color: #64cdd2;
    margin-top: 1rem;
}

@media screen and (max-width: 767px) {
    .cta-chatbox-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 3rem;
    }
}


/* Frequently Asked Questions */

.cs-faq-btn {
    background-color: #0D2238;
    border: 1px solid #0C464E;
    width: 100%;
    padding: 10px 30px;
    text-align: left;
}

.cs-faq-btn span {
    text-align: left;
    line-height: 150%;
    color: #fff;
    font-family: "syne";
    font-size: 20px;
    text-align: left;
}

.cs-faq-btn:hover {
    background: #081D34;
}

.accordion-body {
    color: #8FA8BD;
}


/*--------------------------------------------------------------
**__CTA Style For Home 2
----------------------------------------------------------------*/

.cta-container-style-2 {
    padding: 7rem 0rem;
    background-image: url(../img/home-2/Home_2_CTA.jpg);
    background-size: cover;
}

.cta-container-style-2 .cs-cta-content {
    display: block;
    max-width: 800px;
    margin: auto;
    margin-bottom: 3rem;
}

.cta-container-style-2 .cs-cta-content h2 {
    color: #fff;
}

@media screen and (max-width: 767px) {
    .cta-container-style-2 {
        padding: 5rem 3rem;
    }
}

@media screen and (max-width: 400px) {
    .cta-container-style-2 {
        width: 90%;
        margin: auto;
        padding: 3rem 1rem;
    }
    .cta-container-style-2 .cs-cta-content {
        margin-bottom: 1.5rem;
    }
}


/*--------------------------------------------------------------
18__Client Section Style
----------------------------------------------------------------*/

.cs-client {
    position: relative;
}

.carousel-img {
    background-color: #0C464E;
    width: 240px;
    height: 140px;
    margin: 0rem 1rem;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.client-arrow {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.client-arrow .client-previous-btn {
    cursor: pointer;
    margin-left: -100px;
}

.client-arrow .client-next-btn {
    cursor: pointer;
    margin-right: -100px;
}


/*--------------------------------------------------------------
**__For Home 2
----------------------------------------------------------------*/

.cs-client-style-2 h4 {
    text-align: center;
    margin-bottom: 4rem;
    text-transform: uppercase;
}

.carousel-img-2 {
    background-color: transparent;
}


/*--------------------------------------------------------------
19__Services Section & Pages Style
----------------------------------------------------------------*/

.cs-services-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cs-services-text .heading-caption {
    text-align: left;
    background-position: left;
}

.cs-services-text .heading-caption span {
    margin-left: 20px;
}

.cs-services-text .section-title {
    text-align: left;
}

.cs-services-list .services-item {
    display: flex;
    background-color: #081D34;
    align-items: center;
    padding: 2rem;
    justify-content: space-around;
    transition: all 0.4s ease-in-out;
    border-top: 1px solid #0D2238;
}

.cs-services-list .service-icon {
    background-color: #0C464E;
    padding: 1.5rem;
    border-radius: 5rem;
    transition: all 0.4s ease-in-out;
}

.cs-services-list .service-text {
    margin-right: 1rem;
}

.cs-services-list .service-text h4 {
    max-width: 350px;
    transition: all 0.5s ease-in-out;
}

.cs-services-list .service-text p {
    max-width: 440px;
}

.cs-services-list .service-text h4:hover {
    color: #FFD55B;
    text-decoration: underline;
}

.cs-services-list .services-item:hover {
    background-color: #0C464E;
}

.cs-services-list .services-item:hover .service-icon {
    background-color: #081D34;
}

.cs-service-animated-text {
    margin-bottom: 3rem;
}

@media screen and (max-width: 1199px) {
    .services-item {
        flex-direction: column;
        align-items: flex-start !important;
    }
    .services-item .service-icon {
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 991px) {
    .cs-service-title {
        padding-bottom: 1rem;
    }
}

:root {
    --rotationDuration: 20s;
    --hoverDuration: 0.3s;
    --easeIn: cubic-bezier(0.32, 0, 0.67, 0);
    --easeOut: cubic-bezier(0.33, 1, 0.68, 1);
}

.link__svg {
    width: 100%;
    height: auto;
    transform-box: fill-box;
    fill: #fff;
    stroke: #fff;
    stroke-width: 0.05em;
    stroke-linecap: round;
    stroke-linejoin: round;
    width: 10rem;
    height: 10rem;
    display: inline-block;
    text-transform: uppercase;
    font-family: "Syne", sans-serif;
    letter-spacing: 0.3em;
    word-spacing: 0.3em;
    background: #081D34;
    box-shadow: -1px -1px 4px #114546, 4px 4px 9px #070618, 0px 0px 7px #0E4D4E;
    border-radius: 500px;
    padding: 5px;
}

.link__arrow {
    transform-origin: 50% 50%;
    transition: transform var(--hoverDuration)/2 var(--easeIn);
}

.link:hover .link__arrow {
    transform: scale(1.1);
    transition: transform var(--hoverDuration) var(--easeOut);
}

.link__arrow {
    stroke-width: 0.075em;
}

.link__text {
    animation: rotate normal infinite var(--rotationDuration) linear;
    transform-origin: 50% 50%;
}

.link:hover .link__text {
    animation-play-state: paused;
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}


/* Services Page Style */

.cs-work-process-container .process-item img {
    margin-bottom: 2rem;
}

.cs-work-process-container .process-item .process-number {
    font-size: 16px;
    color: #64cdd2;
}

.service-content .service-list-title h2 {
    font-size: 100px;
    color: #64cdd2;
    margin-bottom: 1.5rem;
    z-index: 0;
}

.service-content .services-double-list-text {
    display: flex;
}

.services-img {
    display: flex;
    justify-content: center;
}

.services-column-left {
    padding: 2rem 0rem;
}

.services-column-left li {
    color: #8FA8BD;
    list-style: none;
}

.marging-left-service {
    margin-left: -200px;
}

.margin-right-service {
    margin-right: -500px;
    margin-left: 200px;
}

@media screen and (max-width: 1199px) {
    .service-content .service-list-title h2 {
        font-size: 70px;
    }
    .marging-left-service {
        margin-left: -100px;
    }
    .margin-right-service {
        margin-right: -400px;
        margin-left: 50px;
    }
}

@media screen and (max-width: 991px) {
    .service-content .service-list-title h2 {
        font-size: 60px;
    }
    .marging-left-service {
        margin-left: 0px;
    }
    .margin-right-service {
        margin-right: 0px;
        margin-left: 0px;
    }
    .services-img {
        justify-content: start;
    }
    .services-img-margin {
        margin-top: 3rem;
    }
}

@media screen and (max-width: 767px) {
    .services-double-list-text {
        flex-direction: column;
    }
    .services-column-left {
        padding: 0px;
    }
}

@media screen and (max-width: 1199px) {
    .service-content .service-list-title h2 {
        font-size: 45px;
    }
}


/* Services Details Page Style */

.service-info-text h2 {
    line-height: 150%;
}

.service-info-text .service-list-text {
    display: flex;
}

.service-info-text .service-list-text .service-left-list {
    padding-right: 5rem;
}

.service-list-text-container .service-list-text {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.service-list-text-container .service-list-text .cs-dot-primary {
    width: 15px;
    height: 15px;
    border-radius: 15px;
    margin-right: 10px;
}

.service-list-text-container .service-list-text p {
    margin: 0px;
    color: #fff;
    font-family: "syne";
}

.service-details-row-left {
    display: flex;
}

.service-details-row-left .service-details-img {
    margin-right: 5rem;
    margin-top: 2rem;
}

.service-details-row-left .service-details-img img {
    transform: rotate(15deg) scale(1) translate(20px, 20px);
    max-width: 100%;
    transition: all 0.5s ease-in-out;
}

.service-details-row-left .service-details-img:hover img {
    transform: rotate(0deg) scale(1.1) translate(20px, 20px);
}

.service-details-row-right h2 {
    margin-bottom: 1rem;
    padding-top: 4rem;
}

.service-details-row-right .service-details-row-divider {
    width: 100px;
    height: 2px;
    border-radius: 5px;
    margin-top: 3rem;
}

.cs-about-style-2 {
    padding-top: 80px;
    padding-bottom: 30px;
}

@media screen and (max-width: 991px) {
    .service-info-text {
        padding-bottom: 3rem;
    }
    .service-details-row-left {
        justify-content: space-between;
        align-items: center;
        max-width: 80%;
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 991px) {
    .service-details-row-left {
        max-width: 100%;
    }
}

@media screen and (max-width: 450px) {
    .service-details-row-left {
        flex-direction: column;
        align-items: flex-start;
    }
    .service-details-row-left .service-details-img {
        max-width: 90%;
        margin-left: 2rem;
    }
}


/*--------------------------------------------------------------
**__Services Section Style 2 home 2
----------------------------------------------------------------*/

.cs-services-style-2 .services-style-2 .service-style-2 .service-container-2 {
    border: 1px solid #0C464E;
    padding: 3rem 2rem;
}

.cs-services-style-2 .services-style-2 .service-style-2 .service-container-2 img {
    padding-bottom: 2rem;
    max-height: 104px;
}

.swiper-pointer-events {
    touch-action: pan-y;
    padding-bottom: 1px;
}

.cs-services-style-2 .services-style-2 .service-style-2 .service-container-2 h4 {
    color: #fff;
}

.cs-services-style-2 .services-style-2 .service-style-2 .service-container-2 a {
    margin-top: 1rem;
}

.cs-services-style-2 .services-style-2 .service-style-2:hover {
    background-color: #0C464E;
    transition: all 0.5s ease-in-out;
}

@media screen and (max-width: 500px) {
    .service-container-2 {
        max-width: 90%;
        margin: auto;
    }
}


/*--------------------------------------------------------------
__Services Style 3
----------------------------------------------------------------*/

.cs-services-style-3 .row .col-lg-4 {
    margin-bottom: 30px;
}

.service-box-content img {
    max-width: 50px;
    margin-bottom: 2rem;
}

.cs-service-box.cs_round_btn {
    width: 100%;
    height: auto;
    border-radius: 0px;
    border: 1px solid #0C464E;
}

.cs-service-box.cs_round_btn:hover {
    border: 1px solid #081D34;
}

.cs-service-box.cs_round_btn span {
    background-color: #081D34;
}

.cs-service-box.cs_round_btn .service-box-content {
    padding: 1rem 2rem;
}

.cs-service-box.cs_round_btn .service-box-content h4 {
    color: #fff;
}

.cs-service-box.cs_round_btn:hover span {
    height: 1500px;
    width: 1500px;
    opacity: 1;
    color: #0C464E;
}


/*# sourceMappingURL=style.css.map */