@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Mulish:wght@200&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&display=swap');
@import url(../font/Metropolis-ExtraLight.otf);

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --color_1: #37a2ff;
}

a {
    text-decoration: none;
}

body {
    font-family: 'Metropolis';
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    margin: 0 0 10px;
    line-height: 1.2;
    font-weight: 700;
    transition: .5s;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li {
    display: inline-block;
}

.container {
    max-width: 1230px;
}

header {
    position: relative;
    z-index: 2;
    background: #fff;
}

header .nav-menu li {
    padding: 10px;
    position: relative;
}

header .nav-menu li a {
    color: #333;
    text-decoration: none;
    font-size: 19px;
    line-height: 40px;
    position: relative;
    padding: 10px 0 5px;
    font-weight: 600;
}

header .nav-menu li a::before {
    position: absolute;
    content: '';
    left: unset;
    right: 0;
    width: 0;
    bottom: 0;
    background-color: #25669e;
    height: 2px;
    transition: all 0.4s linear;
}

header .nav-menu li a:hover:before {
    width: 100%;
    left: 0;
    transition: all 0.4s linear;
}

header .nav-menu {
    float: right;
    display: inline-block;
    margin-top: 20px;
}

header .nav-menu li .sub-menu {
    width: 210px;
    height: auto;
    position: absolute;
    left: 0;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
    top: 55px;
    text-align: left;
    padding: 10px 15px;
    transform: scaleY(0);
    transform-origin: center top 0;
    opacity: 0;
    transition: .5s;
    visibility: hidden;
}

header .nav-menu li .sub-menu li {
    display: block;
    padding: 4px 0 !important;
}

header .nav-menu li .sub-menu li a {
    line-height: 0 !important;
    font-size: 16px;
    padding: 6px 0 !important;
    color: #2d305b !important;
}

header .nav-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    z-index: 9;
    left: 0;
    transform: scaleY(1);
}

.header_fixed {
    position: fixed;
    width: 100%;
    z-index: 99;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    animation: slide-down 0.4s;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.btn-read a {
    display: inline-block;
    background: #25669e;
    padding: 8px 30px;
    border-radius: 30px;
    font-size: 19px;
    transition: .5s;
    overflow: hidden;
    position: relative;
    z-index: 1;
    color: #fff;
    text-decoration: none;
    margin-top: 10px;
}

/* banner */

.slide .carousel-item .desk-hide{
    display: none !important;
}

/* solutions */

.our_solution {
    background: url(../images/services-sec.webp) no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 30px 0;
    margin-top: 60px;
}

.our_solution .title {
    color: #fff;
    margin-bottom: 20px;
    font-size: 32px;
    font-family: 'Playfair Display', serif;
}

/* Exchange Section */

.exchange-sec {
    padding: 60px 0;
}

.exchange-sec .exchange-left-img {
    position: relative;
    z-index: 1;
}

.exchange-left-img .shape1 {
    position: absolute;
    right: 90px;
    top: 30px;
}

.exchange-left-img .shape2 {
    position: absolute;
    top: 320px;
    left: -30px;
}

.exchange-left-img .shape3 {
    position: absolute;
    bottom: -10px;
    right: 60px;
}

.exchange-left-content h3 {
    font-size: 41px;
    font-weight: 700;
    margin: 20px 0;
}

.exchange-left-content p {
    font-size: 17px;
    margin-bottom: 10px;
}

/* our service */

.our-service {
    background: url(../images/services-sec.webp) no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 30px 0 10px;
}

.our-service .title {
    margin-bottom: 20px;
    color: #fff;
    font-size: 32px;
    font-family: 'Playfair Display', serif;
}

.our-service .title-para {
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
}

.choose-single-box {
    padding: 0 5px;
    transition: .5s;
    border-radius: 4px;
}

/* .choose-content h2 a {
    font-size: 20px;
    color: #fff;
    margin: 10px 0px;
    font-weight: 500;
    line-height: 1.4;
} */

.choose-content h2 {
    line-height: 30px;
    font-size: 20px;
    color: #fff;
    margin: 10px 0px;
    font-weight: 500;
}

/* scroll Top */

.scroll-Top i {
    bottom: 3%;
    right: 2%;
    width: 50px;
    height: 50px;
    position: fixed;
    cursor: pointer;
    background: #080b3d;
    margin: 0 auto;
    border-radius: 50px;
    box-shadow: rgb(100 100 111 / 42%) 0px 7px 29px 0px;
    font-size: 20px;
    color: #fff;
    text-align: center;
    line-height: 50px;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s linear;
}

.scroll-Top-fixed i {
    opacity: 1;
    visibility: visible;
}

/* Nft Marketplace */

.security_difference {
    position: relative;
    z-index: 2;
    height: 400px;
    background-image: url(../images/security-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    padding: 100px 0;
    margin: 40px 0 0;
    text-align: center;
    display: flex;
    align-items: center;
}

.security_difference::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000080;
    top: 0;
    left: 0;
    z-index: -1;
}

.security_difference h3 {
    color: #fff;
    font-size: 70px;
    margin-bottom: 15px;
    line-height: 80px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.security_difference a {
    display: inline-block;
    background: #25669e;
    padding: 7px 25px;
    border-radius: 25px;
    font-size: 19px;
    transition: .5s;
    overflow: hidden;
    position: relative;
    z-index: 1;
    color: #fff;
    text-decoration: none;
}

/* contact */

.breadcrumb-section {
    background: url(../images/breadcrumb.webp) no-repeat;
    padding: 120px 0;
    background-position: center;
    background-size: cover;
    position: relative;
}

.overlay-black {
    background: black;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .7;
}

.breadcrumb-section .breadcrumb-content {
    position: relative;
    z-index: 1;
    color: white;
}

.breadcrumb-section .breadcrumb-content h2 {
    font-size: 50px;
    line-height: 52px;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: center;
}

.breadcrumb-section .breadcrumb-content .breadcrumb .breadcrumb-item a {
    color: white;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
}

.breadcrumb-section .breadcrumb-content .breadcrumb .breadcrumb-item:last-child a {
    color: #25669e;
}

/* get in touch */

.touch {
    padding: 30px 0;
}

.touch .touch-title-bar {
    margin-bottom: 25px;
    text-align: center;
}

.touch .touch-title-bar h2 {
    font-weight: 700;
    font-size: 40px;
}

.touch .touch-title-bar p {
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 16px;
}

.touch li {
    display: block;
}

.touch .touch-content {
    background: #f8f8f8;
    padding: 25px;
    display: flex;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.touch .touch-content .icon-box {
    width: 60px;
    margin-right: 20px;
}

.touch .col-md-4:nth-child(3) .touch-content .icon-box {
    width: 100px;
}

.touch .touch-content .icon-content h5 {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 5px;
}

.touch .touch-content .icon-content p {
    margin-bottom: 0;
    line-height: 26px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
}

/* contact-form */

.send_message {
    padding: 30px 0;
}

.send_message .contact-form {
    background: #f8f8f8;
    padding: 30px 30px 25px;
}

.send_message .contact-form h2 {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 32px;
}

.send_message .contact-form .form-group {
    margin-bottom: 15px;
}

.send_message .contact-form .form-group .form-control {
    height: 45px;
    padding: 10px 15px;
    border-radius: 5px;
    background: white;
    border: 1px solid #25669e;
}

.send_message .contact-form .form-group textarea.form-control {
    height: 100%;
}

.send_message .contact-form .form-group input.thm-btn {
    display: inline-block;
    vertical-align: middle;
    outline: none !important;
    background-color: #25669e;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 8px 20px;
    transition: all 0.3s linear;
    z-index: 1;
    line-height: 34px;
    word-spacing: 0.3em;
    border: none;
    border-radius: 5px;
}

/* footer */

.footer_area {
    background: url(../images/footer-bg.webp) no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 2;
    padding: 70px 0 10px;
}

.footer_area:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    background-color: #0C153B;
    z-index: -2;
}

.footer_area .watermark {
    position: absolute;
    z-index: -1;
    width: 140px;
    bottom: 20px;
    left: 5px;
    opacity: .4;
}

.footer_area .logo-content {
    color: #8480ae;
}

.logo-content .logo {
    margin-bottom: 20px;
    font-weight: 700;
    color: #c2d4f8;
}

.footer_area .logo-content p {
    font-size: 17px;
    font-weight: 500;
}

.logo {
    text-align: center;
    width: 250px;
}

.logo img {
    height: 80px;
}

span.tag-line {
    display: block;
    font-size: 13px;
    line-height: 25px;
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}

.footer_area .number {
    margin-bottom: 35px;
}

.footer_area .number p {
    color: #8480ae;
    font-weight: 600;
    font-size: 17px;
    line-height: 27px;
}

.footer_area .single-footer-widget .title {
    color: #c2d4f8;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.6px;
    font-size: 26px;
}

.footer_area .single-footer-widget .company-info-links li {
    display: block;
    margin-bottom: 2px;
    font-weight: 500;
}

.footer_area .single-footer-widget .company-info-links li:last-child {
    margin-bottom: 0;
}

.footer_area .single-footer-widget .company-info-links li a {
    color: #8480ae;
    text-decoration: none;
    font-size: 16px;
}

.social-link li {
    padding-right: 10px;
}

.logo-content img {
    margin-bottom: 10px;
    height: 110px;
    background: #fff;
}

.row.copyright {
    padding: 40px 0px 10px;
    text-align: center;
}

.row.copyright p {
    color: #fff;
    margin-bottom: 0;
    font-family: 'Inter';
}

.row.copyright a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.footer_area .logo-content a {
    color: #fff;
    text-decoration: none;
}

/* Home contact form */

.visit {
    padding: 40px 0;
}

.visit .col-md-6 {
    padding: 0;
}

.visit .upper {
    background: #080b3d;
    border-radius: 15px;
}

.visit .contact {
    background: #080b3d;
    padding: 30px 40px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.visit .contact .title-bar h5 {
    margin-bottom: 25px;
    color: white;
    font-weight: 600;
    font-size: 30px;
}

.visit .contact .title-bar h5::before {
    content: '';
    display: inline-block;
    width: 60px;
    height: 2px;
    background-color: #fff;
    margin-right: 15px;
}

.visit .contact .form-group .form-control {
    background: transparent;
    border: none;
    margin-bottom: 20px;
    border-bottom: 1px solid #314D8E !important;
    padding: 0 0 14px 0;
    border-radius: 0;
    color: #fff;
}

.visit .contact .form-group .form-control:focus {
    box-shadow: none !important;
}

.visit .contact .form-group .form-control::placeholder {
    color: white;
}

.thm-btn {
    padding: 10px 20px;
    background: #25669e;
    border: none;
    display: inline-block;
    margin-top: 25px;
    color: white;
    font-weight: 600;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: all 0.4s linear;
}

.thm-btn:before {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    background: #fff;
    right: 0;
    top: 0;
    border-radius: 15px;
    z-index: -1;
    transition: all 0.4s linear;
}

.thm-btn:hover:before {
    width: 100%;
    left: 0;
}

.thm-btn:hover {
    color: #413737;
}

.thm-btn a {
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    font-family: sans-serif;
}

.thm-btn:hover a {
    color: gray;
}

.testimonial-sec {
    padding: 50px 0 0px;
}

.testimonial {
    border-right: 4px solid #080b3d;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    padding: 30px 30px 30px 130px;
    margin: 0 15px 10px 15px;
    overflow: hidden;
    position: relative;
}

.testimonial:before {
    content: "";
    position: absolute;
    bottom: -4px;
    left: -17px;
    border-top: 25px solid #080b3d;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    transform: rotate(45deg);
}

.testimonial:after {
    content: "";
    position: absolute;
    top: -4px;
    left: -17px;
    border-top: 25px solid #080b3d;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    transform: rotate(135deg);
}

.testimonial .pic {
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 60px;
    left: 20px;
}

.testimonial .pic img {
    width: 100%;
    height: auto;
}

.testimonial .description {
    font-size: 15px;
    letter-spacing: 1px;
    color: #6f6f6f;
    line-height: 25px;
    margin-bottom: 15px;
}

.testimonial .title {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #080b3d;
    margin: 0;
}

.testimonial .post {
    display: inline-block;
    font-size: 17px;
    color: #080b3d;
    font-style: italic;
}

.owl-theme .owl-controls .owl-page span {
    border: 2px solid #2a3d7d;
    background: #fff !important;
    border-radius: 0 !important;
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    .testimonial {
        padding: 20px;
        text-align: center;
    }
    .testimonial .pic {
        display: block;
        position: static;
        margin: 0 auto 15px;
    }
}

header .nav-menu li a i {
    font-size: 15px;
}

/* services */

.page-title-block {
    background: #222222;
    background-size: cover;
    position: relative;
    padding: 101px 0;
    z-index: 1;
}

.page-title-block:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #171b27;
    opacity: .80;
}

.page-title-block .container {
    position: relative;
    z-index: 10;
}

.page-title-block h2 {
    margin: 0;
    font-size: 50px;
    font-weight: 500;
    color: #fff;
}

.page-title-block .thm-breadcrumb a,
.page-title-block .thm-breadcrumb span {
    display: inline-block;
    vertical-align: middle;
}

.page-title-block .thm-breadcrumb a,
.page-title-block .thm-breadcrumb span.page-title {
    color: #FFFFFF;
    font-size: 16px;
}

.page-title-block .thm-breadcrumb span.page-title {
    color: #25669e;
}

.page-title-block .thm-breadcrumb span.sep {
    color: #fff;
    margin-left: 7px;
    margin-right: 7px;
}

.blog-style-three .sidebar .single-sidebar+.single-sidebar {
    margin-top: 50px;
}

.blog-style-three .sidebar .single-sidebar .widget-title {
    margin-bottom: 25px;
}

.blog-style-three .sidebar .single-sidebar .widget-title h3 {
    margin: 0;
    color: #222222;
    font-size: 30px;
    font-weight: 400;
}

.blog-style-three .sidebar .single-sidebar ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-style-three .sidebar .single-sidebar .search-form {
    width: 100%;
    position: relative;
}

.blog-style-three .sidebar .single-sidebar .search-form input {
    border: none;
    outline: none;
    border-style: solid;
    border-width: 2px;
    border-color: #e5e5e5;
    width: 100%;
    height: 50px;
    padding-left: 15px;
}

.blog-style-three .sidebar .single-sidebar .search-form button[type=submit] {
    border: none;
    outline: none;
    background-color: transparent;
    width: 50px;
    height: 50px;
    background-color: #57b957;
    color: #fff;
    font-size: 15px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
}

.blog-style-three .sidebar .single-sidebar .category-list {
    margin-top: -20px;
}

.blog-style-three .sidebar .single-sidebar .category-list li {
    transition: all .4s ease;
    display: block;
}

.blog-style-three .sidebar .single-sidebar .category-list li+li {
    border-top: 1px solid #e5e5e5;
}

.blog-style-three .sidebar .single-sidebar .category-list li a {
    display: block;
    color: #848484;
    font-size: 17px;
    padding: 11.5px 0;
    padding-left: 24px;
    position: relative;
    transition: all .4s ease;
}

.blog-style-three .sidebar .single-sidebar .category-list li a:before {
    content: '\f111';
    font-family: 'FontAwesome';
    font-size: 7px;
    color: #848484;
    position: absolute;
    top: 50%;
    left: 0px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: all .4s ease;
}

.blog-style-three .sidebar .single-sidebar .category-list li:hover {
    background-color: #25669e;
}

.blog-style-three .sidebar .single-sidebar .category-list li:hover a {
    color: #fff;
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
}

.blog-style-three .sidebar .single-sidebar .category-list li:hover a:before {
    left: 10px;
    color: #fff;
}

.blog-style-three .sidebar .single-sidebar .latest-post-wrapper .single-latest-post+.single-latest-post {
    margin-top: 30px;
}

.blog-style-three .sidebar .single-sidebar .latest-post-wrapper .single-latest-post .image-block,
.blog-style-three .sidebar .single-sidebar .latest-post-wrapper .single-latest-post .text-block {
    display: table-cell;
    vertical-align: middle;
}

.blog-style-three .sidebar .single-sidebar .latest-post-wrapper .single-latest-post .image-block {
    width: 85px;
}

.blog-style-three .sidebar .single-sidebar .latest-post-wrapper .single-latest-post .image-block>img {
    width: 100%;
}

.blog-style-three .sidebar .single-sidebar .latest-post-wrapper .single-latest-post .text-block {
    padding-left: 20px;
}

.blog-style-three .sidebar .single-sidebar .latest-post-wrapper .single-latest-post .text-block h3 {
    margin: 0;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 5px;
}

.blog-style-three .sidebar .single-sidebar .latest-post-wrapper .single-latest-post .text-block h3 a {
    color: #222222;
    transition: all .4s ease;
}

.blog-style-three .sidebar .single-sidebar .latest-post-wrapper .single-latest-post .text-block h3 a:hover {
    color: #57b957;
}

.blog-style-three .sidebar .single-sidebar .latest-post-wrapper .single-latest-post .text-block span.date-block {
    color: #848484;
    font-size: 15px;
}

.blog-style-three .sidebar .single-sidebar ul.link-list {
    margin-top: -15px;
}

.blog-style-three .sidebar .single-sidebar ul.link-list li+li {
    margin-top: 15px;
}

.blog-style-three .sidebar .single-sidebar ul.link-list li a {
    color: #848484;
    font-size: 15px;
    display: inline-block;
    transition: all .4s ease;
}

.blog-style-three .sidebar .single-sidebar ul.link-list li a:hover {
    color: #57b957;
}

.blog-style-three .sidebar .single-sidebar .insta-post-wrapper {
    margin-top: -5px;
    margin-left: -5px;
    margin-right: -5px;
}

.blog-style-three .sidebar .single-sidebar .insta-post-wrapper .single-insta {
    display: block;
    width: 33.3333%;
    padding: 5px 5px;
    float: left;
}

.blog-style-three .sidebar .single-sidebar .insta-post-wrapper .single-insta>img {
    width: 100%;
}

.blog-style-three .sidebar .single-sidebar.category-widget {
    padding: 40px;
    background-color: #F5F5F8;
}

.blog-style-three {
    padding: 90px 0 50px;
}

.blog-style-three .single-blog-style-three {
    margin-bottom: 30px;
}

.blog-style-three .single-blog-style-three .text-block {
    padding: 56px 40px;
}

.blog-style-three .single-blog-style-three .text-block h3 {
    margin: 0;
    margin-bottom: 10px;
}

.blog-style-three .single-blog-style-three .text-block .meta-info {
    margin: 0;
    margin-bottom: 40px;
}

.blog-style-three .single-blog-style-three .text-block .meta-info a,
.blog-style-three .single-blog-style-three .text-block .meta-info span {
    display: inline-block;
    vertical-align: middle;
    color: #848484;
}

.blog-style-three .single-blog-style-three .text-block .meta-info span.sep {
    margin-left: 6px;
    margin-right: 6px;
}

.blog-style-three .single-blog-style-three .text-block .meta-info a:hover {
    color: #57b957;
}

.blog-style-three .service-details-content h3,
.blog-style-three .service-details-content h4,
.blog-style-three.service-details-content ul,
.blog-style-three .service-details-content li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-style-three .service-details-content h3,
.blog-style-three .service-details-content h4 {
    color: #222;
    font-weight: 500;
}

.blog-style-three .service-details-content h3 {
    font-size: 34px;
}

.blog-style-three .service-details-content h4 {
    font-size: 24px;
}

.blog-style-three .service-details-content ul.checklist {
    margin-bottom: 30px;
}

.blog-style-three .service-details-content ul.checklist li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    color: #182345;
}

.blog-style-three .service-details-content ul.checklist li+li {
    margin-top: 5px;
}

.blog-style-three .service-details-content ul.checklist li:before {
    content: '';
    width: 6px;
    height: 6px;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #57b957;
    transition: all .4s ease;
    border-radius: 50%;
}

.blog-style-three .service-details-content h4 {
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 600;
}

.blog-style-three .service-details-content ul li {
    font-weight: 600;
    font-size: 17px;
}

.blog-style-three .service-details-content ul li i {
    padding-right: 10px;
}

ol.breadcrumb {
    justify-content: center;
}

.header {
    display: none;
}

/* gallery */

.gallery {
    margin: 60px 0;
}

.gallery .img-box {
    padding: 10px;
}

/* phone view */

.navigation {
    height: 100px;
    background: #fff;
    z-index: 9999;
    display: none;
    position: relative;
}

.brand {
    position: absolute;
    padding-left: 0;
    float: left;
    line-height: 73px;
    text-transform: uppercase;
    font-size: 1.4em;
}

.brand a,
.brand a:visited {
    color: #ffffff;
    text-decoration: none;
    width: 190px;
    text-align: center;
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
}

nav {
    float: right;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    float: left;
    position: relative;
}

nav ul li a,
nav ul li a:visited {
    display: block;
    padding: 0px 20px;
    line-height: 70px;
    background: #06093c;
    color: #ffffff;
    text-decoration: none;
    border: none;
    font-size: 18px;
}

nav ul li a:hover,
nav ul li a:visited:hover {
    background: #2581DC;
    color: #ffffff;
}

nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after {
    padding-left: 4px;
    content: "\f107";
    font-family: 'FontAwesome';
}

nav ul li ul li {
    min-width: 190px;
}

nav ul li ul li a {
    padding: 15px;
    line-height: 20px;
}

.nav-dropdown {
    position: absolute;
    display: none;
    z-index: 1;
}

/* Mobile navigation */

.nav-mobile {
    display: none;
    position: absolute;
    top: 15%;
    right: 2%;
    background: #06093c;
    height: 70px;
    width: 75px;
}

@media only screen and (max-width: 798px) {
    .nav-mobile {
        display: block;
    }
    nav {
        width: 100%;
        padding: 105px 0 0;
    }
    nav ul {
        display: none;
    }
    nav ul li {
        float: none;
        display: block;
    }
    nav ul li a {
        padding: 15px;
        line-height: 20px;
    }
    nav ul li ul li a {
        padding-left: 30px;
    }
    .nav-dropdown {
        position: static;
    }
}

@media screen and (min-width: 799px) {
    .nav-list {
        display: block !important;
    }
}

#nav-toggle {
    position: absolute;
    left: 18px;
    top: 22px;
    cursor: pointer;
    padding: 10px 39px 13px 0px;
}

#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
    cursor: pointer;
    border-radius: 1px;
    height: 4px;
    width: 40px;
    background: #fff;
    position: absolute;
    display: block;
    content: "";
    transition: all 300ms ease-in-out;
}

#nav-toggle span:before {
    top: -10px;
}

#nav-toggle span:after {
    bottom: -10px;
}

#nav-toggle.active span {
    background-color: transparent;
}

#nav-toggle.active span:before,
#nav-toggle.active span:after {
    top: 0;
}

#nav-toggle.active span:before {
    transform: rotate(45deg);
}

#nav-toggle.active span:after {
    transform: rotate(-45deg);
}

.brand img {
    height: 65px;
}

.brand a {
    display: block;
}

span.tag-line {
    font-size: 10px;
}

.client-area{
    padding-bottom: 30px;
}

.section-title h3{
    font-size: 32px;
    margin-bottom: 5px;
    position: relative;
}

.section-title h3::before {
    content: '';
    display: inline-block;
    width: 60px;
    height: 3px;
    background-color: #000000;
    margin-right: 10px;
}

.client-area .logo-item{
    min-height: 150px;
    padding: 20px;
    height: 80px;
    text-align: center;
}

.client-area .logo-item .text-logo {
    margin: 12px 0 0;
    font-size: 35px;
}