@import url('https://fonts.googleapis.com/css2?family=Alata&display=swap');

:root {
    --primary-color: #53c1ff;
    --orange-color: #ff9916;
    --yellow-color: #ffcc00;
    --green-color: #45b148;
    --font-color: #4a4a49;
    --heading-color: #1f2632;
    --body-font: 'Source Sans 3', sans-serif;
    --heading-font: "Alata", sans-serif;
    --sub-font: "Alata", sans-serif;
    --body-font-size: 1rem;
    --rgba-primary-1: rgba(85, 201, 233, 0.1);
  --rgba-primary-2: rgba(85, 201, 233, 0.2);
  --rgba-primary-3: rgba(85, 201, 233, 0.3);
  --rgba-primary-4: rgba(85, 201, 233, 0.4);
  --rgba-primary-5: rgba(85, 201, 233, 0.5);
  --rgba-primary-6: rgba(85, 201, 233, 0.6);
  --rgba-primary-7: rgba(85, 201, 233, 0.7);
  --rgba-primary-8: rgba(85, 201, 233, 0.8);
  --rgba-primary-9: rgba(85, 201, 233, 0.9);
   --rgba-sec-1: rgba(242, 105, 37, 0.1);
  --rgba-sec-2: rgba(242, 105, 37, 0.2);
  --rgba-sec-3: rgba(242, 105, 37, 0.3);
  --rgba-sec-4: rgba(242, 105, 37, 0.4);
  --rgba-sec-5: rgba(242, 105, 37, 0.5);
  --rgba-sec-6: rgba(242, 105, 37, 0.6);
  --rgba-sec-7: rgba(242, 105, 37, 0.7);
  --rgba-sec-8: rgba(242, 105, 37, 0.8);
  --rgba-sec-9: rgba(242, 105, 37, 0.9);
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
    font-family: var(--body-font);
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    -moz-osx-font-smoothing: grayscale;
    /* Firefox */
    -webkit-font-smoothing: antialiased;
    /* WebKit  */
}


html {
    scroll-behavior: smooth
}

body {
    font-family: var(--body-font);
    font-style: normal;
    font-size: var(--body-font-size);
    line-height: 1.5;
    color: var(--font-color);
    overflow-x: hidden;
}

.page-wrapper {
    overflow-x: hidden;
}

/* ------------------------
    Typography
------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    margin-top: 0px;
    margin-bottom: 0px;
    color: var(--heading-color);
    font-family: var(--heading-font);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

h1,
.h1 {
    font-size: 60px;
    font-style: normal;
    line-height: 70px;
    letter-spacing: 0;
}

h2,
.h2 {
    font-size: 40px;
    font-style: normal;
    line-height: 50px;
    margin-bottom: 10px;
    position: relative;
}

h3,
.h3 {
    font-size: 30px;
    font-style: normal;
    line-height: 40px;
}

h4,
.h4 {
    font-size: 24px;
    font-style: normal;
    margin-bottom: 10px;
    line-height: 34px;
}

h5,
.h5 {
    font-size: 20px;
    font-style: normal;
    margin-bottom: 10px;
    line-height: 26px;
}

h6,
.h6 {
    font-size: 18px;
    font-style: normal;
    line-height: 24px;
    margin-bottom: 10px;
}

ul {
    margin: 0px;
    padding: 0px;
}

/* ------------------------
    Helper class
------------------------*/
p {
    line-height: 1.7;
    padding: 10px 0;
}

.lead {
    font-weight: normal;
    font-size: 17px;
    line-height: 30px;
}

.z-index-0 {
    z-index: 0;
    position: relative;
}

.z-index-1 {
    z-index: 9;
    position: relative;
}

section {
    padding: 80px 0;
}

.fs-18 {
    font-size: 18px;
}

.font-w-3 {
    font-weight: 300;
}

.font-w-4 {
    font-weight: 400;
}

.font-w-5 {
    font-weight: 500;
}

.font-w-6 {
    font-weight: 600;
}

.font-w-7 {
    font-weight: 700;
}

.font-w-8 {
    font-weight: 800;
}

.font-w-9 {
    font-weight: 900;
}

.line-h-2 {
    line-height: 1.6;
}

.line-h-3 {
    line-height: 1.7;
}

.line-h-4 {
    line-height: 1.8;
}

.line-h-5 {
    line-height: 1.9;
}

.letter-space-1 {
    letter-spacing: 5px;
}

.letter-space-2 {
    letter-spacing: 10px;
}

.letter-space-3 {
    letter-spacing: 15px;
}

/* ------------------------
    Text color
------------------------*/
.text-theme {
    color: var(--primary-color);
}

.text-yellow {
    color: var(--yellow-color);
}

.text-orange {
    color: var(--orange-color);
}

.text-green {
    color: var(--green-color);
}

.text-hover {
    color: #1c2431;
}

.text-black {
    color: #1f2632;
}

.text-grey {
    color: #454545;
}

.text-rgba {
    color: rgba(255, 255, 255, 0.8);
}

/* ------------------------
    Background color
------------------------*/
.white-bg {
    background-color: #ffffff;
}

.dark-bg {
    background-color: #0a1426;
}

.light-bg {
    background-color: #f2f3f5;
}

.theme-bg {
    background-color: var(--primary-color);
}

.bg-yellow {
    background-color: var(--yellow-color);
}

.bg-orange {
    background-color: var(--orange-color);
}

.bg-green {
    background-color: var(--green-color);
}

.text-hover {
    color: #1c2431;
}

.transparent-bg {
    background-color: inherit !important;
}
.bg-1{background-color: var(--rgba-primary-1);}
.bg-2{background-color: var(--rgba-primary-2);}
.bg-3{background-color: var(--rgba-primary-3);}
.bg-4{background-color: var(--rgba-primary-4);}
.bg-5{background-color: var(--rgba-primary-5);}
.bg-6{background-color: var(--rgba-primary-6);}
.bg-7{background-color: var(--rgba-primary-7);}
.bg-8{background-color: var(--rgba-primary-8);}
.bg-9{background-color: var(--rgba-primary-9);}

/* ------------------------
    Banner
------------------------*/
.fullscreen-banner {
    position: relative;
    min-height: 600px;
}

[data-bg-img] {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.align-center {
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 9;
}

.fullscreen-banner .owl-carousel,
.fullscreen-banner .owl-stage-outer,
.fullscreen-banner .owl-stage,
.fullscreen-banner .owl-item,
.fullscreen-banner .item {
    height: 100%;
}

/* -------------------------------
   Background Position & Size
-------------------------------*/
.bg-cover {
    background-size: cover;
}

.bg-contain {
    background-size: contain;
}

.bg-pos-l {
    background-position: left;
}

.bg-pos-r {
    background-position: right;
}

.bg-pos-rt {
    background-position: right top;
}

.bg-pos-lt {
    background-position: left top;
}

.bg-pos-rb {
    background-position: right bottom;
}

.bg-pos-lb {
    background-position: left bottom;
}

.bg-repeat {
    background-repeat: repeat;
}

/* ------------------------
    Countdown
------------------------*/
.countdown {
    width: 100%;
}

.countdown>li {
    list-style-type: none;
    text-align: center;
}

.countdown>li span {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    line-height: 150px;
    font-size: 60px;
    font-weight: 500;
    display: inline-block;
    color: var(--primary-color);
}

.countdown>li p {
    font-size: 20px;
    font-weight: 500;
    margin-top: 15px;
    display: block;
    margin-bottom: 0;
    color: #ffffff;
}

/* ------------------------
    Terms and Conditions
------------------------*/
.terms-and-conditions p {
    margin-bottom: 25px;
}

.terms-and-conditions ul.list {
    margin-bottom: 20px;
    display: block;
}

.terms-and-conditions ul.list li i {
    padding-right: 12px;
    font-size: 15px;
}

/* ------------------------
    Privacy Policy
------------------------*/
.privacy-policy p {
    margin-bottom: 25px;
}

.privacy-policy ul.list {
    margin-bottom: 20px;
    display: block;
}

.privacy-policy ul.list li i {
    padding-right: 12px;
    font-size: 15px;
}

/* ------------------------
    Contact
------------------------*/
.contact-media a {
    color: #ffffff;
}

.contact-media a:hover {
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

label {
    font-size: 14px;
    color: #1f2632
}

.form-control {
    font-size: 14px;
    height: 50px;
    color: #454545;
    border: 1px solid #e9eaed;
    border-radius: 0;
}

textarea.form-control {
    height: 120px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #1c2431;
}

select.form-control {
    height: 50px !important;
}

iframe {
    width: 100%;
    border: none;
    pointer-events: auto;
}

.form-control::-webkit-input-placeholder {
    color: #454545;
}

.form-control::-moz-placeholder {
    color: #454545;
}

.form-control:-ms-input-placeholder {
    color: #454545;
}

.form-control:-moz-placeholder {
    color: #454545;
}

.success {
    padding: 1em;
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    color: #468847;
    background-color: #dff0d8;
    border: 1px solid #d6e9c6;
    width: 100%;
    font-size: 0.8rem;
}

.error {
    padding: 1em;
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    color: #b94a48;
    background-color: #f2dede;
    border: 1px solid rgba(185, 74, 72, 0.3);
    width: 100%;
    font-size: 0.8rem;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
    -webkit-text-fill-color: #1f2632 !important;
    transition: background-color 5000s ease-in-out 0s;
}

.map {
    height: 400px;
    z-index: 999;
}

.map iframe {
    border: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%); */
}

/* ------------------------
    Video
------------------------*/
.video-btn {
    position: relative;
    display: inline-block;
}

.video-btn-pos {
    position: absolute;
    left: 50%;
    top: 50%;
    width: auto !important;
    z-index: 99;
}

.video-btn .play-btn {
    width: 80px;
    border-radius: 50%;
    cursor: pointer;
    height: 80px;
    background: #ffffff;
    display: inline-block;
    text-align: center;
    line-height: 80px;
    position: relative;
}

.video-btn .play-btn::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    left: 0px;
    top: 0px;
    transform: scale(.6);
    transition: .5s ease;
    border-radius: 50%;
    opacity: 0;
}

.video-btn .play-btn:hover::after {
    transform: scale(1);
    opacity: 1;
}

.video-btn .play-btn i {
    z-index: 1;
    font-size: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    color: var(--primary-color);
    -webkit-transition: .25s;
    -o-transition: .25s;
    transition: .2s ease-out !important;
    transform: translate3d(-50%, -50%, 0);
}

.video-btn .play-btn:hover i {
    transform: translate3d(-50%, -50%, 0) scale(.75);
    color: #ffffff
}

/* ------------------------
    Side Background
------------------------*/
.image-column {
    position: absolute;
    left: 0px;
    top: 50%;
}

.image-column.right {
    left: inherit;
    right: 0;
}

/* ------------------------
    List Icon
------------------------*/
.list-icon li {
    display: flex;
    align-items: center;
}

.list-icon li i {
    margin-right: 10px;
    color: #ffffff;
    font-size: 14px;
    width: 22px;
    height: 22px;
    text-align: center;
    display: inline-block;
    line-height: 22px;
    background: #1c2431;
}

/* ------------------------
    Icon Size
------------------------*/
.ic-1x {
    font-size: 1em;
}

.ic-2x {
    font-size: 2em;
}

.ic-3x {
    font-size: 3em;
}

.ic-5x {
    font-size: 5em;
}

.ic-7x {
    font-size: 7em;
}

/* -------------------------------
 Shop Page
-------------------------------*/
.product-card {
    /* border: none; */
    overflow: hidden;
}

.product-img {
    text-align: center;
    ;
}

.product-link {
    padding: 20px 15px;
    opacity: 0;
    right: 0;
    top: 2rem;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}

.product-card:hover .product-link {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.product-link button {
    color: #1f2632;
    font-size: 20px;
    border: none;
    padding: 0.50rem 0.75rem;
    background: #ffffff;
    display: block;
}

.product-link button:hover {
    background: var(--primary-color);
    color: #ffffff
}

.product-card .card-body {
    padding: 20px;
    position: relative;
    text-align: center;
    background: #fff
}

.product-title a {
    color: var(--primary-color);
    font-size: 21px;
    font-weight: 500;
    text-transform: capitalize;
}

.product-title a:hover {
    color: var(--primary-color);
}

.product-price {
    color: var(--primary-color);
    font-weight: 600;
}

.product-price del {
    font-size: 0.9rem
}

.product-list.product-card {
    padding: 0;
}

.product-list.product-card .card-body {
    text-align: left;
}

.star-rating {
    color: #FDCC0D
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

input.form-product {
    -moz-appearance: textfield;
    height: 40px;
    border: none;
    background: #ffffff;
    text-align: center;
    width: 50px;
    border-top: 1px solid #e9eaed;
    border-bottom: 1px solid #e9eaed;
    color: #1f2632;
    vertical-align: middle;
}

.btn-product {
    background: none;
    color: #1f2632;
    border: 1px solid #e9eaed;
    height: 40px;
    width: auto;
    padding: 0 10px;
    font-size: 13px;
    cursor: pointer;
}

.view-filter a.active {
    color: var(--primary-color);
}

.view-filter a {
    color: #1f2632;
    padding-right: 8px;
    display: inline-block;
    vertical-align: middle;
    font-size: 30px;
}

.cart-table thead th {
    padding: 20px;
    vertical-align: middle;
    color: #1f2632;
    font-size: 20px;
    font-weight: 600;
}

.cart-table td {
    padding: 10px;
    color: #1f2632;
    vertical-align: middle;
}

/* ------------------------
Service Sidebar
------------------------*/
.sidebar-links li {
    margin-bottom: 15px
}

.sidebar-links li:last-child {
    margin-bottom: 0;
}

.sidebar-links li a {
    background-color: #ffffff;
    color: #1f2632;
    display: block;
    font-size: 15px;
    padding: 15px 20px;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    border-left: 3px solid transparent;
}

.sidebar-links li.active a,
.sidebar-links li a:hover {
    color: var(--primary-color);
    padding-left: 25px;
    border-left: 3px solidvar(--primary-color);
}

/* ------------------------
Extra
------------------------*/
.img-border {
    border: 10px solid #ffffff
}

.bg-effect:after {
    background: #dafeff;
    top: 0;
    content: "";
    position: absolute;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 50%;
    border-radius: .25rem
}

.bg-effect.right:after {
    left: inherit;
    right: 0
}

.shape-1 {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
}

.shape-1.bottom {
    top: inherit;
    bottom: -1px
}

.round-anim {
    content: "";
    position: absolute;
    top: -10%;
    left: 0;
    width: 700px;
    height: 700px;
    border: 50px solid #dafeff;
    border-radius: 50%;
    display: inline-block;
    z-index: -1;
    animation-name: zoom-fade;
    animation-duration: 5000ms;
    transform-origin: 70% 70%;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.round-anim.right {
    right: -10%;
    left: inherit;
}

.round-anim.center {
    left: 50%;
    margin-left: -350px
}

/* ------------------------
    Responsive Css
------------------------*/
@media (max-width:1200px) {
    .navbar-nav .nav-item {
        margin: 0 10px;
    }

}

@media (max-width:992px) {

    h1,
    h1 {
        font-size: 60px;
        line-height: 70px;
    }

    h2,
    h2 {
        font-size: 36px;
        line-height: 46px;
    }

    .custom-mt-0 {
        margin-top: 0 !important
    }

    /*Header*/
    #header-wrap {
        padding: 10px 0;
    }

    .navbar-toggler {
        background: none;
        height: 34px;
        width: 40px;
        padding: 0;
        margin: 0;
        border: 1px solid #454545
    }

    .navbar-nav ul {
        position: static;
    }

    .navbar-nav>.nav-item {
        margin: 0;
    }

    .navbar-nav .nav-link {
        padding: 10px !important;
        color: #454545;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-item .nav-link.active,
    .navbar-nav .nav-item .nav-link.show {
        background: var(--primary-color);
        color: #ffffff
    }

    .navbar-collapse {
        background: #ffffff;
        max-height: 400px;
        left: 0;
        padding: 10px;
        position: absolute;
        z-index: 99;
        top: 100%;
        width: 100%;
        overflow: auto;
        border: medium none;
        -webkit-box-shadow: 7px 5px 30px rgba(72, 73, 121, 0.15);
        -moz-box-shadow: 7px 5px 30px rgba(72, 73, 121, 0.15);
        box-shadow: 7px 5px 30px rgba(72, 73, 121, 0.15);
    }

    .navbar-toggler span {
        width: 26px;
        height: 2px;
        margin: 5px auto;
        display: block;
        background: var(--primary-color);
    }

    .navbar-nav .dropdown-toggle::after {
        content: '+';
        background: none !important;
        position: absolute;
        border: none;
        top: 50%;
        right: 10px;
        margin: -0.5em 0.5em 0 0;
        border-radius: .25rem;
        padding: 0;
        font-size: 1.25rem;
        line-height: 1;
    }

    .navbar-nav .dropdown>.dropdown-toggle.show::after {
        content: '-';
    }

    .navbar-nav .dropdown-submenu .dropdown-toggle::after {
        width: auto;
        height: auto;
        margin-right: 0;
    }

    .navbar {
        padding: 0;
    }

    /*Banner*/
    .fullscreen-banner {
        min-height: inherit;
        height: auto !important;
    }

    .fullscreen-banner .align-center {
        position: inherit;
        transform: inherit;
        padding: 20px 0 150px !important;
        top: 0;
    }

    .banner-slider h1 {
        font-size: 25px;
        line-height: 30px;
        ;
    }

    .banner h1.mb-4 {
        margin: 0px;
    }

    /*Side Image*/
    .image-column {
        left: 0;
        position: relative;
        top: inherit;
        transform: inherit;
    }

    .image-column-h {
        min-height: 300px;
    }

    /*Countdown*/
    .countdown>li span {
        font-size: 60px;
        line-height: 70px;
    }

    .countdown>li p {
        font-size: 18px;
    }

}

.img3desk {
    background: #021826 url('../images/bg/3.jpg') center center no-repeat;
}

.img4desk {
    background: #021826 url('../images/bg/4.jpg') center center no-repeat;
    background-size: cover
}


/* ------------------------
    Table of Contents

  1. Section Title
  2. Button
  3. Accordion
  4. Social Icons
  5. Team
  6. Tab
  7. Counter
  8. Blog - Post
  9. Testimonials
  10. Featured Box
  11. Price Table   
  12. Progress Bar
  13. Project
  14. Services


/* ------------------------
    Section Title
------------------------*/
.section-title {
  margin-bottom: 40px;
  position: relative;
}

.section-title p {
  font-size: 16px;
  margin-bottom: 0;
}

.dark-bg .title, .theme-bg .title, .dark-bg .title span, .theme-bg .title span{
  color: #ffffff
}


.section-title h2 {
  margin-bottom: 15px;
}


.dark-bg .title.text-black {
  color: #1f2632
}

.dark-bg .title span.text-theme {
  color: var(--primary-color)
}

/* ------------------------
    Button
------------------------*/
.btn {
  z-index: 1;
  background: none;
  color: #1f2632;
  padding: 14px 25px;
  overflow: hidden;
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  border-radius: 0;
  text-decoration: none;
  font-weight: 500;
}

.btn-sm {
  padding: 10px 25px;
  color: #1f2632
}

.btn
.btn.focus, .btn:focus {
  box-shadow: none;
  color: #ffffff;
}

.btn + .btn {
  margin-left: 15px
}

.btn.btn-theme {
  background: var(--orange-color);
  color: #ffffff;
}

.btn.btn-theme:hover {
  background: #1c2431;
  color: #ffffff
}

.btn.btn-white {
  background: #ffffff;
  color: #1f2632;
}

.btn.btn-white:hover {
  color: #ffffff;
}

.btn.btn-dark {
  background: #0a1426;
  color: #ffffff;
}

.btn.btn-dark:hover {
  background: var(--primary-color);
  color: #ffffff;
}

.btn.btn-outline {
  border: 1px solid #1c2431;
}

.btn.btn-outline:hover {
  border-color: var(--primary-color);
  background: var(--primary-color)
}

.btn.btn-outline.white {
  border: 1px solid #ffffff;
  color: #ffffff
}

.btn.btn-outline.white:hover {
  border-color: var(--primary-color);
  background: var(--primary-color)
}

.btn span {
  position: relative;
  z-index: 1;
  padding-right: 40px;
}

.btn span:before {
  position: absolute;
  height: 1px;
  background: #fff;
  width: 20px;
  right: 0;
  top: 50%;
  transition: all 0.3s ease;
  z-index: 1;
  content: ""
}

.btn.btn-white span:before {
  background: #0a1426;
}

.btn.btn-white:hover span:before {
  background: #ffffff;
}

.btn:before, .btn:after {
  z-index: -1;
  content: '';
  background: #1c2431;
  height: 50%;
  width: 0;
  position: absolute;
  transition: 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.btn:before {
  top: 0;
  left: 0;
  right: auto;
}

.btn:after {
  bottom: 0;
  right: 0;
  left: auto;
}

.btn:hover:before {
  width: 100%;
  right: 0;
  left: auto;
}

.btn:hover:after {
  width: 100%;
  left: 0;
  right: auto;
}

.btn:hover span:before {
  width: 30px
}

/* ------------------------
    Accordion
------------------------*/
.accordion .accordion-item {
  background: none;
  position: relative;
}

.accordion .accordion-item .accordion-button {
  text-transform: capitalize;
  font-size: 1.125rem;
  padding: .5rem 1rem;
  border: none;
  background-color: #f5f8fd
}

.accordion .accordion-item .accordion-button[aria-expanded="true"] {
  color: #ffffff;
  background-color: var(--primary-color);
}

.accordion .accordion-item .accordion-button:focus {
  border-color: inherit;
  box-shadow: none;
}

.accordion .accordion-item .accordion-button:after {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  background: var(--primary-color);
  content: "\f067";
  font-family: 'Line Awesome Free';
  font-weight: 900;
  font-size: 0.9rem;
  top: 50%;
  position: absolute;
  right: 0.5rem;
  margin-top: -10px;
  color: #ffffff
}

.accordion .accordion-item .accordion-button[aria-expanded="true"]:after {
  color: var(--primary-color);
  content: "\f068";
  background: #ffffff;
}

.accordion .accordion-body {
  padding: 15px;
  line-height: 2;
}

/* ------------------------
    Social Icons
------------------------*/
.social-icons ul {
  padding: 0;
  margin: 0;
  line-height: 0;
}

.social-icons li {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0 8px 0 0;
}

.social-icons li a {
  background: #f3f5f8;
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  font-size: 14px;
  text-align: center;
  margin: 0;
  border: 0;
  color: #1f2632;
  overflow: hidden;
}

.social-icons li:hover a {
  background: var(--primary-color);
  color: #ffffff
}

/* ------------------------
    Team
------------------------*/
.team-member {
  position: relative;
  overflow: hidden;
}

.team-member .team-description {
  position: absolute;
  bottom: 0;
  background: #ffffff;
  padding: 15px 25px;
}

.team-social-icon {
  background: #f5f8fd;
  -webkit-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}

.team-member:hover .team-social-icon {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.team-member .team-description h5 {
  margin-bottom: 5px;
  text-transform: capitalize;
  font-weight: 500;
  color: #454545;
}

.team-member .team-description h5 a:hover {
  color: var(--primary-color)
}

.team-member .team-description span {
  font-size: 14px
}

.team-social-icon li {
  float: left;
  margin-right: 1px;
}

.team-social-icon li a {
  background: #ffffff;
  font-size: 20px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  color: #454545;
  display: inline-block;
  text-align: center;
}

.team-social-icon li a:hover {
  background: #1c2431;
  color: #ffffff;
}

.team-member img {
  width: 100%;
}

/* ------------------------
    Tab
------------------------*/
.tab .nav-tabs {
  border: none;
}

.tab .nav-tabs .nav-link {
  text-align: center;
  border-radius: 0;
  font-weight: 600;
  color: #1f2632;
  position: relative;
  padding: 15px 20px;
  background: #ffffff
}

.tab .nav-tabs .nav-link.active, .tab .nav-tabs .nav-link:hover, .tab .nav-tabs.active > a:focus, .tab .nav-tabs > a:hover {
  background: var(--primary-color);
  color: #ffffff;
}

/* ------------------------
    Counter
------------------------*/
.counter {
  position: relative;
  z-index: 9;
}

.counter span {
  font-size: 45px;
  font-weight: 600;
  line-height: 45px;
  display: inline-block;
  margin: 0 0 10px;
}

.counter h6 {
  display: block;
  color: #454545;
  font-size: 20px;
  position: relative;
  margin: 0;
}

.counter-icon i {
  font-size: 50px;
  line-height: 50px;
  display: inline-block;
  font-weight: normal;
  color: #1c2431;
  margin-bottom: 20px;
}

/* ------------------------
    Blog - Post
------------------------*/
.post-card .link-btn {
  font-size: 26px;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: var(--primary-color);
  color: #ffffff
}

.post-card .link-btn:hover {
  background: #1c2431;
}

.post-card ul li + li:before {
  display: inline-block;
  padding-right: .5rem;
  color: #1f2632;
  content: "\f1ce";
  font-family: 'Line Awesome Free';
  font-weight: 700;
}

/*** Blog Single ***/
.pagination {
  display: inline-block;
}

.pagination > li {
  margin: 0 6px;
  display: inline-block;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
    border-radius: 0;
}

.pagination > li > a {
  color: #1f2632;
  font-weight: 600;
  border-color: #e9eaed
}

.pagination > li.active .page-link, .page-link:hover, .page-link:focus {
  box-shadow: none;
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color)
}

/*widget-tags*/
.widget-tags a {
  border: 1px solid #e9eaed;
  color: #1f2632;
  padding: 10px 15px;
}

.widget-tags a:hover {
  background: var(--primary-color);
  color: #ffffff;
}

/* ------------------------
    Testimonials
------------------------*/
.testimonial {
  position: relative;
}

.testimonial-content p {
  font-size: 18px;
  line-height: 30px;
}

.testimonial .testimonial-caption h5 {
  font-weight: 500;
  display: inline-block;
  margin-bottom: 0;
}

/* ------------------------
    Featured Box
------------------------*/
.featured-item {
  padding: 30px;
  position: relative;
  z-index: 1;
}

.owl-carousel .featured-item {
  margin: 30px 0;
}

.featured-item .featured-icon {
  font-size: 60px;
  line-height: 1;
  color:  #1c2431;
  display: inline-block;
}

.featured-desc p {
  margin-bottom: 0;
}

.featured-title h5 {
  margin: 20px 0 15px;
  text-transform: capitalize;
    color: var(--primary-color);
}

.dark-bg .featured-title h5, .dark-bg .featured-desc, .theme-bg .featured-title h5, .theme-bg .featured-desc, .theme-bg .featured-icon i {
  color: #ffffff
}

.featured-item.style-1 {
  border: 1px solid #e9eaed;
  padding: 40px;
}
/* 
.featured-item.style-1:hover {
  background: #1c2431;
  border-color: #1c2431;
}

.featured-item.style-1:hover:after {
  opacity: 0.2;
}

.featured-item.style-1:after {
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  opacity: 0;
  width: 100%;
  z-index: -1;
  background: url(../images/pattern/01.png) no-repeat 0 0;
  background-size: auto;
  background-size: cover;
}

.featured-item.style-1:hover .featured-icon i, .featured-item.style-1:hover h5, .featured-item.style-1:hover p {
  color: #ffffff;
} */

/* ------------------------
    Price Table
------------------------*/
.price-table {
  padding: 50px 30px;
  z-index: 9
}

.price-value h2 {
  color: #1f2632;
  margin-bottom: 0;
}

.price-value h2 span {
  font-size: 18px;
  line-height: 18px;
  color: #454545;
  font-weight: normal;
}

.price-list ul li {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.price-list ul li:last-child {
  margin-bottom: 0;
}

.price-list li i {
  color: #1f2632;
  font-size: 12px;
  display: inline-block;
  margin-right: 10px;
}

.text-white .price-list ul li, .text-white .price-list li i {
  color: rgba(255, 255, 255, 0.7);
}

/* ------------------------
    Progress Bar
------------------------*/
.ht-progress-bar h4 {
  color: #1f2632;
  font-weight: 500;
  font-size: 18px;
}

.ht-progress-bar .progress {
  height: 6px;
  background: #dafeff;
  overflow: visible;
  align-items: center;
  position: relative;
}

.light-bg .ht-progress-bar .progress {
  background: #ffffff;
}

.ht-progress-bar .progress .progress-bar {
  height: 6px;
  background-color: var(--primary-color);
  overflow: visible;
  position: relative;
}

.ht-progress-bar .progress-parcent {
  position: absolute;
  right: 0;
  top: -35px;
  color: #1f2632;
  font-size: 16px;
  font-weight: 600
}

/* ------------------------
Project
------------------------*/
.cases-title {
  width: 100%;
  padding: 20px;
  -webkit-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}

.cases-item:hover .cases-title {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.cases-item .cases-title span {
  color: #ffffff;
  padding: 3px;
  font-weight: 500;
  position: relative;
  z-index: 1
}

.cases-item h4 a {
  color: #ffffff;
  padding: 2px 4px;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 10px;
  display: inline-block;
  position: relative;
  z-index: 1
}

.cases-item h4 a:hover {
  color: var(--primary-color);
}

.cases-item h4 a:before, .cases-item .cases-title span:before {
  -webkit-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
  content: "";
  background: #0a1426;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  z-index: -1
}

.cases-item:hover h4 a:before, .cases-item:hover .cases-title span:before {
  width: 100%;
}

.popup-img {
  background: #0a1426;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  display: block;
  font-size: 24px;
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 500;
}

.cases-item .popup-img:hover {
  background: var(--primary-color);
  color: #ffffff
}

.popup-img:after {
  top: 0;
  left: 0;
  padding: 0;
  z-index: 10;
  border: 3px dashed #ffffff;
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  content: '';
}

.cases-item:hover .popup-img:after {
  -webkit-animation: spinAround 9s linear infinite;
  -moz-animation: spinAround 9s linear infinite;
  animation: spinAround 9s linear infinite;
}

.cases-item:hover .popup-img {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.cases-item:hover img {
  transform: scale(1.05);
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}


/* ------------------------
Services
------------------------*/
.service-item {
  position: relative;
  z-index: 1;
}

.owl-carousel .service-item {
  margin: 30px 0;
}

.service-desc {
  padding: 30px;
  position: relative;
}

.service-desc p {
  margin-bottom: 0;
}

.service-title h4 {
  margin: 20px 0 15px;
  text-transform: capitalize;
  color: var(--orange-color);
  
}

.service-item.style-1 .service-icon {
  font-size: 50px;
  position: absolute;
  left: 100%;
  bottom: 0;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background: #1c2431;
  color: #ffffff
}

.service-item.style-1:hover .service-icon, .service-item.style-1.active .service-icon {
  left: 0
}

.service-item.style-1 .link-btn, .service-item.style-2 .link-btn {
  font-size: 30px;
  display: inline-block;
  transform: scale(0);
  position: absolute;
  right: 30px;
  bottom: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  background: var(--primary-color);
  color: #ffffff
}

.service-item.style-1 .link-btn:hover, .service-item.style-2 .link-btn:hover {
  background: #1c2431;
}

.service-item:hover .link-btn, .service-item.active .link-btn {
  transform: scale(1) translateY(50%);
}

.service-item.style-1:hover .service-desc, .service-item.style-1.active .service-desc {
  padding-bottom: 50px
}

.service-item.style-2 {
  border: 15px solid #ffffff;
}

.service-item.style-2 .service-icon {
  font-size: 80px;
  opacity: 0.1;
  position: absolute;
  right: 0;
  bottom: 0;
  color: #1c2431
}

.service-item.style-2 .link-btn {
  right: 50%;
  bottom: inherit;
  top: 50%;
  margin-top: -40px;
  margin-right: -20px
}

.service-item.style-2:hover .service-desc, .service-item.style-2.active .service-desc {
  padding-bottom: 30px
}

.service-item.style-3 .service-icon {
  z-index: 9;
  font-size: 40px;
  margin-left: -50px;
  margin-top: -50px;
  position: absolute;
  left: 50%;
  top: 0;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  background: #ffffff;
  color: #1c2431
}

ul.list, ul.list-item {
    margin: 0px;
    padding: 0px;
}

.list li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-inline-start: 40px;
    padding: 10px 0 10px 10px;
}
.list li::before{
    color: var(--orange-color);
    content: "\f054";
    font-family: 'Line Awesome Free';
    font-weight: 700;
    margin: 0 5px 0 -15px;
    vertical-align: text-top;
}

.list-item li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-inline-start: 15px;
}
.list-item li::before{
    color: var(--orange-color);
    content: "\f054";
    font-family: 'Line Awesome Free';
    font-weight: 700;
    margin: 0 5px 0 -15px;
    vertical-align: text-top;
    padding:5px 0;
}
.underline {
    background-image: linear-gradient(to right, var(--orange-color), transparent);
    height: 2px;
    background-position: 0 0;
    background-repeat: no-repeat;
    opacity: 50%;
    margin-bottom: 15px;
}

.box {
  background-color: #fff;
  border-radius: 6px;
  min-height: 160px;
  --shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  box-shadow: var(--shadow);
  justify-content: center;
  align-items: center;
  padding:25px;
}

.owl-carousel .service-desc{border: solid 1px #f5cdc0;}
.gradientBg{
  background: #3CC6F2;
/* background: linear-gradient(90deg,rgba(60, 198, 242, 1) 0%, rgba(80, 185, 72, 1) 50%, rgba(255, 162, 69, 1) 100%); */
background: linear-gradient(90deg,rgba(60, 198, 242, 1) 0%, rgba(80, 185, 72, 1) 100%);
}
.bg1{background:#f2f3f5 url('../images/bg/top2.png') top left no-repeat;}
.bg2{background:#f2f3f5 url('../images/bg/top1.png') top right no-repeat;}

@media (max-width:767px) {

.bg1{background-size:contain;}
.bg2{background-size:contain;}
    .img3mob {
        background: #021826 url('../images/bg/3.jpg') no-repeat center center;
        background-size: contain;
    }

    h1,
    h1 {
        font-size: 50px;
        line-height: 60px;
    }

    h2,
    h2 {
        font-size: 34px;
        line-height: 44px;
    }

    .section-title p {
        font-size: 16px;
    }

    .page-title h1 {
        font-size: 40px;
        line-height: 50px;
    }

    /*Header*/
    .logo img {
        max-height: auto;
    }

    /*Countdown*/
    .countdown>li span {
        font-size: 40px;
        line-height: 40px;
    }

    .countdown>li p {
        font-size: 16px;
    }

    .fullscreen-banner .item {
        height: 350px;
    }

}

@media (max-width:576px) {

    h1,
    h1 {
        font-size: 44px;
        line-height: 54px;
    }

    h2,
    h2 {
        font-size: 30px;
        line-height: 40px;
    }

    h3,
    .h3 {
        font-size: 26px;
        line-height: 36px;
    }

    h4,
    .h4 {
        font-size: 22px;
        line-height: 32px;
    }

    .logo img {
        max-height: auto;
    }

    /*Banner*/
    .fullscreen-banner p br,
    .section-title br {
        display: none;
    }

    .breadcrumb-item {
        line-height: 30px;
    }

    /*Banner*/
    .tab .nav-tabs .nav-link {
        display: block;
        width: 100%;
    }

    .owl-carousel .owl-nav button.owl-prev {
        left: 0px;
    }

    .owl-carousel .owl-nav button.owl-next {
        right: 0px;
    }

}