@charset "UTF-8";


/*-----------------
    Web Fonts
-----------------*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&family=Poppins:wght@100&display=swap');

/*--------------------------------------------------------------
    Normalize
--------------------------------------------------------------*/

:root {
    --main-color-one: #ffc000;
    --main-color-two: #030749;
    --secondary-color: #006aec;
    --heading-color: #282b2d;
    --paragraph-color: #717171;
    --color-dark: #111111;
    --color-white: #ffffff;
    --heading-font: "Poppins", sans-serif;
    --body-font: "Poppins", sans-serif;
    --box-shadow: 2.088px 14.854px 30px 0px rgba(0, 0, 0, 0.1);
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
    font-family: var(--body-font);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

body {
    margin: 0;
    color: var(--paragraph-color);
    overflow-x: hidden;
    font-family: var(--body-font);
    font-size: 16px;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
    letter-spacing: 1px;
}

h1 {
    font-size: 48px;
    line-height: 1.0833333333;
}

h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

h3 {
    font-size: 24px;
    line-height: 1.0833333333;
    font-weight: 700;
}

h4 {
    font-size: 20px;
    line-height: 28px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-weight: 700;
}

p {
    -webkit-hyphens: auto;
    hyphens: auto;
    margin-bottom: 0;
    line-height: 32px;
    font-size: 16px;
    font-weight: 400;
}

p.text {
    color: var(--paragraph-color);
    -webkit-hyphens: auto;
    hyphens: auto;
    margin-bottom: 0;
}

a {
    color: inherit;
    text-decoration: none;
    color: var(--paragraph-color);
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
    color: inherit;
}

pre {
    word-break: break-word;
}

a i {
    padding: 0 2px;
}

img {
    max-width: 100%;
}

ol {
    counter-reset: counter;
    padding-left: 0;
}

ol li {
    list-style: none;
    margin-bottom: 1rem;
}

ol li:before {
    counter-increment: counter;
    content: counter(counter);
    font-weight: 500;
    margin-right: 10px;
}

blockquote {
    margin: 0;
    padding: 0;
}


/*input and button type focus outline disable*/

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=number]:focus,
textarea:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus,
select:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid #ddd;
}

code {
    color: var(--main-color-one);
}


/*--------------------------------------------------------------
    Accessibility
--------------------------------------------------------------*/


/* Text meant only for screen readers. */

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
    /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    -webkit-clip-path: none;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}


/* Do not show the outline on the skip link target. */

#content[tabindex="-1"]:focus {
    outline: 0;
}


/*--------------------------------------------------------------
    Globals
--------------------------------------------------------------*/


/* --------------------------------------
    Container width
-------------------------------------- */

#default-home .container {
    max-width: 1200px;
}

@media (max-width: 767px) {
    #hero-section .container {
        max-width: 600px;
    }
    #service-section .container,
    #project-section .container,
    #about-section .container,
    #find-out-more-section .container,
    #testimonial-section .container,
    #team-section .container,
    #blog-section .container,
    #footer-section .container,
    #counter-section .container,
    #features-section .container,
    #customer-review .container,
    #contact-section .container {
        max-width: 500px;
    }
}

.card,
.card-body {
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
}


/* --------------------------------------
    Contact form success message
-------------------------------------- */

#form-messages {
    color: green;
}


/* --------------------------------------
    Banner section
-------------------------------------- */

.bg-prefix {
    background-position: 50% 0px;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 200px 0;
    width: 100%;
}

#banner-section {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
}

#banner-section .overlay {
    padding: 350px 0 150px;
    background: rgba(2, 41, 95, .7);
	padding-bottom: 80px;
}

.breadcrubms h2 {
    color: var(--color-white);
}

.breadcrubms ul li {
    color: var(--color-white);
    font-size: 20px;
    display: inline-block;
    padding: 5px 10px;
    transition: all linear .3s;
}

.breadcrubms ul li:hover {
    color: var(--main-color-one);
}

@media (max-width: 767px) {
    #banner-section .overlay {
        padding: 450px 0 120px;
        /*background: rgba(0, 0, 0, .5);*/
    }
    .breadcrubms ul li span {
        font-size: 32px;
    }
}


/* --------------------------------------
    Spacing
-------------------------------------- */

.pt-0 {
    padding-top: 0;
}

.pt-5 {
    padding-top: 5px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-25 {
    padding-top: 25px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-35 {
    padding-top: 35px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-45 {
    padding-top: 45px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-55 {
    padding-top: 55px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-65 {
    padding-top: 65px;
}


.pt-70 {
    padding-top: 70px;
}

.pt-75 {
    padding-top: 75px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-105 {
    padding-top: 105px;
}

.pt-110 {
    padding-top: 110px;
}

.pt-115 {
    padding-top: 115px;
}

.pt-120 {
    padding-top: 120px;
}

.pt-125 {
    padding-top: 125px;
}

.pt-130 {
    padding-top: 130px;
}

.pt-135 {
    padding-top: 135px;
}

.pt-140 {
    padding-top: 140px;
}

.pt-145 {
    padding-top: 145px;
}

.pt-150 {
    padding-top: 150px;
}

.pb-0 {
    padding-bottom: 0;
}

.pb-5 {
    padding-bottom: 5px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-35 {
    padding-bottom: 35px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-45 {
    padding-bottom: 45px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-55 {
    padding-bottom: 55px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-65 {
    padding-bottom: 65px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-75 {
    padding-bottom: 75px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-85 {
    padding-bottom: 85px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-105 {
    padding-bottom: 105px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pb-115 {
    padding-bottom: 115px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pb-125 {
    padding-bottom: 125px;
}

.pb-130 {
    padding-bottom: 130px;
}

.pb-135 {
    padding-bottom: 135px;
}

.pb-140 {
    padding-bottom: 140px;
}

.pb-145 {
    padding-bottom: 145px;
}

.pb-150 {
    padding-bottom: 150px;
}

.mt-0 {
    margin-top: 0;
}

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-55 {
    margin-top: 55px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-65 {
    margin-top: 65px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-75 {
    margin-top: 75px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-85 {
    margin-top: 85px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-105 {
    margin-top: 105px;
}

.mt-110 {
    margin-top: 110px;
}

.mt-115 {
    margin-top: 115px;
}

.mt-120 {
    margin-top: 120px;
}

.mt-125 {
    margin-top: 125px;
}

.mt-130 {
    margin-top: 130px;
}

.mt-135 {
    margin-top: 135px;
}

.mt-140 {
    margin-top: 140px;
}

.mt-145 {
    margin-top: 145px;
}

.mt-150 {
    margin-top: 150px;
}

.mb-0 {
    margin-bottom: 0!important;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-55 {
    margin-bottom: 55px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-65 {
    margin-bottom: 65px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-75 {
    margin-bottom: 75px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-105 {
    margin-bottom: 105px;
}

.mb-110 {
    margin-bottom: 110px;
}

.mb-115 {
    margin-bottom: 115px;
}

.mb-120 {
    margin-bottom: 120px;
}

.mb-125 {
    margin-bottom: 125px;
}

.mb-130 {
    margin-bottom: 130px;
}

.mb-135 {
    margin-bottom: 135px;
}

.mb-140 {
    margin-bottom: 140px;
}

.mb-145 {
    margin-bottom: 145px;
}

.mb-150 {
    margin-bottom: 150px;
}

@media only screen and (min-width:678px) and (max-width: 991px) {
    /* Margin Top */
    .md-mt-5 {
        margin-top: 5px;
    }
    .md-mt-10 {
        margin-top: 10px;
    }
    .md-mt-15 {
        margin-top: 15px;
    }
    .md-mt-20 {
        margin-top: 20px;
    }
    .md-mt-25 {
        margin-top: 25px;
    }
    .md-mt-30 {
        margin-top: 30px;
    }
    .md-mt-35 {
        margin-top: 35px;
    }
    .md-mt-40 {
        margin-top: 40px;
    }
    .md-mt-45 {
        margin-top: 45px;
    }
    .md-mt-50 {
        margin-top: 50px;
    }
    .md-mt-55 {
        margin-top: 55px;
    }
    .md-mt-60 {
        margin-top: 60px;
    }
    .md-mt-65 {
        margin-top: 65px;
    }
    .md-mt-70 {
        margin-top: 70px;
    }
    .md-mt-75 {
        margin-top: 75px;
    }
    .md-mt-80 {
        margin-top: 80px;
    }
    .md-mt-85 {
        margin-top: 85px;
    }
    .md-mt-90 {
        margin-top: 90px;
    }
    .md-mt-95 {
        margin-top: 95px;
    }
    .md-mt-100 {
        margin-top: 100px;
    }
    /* Margin bottom */
    .md-mb-5 {
        margin-bottom: 5px;
    }
    .md-mb-10 {
        margin-bottom: 10px;
    }
    .md-mb-15 {
        margin-bottom: 15px;
    }
    .md-mb-20 {
        margin-bottom: 20px;
    }
    .md-mb-25 {
        margin-bottom: 25px;
    }
    .md-mb-30 {
        margin-bottom: 30px;
    }
    .md-mb-35 {
        margin-bottom: 35px;
    }
    .md-mb-40 {
        margin-bottom: 40px;
    }
    .md-mb-45 {
        margin-bottom: 45px;
    }
    .md-mb-50 {
        margin-bottom: 50px;
    }
    .md-mb-55 {
        margin-bottom: 55px;
    }
    .md-mb-60 {
        margin-bottom: 60px;
    }
    .md-mb-65 {
        margin-bottom: 65px;
    }
    .md-mb-70 {
        margin-bottom: 70px;
    }
    .md-mb-75 {
        margin-bottom: 75px;
    }
    .md-mb-80 {
        margin-bottom: 80px;
    }
    .md-mb-85 {
        margin-bottom: 85px;
    }
    .md-mb-90 {
        margin-bottom: 90px;
    }
    .md-mb-95 {
        margin-bottom: 95px;
    }
    .xmdmb-100 {
        margin-bottom: 100px;
    }
}

@media (max-width: 767px) {
    /* Margin Top */
    .xs-mt-0 {
        margin-top: 0;
    }
    .xs-mt-5 {
        margin-top: 5px;
    }
    .xs-mt-10 {
        margin-top: 10px;
    }
    .xs-mt-15 {
        margin-top: 15px;
    }
    .xs-mt-20 {
        margin-top: 20px;
    }
    .xs-mt-25 {
        margin-top: 25px;
    }
    .xs-mt-30 {
        margin-top: 30px;
    }
    .xs-mt-35 {
        margin-top: 35px;
    }
    .xs-mt-40 {
        margin-top: 40px;
    }
    .xs-mt-45 {
        margin-top: 45px;
    }
    .xs-mt-50 {
        margin-top: 50px;
    }
    .xs-mt-55 {
        margin-top: 55px;
    }
    .xs-mt-60 {
        margin-top: 60px;
    }
    .xs-mt-65 {
        margin-top: 65px;
    }
    .xs-mt-70 {
        margin-top: 70px;
    }
    .xs-mt-75 {
        margin-top: 75px;
    }
    .xs-mt-80 {
        margin-top: 80px;
    }
    .xs-mt-85 {
        margin-top: 85px;
    }
    .xs-mt-90 {
        margin-top: 90px;
    }
    .xs-mt-95 {
        margin-top: 95px;
    }
    .xs-mt-100 {
        margin-top: 100px;
    }
    /* Margin bottom */
    .xs-mb-0 {
        margin-bottom: 0;
    }
    .xs-mb-5 {
        margin-bottom: 5px;
    }
    .xs-mb-10 {
        margin-bottom: 10px;
    }
    .xs-mb-15 {
        margin-bottom: 15px;
    }
    .xs-mb-20 {
        margin-bottom: 20px;
    }
    .xs-mb-25 {
        margin-bottom: 25px;
    }
    .xs-mb-30 {
        margin-bottom: 30px;
    }
    .xs-mb-35 {
        margin-bottom: 35px;
    }
    .xs-mb-40 {
        margin-bottom: 40px;
    }
    .xs-mb-45 {
        margin-bottom: 45px;
    }
    .xs-mb-50 {
        margin-bottom: 50px;
    }
    .xs-mb-55 {
        margin-bottom: 55px;
    }
    .xs-mb-60 {
        margin-bottom: 60px;
    }
    .xs-mb-65 {
        margin-bottom: 65px;
    }
    .xs-mb-70 {
        margin-bottom: 70px;
    }
    .xs-mb-75 {
        margin-bottom: 75px;
    }
    .xs-mb-80 {
        margin-bottom: 80px;
    }
    .xs-mb-85 {
        margin-bottom: 85px;
    }
    .xs-mb-90 {
        margin-bottom: 90px;
    }
    .xs-mb-95 {
        margin-bottom: 95px;
    }
    .xs-mb-100 {
        margin-bottom: 100px;
    }
}


/* Font Size */

.font-sm {
    font-size: 13px;
}

.font-md {
    font-size: 16px;
}

.font-lg {
    font-size: 17px;
}

.font-xl {
    font-size: 21px;
}

.font-xxl {
    font-size: 30px;
}

.font-xxxl {
    font-size: 40px;
    line-height: 40px;
}

.line-h-sm {
    line-height: 13px;
}

.line-h-md {
    line-height: 16px;
}

.line-h-lg {
    line-height: 17px;
}

.line-h-xl {
    line-height: 21px;
}

.line-h-xxl {
    line-height: 30px;
}

.line-h-xxxl {
    line-height: 40px;
}

.m-auto {
    margin-left: auto;
    margin-right: auto;
}

.min-height-600 {
    min-height: 600px;
}

.overflow-hidden {
    overflow: hidden;
}


/*--------------------------------------------------------------
    Alignments
--------------------------------------------------------------*/

.alignleft {
    float: left;
    clear: both;
}

.alignright {
    float: right;
    clear: both;
}

.aligncenter {
    clear: both;
    display: block;
    margin: 0 auto 1.75em;
}

.alignfull {
    margin: 1.5em 0;
    max-width: 100%;
}

.alignwide {
    max-width: 1100px;
}


/*--------------------------------------------------------------
    Clearings
--------------------------------------------------------------*/

.clear {
    clear: both;
}

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
    table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}


/*--------------------------------------------------------------
    Button
--------------------------------------------------------------*/

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    color: var(--color-white);
    border-color: transparent;
}

.btn-primary.focus,
.btn-primary:focus {
    box-shadow: none;
}

.btn {
    position: relative;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-primary {
    background: var(--main-color-one);
    color: #111111;
    border: 1px solid var(--main-color-one);
    transition: all 0.3s ease;
    overflow: hidden;
    font-size: 15px;
    letter-spacing: 1px;
	text-transform: uppercase;
}

.btn-primary:hover {
    background: #00c1f2;
    color: #ffffff;
    border: 1px solid var(--main-color-one);
}


/* btn primary */

@media (max-width:767px) {
    .btn {
        padding: 15px 20px;
    }
}


/*-------------------------
    Section Title
-------------------------*/

.section-title-one {
    position: relative;
    max-width: 600px;
    margin: auto;
}

.section-title-two {
    position: relative;
    max-width: 700px;
}

.section-title .subtitle {
    position: relative;
    color: var(--main-color-one);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-title-one .subtitle:before {
    content: "";
    position: absolute;
    top: -20px;
    right: 50%;
    transform: translate(-50%, -50%);
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: var(--main-color-one);
}

.section-title-two .subtitle:before {
    content: "";
    position: absolute;
    top: -25px;
    left: 0;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: var(--main-color-one);
}

.section-title .title {
    font-size: 56px;
    line-height: 1.2;
    font-weight: 700;
    font-family: var(--heading-font);
    margin: 0;
    letter-spacing: -.05em;
}

.section-title .title span {
    font-weight: 700 !important;
}

.section-title p {
    font-size: 16px;
    font-weight: 500;
    margin-top: 15px;
}

@media (max-width: 767px) {
    .section-title .title,
    h2 {
        font-size: 24px;
    }
    .section-title .subtitle {
        font-size: 14px;
    }
	.section-title-two .subtitle::before {
  right: 0;
  margin: auto;
}
}


/*--------------------------------------------------------------
    Posts and pages
--------------------------------------------------------------*/

.sticky {
    display: block;
}


/*--------------------------------------------------------------
    Media
--------------------------------------------------------------*/


/* Make sure embeds and iframes fit their containers. */

embed,
iframe,
object {
    max-width: 100%;
}


/* Make sure logo link wraps around logo image. */

.custom-logo-link {
    display: inline-block;
}


/*--------------------------------------------------------------
    Captions
--------------------------------------------------------------*/

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
    clear: both;
}

.wp-caption img[class*=wp-image-] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}


/*----------------------------------------
    Unit test
------------------------------------------*/

.wp-link-pages a {
    margin: 0 5px;
    transition: 0.3s ease-in;
}

.wp-link-pages {
    margin-bottom: 30px;
    margin-top: 25px;
}

.wp-link-pages span,
.wp-link-pages a {
    border: 1px solid #e2e2e2;
    padding: 5px 15px;
    display: inline-block;
}

.wp-link-pages .current,
.wp-link-pages a:hover {
    background-color: var(--main-color-one);
    color: var(--color-white);
    border-color: var(--main-color-one);
}

.wp-link-pages span:first-child {
    margin-right: 5px;
}

.post-password-form input {
    display: block;
    border: 1px solid #e2e2e2;
    height: 50px;
    border-radius: 3px;
    padding: 0 20px;
}

.post-password-form label {
    font-weight: 600;
    color: #333;
}

.post-password-form input[type=submit] {
    width: 100px;
    height: 50px;
    background-color: var(--main-color-one);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease-in;
}

.post-password-form input[type=submit]:hover {
    background-color: #121A2F;
}

.footer-widget .table td,
.footer-widget .table th {
    padding: 0.5rem !important;
}


/*--------------------------------------------------------------
    Gutenberg	Default Style
--------------------------------------------------------------*/

.single-post-details-item .entry-content>.alignwide {
    max-width: 1100px;
}

.single-post-details-item .entry-content>.alignfull {
    margin: 1.5em 0;
    max-width: 100%;
}

.wp-block-video video {
    max-width: 636px;
}

.wp-block-image img {
    display: block;
}

.wp-block-image.alignleft,
.wp-block-image.alignright {
    width: 100%;
}

.wp-block-image.alignfull img {
    width: 100vw;
}

.wp-block-gallery:not(.components-placeholder) {
    margin: 1.5em auto;
}

.wp-block-cover-text p {
    padding: 1.5em 14px;
}

ul.wp-block-latest-posts.alignwide,
ul.wp-block-latest-posts.alignfull,
ul.wp-block-latest-posts.is-grid.alignwide,
ul.wp-block-latest-posts.is-grid.alignwide {
    padding: 0 14px;
}

.wp-block-table {
    display: block;
    overflow-x: auto;
}

.wp-block-table table {
    border-collapse: collapse;
    width: 100%;
}

.wp-block-table td,
.wp-block-table th {
    padding: 0.5em;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper>iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.wp-block-quote.is-large {
    margin: 0 auto 16px;
}

.wp-block-pullquote>p:first-child {
    margin-top: 0;
}

.wp-block-separator {
    margin: 3em auto;
    padding: 0;
}

@media screen and (min-width: 768px) {
    .wp-block-cover-text p {
        padding: 1.5em 0;
    }
}

wp-block-video video {
    max-width: 636px;
}

.wp-block-image img {
    display: block;
}

.wp-block-image.alignleft,
.wp-block-image.alignright {
    width: 100%;
}

.wp-block-image.alignfull img {
    width: 100vw;
}

.wp-block-gallery:not(.components-placeholder) {
    margin: 1.5em auto;
}

.wp-block-cover-text p {
    padding: 1.5em 14px;
}

ul.wp-block-latest-posts.alignwide,
ul.wp-block-latest-posts.alignfull,
ul.wp-block-latest-posts.is-grid.alignwide,
ul.wp-block-latest-posts.is-grid.alignwide {
    padding: 0 14px;
}

.wp-block-table {
    display: block;
    overflow-x: auto;
}

.wp-block-table table {
    border-collapse: collapse;
    width: 100%;
}

.wp-block-table td,
.wp-block-table th {
    padding: 0.5em;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper>iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.wp-block-quote.is-large {
    margin: 0 auto 16px;
}

.wp-block-pullquote>p:first-child {
    margin-top: 0;
}

.wp-block-quote:not(.is-large):not(.is-style-large) {
    border-left: 4px solid #000;
    padding-left: 1em;
}

.wp-block-separator {
    margin: 3em auto;
    padding: 0;
}

@media screen and (min-width: 768px) {
    .wp-block-cover-text p {
        padding: 1.5em 0;
    }
}

.wp-block-pullquote {
    border-top: 4px solid #555d66;
    border-bottom: 4px solid #555d66;
    color: #40464d;
}


/* --------------------------------
        Header Area
-------------------------------- */


/* Header Top 
------------------------- */

.header-top .header-top-left ul li a {
    text-transform:none;
    border-right: 1px solid #ffffff;
    color: #ffffff;
    font-size: 14px;
    padding: 0 10px;
    transition: all linear .3s;
}

.header-top .header-top-left ul li:last-child a {
    border-right: none;
}

.header-top .header-top-left ul li a:hover {
    color: var(--main-color-one);
}

.header-top .header-top-left ul li {
    color: var(--paragraph-color);
}

.header-top .header-top-right ul li a {
    color: #ffffff;
    padding: 0 10px;
}
.header-top .header-top-right ul li a img{
	width:26px ;
	height:26px ;
}
.header-top .navbar-area.nav-style-default .nav-container .navbar-collapse .navbar-nav li a {
    color: var(--color-white);
    font-weight: 500;
}

@media (max-width:767px) {
    .header-top ul {
        justify-content: center;
    }
    .header-top-left p {
        letter-spacing: 0;
    }
    .header-top-right ul {
        text-align: center;
    }
}


/* Header close button
-----------------------------*/

.header-overlay-close {
    position: absolute;
    display: block;
    width: 45px;
    height: 45px;
    top: 21px;
    left: 50%;
    margin-left: -23px;
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
}

.header-overlay-close::before,
.header-overlay-close::after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 2px;
    height: 20px;
    top: 12px;
    left: 22px;
    background-color: var(--color-white);
}

.header-overlay-close::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.header-overlay-close::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


/* Header Toggle
-----------------------------*/

.header-toggle-menu {
    display: none;
    width: 40px;
    height: 40px;
    position: absolute;
}

.header-toggle-menu i {
    font-size: 20px;
    color: var(--paragraph-color);
}


/* Header responsive: header components
---------------------------------------*/

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-top .header-top-left ul li {
        padding-right: 5px;
    }
    .header-nav li {
        padding-right: 15px !important;
    }
    .header-nav li.has-children>a::after {
        right: 5px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 800px) {
    .header-toggle-menu {
        display: block;
        z-index: 999;
        top: -8px;
        right: 0;
    }
}

@media only screen and (max-width:767px) {
    .header-toggle-menu {
        display: block;
        z-index: 999;
        right: 0;
        top: -8px;
    }
}


/* Header main navigation
---------------------------------------*/

.header-area {
    padding: 20px 0;
}

.logo-wrapper {
    max-width: 100px;
    margin: 0 auto;
}

.header-nav-wrap .header-nav-heading {
    text-align: center;
    font-family: "metropolis-semibold", sans-serif;
    font-size: 1.4rem;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: .3rem;
    margin-top: 6rem;
}

.header-nav-wrap .header-nav-heading,
.header-nav-wrap .close-mobile-menu {
    display: none;
}

.header-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: "metropolis-medium", sans-serif;
    font-size: 15px;
    line-height: 94px;
}

.header-nav li {
    display: inline-block;
    position: relative;
    padding: 0 35px;
}

.header-nav li.has-children {
    padding-right: 25px;
}

.header-nav li a {
    display: block;
    line-height: 39px;
    font-weight: 600;
    font-size: 15px;
    font-family: var(--heading-font);
    transition: all linear .3s;
}

.header-nav li a.active {
    display: block;
    color: var(--main-color-one);
}

.header-nav li.has-children>a::after {
    content: '+';
    display: block;
    height: 5px;
    width: 5px;
    position: absolute;
    right: 12px;
    top: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header-nav li:hover>a,
.header-nav li:focus>a {
    color: var(--main-color-one);
}

.header-nav li:hover li,
.header-nav li:focus li {
    background: transparent;
}

.header-nav li ul {
    position: absolute;
    top: 66px;
    left: 18px;
    width: auto;
    font-size: 14px;
    margin: 0;
    padding: 20px 30px;
    background: #00c1f2;
    border-radius: 0 0 3px 3px;
    z-index: 500;
    -webkit-transform: translate3d(0, 15px, 0);
    -ms-transform: translate3d(0, 15px, 0);
    transform: translate3d(0, 15px, 0);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    opacity: 0;
    visibility: hidden;
    min-width: 200px;
}

.header-nav li ul ul {
    position: absolute;
    top: 0;
    left: 100%;
    left: calc(100% + 1px);
    border-radius: 0 0 3px 3px;
    padding-top: 1.2rem;
}

.header-nav li ul li {
    display: block;
    text-align: left;
    padding: 0;
    margin: 0;
    min-height: 33px;
    width: 100%;
}

.header-nav li ul li a {
    display: block;
    white-space: nowrap;
    padding: 10px 0;
    font-family: "metropolis-regular", sans-serif;
    line-height: 18px;
    color: #fff;
    font-weight: 500;
}

.header-nav li:hover>ul {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}


/* Responsive: main navigation
 * ------------------------------- */





@media only screen and (min-width:801px) {
    .header-nav li ul {
        display: block !important;
    }
}
@media only screen and (max-width:1210px) {
	#quote-section::before {
  width: 7px !important;
  background-repeat: round !important;
}
}

@media only screen and (max-width:1140px) {
	.tp-service-three-img {
  margin-right: 18px !important;
  min-width: 200px !important;
  width: 200px !important;
  border-radius: 20px !important;
}
	
	.btn {
  position: relative;
  padding: 15px 25px !important;
		font-size: 13px;
}
	.tp-service-three-text p {
  color: #66686b;
  font-size: 12px !important;
  line-height: 18px !important;
}
	.tp-service-three-title {
  font-size: 16px !important;
  margin-bottom: 10px !important;
}
	
}





@media only screen and (max-width:800px) {
	
	.header-area.style-01 .header-nav li a {
    color: #fff !important;
}
	
	.header-area.style-01 .header-toggle-menu i {
  font-size: 30px;
}
	
    .header-nav-wrap {
        background-color: #02295f;
        opacity: 0;
        visibility: hidden;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        margin: 0;
        border: none;
        z-index: 999999;
        overflow-y: auto;
    }
    .header-nav-wrap .header-nav-heading,
    .header-nav-wrap .close-mobile-menu {
        display: block;
    }
    .header-nav {
        margin: 4.8rem 6rem 3rem 6rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        font-family: "metropolis-semibold", sans-serif;
        font-size: 16px;
    }
    .header-nav li {
        display: block;
        padding: 0;
        text-align: left;
    }
    .header-nav li ul {
        display: none;
        position: static;
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
        visibility: visible;
        background-color: transparent;
        padding: 0 0 1.8rem 0;
        -webkit-transition: none !important;
        transition: none !important;
    }
    .header-nav li ul li a {
        padding: 7.5px 1.5rem 7.5px 1.5rem;
    }
    .header-nav>li {
        border-top: 1px solid rgba(255, 255, 255, 0.03);
    }
    .header-nav>li a {
        line-height: 54px;
    }
    body.nav-wrap-is-visible {
        overflow: hidden;
    }
    .nav-wrap-is-visible .header-nav-wrap {
        opacity: 1;
        visibility: visible;
    }
}

@media only screen and (max-width:767px) {
    .header-nav {
        margin: 30px;
    }
    .logo-wrapper {
        max-width: 200px;
        margin: 20px auto;
    }
    .header-toggle-menu {
        left: 25px;
        top: 38px;
    }
}

@media only screen and (max-width:576px) {
	.header-main-menu .col-sm-7{
	  -webkit-box-flex: 0;
	  -ms-flex: 0 0 70%;
	  flex: 0 0 70%;
	  max-width: 70%;
}
	.header-main-menu .col-sm-5{
	  -webkit-box-flex: 0;
	  -ms-flex: 0 0 30%;
	  flex: 0 0 30%;
	  max-width: 30%;
}

}


/* Header style two */

.header-main-menu {
    background-color: #feea36;
    border-radius: 50px;
    padding-left: 20px;
}

.header-area.style-01 .header-toggle-menu i {
   /* font-size: 20px;*/
    color: var(--color-white);
}

.header-area.style-01 .header-nav li a {
    color: #1f1f1f;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
}

.header-area.style-01 .header-nav li ul li a {
    color: #fff;
    font-size: 13px;
}

.header-area.style-01 .header-nav li a:hover,
.header-area.style-01 .header-nav li a.active {
    color: #b29f02 !important;
}

.header-area.style-01 {
    position: absolute;
    width: 100%;
    z-index: 999;
    padding: 30px 0;
}


/* Call button */

.call-btn-area {
    position: relative;
}

.call-btn-icon {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.call-btn-icon i {
    height: 60px;
    width: 60px;
    line-height: 65px;
    background-color: #00c1f2;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    color: #fff;
    border: 3px solid #feea36;
    display: block;
}

.call-btn {
    background: #000000;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.call-btn a span {
    display: block;
}

.call-btn {
    background: #00c1f2;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    padding: 22px 20px;
    display: flex;
    justify-content: center;
}

.call-btn a .call-btn-num {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.call-btn a .call-btn-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media only screen and (min-width: 768px) and (max-width: 800px) {
    .header-top .header-top-left ul li {
        padding-right: 0;
    }
    .header-toggle-menu {
        top: 34px;
        left: 25px;
    }
	.header-area.style-01 .header-toggle-menu i {
  font-size: 30px;
	}
}

@media only screen and (max-width:767px) {
    .header-toggle-menu.style-02 {
        position: absolute;
        right: 0 !important;
        left: inherit;
        top: -10px;
    }
}


/*--------------------------------------------------------------
    Hero section
--------------------------------------------------------------*/


/* Slider animation */

.hero-slider.style-01 .owl-item.active .subtitle {
    animation: fadeInUp 1s .5s both;
}

.hero-slider.style-01 .owl-item.active .title {
    animation: fadeInUp 1.3s 1s both;
}

.hero-slider.style-01 .owl-item.active p {
    animation: fadeInUp 1.6s 1.5s both;
}

.hero-slider.style-01 .owl-item.active .author-sign {
    animation: fadeInUp 2s 2s both;
}

.hero-slider.style-01 .owl-item.active .hero-btn .btn-primary {
    animation: fadeInUp 2s 1.5s both;
}

.hero-slider.style-01 .owl-item.active .hero-btn .btn-secondary {
    animation: fadeInUp 2.5s 2s both;
}


/* Owl navigations */

.hero-slider.style-01:hover .owl-nav div {
    visibility: visible;
    opacity: 1;
}

.hero-slider.style-01 .owl-nav div {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    color: var(--color-white);
    border: 1px solid var(--color-white);
    border-radius: 1%;
    transition: all 0.3s ease-in;
    visibility: hidden;
    opacity: 0;
}

.hero-slider.style-01 .owl-nav div:hover {
    background: var(--main-color-one);
    border-color: var(--main-color-one);
}

.hero-slider.style-01 .owl-nav div.owl-next {
    left: auto;
    right: 20px;
}


/* Hero Slider Padding */

#hero-section .overlay {
    background: rgba(0, 36, 52, .6);
}

#hero-section .overlay {
    padding: 370px 0 170px;
}


/* Content */

.hero-slider.style-01 .hero-bg-01 {
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.hero-content .title {
    position: relative;
    line-height: 55px;
    font-size: 60px;
	text-transform: uppercase;
    margin: 0px 0 20px;
    padding-left: 15px;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 3px;
	font-family: 'Oswald', sans-serif;
}

.hero-content .title span {
    display: block;
    margin-top: 20px;
}

.hero-content .text {
    font-size: 20px;
    line-height: 1.5;
    color: var(--color-white);
    max-width: 650px;
    margin: 0px auto 0;
	margin-bottom: 20px;
	text-transform: uppercase;
}


/* hero two */

#hero-section-two {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#hero-section-two .overlay {
    padding: 400px 0 200px;
    background: rgba(0, 0, 0, .8);
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .hero-content .title {
        font-size: 40px;
		line-height: 30px;
    }
    .quote-title {
        max-width: 600px;
        margin-left: 50px;
    }
    .quote-title .text {
        margin-top: 30px;
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    #hero-section .overlay,
    #hero-section-two .overlay {
        padding: 450px 0 150px;
    }
    .hero-content .title {
        font-size: 42px;
    }
    .hero-content .text {
        font-size: 16px;
margin: 20px auto 0;
  margin-bottom: 0px;
margin-bottom: 25px;
    }
    .hero-content .subtitle {
        margin: auto;
    }
    .hero-content .title {
        line-height: 26px !important;
        font-size: 32px;
    }
}


/*---------------------------
    Quote section
---------------------------*/

#quote-section {
    position: relative;
    padding: 150px 0 120px;
    background: #02295f;
}

#quote-section:before {
    background: url(assets/images/zigzag.png);
    content: '';
    position: absolute;
    width: 38px;
    height: 100%;
    left: 0;
    bottom: 0;
    background-color: #02295f;
    background-repeat: repeat-y;
}

.quote-title .title {
    color: var(--color-white);
}

.quote-title .text {
    margin-top: 40px;
    color: #b5b5b5;
}

.request-form {
    padding: 0 50px;
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 30px;
}

.request-page-form .form-group textarea {
    width: 100%;
    resize: none;
}

.request-page-form .form-group .form-control {
    padding: 25px;
    border-radius: 50px;
    border: none;
    color: #666666;
    background-color: #123d79;
}

.request-page-form .form-group .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
}

.request-page-form .submit-btn {
    background-color: var(--main-color-one);
    width: 100%;
    padding: 25px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-dark);
    transition: all 0.3s ease-in-out;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    border: 1px solid var(--main-color-one);
}

.request-page-form .submit-btn:hover {
    background-color: #00c1f2;
    color: #fff;
    border: 1px solid var(--main-color-one);
}

@media only screen and (min-width:992px) and (max-width:1200px) {
    .section-title-two {
        position: relative;
        max-width: 700px;
        padding-left: 30px;
    }
}

@media (max-width: 767px) {
    /*#quote-section {
        position: relative;
        background: #111111;
    }*/
    .quote-title {
        text-align: center;
    }
    .about-area.style-01 {
        padding: 100px 0 85px;
    }
    .request-form {
        padding: 0;
    }
}


/*---------------------------
    About section
---------------------------*/


/* About image */

.about-img {
    position: relative;
    padding-right: 50px;
}

.about-img img {
    border-radius: 5px;
}

.about-img .about-exp {
    position: absolute;
    left: 30%;
    bottom: 55px;
    transform: translateX(-50%);
    width: 80%;
    box-shadow: var(--box-shadow);
    background: var(--main-color-one);
    padding: 50px 30px;
    border-radius: 5px;
    border-top: 15px solid #00c1f2;
    transition: all linear .5s;
}

.about-img:hover .about-exp {
    background-color: #00c1f2;
    border-top: 15px solid var(--main-color-one);
}

.about-img .about-exp-number .number {
    font-size: 100px;
    color: var(--color-white);
    border-right: 1px solid #ddd;
    line-height: 42px;
    padding-right: 20px;
}

.about-img .about-exp-text .text {
    padding-left: 20px;
    color: var(--color-white);
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
}


/* about content */

.about-content.style-01 {
    padding-right: 50px;
}

.about-title .info-title span {
    color: var(--main-color-one);
}
.about-list-style{
	position: relative;
	overflow: hidden;
}
.about-list-style li {
    padding: 7px 0;
    color: var(--paragraph-color);
	padding-left: 30px;
	font-size: 15px;
}
.about-list-style li::before {
    content:"";
	position: absolute;
	width: 20px;
	height: 20px;
    background:url("assets/images/tick.jpg") no-repeat left;
    border: 0px solid rgba(0,0,0,0.2);
	left: 0px;
}

.about-list-style li i {
    color: var(--main-color-one);
    padding-right: 10px;
}

.about-video-block {
    background-color: #dddddd;
    overflow: hidden;
    padding-left: 50px;
}

.video-block-cmn {
    float: left;
    width: 50%;
}

.video-block-text p {
    font-size: 20px;
    color: #222222;
    line-height: 36px;
    padding-top: 47px;
}

.video-block-play {
    padding: 60px 50px;
    background: #00c1f2;
    text-align: center;
    display: flex;
    justify-content: center;
}

.video-popup a {
    width: 60px;
}

.video-popup i {
    height: 80px;
    width: 80px;
    line-height: 85px;
    text-align: center;
    background-color: var(--main-color-one);
    color: #ffffff;
    display: block;
    font-size: 20px;
    border-radius: 50%;
}


/* About call block */

.about-call-block {
    border-top: 1px solid #ddd;
    margin-top: 40px;
    padding-top: 40px;
}

.about-call-block-icon i {
    height: 70px;
    width: 70px;
    line-height: 75px;
    text-align: center;
    background-color: #00c1f2;
    color: #fff;
    display: block;
    font-size: 26px;
    border-radius: 50%;
}

.about-call-block-number span.number {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark);
}

.about-call-block-text p{
	line-height: 22px;
}


@media only screen and (min-width:991px) and (max-width:1200px) {
    .about-img .about-exp {
        width: 80%;
        bottom: 20px;
    }
    .about-img .about-exp {
        left: 45%;
    }
    .about-img .about-exp-text .text {
        font-size: 18px;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .about-img .about-exp-number .number {
        padding-top: 20px;
        padding-bottom: 30px;
    }
    .about-img .about-exp {
        left: 50%;
    }
    .about-video-block {
        padding-left: 0;
    }
    .video-block-text p {
        padding: 50px 50px 40px 50px;
    }
    .about-content.style-01 {
        margin-top: 70px;
    }
}

@media (max-width:767px) {
    .about-img {
        padding-right: 0;
    }
    .about-img .about-exp {
        position: inherit;
        left: 50%;
        bottom: -50px;
        width: 100%;
    }
    .about-content.style-01 {
        padding-right: 0;
        margin-top: 100px;
    }
    .video-block-cmn {
        float: inherit;
        width: 100%;
        border-radius: 30px;
    }
    .about-img .about-exp-text .text {
        padding-left: 0;
        margin-top: 40px;
    }
    .about-video-block {
        padding: 30px;
    }
    .video-block-text p {
        padding-top: 0;
        margin-bottom: 30px;
    }
    .about-call-block {
        text-align: center;
    }
    .about-call-block-icon i {
        margin: 0 auto;
    }
    .about-call-block-text {
        margin: 20px 0 10px;
    }
}


/*---------------------------
    About section two
---------------------------*/

.about-title.style-02 .text {
    margin-top: 50px;
}

.about-img.style-02 {
    position: relative;
    padding: 50px;
}

.about-img.style-02:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 83%;
    width: 50%;
    background-color: var(--color-dark);
    z-index: -1;
}

.about-img.style-02 img {
    z-index: 9;
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .about-img.style-02 {
        margin-top: 80px;
        padding-bottom: 0;
    }
}

@media screen and (max-width:992px) {
	.copyright .col-md-12{
		text-align: center;
	}
	.copyright-left ul{
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;

	}
	.footer-widget-social ul{
	-webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
		margin-top: 15px;
		margin-bottom: 20px;
	}
	.copyright .copyright-right p {
  text-align: center;
}
	.foot_titll h2 {
  text-align: center;
}
	.foot-btn{
		
		text-align: center;
	}
	
	.footer-widget h2.widget-title{
		text-align: center;
		margin-top: 50px;
		font-size: 30px;
	}
	.footer-address{
		text-align: center;
	}
	
	.videoss_div a {
  font-size: 18px !important;
	}
	.galleryy_div a {
  font-size: 18px !important;
	}
	
	.tp-service-three-title {
  font-size: 20px !important;
  margin-bottom: 10px !important;
  margin-top: 26px !important;
}
  .tp-service-three-text p {
  font-size: 14px !important;
  line-height: 25px !important;
	  margin-bottom: 10px !important;
}
	
.header-area.style-01 .header-nav li a {
  font-size: 14px;
	}
	.header-nav li {
  padding: 0 20px;
	}
	
	.tp-service-three{
		display: block !important;
	}	

.tp-service-three-img {
  margin-right: 0px !important;
  min-width: 100% !important;
  width: 100% !important;
  border-radius: 20px !important;
	float: left;
}
	.tp-service-three-text{
		width: 100%;
		float: left;
	}
	

}

@media screen and (max-width:767px) {
    .about-content.style-02 {
        margin-top: 50px;
    }
    .about-img.style-02 {
        margin-top: 80px;
        padding: 0;
    }
}


/*----------------------------
    Skill section
-----------------------------*/

#skill-section {
    position: relative;
    background: url(assets/images/skill-bg.jpg);
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

#skill-section:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(2, 41, 95, .9);
}

.skill-img img {
    position: absolute;
    left: -160px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: var(--box-shadow);
}

.skill-title .title,
.skill-title .text {
    color: var(--color-white);
	margin-top: 30px;
}

.skill-title .subtitle {
    color: var(--main-color-one);
}

.skill-title .text {
    margin-top: 20px;
}
.skill-title .title, .skill-title .text h2{
    font-size: 30px;
}

@media only screen and (min-width:992px) and (max-width:1200px) {
    .skill-img img {
        left: -100px;
        top: 50%;
    }
}

@media only screen and (min-width:678px) and (max-width:991px) {
    .skill-area {
        margin-top: 70px;
    }
    .skill-img img {
        position: inherit;
        left: -0;
        top: 0;
        transform: inherit;
        box-shadow: var(--box-shadow);
        margin-bottom: 50px;
    }
}

@media (max-width:767px) {
    .skill-area {
        margin-top: 70px;
        margin-bottom: 0px;
    }
    .skill-img img {
        position: inherit;
        left: -0;
        top: 0;
        transform: inherit;
        box-shadow: var(--box-shadow);
        margin-bottom: 50px;
    }
    .skill-parent {
        padding: 30px;
    }
}


/*----------------------------
    Service section
-----------------------------*/

#service-section {
    background-color: #e0e7f6;
    padding: 130px 0;
	position: relative;
}

.service-block .img {
    position: relative;
}

.service-block {
    box-shadow: 0px 0 8px rgba(0, 0, 0, 0.04);
    padding: 50px;
    background-color: var(--color-white);
    transition: all linear .2s;
}

.service-block:hover {
    box-shadow: 0px 0 10px 5px rgba(0, 0, 0, 0.05);
}

.service-block .img {
    height: 110px;
    width: 110px;
    line-height: 110px;
    text-align: center;
    background-color: var(--main-color-one);
    color: var(--color-white);
    margin-right: 10px;
    margin: 0 auto 50px;
    border-radius: 50%;
}

.service-block .title {
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 1px;
}

.service-btm-icon-block ul {
    padding: 0 20px;
}

.service-btm-icon-block ul li {
    padding: 0 10px;
    font-size: 24px;
    color: #333333;
    font-weight: 700;
}

@media only screen and (min-width:992px) and (max-width:1200px) {
    .service-block {
        padding: 50px 30px;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .service-card .title {
        font-size: 17px;
    }
}

@media (max-width:767px) {
    .service-btm-icon-block ul li {
        padding: 0 4px;
        font-size: 16px;
    }
    .service-btm-icon-block ul {
        padding: 0 0px;
    }
}


/*----------------------------
    Find Out More section
-----------------------------*/

.find-out-more {
    position: relative;
}

.find-more-bg-img {
    position: absolute;
    right: -50px;
    bottom: 0;
    z-index: -1;
    opacity: .05;
    width: 600px;
}

.find-out-more-list ul li a {
    padding: 8px 0;
    display: block;
    transition: all linear .3s;
}

.find-out-more-list i {
    color: var(--main-color-one);
    margin-right: 10px;
}

.find-out-more-list ul li a:hover {
    color: var(--main-color-one);
}

.find-our-more-title p {
    margin: 30px 0 40px;
}


/*----------------------------
    Find Out More section
-----------------------------*/

#call-to-section {
    position: relative;
    padding: 150px 0 170px;
    background: #02295f;
}

.call-to-content .title {
    color: var(--color-white);
    margin: 20px 0;
}

#call-to-section:before {
    background: url(assets/images/zigzag.png);
    content: '';
    position: absolute;
    width: 100%;
    height: 38px;
    right: 0;
    bottom: 0;
    background-color: #02295f;
    background-repeat: repeat-x;
}


/*----------------------------
    Project section
-----------------------------*/

.project-block {
    background: #00c1f2;
}

.project-content {
    padding: 30px;
}

.project-content .title {
    color: var(--color-white);
}

.project-content .project-btn a {
    color:#02295f;
}


/*----------------------------
    Service single section
-----------------------------*/

.single-service-content .quote {
    position: relative;
    border: 1px solid #ddd;
    padding: 50px;
    border-bottom: 5px solid var(--main-color-one);
}

.single-service-content .quote h5 {
    color: var(--paragraph-color);
    font-style: italic;
    font-size: 20px;
    max-width: 900px;
    line-height: 32px;
    margin-bottom: 0;
}

.single-service-content .quote .quote-icon {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
}

.single-service-content .quote .quote-icon i {
    font-size: 68px;
    color: var(--main-color-one);
}

@media screen and (max-width:767px) {
    .single-service-content .quote .quote-icon {
        position: absolute;
        top: 0;
        right: 5px;
        transform: inherit;
    }
    .single-service-content .quote .quote-icon i {
        font-size: 42px;
    }
}


/*----------------------------
    Testimonial section
-----------------------------*/

.testimonial {
    position: relative;
}

.testimonial-left {
    position: relative;
    background: url(assets/images/testimonial/testimonial.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 50px;
    border-left: 20px solid var(--main-color-one);
    margin-right: 50px;
}

.testimonial-left::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .8);
}

.testimonial-left .content {
    z-index: 9;
}

.testimonial-left .content .number {
    font-size: 120px;
    line-height: 100px;
    color: var(--main-color-one);
    font-weight: 700;
}

.testimonial-left .content .text {
    font-style: italic;
    color: var(--color-white);
    margin-top: 30px;
    font-size: 22px;
}

.testimonial-content .text {
    font-size: 20px;
    line-height: 32px;
}

.testimonial .country span {
    font-size: 24px;
}


/* Owl navigations */

.testimonial-active:hover .owl-nav div {
    visibility: visible;
    opacity: 1;
}

.testimonial-active .owl-nav div {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    color: var(--color-white);
    border: 1px solid var(--main-color-one);
    background-color: var(--main-color-one);
    border-radius: 50%;
    transition: all 0.3s ease-in;
    visibility: hidden;
    opacity: 0;
}

.testimonial-active .owl-nav div:hover {
    background: var(--main-color-one);
    border-color: var(--main-color-one);
}

.testimonial-active .owl-nav div.owl-next {
    left: auto;
    right: 20px;
}


/* Owl dots */

.testimonial-active .owl-dots {
    margin-top: 30px;
}

.owl-carousel .owl-controls .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: #00c1f2;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    display: inline-block;
    margin: 0 2px;
	overflow: hidden;
position: relative;
}

.testimonial-active .owl-dot.active {
    background: linear-gradient(to right, var(--main-color-one), var(--main-color-one));
    width: 40px;
    border-radius: 50px;
    border: 1px solid var(--main-color-one);
}

@media only screen and (min-width:768px) and (max-width:991px) {}

@media (max-width:767px) {
    .testimonial-left {
        text-align: center;
        margin-right: 0;
    }
    .testimonial-content .text {
        font-size: 22px;
        line-height: 36px;
    }
    .testimonial-content,
    .testimonial-active .owl-dots {
        text-align: center;
    }
}


/*----------------------------
    Counter section
-----------------------------*/

.client-section {
    background: #111111;
    padding: 50px 0;
}


/*----------------------------
    Counter section
-----------------------------*/

.counter-content {
    position: relative;
    padding: 50px;
    border: 1px solid #ddd;
    transition: all linear .2s;
}

.counter-content:before {
    position: absolute;
    content: "";
    left: 15px;
    top: 15px;
    height: 100%;
    width: 100%;
    transition: all linear .2s;
}

.counter-content .counter-icon i {
    font-size: 36px;
    color: var(--main-color-one);
}

.counter-content h3 {
    padding: 20px 0 10px;
}

.counter-content:hover.counter-content:before {
    left: 0;
    top: 0;
    background: linear-gradient(var(--main-color-one), var(--main-color-one));
    z-index: -1;
}

.counter-content:hover .counter-icon i,
.counter-content:hover h3,
.counter-content:hover p {
    color: var(--color-white);
}

.counter-content:hover {
    border: 1px dashed transparent;
}

@media only screen and (min-width:991px) and (max-width:1200px) {
    #counter-section {
        margin-top: 70px;
    }
}


/*----------------------------
    Team section
-----------------------------*/

.team-content {
    position: relative;
}

.team-content .content {
    background: #ffffff;
    box-shadow: 0 0 25px rgba(0, 0, 0, .15);
    padding: 30px 20px;
    width: 100%;
    transition: all linear .3s;
}

.team-content h5 {
    font-weight: 600;
    color: var(--color-dark);
}

.team-content h6 {
    font-weight: 500;
    color: #666;
    margin: 15px 0;
}

.team-content .social li a {
    padding: 10px;
    color: var(--color-dark);
}


/*----------------------------
    Blog section
-----------------------------*/

.meta-info {
    text-align: right;
}

.blog-post-item {
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05);
}

.blog-post-item .content {
    padding-top: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
}

.blog-post-item .content .title {
    line-height: 32px;
    transition: all linear .3s;
}

.blog-post-item .content .title:hover {
    color: var(--main-color-one);
}

.blog-post-item .blog-btn a,
.blog-post-item .meta-info li a {
    padding: 5px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
}

.blog-post-item .blog-btn a {
    position: relative;
    padding-left: 0;
    padding-right: 0;
    transition: all linear .3s;
}

.blog-post-item:hover .blog-btn a {
    color: var(--main-color-one);
}

.blog-post-item .blog-btn a:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: var(--main-color-one);
}

.blog-post-item .meta-info li {
    display: inline-block;
    padding: 0 10px;
}

.blog-post-item .meta-info li a i {
    margin-right: 5px;
}

.blog-pagination ul li {
    display: inline-block;
}

.blog-pagination ul li a {
    height: 30px;
    width: 20px;
    line-height: 30px;
    margin-right: 10px;
    text-align: center;
    display: block;
    border-top: 1px solid transparent;
    border-bottom: 1px solid var(--main-color-one);
    transition: all linear .3s;
}

.blog-pagination ul li a:hover {
    border-top: 1px solid var(--main-color-one);
    border-bottom: 1px solid var(--main-color-one);
    color: var(--main-color-one);
}


/* Sidebar */

.search-form {
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 17px;
    border-radius: 0;
    border: none;
    background: #ffffff;
}

.search-form button {
    position: absolute;
    right: 6px;
    top: 5px;
    padding: 12px;
    border: none;
    width: 60px;
    text-align: center;
    background: var(--main-color-one);
    cursor: pointer;
}

.search-form button i {
    color: var(--color-white);
}

.widgets {
    background-color: #f3f3f3;
    padding: 30px;
}

.widgets .title {
    color: var(--color-dark);
    font-weight: 600;
    border-bottom: 1px solid #c3c3c3;
    padding-bottom: 20px;
}

.widgets .count-text {
    float: right;
}

.widgets .category-list li {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.widgets .category-list li:last-child {
    border-bottom: 1px solid transparent;
}

.widgets .tags li {
    display: inline-block;
}

.widgets .tags li a {
    padding: 7px 15px;
    display: block;
    background: #ffffff;
    margin: 5px 0;
    border-radius: 25px;
    transition: all linear .3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.widgets .tags li a:hover {
    background: var(--main-color-one);
    color: var(--color-white);
}


/* Comment area */

.single-comment-wrap .thumb {
    padding-right: 30px;
}

.single-comment-wrap .thumb img {
    width: 200px;
    border-radius: 50%;
}

.single-comment-wrap .content h5 {
    font-weight: 500;
}

.single-comment-wrap .content h5 span {
    float: right;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

.single-comment-wrap .content h5 span i {
    margin-right: 5px;
    color: var(--main-color-one);
}

.single-comment-wrap .content .reply {
    position: relative;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    color: var(--main-color-one);
}

.single-comment-wrap .content .reply:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -5px;
    height: 1px;
    width: 100%;
    background: var(--main-color-one);
}


/* Comment form */

.comment-form-wrap input {
    padding: 15px;
}

.comment-form-wrap input:focus,
.comment-form-wrap input:active,
.comment-form-wrap textarea:focus,
.comment-form-wrap textarea:active {
    border: 1px solid #ced4da;
    box-shadow: none;
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .blog-post-item .categories a,
    .blog-post-item .blog-btn a,
    .blog-post-item .meta-info li a {
        font-size: 12px;
    }
}

@media (max-width:575px) {
	
	.videoss_div {
  width: 100% !important;
	}
	.galleryy_div {
  width: 100% !important;
	}
	
	.hero-content .title {
  line-height: 15px !important;
  font-size: 25px;
}
    .meta-info {
        text-align: inherit;
    }
    .blog-post-item .meta-info li {
        padding: 0;
    }
}


/*----------------------------
    Contact section
-----------------------------*/

.contact-details {
    position: relative;
}

.contact-details .img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 100%;
    opacity: .3;
	right: 0;
	margin: auto;
	text-align: center;
	z-index: -9;
}

.contact-info-title .title {
    font-weight: 500;
}

.contact-info .subtitle {
    color: var(--main-color-one);
}

.contact-info ul li:first-child {
    padding-right: 20px;
}

.contact-info ul li i {
    height: 40px;
    width: 40px;
    line-height: 40px;
    border: 1px solid var(--main-color-one);
    text-align: center;
    border-radius: 50%;
    color: var(--main-color-one);
}

.contact-info ul li span {
    display: block;
	  font-weight: bold;

}
.contact-info ul li small {
    display: block;
	font-size: 14px;

}

.google-map iframe {
    width: 100%;
    height: 500px;
    border: none;
}


/*----------------------------
    Footer section
-----------------------------*/

#footer-section {
    padding: 150px 0 0;
    background: #02295f;
}

.footer-logo img {
    width: 220px !important;
}

.footer-widget .title {
    color: var(--color-white);
}

.footer-widget p {
    color: #90979e;
}

.footer-widget ul li a {
    color: #878787;
    padding: 5px 0;
    display: block;
}

.footer-widget .footer-widget-social ul li a {
    height: 50px;
    width: 50px;
    line-height: 40px;
    text-align: center;
    margin: 0 5px;
    color: #878787;
    background: rgba(255, 255, 255, .05);
    display: block;
    border-radius: 50%;
    transition: all linear .3s;
}

.footer-widget .footer-widget-social ul li a:hover {
    background: var(--main-color-one);
    color: var(--color-white);
}

.copyright-area {
    margin-top: 110px;
    padding: 20px 0;
    border-top: 1px solid #222222;
}

@media only screen and (min-width:991px) and (max-width:1200px) {
    .footer-widget .footer-widget-social ul li a {
        height: 40px;
        width: 40px;
        line-height: 30px;
    }
}


/*---------------------------------------
    Back Top
---------------------------------------*/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 90px;
    width: 50px;
    height: 50px;
    background-color: var(--main-color-one);
    color: var(--color-white);
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    z-index: 99;
    font-size: 25px;
    cursor: pointer;
    display: none;
}


/*-------------------------
    Preloader Css
---------------------------*/

.pre-wrap {
    position: fixed;
    content: "";
    transform: translate(-100%, -240%);
    font-size: 62px;
}

.preloader-inner {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9;
    background-color: var(--color-white);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-inner .center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.preloader-inner .center span {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #262626;
    animation: animate 4s infinite forwards ease-in-out;
}

.preloader-inner .center span:nth-child(1) {
    background: var(--main-color-one);
    left: -24px;
    top: -24px;
    animation-delay: 0.5s;
}

.preloader-inner .center span:nth-child(2) {
    background: var(--main-color-one);
    left: 0px;
    top: -24px;
    animation-delay: 1s;
}

.preloader-inner .center span:nth-child(3) {
    background: var(--main-color-one);
    left: 0px;
    top: 0px;
    animation-delay: 2s;
}

.preloader-inner .center span:nth-child(4) {
    background: var(--main-color-one);
    left: -24px;
    top: 0px;
    animation-delay: 1.5s;
}

@keyframes animate {
    0% {
        transform: rotateY(0deg);
    }
    20% {
        transform: rotateY(360deg);
    }
    40% {
        transform: rotateX(180deg);
    }
    60% {
        transform: rotateX(0deg);
    }
    80% {
        transform: rotateX(360deg);
    }
    100% {
        transform: rotateY(180deg);
    }
}

.preloader-inner .cancel-preloader {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.preloader-inner .cancel-preloader a {
    background-color: var(--main-color-one);
    font-weight: 600;
    text-transform: capitalize;
    color: var(--color-white);
    width: 200px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 30px;
    display: block;
    transition: all 0.3s ease-in;
}

.preloader-inner .cancel-preloader a:hover {
    background-color: var(--secondary-color);
    color: var(--color-white);
}









.servicess-active{
	margin-top:50px;
}

.tp-service-three {
  align-items: center;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 5px 20px 0 rgba(5,7,80,.06);
  display: flex;
  overflow: hidden;
  padding: 30px;
}
.tp-service-four {
  background: #fff;
  border: 2px solid #ebecee;
  border-radius:25px;
}
.tp-service-three-img {
  margin-right: 22px;
  min-width: 250px;
  overflow: hidden;
  position: relative;
  width: 250px;
	border-radius:25px;
}
.fix {
  overflow: hidden;
}
.tp-service-three-img img {
  object-fit: cover;
  width: 100%;
}

.tp-service-four .tp-service-three-img .tp-service-three-img-overlay {
  background: rgba(254,209,12,.702);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition: all .3s ease-out 0s;
  visibility: hidden;
  width: 100%;
}

.tp-service-three-title {
  color: #102579;
  font-size: 20px;
	margin-bottom: 14px;
}
.tp-service-three-text p {
  color: #66686b;
  font-size: 14px;
	line-height: 26px;
}
.tp-service-three-text-btn a {
  color: #102579;
}
.theme-btn i, .yellow-btn i {
  display: inline-block;
  line-height: 1;
  margin-right: 2px;
  vertical-align: middle;
}

.owl-dots{
	margin: auto;
	position: absolute;
	left: 0;
	right: 0;
	text-align: center;
}

.owl-carousel .owl-dots .owl-dot.active:before {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.owl-carousel .owl-dots .owl-dot.active:after, .owl-carousel .owl-dots .owl-dot.active:before {
    opacity: 1;
}
.owl-carousel .owl-dots .owl-dot:before {
    top: 2px;
    right: 2px;
    bottom: 2px;
    left: 2px;
    opacity: 0;
    background:#9cdcf5;
    border: 0px solid rgba(0,0,0,0.2);
}
.owl-carousel .owl-dots .owl-dot:after, .owl-carousel .owl-dots .owl-dot:before {
    content: '';
    position: absolute;
    border-radius: 50%;
    -webkit-transition: ease-out .16s;
    transition: ease-out .16s;
}



#ga_vi-to-section {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.videoss_div{
	width:50%;
	float:left;
	text-align:center;
}
.videoss_div a{
	background: #ffc000;
	width:100%;
	float: left;
	padding-top:35px;
	padding-bottom:35px;
	text-transform: uppercase;
	font-size: 22px;
	font-weight: 600;
	color:#fff;
	transition: all .5s ease-out 0s;
}
.videoss_div a:hover{
    background:#d6a100;
	transition: all .5s ease-out 0s;
}
.galleryy_div{
	width:50%;
	float:left;
	text-align:center;
}
.galleryy_div a{
	background: #00c1f2;
	width:100%;
	float: left;
	padding-top:35px;
	padding-bottom:35px;
	text-transform: uppercase;
	font-size: 22px;
	font-weight: 600;
	color:#fff;
	transition: all .5s ease-out 0s;
}
.galleryy_div a:hover{
    background:#0098be;
	transition: all .5s ease-out 0s;
}


.pr_lp--70 {
  padding-right: 70px !important;
}
.pl_lp--70 {
  padding-left: 70px !important;
}

.copyright .copyright-left ul.bk-copyright-menu, .copyright .copyright-right ul.bk-copyright-menu {
  list-style: none;
  padding: 0;
  margin: 0 -12px;
}
.copyright .copyright-left ul.bk-copyright-menu li, .copyright .copyright-right ul.bk-copyright-menu li {
  padding: 5px 12px;
}
.copyright .copyright-left ul.bk-copyright-menu li a, .copyright .copyright-right ul.bk-copyright-menu li a {
  line-height: 1.6;
  transition: all .3s cubic-bezier(.645,.045,.355,1);
  font-size: 13px;
  color: #fff;
}
.copyright .copyright-right p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 2;
  font-family: var(--body-font);
  color: #fff;
}
.copyright .copyright-right p a{color:#ffc000;}
.ptb--50 {
  padding-top: 100px;
padding-bottom: 50px;
}
.foot_titll{
	
}
.foot_titll h2{
	font-size: 36px;
	line-height: 55px;
	font-weight: 600;
	margin-bottom: 20px;
}
.footer-widget h2.widget-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  border-bottom-color: transparent;
  margin-bottom: 19px;
  padding-bottom: 13px;
  font-family: "Poppins",sans-serif;
}







.gallery-section.gallery-three-column {
  position: relative;
  padding: 120px 0px 20px;
    padding-bottom: 20px;
}

.lightbox-gallery {
  position: relative;
  overflow: hidden;
}

.gallery-three-column .default-portfolio-item {
  margin-bottom: 30px;
}
.default-portfolio-item {
  position: relative;
	margin-bottom: 1%;
}

.default-portfolio-item .inner-box {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.project-item {
  position: relative;
  text-align: center;
  overflow: hidden;
  margin-bottom: 20px;
  z-index: 1;
}
.default-portfolio-item .image-box {
  position: relative;
  display: block;
	margin-bottom: 0px;
}
.default-portfolio-item .image-box video {
  width: 100%;
}


.default-portfolio-item .image-box img{
    position:relative;
    display:block;
    width:100%;
    border-radius: 0 15px;
}


.default-portfolio-item .overlay-box{
    position:absolute;
    left:0px;
    top:-100%;
    width:100%;
    height:100%;
    text-align:center;
    color:#ffffff;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transform:scaleY(0);
    -ms-transform:scaleY(0);
    -o-transform:scaleY(0);
    -moz-transform:scaleY(0);
    transform:scaleY(0);
	z-index: 9;
}

.default-portfolio-item .inner-box:hover .overlay-box{
    top:0px;
    -webkit-transform:scaleY(1);
    -ms-transform:scaleY(1);
    -o-transform:scaleY(1);
    -moz-transform:scaleY(1);
    transform:scaleY(1);    
}

.default-portfolio-item .overlay-inner{
    position:absolute;
    left:0px;
    top:0px;
    width:100%;
    height:100%;
    border-radius: 0 15px;
    display:table;
    vertical-align:middle;
    padding:10px 30px;
    background:rgba(25, 53, 89, 0.8);
}

.default-portfolio-item .overlay-inner .content{
    position:relative;
    display:table-cell;
    vertical-align:middle;
}

.default-portfolio-item .overlay-inner h3{
    font-size:18px;
    color:#ffffff;
    font-weight:500;
    text-transform:capitalize;
    margin-bottom: 20px;
}

.default-portfolio-item .overlay-inner h3 a{
    color:#ffffff;  
}

.default-portfolio-item .overlay-inner h3 a:hover{
    color:#f1f1f1;
}

.default-portfolio-item .image-link{
    position:relative;
    width:42px;
    height:42px;
    color:#ffffff;
    line-height:42px;
    border:1px solid #fff;
    display:inline-block;
    font-size:16px;
    z-index:1;
    text-align:center;
    margin-right: 12px;
    border-radius: 0 7px;
}
.default-portfolio-item .image-link2{
    position:relative;
    width:42px;
    height:42px;
    color:#ffffff;

    line-height:42px;
    border:1px solid #fff;
    display:inline-block;
    font-size:16px;
    z-index:1;
    text-align:center;
    border-radius: 0 7px;
}

.project-item {
  position: relative;
  text-align: center;
  overflow: hidden;
  margin-bottom: 20px;
  z-index: 1;
}

.project-item::before {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #212529;
  opacity: 0.6;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
	z-index: 9;
  display:none;
}

.project-item:hover::before {
	bottom: 0;
}
.project-item .project-item-content {
  padding: 30px;
  margin: auto;
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.project-item .project-item-content a {
  display: block;
  font-size: 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #ffffff;
}

.project-item:hover .project-item-content {
  bottom: 0;
}

.project-item:hover .project-item-content {
  bottom: 0;
}

.lightbox-gallery{
	position: relative;
	overflow: hidden;
}
.project-item .project-item-content a img{
	margin-top: -100%;
	width: 52px;
	height: 52px;
	z-index: 99;
    position: relative;
}

.icon-magnifier img{
	margin-top:0% !important;
	width: 28px !important;
	height: 28px !important;
	z-index: 99 !important;
	position: relative;
}


.breadcrubms ul{
	display: none;
}

.select-field-arrow {
  position: relative;
}
.tp-contact-form-field select {
  background: #fff;
  border: 1px solid #dfe0e5;
  border-radius: 4px;
  color: #7f8080;
  display: block;
  font-size: 16px;
  font-weight: 400;
  height: 55px;
  outline: none;
  padding: 0 12px;
  width: 100%;
}

/*.select-field-arrow::after {
  color: #064e2a;
  content: "";
  font-family: Font Awesome 5 Pro;
  font-size: 13px;
  position: absolute;
  right: 28px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}*/


.bubbless_1{
	position: absolute;
	right: 40px;
	bottom: 40px;
	width: 80px;
	height: 80px;
}

.bubbless_1 img {
    width: 100%;
	animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.bubbless_2{
	position: absolute;
	left: 30%;
	top: 40px;
	width: 40px;
	height: 40px;
}

.bubbless_2 img {
    width: 100%;
	animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.bubbless_3{
	position: absolute;
	left: 10%;
	bottom: 40px;
	width: 40px;
	height: 40px;
}

.bubbless_3 img {
    width: 100%;
	animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

#chat-circle {
  position: fixed;
  bottom: 50px;
  left:0px;
  background-color: transparent;
  width: 75px;
  height: 87px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  z-index: 999;
}
#chat-circle img{
	width: 100%;
	animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
@keyframes floating {
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(0, 15px); }
    100%   { transform: translate(0, -0px); }   
}



