/*===========================
    01.COMMON css 
===========================*/
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800");
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #5A5872;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
    text-decoration: none;
    outline: none;
}

a:focus,
a:hover {
    text-decoration: none;
}

i,
span,
a {
    display: inline-block;
    text-decoration: none;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    color: #2B2A3D;
    margin: 0px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

ul,
ol {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #5A5872;
    margin: 0px;
}

.bg_cover {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

/*===== All Button Style =====*/
.main-btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 0;
    padding: 0 40px;
    font-size: 16px;
    height: 55px;
    line-height: 55px;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    transition: all 0.4s ease-out 0s;
    background-color: #E84E4E;
}

.main-btn:hover {
    background-color: #ff6b6b;
    color: #fff;
}

/*===== All Section Title Style =====*/
.section_title .title {
    font-size: 40px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .section_title .title {
        font-size: 26px;
    }
}

.section_title p {
    margin-top: 15px;
    font-size: 18px;
    color: #9e9db3;
}

.section_title.section_title_2 .title,
.section_title.section_title_2 p {
    color: #fff;
}

/*===== All Preloader Style =====*/
.preloader {
    /* Body Overlay */
    position: fixed;
    top: 0;
    left: 0;
    display: table;
    height: 100%;
    width: 100%;
    /* Change Background Color */
    background: #fff;
    z-index: 99999;
}

.preloader .loader {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.preloader .loader .ytp-spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 64px;
    margin-left: -32px;
    z-index: 18;
    pointer-events: none;
}

.preloader .loader .ytp-spinner .ytp-spinner-container {
    pointer-events: none;
    position: absolute;
    width: 100%;
    padding-bottom: 100%;
    top: 50%;
    left: 50%;
    margin-top: -50%;
    margin-left: -50%;
    animation: ytp-spinner-linspin 1568.2353ms linear infinite;
}

.preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator .ytp-spinner-left {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
    right: 50%;
}

.preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator .ytp-spinner-right {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    left: 50%;
}

.preloader .loader .ytp-spinner-circle {
    box-sizing: border-box;
    position: absolute;
    width: 200%;
    height: 100%;
    border-style: solid;
    /* Spinner Color */
    border-color: #E84E4E #E84E4E #F9F9F9;
    border-radius: 50%;
    border-width: 6px;
}

.preloader .loader .ytp-spinner-left .ytp-spinner-circle {
    left: 0;
    right: -100%;
    border-right-color: #F9F9F9;
    animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.preloader .loader .ytp-spinner-right .ytp-spinner-circle {
    left: -100%;
    right: 0;
    border-left-color: #F9F9F9;
    animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

/* Preloader Animations */

@keyframes ytp-spinner-linspin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes ytp-spinner-easespin {
    12.5% {
        transform: rotate(135deg);
    }

    25% {
        transform: rotate(270deg);
    }

    37.5% {
        transform: rotate(405deg);
    }

    50% {
        transform: rotate(540deg);
    }

    62.5% {
        transform: rotate(675deg);
    }

    75% {
        transform: rotate(810deg);
    }

    87.5% {
        transform: rotate(945deg);
    }

    to {
        transform: rotate(1080deg);
    }
}

@keyframes ytp-spinner-left-spin {
    0% {
        transform: rotate(130deg);
    }

    50% {
        transform: rotate(-5deg);
    }

    to {
        transform: rotate(130deg);
    }
}

@keyframes ytp-right-spin {
    0% {
        transform: rotate(-130deg);
    }

    50% {
        transform: rotate(5deg);
    }

    to {
        transform: rotate(-130deg);
    }
}

/*===========================
     02.HEADER css 
===========================*/
/*===== NAVBAR =====*/
.header_navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999 !important;
    transition: all 0.3s ease-out 0s;
}

.sticky {
    position: fixed;
    z-index: 99;
    background-color: #fff;
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-out 0s;
}

.sticky .navbar {
    padding: 15px 0;
}

.navbar {
    padding: 20px 0;
    border-radius: 5px;
    position: relative;
    transition: all 0.3s ease-out 0s;
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    width: 250px;
}

nav {
    display: flex;
    justify-content: space-between !important;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.header-buttons button {
    width: 120px;
    height: 50px;
    padding: 0.5rem 0.5rem 0.5rem 0.5rem !important;
}

@media only screen and (min-width:1200px) and (max-width:1600px) {
    .navbar-brand img {
        width: 300px;
    }
}


@media (max-width: 767px) {
    .navbar-brand img {
        width: 170px;
    }
}

.navbar-toggler {
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler .toggler-icon {
    width: 30px;
    height: 2px;
    background-color: #fff;
    display: block;
    margin: 5px 0;
    position: relative;
    transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
    transform: rotate(45deg);
    top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
    opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
    transform: rotate(135deg);
    top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 9;
        box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
        padding: 5px 12px;
    }
}

@media (max-width: 767px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 9;
        box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
        padding: 5px 12px;
    }
}

.navbar-nav .nav-item {
    position: relative;
    margin-left: 10px;
    z-index: 25;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .navbar-nav .nav-item {
        margin-left: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .nav-item {
        margin: 0;
    }
}

@media (max-width: 767px) {
    .navbar-nav .nav-item {
        margin: 0;
    }
}

.navbar-nav .nav-item a {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    transition: all 0.3s ease-out 0s;
    padding: 10px 0;
    position: relative;
    z-index: 10px;
    ;
    cursor: pointer;

}


/* .navbar-nav .nav-item a::before {
  position: absolute;
  content: '';
  bottom: 0px;
  left: 0;
  width: 10px;
  height: 1px;
  background-color: #ffc4c4;
  transition: all 0.3s ease-out 0s;

}  */

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .nav-item a::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .navbar-nav .nav-item a::before {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .nav-item a {
        display: block;
        padding: 4px 0;
        color: #000000;
    }
}

@media (max-width: 767px) {
    .navbar-nav .nav-item a {
        display: block;
        padding: 4px 0;
        color: #222;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .navbar-nav .nav-item a.active,
    .navbar-nav .nav-item a:hover {
        color: #E84E4E;
    }
}

@media (max-width: 767px) {

    .navbar-nav .nav-item a.active,
    .navbar-nav .nav-item a:hover {
        color: #E84E4E;
    }
}

.navbar-nav .nav-item a.active::before,
.navbar-nav .nav-item a:hover::before {
    width: 100%;
}

.navbar-nav .nav-item:hover .sub-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .nav-item:hover .sub-menu {
        top: 0;
    }
}

@media (max-width: 767px) {
    .navbar-nav .nav-item:hover .sub-menu {
        top: 0;
    }
}

.navbar-nav .nav-item .sub-menu {
    width: 200px;
    background-color: #fff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 110%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .nav-item .sub-menu {
        position: relative;
        width: 100%;
        top: 0;
        display: none;
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 767px) {
    .navbar-nav .nav-item .sub-menu {
        position: relative;
        width: 100%;
        top: 0;
        display: none;
        opacity: 1;
        visibility: visible;
    }
}

.navbar-nav .nav-item .sub-menu li {
    display: block;
}

.navbar-nav .nav-item .sub-menu li a {
    display: block;
    padding: 8px 20px;
    color: #222;
}

.navbar-nav .nav-item .sub-menu li a.active,
.navbar-nav .nav-item .sub-menu li a:hover {
    padding-left: 25px;
    color: #E84E4E;
}

.navbar-nav .sub-nav-toggler {
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .sub-nav-toggler {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        background: none;
        color: #222;
        font-size: 18px;
        border: 0;
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 767px) {
    .navbar-nav .sub-nav-toggler {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        background: none;
        color: #222;
        font-size: 18px;
        border: 0;
        width: 30px;
        height: 30px;
    }
}

.navbar-nav .sub-nav-toggler span {
    width: 8px;
    height: 8px;
    border-left: 1px solid #222;
    border-bottom: 1px solid #222;
    transform: rotate(-45deg);
    position: relative;
    top: -5px;
}

.sticky .navbar-toggler .toggler-icon {
    background-color: #222;
}

.sticky .navbar-nav .nav-item a {
    color: #222;
}

.sticky .navbar-nav .nav-item a::before {
    background-color: #E84E4E;
}

.sticky .navbar-nav .nav-item a.active,
.sticky .navbar-nav .nav-item a:hover {
    color: #2a6392;
}

/*===== hero =====*/
.single_hero {
    height: 630px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

@media only screen and(min-width: 1400px) and (max-width: 1600px) {
    .single_hero {
        height: 900px !important;
    }

    .left-banner {
        padding-top: 5rem;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single_hero {
        height: 650px;
    }
}

@media (max-width: 767px) {
    .single_hero {
        height: 650px;
    }
}

.single_hero::before {
    position: absolute;
    content: '';

    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}

/* .bg1{
  position: relative;
  top:-280px;
} */
/* .row1{
  position: relative;
  left:-96px;
} */
/* --------- */

.header-hero-content h5 {
    position: relative;
    top: -40px;
    font-family: "Inter", sans-serif;
}

.header-hero-content span {
    color: #E84E4E;
}

@media (max-width: 767px) {
    .header-hero-content {}
}


.header-sub-title {
    position: relative;
    top: 80px;
    font-size: 45px;
    ;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    padding-top: 10px;
    color: rgb(58, 58, 58);
    line-height: 50px;
    ;
}




@media (max-width: 767px) {
    .left-banner {
        width: 97%;
        margin-left: auto;
        margin-right: auto;
        display: block;


    }
}

@media (max-width: 767px) {
    .header-sub-title {

        font-size: 32px;
        ;
        position: relative;
        padding-top: 120px;
        line-height: 35px;
        ;
        text-align: center;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .header-sub-title {
        font-size: 40px;
        position: relative;
        padding-top: 130px;
        ;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-sub-title {
        font-size: 42px;
        ;
        position: relative;
        top: -10px;
    }
}

@media only screen and (min-width: 992px) and (max-width:1023px) {
    .header-sub-title {
        font-size: 46px;
        ;
        position: relative;
        top: -5px;
    }
}

@media only screen and (min-width: 1024px) and (max-width:1199px) {
    .header-sub-title {
        font-size: 49px;
        ;
        position: relative;
        top: 25px;
    }
}

@media only screen and (min-width: 1200px) and (max-width:1279px) {
    .header-sub-title {
        font-size: 48px;
        ;
        position: relative;


    }
}

@media only screen and (min-width: 1400px) and (max-width:1600px) {
    .header-sub-title {
        font-size: 50px;
        position: relative;
        top: 65px;
        line-height: 55px;
    }
}


.header-sub-title .sub-text {
    color: rgb(58, 58, 58);
    font-size: 60px;
    ;
}

@media (max-width: 767px) {
    .header-sub-title .sub-text {

        font-size: 30px;
        ;
        position: relative;


    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .header-sub-title .sub-text {
        font-size: 38px;

    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-sub-title .sub-text {
        font-size: 42px;
        ;
        position: relative;

    }
}

@media only screen and (min-width: 992px) and (max-width:1023px) {
    .header-sub-title .sub-text {
        font-size: 45px;
        ;
        position: relative;

    }
}

@media only screen and (min-width: 1024px) and (max-width:1199px) {
    .header-sub-title .sub-text {
        font-size: 47px;
        ;
        position: relative;

    }
}

@media only screen and (min-width: 1200px) and (max-width:1279px) {
    .header-sub-title .sub-text {
        font-size: 47px;
        ;
        position: relative;


    }
}

@media only screen and (min-width: 1400px) and (max-width:1600px) {
    .header-sub-title .sub-text {
        font-size: 70px;
        ;
        position: relative;



    }
}

.banner-right-img {
    position: relative;
    top: -4px;
}

.banner-right-img img {
    position: relative;
    left: 67px;
}


.header-sub-title .text-shape {
    position: absolute;
    left: 290px;
    bottom: 0px;
    width: 21%;
    z-index: 1;
    top: 179px;
}

.text {
    position: relative;
    top: 83px;
    font-size: 16px;
    ;
    font-family: "Inter", sans-serif;
    width: 90%;
}

@media (max-width: 767px) {
    .text {
        position: relative;
        top: 89px;
        font-size: 16px;
        ;
        text-align: center;
        width: 100%;
        padding-bottom: 20px;

    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .text {

        position: relative;
        top: 89px;
        font-size: 16px;
        ;
        text-align: center;
        width: 100%;


    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .text {
        font-size: 16px;
        ;
        position: relative;
        top: 0px;
    }
}

@media only screen and (min-width: 992px) and (max-width:1023px) {
    .text {
        font-size: 16px;
        ;
        position: relative;
        top: 0px;
    }
}

@media only screen and (min-width: 1024px) and (max-width:1199px) {
    .text {
        font-size: 16px;
        ;
        position: relative;
        top: 25px;
    }
}

@media only screen and (min-width: 1400px) and (max-width:1600px) {
    .text {

        position: relative;
        /* top:75px; */
        font-size: 18px;

    }
}



@media only screen and (min-width: 1200px) and (max-width:1279px) {
    .header-sub-title .sub-text {
        font-size: 47px;
        ;
        position: relative;


    }
}

@media only screen and (min-width: 1400px) and (max-width:1600px) {
    .header-sub-title .sub-text {
        font-size: 51px;
        ;
        position: relative;


    }
}


/* .sign-in {
  width: 170px;
  height: 50px;
  color: #ffffff;
  border-radius: 65px;
  border:none;
  margin-left: 5px;
  padding: 5px 25px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  outline: none;
  top:115px;
} */

.submit-btn {
    width: 170px;
    height: 50px;
    color: #fff;
    border-radius: 65px;
    border: none;
    margin-left: 5px;
    padding: 5px 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    outline: none;
    /* top:115px; */
}

@media (max-width: 767px) {
    .custom-btn {

        position: relative;
        top: 80px;
        width: 70%;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .custom-btn {

        position: relative;
        top: 80px;
    }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .custom-btn {

        position: relative;
        top: 30px;

        width: 80%;


        display: block;
        margin-bottom: 20px;
        ;
    }

}

@media only screen and (min-width: 992px) and (max-width:1023px) {
    .custom-btn {

        position: relative;
        top: 30px;


    }

}

@media only screen and (min-width: 1024px) and (max-width:1199px) {
    .custom-btn {

        position: relative;
        top: 30px;


    }

}

@media only screen and (min-width: 1400px) and (max-width:1600px) {
    .custom-btn {

        position: relative;
        top: 100px;


    }

}

.custom-btn1 {
    width: 170px;
    height: 50px;
    color: #080808;
    border-radius: 65px;
    border: none;
    margin-left: 25px;
    padding: 5px 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    outline: none;
    top: 115px;

}

.custom-btn2 {
    width: 170px;
    height: 50px;
    color: #fff;
    border-radius: 65px;
    border: none;

    padding: 5px 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    outline: none;
    margin-top: 20px;
    ;
    margin-bottom: 50px;
    ;

}

@media (max-width: 767px) {
    .custom-btn1 {

        position: relative;
        top: 80px;
        width: 70%;
        margin-left: auto;
        margin-right: auto;
        display: block;
        margin-top: 20px;
        ;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .custom-btn1 {
        margin-top: 20px;
        ;
        position: relative;
        top: 80px;
    }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .custom-btn1 {

        position: relative;
        top: 30px;

        width: 80%;

        margin-left: 0px;
        display: block;
    }

}

@media only screen and (min-width: 992px) and (max-width:1023px) {
    .custom-btn1 {

        position: relative;
        top: 30px;


    }

}

@media only screen and (min-width: 1024px) and (max-width:1199px) {
    .custom-btn1 {

        position: relative;
        top: 30px;


    }

}

@media only screen and (min-width: 1400px) and (max-width:1600px) {
    .custom-btn1 {

        position: relative;
        top: 100px;


    }

}

.sign-in-btn {
    margin-top: 1rem;
    width: 30%;
    padding: 0.5rem 1rem 0.5rem 1rem;
    z-index: -1;
    border: none;
    border-radius: 35px;
    background-color: #4dccc6;
    color: #fff;
    /* background-image: linear-gradient(315deg, #EB1933 0%,#438AD3 44%); */
    background-color: #0076bd;
    box-shadow:
        -7px -7px 20px 0px #fff9,
        -4px -4px 5px 0px #fff9,
        7px 7px 20px 0px #0002,
        4px 4px 5px 0px #0001;
    transition: all 0.3s ease;
}

.sign-in-btn:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 1px 1px 5px rgb(83, 82, 82);
    transform: scale(1.1, 1.1);
}

.cancel-in-btn {
    margin-top: 1rem;
    margin-left: 1rem;
    width: 30%;
    padding: 0.5rem 1rem 0.5rem 1rem;
    z-index: -1;
    border: none;
    border-radius: 35px;
    background-color: #4dccc6;
    color: #fff;
    /* background-image: linear-gradient(315deg, #EB1933 0%,#438AD3 44%); */
    background-color: #EB1933;
    box-shadow:
        -7px -7px 20px 0px #fff9,
        -4px -4px 5px 0px #fff9,
        7px 7px 20px 0px #0002,
        4px 4px 5px 0px #0001;
    transition: all 0.3s ease;
}

.cancel-in-btn:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 1px 1px 5px rgb(83, 82, 82);
    transform: scale(1.1, 1.1);
}


/* .sign-in {
  background-color: #000;
background-image: linear-gradient(315deg,#EB1933 0%,#438AD3 44%);
  border: none;
  z-index: 1;
} */
/* .sign-in:hover{
background-image: linear-gradient(315deg,#EB1933 44% , #438AD3 100%);
} */

.submit-btn {
    background-color: #000;
    background-image: linear-gradient(315deg, #ffd100 44%, #a88c0d 100%);
    border: none;
    z-index: 1;
}

.submit-btn:hover {
    background-image: linear-gradient(315deg, #a88c0d 44%, #ffd100 100%);
}

.btn1-13 {
    background-color: #9fbef1;
    background-image: linear-gradient(315deg, #e7e7e7 0%, #f0f0f0 74%);
    border: none;
    z-index: 1;
}

.btn1-13:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: 65px;
    background-color: #4dccc6;
    background-image: linear-gradient(315deg, #2cabdd, #9fbef1 74%);
    box-shadow:
        -7px -7px 20px 0px #fff9,
        -4px -4px 5px 0px #fff9,
        7px 7px 20px 0px #0002,
        4px 4px 5px 0px #0001;
    transition: all 0.3s ease;

}

.btn2-13 {
    background-color: #4dccc6;
    background-image: linear-gradient(315deg, #EB1933 0%, #438AD3 44%);
    border: none;
    z-index: 1;
}

.btn2-13:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: 65px;
    background-color: #4dccc6;
    background-image: linear-gradient(315deg, #2cabdd 0%, #EB1933 44%);
    box-shadow:
        -7px -7px 20px 0px #fff9,
        -4px -4px 5px 0px #fff9,
        7px 7px 20px 0px #0002,
        4px 4px 5px 0px #0001;
    transition: all 0.3s ease;

}

.btn-13:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: 65px;
    background-color: #4dccc6;
    background-image: linear-gradient(315deg, #2cabdd 0%, #EB1933 44%);
    box-shadow:
        -7px -7px 20px 0px #fff9,
        -4px -4px 5px 0px #fff9,
        7px 7px 20px 0px #0002,
        4px 4px 5px 0px #0001;
    transition: all 0.3s ease;

}

.btn-13:hover {
    color: #fff;
}

.btn1-13:hover {
    color: #fafafa;
}

.btn2-13:hover {
    color: #000;
}

.btn-13:hover:after {
    top: 0;
    height: 100%;
}

.btn1-13:hover:after {
    top: 0;
    height: 100%;
}

.btn2-13:hover:after {
    top: 0;
    height: 100%;
}

.btn-13:active {
    top: 2px;
}

.btn1-13:active {
    top: 2px;
}

.btn2-13:active {
    top: 2px;
}

@media (max-width: 767px) {
    .banner-right {
        width: 90%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .banner-tight-img {
        margin-bottom: 80px;
        ;
    }
}

.banner-tight-img img {
    position: relative;
    left: 37px;
    border-radius: 30px;
}

@media (max-width: 767px) {
    .banner-tight-img img {
        position: relative;
        top: 120px;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        display: block;
        padding-bottom: 120px;
        left: 0px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .banner-tight-img img {

        position: relative;
        top: 20px;

    }
}

@media only screen and (min-width: 1400px) and (max-width: 1560px) {
    .banner-tight-img img {

        position: relative;
        top: 30px;
        width: 85%;
        left: 0px;
        height: 560px;
    }
}

/* ------------ */
/* @media only screen and (min-width: 1400px) and (max-width:1600px) {
  .second-section{
  
  position: relative;

  
    }

} */



.second-heading {
    background-image: url('assets/images/img1.png');
    background-repeat: no-repeat;
    background-size: cover;

}

.hero_content {
    padding-top: 50px;
}



.hero_content .hero_title {
    font-size: 60px;
    line-height: 85px;
    color: #fff;
    margin-top: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero_content .hero_title {
        font-size: 44px;
        line-height: 65px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero_content .hero_title {
        font-size: 40px;
        line-height: 60px;
    }
}

@media (max-width: 767px) {
    .hero_content .hero_title {
        font-size: 24px;
        line-height: 38px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .hero_content .hero_title {
        font-size: 40px;
        line-height: 60px;
    }
}

.hero_content .hero_title span {
    display: contents;
    color: #2290c1;
}

.hero_content p {
    font-size: 16px;
    color: #fff;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .hero_content p {
        font-size: 16px;
    }
}

.hero_content .main-btn {
    margin-top: 45px;
}


/*===========================
      02. second section css 
===========================*/
.con1 {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
    .con1 {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

.second-section {
    background-repeat: no-repeat;
    background-size: cover;
    height: 850px;
}

@media (max-width: 767px) {
    .second-section {
        height: 950px;
    }
}


.second-heading {
    padding-top: 35px;
    ;
    padding-bottom: 60px;
}

.second-heading h3 {
    font-size: 47px;
    font-family: "inter", sans-serif;
    color: #3d3c3c;
    position: relative;
    left: 80px;
    padding-top: 50px;
    ;

}

@media (max-width: 767px) {
    .second-heading h3 {
        font-size: 30px;
        ;
        text-align: center;
        left: -10px;
        position: relative;

    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .second-heading h3 {
        font-size: 33px;
        ;
        text-align: center;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1110px) {
    .second-heading h3 {
        font-size: 42px;
        ;

    }

}

@media only screen and (min-width: 992px) and (max-width: 1110px) {
    .second-heading h3 {
        font-size: 42px;
        ;

    }
}

.second-heading span {

    font-family: "inter", sans-serif;
    color: #1f8bbc;




}

@media (max-width: 767px) {
    .second-section {

        height: 1350px;
    }
}



@media (max-width: 767px) {
    .left-stats1 {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

@media (max-width: 767px) {
    .right-stats1 {
        width: 95%;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

.card1 {
    border: none;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.123), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    /* box-shadow: 10px 10px 26px #cccccc4f; */
    background: #3d3d3d04;
    margin-left: 40px;
    ;
    margin-bottom: 30px;
    ;
    transition: 0.7s;
    position: relative;
    top: 70px;
    left: -30px;


}

@media (max-width: 767px) {
    .card1 {
        left: 0px;
        ;
        width: 95%;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        top: -30px;

    }
}

.card-icon {
    font-size: 30px;
    /*
    -webkit-background-clip: text;
     background: -webkit-linear-gradient(0deg, #7be261 0%, #48abe0 100%); */
    width: 45%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    padding: 10px 15px;


}

.card-subtitle {
    font-family: "inter", sans-serif;
    padding-bottom: 10px;
    ;
}

.card-text {
    color: rgb(88, 88, 88);
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', sans-serif;
    width: 95%;



}

.card-text i {

    padding-right: 5px;
    ;
    position: relative;
    text-align: center;
}

.card-text1 {
    color: rgb(88, 88, 88);
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', sans-serif;
    width: 98%;
    padding-bottom: 20px;
    ;
    padding-top: 5px;
    ;
    text-align: center;
    float: right;
}

.card-text1 i {

    padding-right: 5px;
    ;
    position: relative;
    text-align: center;
}

@media (max-width: 767px) {
    .left-stats2 {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

.card2 {
    border: none;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.123), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    /* box-shadow: 10px 10px 26px #cccccc4f; */
    background: #3d3d3d04;
    margin-left: 40px;
    ;
    margin-bottom: 30px;
    ;
    position: relative;
    top:80px;
    left:80px;


}

@media (max-width: 767px) {
    .card2 {
        width: 95%;
        margin-left: auto;
        margin-right: auto;
        position: relative;

        left: 0px;
        ;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .card2 {
        top: -100px;
        left: -20px;
        ;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .card2 {
        top: -80px;
        left: 20px;
        ;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .card2 {
        top: -50px;
        left: 150px;
        ;
    }
}

.card-title .bi {
    font-size: 50px;
    color: #50afb6;

}

.card-text-text1 {
    color: rgb(88, 88, 88);
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', sans-serif;
    width: 95%;
    padding-bottom: 8px;
    ;
    text-align: center;



}

.card-text-text1 i {

    padding-right: 5px;
    ;
    position: relative;
    text-align: center;
}


.card3 {
    border: none;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.123), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    /* box-shadow: 10px 10px 26px #cccccc4f; */
    background: #3d3d3d04;
    margin-left: 40px;
    ;
    margin-bottom: 30px;
    ;
    position: relative;
    top: 100px;
    left: -70px;
    ;


}

@media (max-width: 767px) {
    .card3 {
        width: 95%;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        top: 20px;
        left: 25px;
        ;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .card3 {
        top: 0px;
        left: 0px;
        ;
    }
}



/*===========================
      03.FEATURES css 
===========================*/
.single_features i {
    font-size: 60px;
    line-height: 60px;
    color: #E84E4E;
    transition: all 0.3s ease-out 0s;
}

@media (max-width: 767px) {
    .single_features i {
        font-size: 40px;
        line-height: 45px;
    }
}

.single_features .features_title {
    color: #E84E4E;
    margin-top: 15px;
    font-size: 24px;
    font-weight: 600;
    transition: all 0.3s ease-out 0s;
}

@media (max-width: 767px) {
    .single_features .features_title {
        font-size: 24px;
    }
}

.single_features p {
    margin-top: 15px;
}

.single_features:hover i {
    color: #E84E4E;
}



/*===========================
      04.ABOUT css 
===========================*/
.about_area {
    background-color: #F9F9F9;
    position: relative;
}

.about_image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about_image {
        width: 100%;
        height: 500px;
        position: relative;
    }
}

@media (max-width: 767px) {
    .about_image {
        width: 100%;
        height: 400px;
        position: relative;
    }
}

.about_image .image_content {
    width: 185px;
    height: 185px;
    background-color: #E84E4E;
    display: table;
    text-align: center;
    position: relative;
    left: -92px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about_image .image_content {
        width: 135px;
        height: 135px;
        left: -78px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about_image .image_content {
        left: 0;
    }
}

@media (max-width: 767px) {
    .about_image .image_content {
        left: 0;
        width: 135px;
        height: 135px;
    }
}

.about_image .image_content .experience {
    font-size: 24px;
    color: #fff;
    font-weight: 500;
    display: table-cell;
    vertical-align: middle;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about_image .image_content .experience {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .about_image .image_content .experience {
        font-size: 18px;
    }
}

.about_image .image_content .experience span {
    font-size: 44px;
    font-weight: 700;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about_image .image_content .experience span {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .about_image .image_content .experience span {
        font-size: 36px;
    }
}

.about_content {
    padding-right: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about_content {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .about_content {
        padding-right: 0;
    }
}

.about_content .main-btn {
    margin-top: 30px;
}

/*===========================
      05.PORTFOLIO css 
===========================*/
.single_portfolio {
    position: relative;
    width: 25%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single_portfolio {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .single_portfolio {
        width: 100%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .single_portfolio {
        width: 50%;
    }
}

.single_portfolio img {
    width: 100%;
}

.single_portfolio::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(232, 78, 78, 0.9);
    opacity: 0;
    transition: all 0.3s ease-out 0s;
}

.single_portfolio .portfolio_content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    text-align: center;
}

.single_portfolio .portfolio_content .meta li {
    display: inline-block;
    margin: 0 5px;
    transition: all 0.3s ease-out 0s;
    opacity: 0;
}

.single_portfolio .portfolio_content .meta li a {
    width: 35px;
    height: 35px;
    line-height: 33px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
}

.single_portfolio .portfolio_content .meta li a:hover {
    background-color: #fff;
    color: #E84E4E;
}

.single_portfolio .portfolio_content .meta li:first-child {
    transform: translateX(-100%);
}

.single_portfolio .portfolio_content .meta li:last-child {
    transform: translateX(100%);
}

.single_portfolio .portfolio_content .portfolio_title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-top: 25px;
    transform: translateY(100%);
    transition: all 0.3s ease-out 0s;
    opacity: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single_portfolio .portfolio_content .portfolio_title {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .single_portfolio .portfolio_content .portfolio_title {
        font-size: 20px;
    }
}

.single_portfolio:hover::before {
    opacity: 1;
}

.single_portfolio:hover .portfolio_content .meta li {
    transform: translateX(0);
    transition-delay: 0.2s;
    opacity: 1;
}

.single_portfolio:hover .portfolio_content .portfolio_title {
    transform: translateX(0);
    transition-delay: 0.2s;
    opacity: 1;
}


/*===========================
    10.CONTACT css 
===========================*/
.contact_area {
    position: relative;
    z-index: 5;
}

.contact_area::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(43, 42, 61, 0.9);
    z-index: -1;
}

p.form-message.success,
p.form-message.error {
    font-size: 16px;
    color: #2B2A3D;
    background: #F9F9F9;
    padding: 10px 15px;
    margin-top: 30px;
    background-color: #fff;
    margin-left: 15px;
}

p.form-message.success.form-message.error,
p.form-message.error.form-message.error {
    color: #f00;
}

.single_form {
    margin-top: 30px;
}

.single_form input,
.single_form textarea {
    width: 100%;
    height: 55px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 0 25px;
    font-size: 16px;
    color: #fff;
    background: none;
    transition: all 0.3s ease-out 0s;
}

.single_form input:focus,
.single_form textarea:focus {
    border-color: #fff;
}

.single_form textarea {
    height: 170px;
    resize: none;
    padding-top: 15px;
}

/*===========================
    11.FOOTER css 
===========================*/
.footer_area {
    background-color: #0c0c0c;
    padding-top: 15px;
    padding-bottom: 30px;
    margin-top: 130px;
    ;
}

@media (max-width: 767px) {
    .footer_area {
        position: relative;
        top: 20px;
    }
}


.footer_menu ul li {
    display: inline-block;
    padding-top: 5px;
}

.footer_menu ul li+li {
    margin-left: 30px;
}


.footer_menu ul li a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease-out 0s;
}

.footer_menu ul li a:hover {
    color: #fff;
}

.credit {
    font-size: 16px;
    color: #fff;
    padding-top: 0px;
}

.credit a {
    color: #fff;
}

.footer_social ul li {
    display: inline-block;
	margin-right: -27px;
}

.footer_social ul li+li {
    margin-left: 30px;
}

.footer_social ul li a {
    font-size: 26px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease-out 0s;
}

.footer_social ul li a:hover {
    color: #fff;
}

@media (max-width: 767px) {
    .footer_social ul li a {
        font-size: 20px;
    }
	.credit{
		padding-top: 0px;
	}
}

/*===== BACK TO TOP =====*/
.back-to-top {
    font-size: 20px;
    color: #fff;
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    background-color: #E84E4E;
    text-align: center;
    z-index: 99;
    transition: all 0.3s ease-out 0s;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    display: none;
}

.back-to-top:hover {
    color: #fff;
    background-color: #E84E4E;
}

/* .swiper{
  width: 100%;
  height: 60%;
}

   
    .swiper-slide img {
      display: block;
      
      object-fit: cover;
    }

    @media (max-width: 767px) {
      
.swiper-slide {
width: 100%;
margin-left: auto;
margin-right: auto;
display: block;
}

      }
    
    

    .model-btnn{
      text-align: center;
      background-color: rgb(89, 121, 6);
      display: block;
      margin-left: auto;
      margin-right: auto;
      margin-top: 30px;
      color:white;
      padding: 8px 20px;
    }
    .footer-link{
      position: relative;
    bottom: 944px;
}
    
.back-to-top {
  font-size: 20px;
  color: #fff;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 5px;
  background-color: #E84E4E;
  text-align: center;
  z-index: 99;
  transition: all 0.3s ease-out 0s;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  display: none;
}

.back-to-top:hover {
  color: #fff;
  background-color: #E84E4E;
}


.shape-box {
  display: inline-block;
  position: relative;
  z-index: 1;
 width: 100%;
  height: 350px;
  /* margin: 30px 10px 30px; */
/* box-shadow: 0 6px 30px 0 rgba(0, 0, 0, .12);
  overflow: hidden;
  
} */




/* @media (max-width: 767px) {
  .shape-box img{
  width: 100%;
  }
} 


.shape-box_half {
  overflow: hidden;
  text-align: left;
}

.shape-box_half:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: skewY(53.5deg);
  transform-origin: top left;
  transition: \transform .4s;
  background: #fff;
  z-index: 1;
}

.shape-box>img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.bg-black {
  background-color: #000;
}

.shape-box_half figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 30px 30px;
  transition: \transform .4s;
  transform: translateY(100%);
  z-index: 3;
}

.shape-box_half figcaption .show-cont {
  position: absolute;
  bottom: calc(100% + 30px);
  left: 30px;
  right: 30px;
  transition: bottom .4s;
}

.card-no {
  font-size: 36px;
  color: #a2ccff;
  padding: 0;
  margin: 10px 0;
}

.card-main-title {
  margin-top: 8px;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #292b2c;
}

.card-content {
  color: #9f9f9f;
  margin-top: 20px;
  line-height: 22px;
  font-size: 15px;
}

.read-more-btn {
  border: 2px solid #ffd6d7;
  font-size: 14px;
  cursor: pointer;
  padding: 10px 20px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  position: relative;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  background: #fcb5b8;
  color: #0a0a0a;
  border-radius: 2px;
  margin-top: 25px;
  text-decoration: none;
}

.read-more-btn:hover {
  background: black;
  color: #faf7f7;

}

.shape-box_half>.after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:#2993c3;
  opacity: 0;
  transition: opacity .4s;
} */

/*On hover*/
/* .shape-box_half:hover:before {
  transform: skewY(20deg);
}

.shape-box_half:hover figcaption {
  transform: translateY(0);
}

.shape-box_half:hover figcaption .show-cont {
  bottom: 100%;
}

.shape-box_half:hover>.after {
  opacity: 1;
} */

.shape-box {
    display: inline-block;
    position: relative;
    z-index: 1;
    max-width: 500px;
    height: 430px;
    margin: 30px 10px 30px;
    box-shadow: 0 6px 30px 0 rgba(0, 0, 0, .12);
    overflow: hidden;
    width: 30%;
}


@media (max-width: 767px) {
    .shape-box {
        width: 95%;

        margin-left: auto;
        margin-right: auto;

    }
}



.shape-box_half {
    overflow: hidden;
    text-align: left;
}

.shape-box_half:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: skewY(53.5deg);
    transform-origin: top left;
    transition: \transform .4s;
    background: #fff;
    z-index: 1;
}

.shape-box>img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.bg-black {
    background-color: #000;
}

.shape-box_half figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 30px 30px;
    transition: \transform .4s;
    transform: translateY(100%);
    z-index: 3;
}

.shape-box_half figcaption .show-cont {
    position: absolute;
    bottom: calc(100% + 30px);
    left: 30px;
    right: 30px;
    transition: bottom .4s;
}

.card-no {
    font-size: 36px;
    color: #89c4ed;

    padding: 0;
    margin: 10px 0;
}

.card-main-title {
    margin-top: 8px;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    color: #292b2c;
}

.card-content {
    color: #9f9f9f;
    margin-top: 20px;
    line-height: 22px;
    font-size: 15px;
}

.read-more-btn {

    font-size: 14px;
    cursor: pointer;
    padding: 10px 20px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    background: #fbcdcd;
    color: #080808;
    border-radius: 2px;
    margin-top: 25px;
    text-decoration: none;
}

.read-more-btn:hover {
    background: black;
    color: #fffefe;

}

.shape-box_half>.after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #89c4ed;
    opacity: 0;
    transition: opacity .4s;
}

/*On hover*/
.shape-box_half:hover:before {
    transform: skewY(20deg);
}

.shape-box_half:hover figcaption {
    transform: translateY(0);
}

.shape-box_half:hover figcaption .show-cont {
    bottom: 100%;
}

.shape-box_half:hover>.after {
    opacity: 1;
}


.form-container {
    display: flex;
}

.left-container {
    flex: 1;


}

.left-container img {
    position: relative;
    top: -73px;
}


@media (max-width: 767px) {
    .form-container {
        position: relative;
        top: -50px;

    }
}

.right-container {
    display: flex;
    flex: 1;
    /*height: 460px;*/
    background-color: white;
    justify-content: center;
    align-items: center;
}

.left-container {
    display: flex;
    flex: 1;
    height: 480px;
    justify-content: center;
    align-items: center;
    color: white;
}

.left-container p {
    font-size: 0.9rem;
}

.right-inner-container {
    width: 70%;
    height: 80%;
    /*text-align: center;*/

}

.left-inner-container {
    height: 50%;
    width: 80%;
    text-align: center;
    line-height: 22px;
}

.left-inner-container h2 {
    padding-bottom: 10px;
    padding-top: 30px;
}

.left-inner-container p {
    color: rgb(43, 43, 43);
    font-family: 'inter', sans-serif;
    font-size: 17px;
    ;
}

input,
textarea {
    background-color: none;
    ;
    border-radius: 15px;
    border: 1px solid #ccc;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
    font-size: 0.8rem;
}

input:focus,
textarea:focus {
    outline: 1px solid rgb(19, 94, 156);
}

/* button {
	border-radius: 20px;
	border: 1px solid #00b4cf;
	background-color: #00b4cf;
	color: #FFFFFF;
	font-size: 12px;
	font-weight: bold;
	padding: 12px 45px;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: transform 80ms ease-in;
  cursor:pointer;
}

button:hover {
  opacity:0.7;
} */
@media only screen and (max-width: 600px) {
    .left-container {
        display: none;
    }

    .lg-view {

        text-align: left;
    }
}

@media only screen and (min-width: 600px) {
    .sm-view {
        display: none;
    }
}

form p {
    text-align: left;

}

.cont-heading {
    text-align: left;
    ;
    padding-bottom: 20px;
    font-size: 47px;

}

@media (max-width: 767px) {
    .cont-heading {
        text-align: center;
        ;
        padding-bottom: 20px;
        font-size: 35px;

    }

}

@media (max-width: 767px) {
    .cont-subtext {
        text-align: center;
        width: 100%;


    }

}



.cont-span {
    color: #eac003;

}

.feature-sec {
    position: relative;
    top: -80px;
    background-color: #f2fbff;

}


.features {

    margin-left: auto;
    margin-right: auto;
    padding-bottom: 50px;
    width: 90%;


}

.features-text {
    text-align: center;
    padding-bottom: 50px;
    ;

}

@media (max-width: 767px) {
    .features-text {

        padding-bottom: 20px;
        ;

    }

}

.features-text h3 {
    font-size: 47px;
    ;
    font-family: 'inter', sans-serif;
    color: #3d3c3c;
    padding-top: 38px;
    ;

}

@media (max-width: 767px) {
    .features-text h3 {

        font-size: 35px;

    }

}

.features-text h3 span {
    color: #1f8bbc;
}

.sts-icon1 img {
    position: relative;
    top: 20px;
    left: -30px;
    opacity: 0.4;
}

.sts-icon2 img {
    position: relative;
    top: 10px;
    left: 560px;
    width: 6%;
    rotate: -30deg;
    opacity: 0.4;
    /* animation: MyDiv 3s infinite ease-in; */


}

@media only screen and (max-width: 600px) {
    .sts-icon2 img {
        display: none;

    }
}

.submit {
    border: none;
    padding: 8px 35px;
    ;
    background-color: #9fbef1;
    background-image: linear-gradient(315deg, #9fbef1 0%, #2cabdd 74%);
    border-radius: 20px;
    ;
    margin-top: 15px;
    ;
    color: white;

}

.submit:hover {
    background-color: #9fbef1;
    background-image: linear-gradient(315deg, #2cabdd 74%, #9fbef1 0%);
    color: rgb(2, 2, 2);
}

.icon1 {
    font-size: 25px;
    ;
}

.icon1 i {
    padding-right: 10px;
    ;
    border-radius: 50px;
    ;
    padding: 4px 8px;
    margin-right: 10px;
    background-color: #000;
    color: rgb(33, 172, 197);
}

.icon2 i {
    padding-right: 10px;
    ;
    border-radius: 50px;
    ;
    padding: 4px 8px;
    margin-right: 10px;
    background-color: #000;
    color: rgb(33, 172, 197);
}




/* .alt {
  animation-direction: alternate;
}
@keyframes MyDiv {
  0%   {left: 0px; top: 0px;}
  100%  {left: 75px; top: 0px;}
} */
/* .sts-icon3 img{
  position: relative;
  top:-80px;
  right: 0;
  opacity: 0.4;
} */
.get-touch h3 {
    padding-top: 40px;
    padding-bottom: 20px;
    ;
    font-size: 40px;
}

.get-section {
    margin-bottom: 60px;
    ;
    padding-bottom: 30px;
    ;
}

.signup {
    width: 444px;
    height: 50px;
    background-color: white;
    border: 4px solid white;
    box-shadow: 2px 4px 8px 0 rgba(0, 0, 0, 0.11);

    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 15;
    border-bottom-left-radius: 100px;
    border-top-left-radius: 100px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    ;
    margin-bottom: 30px;
}

#email-signup {

    background-color: rgb(126, 126, 126);
    padding: 0px 5px 0px 23px;
    width: 300px;
    caret-color: #d12035;
    background-color: white;
    font-size: 16px;
    color: #383838;
    outline-style: none;
    border: none;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;



}

#btn {
    height: 42px;
    width: 124px;
    background-color: #4dccc6;
    background-image: linear-gradient(315deg, #2cabdd, #9fbef1 74%);
    /* background-color:#d12035; */
    border: none;
    font-size: 18px;
    border-radius: 10px;
    float: right;
    color: white;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Inter", sans-serif;
}

/* new code */

.shape-box {
    display: inline-block;
    position: relative;
    z-index: 1;
    max-width: 300px;
    height: 400px;
    margin: 30px 10px 30px;
    box-shadow: 0 6px 30px 0 rgba(0, 0, 0, .12);
    overflow: hidden;
    width: 30%;
    border-radius: 15px;
}

.nav-link i {
    background-image: linear-gradient(315deg, #438AD3 44%, #EB1933 100%);
    /* background-color: #2693c4; */
    color: #fff;
    border-radius: 50% !important;
    width: auto;
    text-align: center;
    padding: 0.5rem 0.8rem 0.5rem 0.8rem;
    transition: 0.5s ease-in-out;
    box-shadow: 1px 1px 3px rgb(73, 69, 69);
}

.nav-item a:hover {
    color: darkblue;
    transform: scale(1.1, 1.1);
}

.nav-item:hover .nav-link i {
    background-image: linear-gradient(315deg, #EB1933 44%, #438AD3 100%);
    color: #fff;
    box-shadow: 1px 1px 8px rgb(73, 69, 69);
}

/* .phone-number {
  display: none;
}

.nav-link:hover .phone-number {
  display: inline-block;
} */

.phone-number,
.header-email {
    font-style: normal;
}


.nav-link:hover .call-text {
    display: none;
}

/* .header-email{
  display: none;
}

.nav-link:hover .header-email {
  display: inline-block;
} */

.nav-link:hover .mail-text {
    display: none;
}

/* features section styles */

.dark {
    background: #110f16;
}

.light-features-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.light {
    background: #f3f5f7;
}

a,
a:hover {
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

#pageHeaderTitle {
    margin: 2rem 0;
    text-transform: uppercase;
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
}

/* Cards */
.postcard {
    flex-wrap: wrap;
    display: flex;
    box-shadow: 0 4px 21px -12px rgba(0, 0, 0, 0.66);
    border-radius: 10px;
    margin: 0 0 2rem 0;
    overflow: hidden;
    position: relative;
    color: #ffffff;
}

.postcard.dark {
    background-color: #18151f;
}

.postcard.light {
    background-color: #e1e5ea;
}

.postcard .t-dark {
    color: #18151f;
}

.postcard a {
    color: inherit;
}

.postcard h1,
.postcard .h1 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

.postcard .small {
    font-size: 80%;
}

.postcard .postcard__title {
    font-size: 1.75rem;
}

.postcard .postcard__img {
    max-height: 180px;
    width: 100%;
    object-fit: cover;
    position: relative;
}

.postcard .postcard__img_link {
    display: contents;
}

.postcard .postcard__bar {
    width: 50px;
    height: 10px;
    margin: 10px 0;
    border-radius: 5px;
    background-color: #424242;
    transition: width 0.2s ease;
}

.postcard .postcard__text {
    padding: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.postcard .postcard__preview-txt {
    margin-top: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: justify;
    height: 100%;
}

.postcard .postcard__tagbox {
    display: flex;
    flex-flow: row wrap;
    font-size: 14px;
    margin: 20px 0 0 0;
    padding: 0;
    justify-content: center;
}

.postcard .postcard__tagbox .tag__item {
    display: inline-block;
    background: rgba(83, 83, 83, 0.4);
    border-radius: 10px;
    padding: 10px 20px;
    margin: 0 5px 5px 0;
    background-color: #000;
    color: #fff;
    cursor: alias;
    user-select: none;
    font-weight: bold;
    font-size: 15px;
    transition: background-color 0.3s;
}

.postcard .postcard__tagbox .tag__item:hover {
    background-color: #c4a209;
    color: #000;
}

.postcard:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(-70deg, #424242, transparent 50%);
    opacity: 1;
    border-radius: 10px;
}

.postcard:hover .postcard__bar {
    width: 100px;
}

@media screen and (min-width: 769px) {
    .postcard {
        flex-wrap: inherit;
    }

    .postcard .postcard__title {
        font-size: 2rem;
    }

    .postcard .postcard__tagbox {
        justify-content: start;
    }

    .postcard .postcard__img {
        max-width: 300px;
        max-height: 100%;
        transition: transform 0.3s ease;
    }

    .postcard .postcard__text {
        padding: 3rem;
        width: 100%;
    }

    .postcard .media.postcard__text:before {
        content: "";
        position: absolute;
        display: block;
        background: #18151f;
        top: -20%;
        height: 130%;
        width: 55px;
    }

    .postcard:hover .postcard__img {
        transform: scale(1.1);
    }

    .postcard:nth-child(2n+1) {
        flex-direction: row;
    }

    .postcard:nth-child(2n+0) {
        flex-direction: row-reverse;
    }

    .postcard:nth-child(2n+1) .postcard__text::before {
        left: -12px !important;
        transform: rotate(4deg);
    }

    .postcard:nth-child(2n+0) .postcard__text::before {
        right: -12px !important;
        transform: rotate(-4deg);
    }
}

@media screen and (min-width: 1024px) {
    .postcard__text {
        padding: 2rem 3.5rem;
    }

    .postcard__text:before {
        content: "";
        position: absolute;
        display: block;
        top: -20%;
        height: 130%;
        width: 55px;
    }

    .postcard.dark .postcard__text:before {
        background: #18151f;
    }

    .postcard.light .postcard__text:before {
        background: #e1e5ea;
    }
}

/* COLORS */
.postcard .postcard__tagbox .green.play:hover {
    background: #79dd09;
    color: black;
}

/* .green .postcard__title:hover {
    color: #79dd09;
} */

.green .postcard__bar {
    background-color: #79dd09;
}

.green::before {
    background-image: linear-gradient(-30deg, rgba(121, 221, 9, 0.1), transparent 50%);
}

.green:nth-child(2n)::before {
    background-image: linear-gradient(30deg, rgba(121, 221, 9, 0.1), transparent 50%);
}

.postcard .postcard__tagbox .blue.play:hover {
    background: #0076bd;
}

/* .blue .postcard__title:hover {
    color: #0076bd;
} */

.blue .postcard__bar {
    background-color: #0076bd;
}

.blue::before {
    background-image: linear-gradient(-30deg, rgba(0, 118, 189, 0.1), transparent 50%);
}

.blue:nth-child(2n)::before {
    background-image: linear-gradient(30deg, rgba(0, 118, 189, 0.1), transparent 50%);
}

.postcard .postcard__tagbox .red.play:hover {
    background: #bd150b;
}

/* .red .postcard__title:hover {
    color: #bd150b;
} */

.red .postcard__bar {
    background-color: #bd150b;
}

.red::before {
    background-image: linear-gradient(-30deg, rgba(189, 21, 11, 0.1), transparent 50%);
}

.red:nth-child(2n)::before {
    background-image: linear-gradient(30deg, rgba(189, 21, 11, 0.1), transparent 50%);
}

.postcard .postcard__tagbox .yellow.play:hover {
    background: #bdbb49;
    color: black;
}

/* .yellow .postcard__title:hover {
    color: #bdbb49;
} */

.yellow .postcard__bar {
    background-color: #bdbb49;
}

.yellow::before {
    background-image: linear-gradient(-30deg, rgba(189, 187, 73, 0.1), transparent 50%);
}

.yellow:nth-child(2n)::before {
    background-image: linear-gradient(30deg, rgba(189, 187, 73, 0.1), transparent 50%);
}

@media screen and (min-width: 769px) {
    .green::before {
        background-image: linear-gradient(-80deg, rgba(121, 221, 9, 0.1), transparent 50%);
    }

    .green:nth-child(2n)::before {
        background-image: linear-gradient(80deg, rgba(121, 221, 9, 0.1), transparent 50%);
    }

    .blue::before {
        background-image: linear-gradient(-80deg, rgba(0, 118, 189, 0.1), transparent 50%);
    }

    .blue:nth-child(2n)::before {
        background-image: linear-gradient(80deg, rgba(0, 118, 189, 0.1), transparent 50%);
    }

    .red::before {
        background-image: linear-gradient(-80deg, rgba(189, 21, 11, 0.1), transparent 50%);
    }

    .red:nth-child(2n)::before {
        background-image: linear-gradient(80deg, rgba(189, 21, 11, 0.1), transparent 50%);
    }

    .yellow::before {
        background-image: linear-gradient(-80deg, rgba(189, 187, 73, 0.1), transparent 50%);
    }

    .yellow:nth-child(2n)::before {
        background-image: linear-gradient(80deg, rgba(189, 187, 73, 0.1), transparent 50%);
    }
}

.header-design {
    background-color: #a4508b;
    background-image: linear-gradient(326deg, #a4508b 0%, #5f0a87 74%);
    height: 120px;
    text-align: center;
}

.listar-map-button {
    width: 100%;
    position: absolute;
    display: table;
    right: 0;
    top: 0;
    height: 200px;
    line-height: 164px;
    white-space: nowrap;
    font-size: 0;
}

.listar-map-button {
    right: auto;
    /***
    box-shadow: 0 0 65px rgba(0,0,0,.07) inset, 0 0 35px rgba(0,0,0,.05) inset;**/
}

.listar-map-button-text span {
    background-color: #fff;
    color: #252525;
    text-shadow: none;
}

.listar-page-header-content .listar-map-button-text span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    height: 44px;
    line-height: 1.6;
    padding: 10px 25px;
    box-shadow: 0 0 300px rgba(0, 0, 0, 0.65), 0 0 30px rgba(0, 0, 0, 0.06);
    border-radius: 50px;
    background-color: rgba(35, 40, 45, 0.9);
    color: #fff;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
}

header .footer-wave {
    max-width: 102%;
    width: 100%;
    height: 187.8px;
    left: 0;
    z-index: 1;
    bottom: -67px;
    background: url(https://1.bp.blogspot.com/-NYl6L8pz8B4/XoIVXwfhlNI/AAAAAAAAU3k/nxJKiLT706Mb7jUFiM5vdCsOSNnFAh0yQCLcBGAsYHQ/s1600/hero-wave.png) repeat-x;
    animation: wave 10s cubic-bezier(0.44, 0.66, 0.67, 0.37) infinite;
}

@keyframes wave {
    0% {
        background-position: 0;
    }

    100% {
        background-position: 1440px;
    }
}

.listar-feature-item-wrapper {
    margin-bottom: 120px;
    padding-left: 27px;
    padding-right: 27px;
}

.listar-feature-item {
    /* height: calc(100% - 20px); */
}

.listar-feature-item.listar-feature-has-link~.listar-feature-fix-bottom-padding.listar-fix-feature-arrow-button-height {
    position: relative;
    display: block;
    width: 100%;
    height: 30px;
}

.listar-feature-item a {
    position: absolute;
    top: -12px;
    left: 15px;
    width: calc(100% - 30px);
    height: calc(100% + 4px);
    border-radius: 1000px;
    z-index: 10;
}

.listar-feature-with-image .listar-feature-item a:before {
    content: "";
    position: absolute;
    top: -74px;
    left: 50%;
    margin-left: -74px;
    width: 148px;
    height: 148px;
    border-radius: 1000px;
    z-index: 10;
}

/* .listar-feature-item a:after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  margin-left: -25px;
  width: 50px;
  height: 50px;
  border-radius: 1000px;
  z-index: 10;
  animation: ripple 0.7s linear infinite;
  box-shadow: 5px 5px 10px rgba(163, 177, 198, 0.6),
    -5px -5px 10px rgba(255, 255, 255, 0.5);
} */


/* @keyframes ripple {
  0% {
        box-shadow: 0 0 0 0 rgba(163, 177, 198, 0.3), 0 0 0 1em rgba(163, 177, 198, 0.3), 0 0 0 3em rgba(163, 177, 198, 0.03), 0 0 0 5em rgba(163, 177, 198, 0.01);
  }
  100% {
    box-shadow: 0 0 0 1em rgba(163, 177, 198, 0.3), 0 0 0 3em rgba(163, 177, 198, 0.03), 0 0 0 5em rgba(163, 177, 198, 0.03), 0 0 0 8em rgba(163, 177, 198, 0.01);
  }
} */



.listar-feature-item .listar-feature-item-inner {
    padding: 50px 30px;
    border-radius: 6px;
    z-index: 5;
    position: relative;
    height: 100%;
}

.listar-feature-item .listar-feature-item-inner {
    padding-top: 60px;
    padding-bottom: 60px;
}

.listar-feature-item .listar-feature-item-inner:before {
    border: 0;
    box-shadow: 120px 0px 150px rgba(80, 80, 80, 0.15),
        10px 0px 10px rgba(80, 80, 80, 0.02);
    border-radius: 1000px;
    background: rgba(255, 255, 255, 0);
    background: -moz-linear-gradient(left,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 1) 100%);
    background: -webkit-gradient(left top,
            right top,
            color-stop(0%, rgba(255, 255, 255, 0)),
            color-stop(40%, rgba(255, 255, 255, 0)),
            color-stop(100%, rgba(255, 255, 255, 1)));
    background: -webkit-linear-gradient(left,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 1) 100%);
    background: -o-linear-gradient(left,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 1) 100%);
    background: -ms-linear-gradient(left,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1);
}

.listar-feature-item .listar-feature-item-inner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.listar-feature-right-border {
    position: absolute;
    width: calc(100% + 24px);
    height: calc(100% + 24px);
    top: -12px;
    left: 50%;
    overflow: hidden;
}

.listar-feature-items {
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.listar-feature-right-border:before,
.listar-hovering-features .listar-feature-item a:hover~.listar-feature-item-inner .listar-feature-right-border:before {
    border: 11px solid #2f53bf;
}

.listar-feature-right-border:before,
.listar-hovering-features .listar-feature-item a:hover~.listar-feature-item-inner .listar-feature-right-border:before,
.listar-hovering-features-grey .listar-feature-item a:hover~.listar-feature-item-inner .listar-feature-right-border:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 11px solid #258bd5;
    border-radius: 800px;
    left: -50%;
}

.listar-feature-item .listar-feature-block-content-wrapper {
    position: relative;
    display: block;
    text-decoration: none;
    margin: -30px;
    padding: 30px;
    height: calc(100% + 100px);
}

.listar-features-design-2 .listar-feature-item-wrapper {
    margin-bottom: 120px;
    padding-left: 27px;
    padding-right: 27px;
}

.listar-feature-item.listar-feature-has-link .listar-feature-item-inner:after {
    content: "";
    background-color: #fff;
    z-index: 6;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center center;
}

.listar-feature-icon-wrapper {
    width: 148px;
    height: 148px;
    line-height: 148px;
    border-radius: 500px;
    position: relative;
    background-color: #fff;
    box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.06);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    left: 50%;
    vertical-align: middle;
    margin-left: -74px;
    top: -66px;
    margin-top: -74px;
}

.listar-feature-icon-inner {
    width: 120px;
    height: 120px;
    line-height: 120px;
    border-radius: 500px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.14);
    background: #fff;
}

.listar-feature-icon-inner div {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    display: inline-block;
    position: relative;
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: left;
}

.listar-feature-icon-inner img {
    position: relative;
    margin: 0 auto;
    vertical-align: middle;
    display: inline-block;
    width: auto;
    left: 50%;
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -ms-transform: translate(-50%);
    -o-transform: translate(-50%);
    transform: translate(-50%);
    height: 55px;
}

.listar-feature-item img,
.listar-feature-item i {
    position: relative;
    display: inline-block;
    border-bottom: 0;
    font-size: 40px;
    top: 0;
    padding: 0;
    color: #258bd5;
}

.listar-feature-with-image .listar-feature-content-wrapper {
    top: 0;
}

.listar-feature-content-wrapper {
    position: relative;
    margin-top: -15.5px;
}

.listar-feature-item .listar-feature-item-title {
    padding-top: 0;
    margin: 0 0 30px;
    text-align: center;
    line-height: 1.5;
}

.listar-feature-item .listar-feature-item-title.listar-feature-counter-added>span {
    margin-left: 25px;
    border-radius: 0 50px 50px 0;
}

.listar-feature-item .listar-feature-item-title>span {
    box-shadow: 15px 20px 30px rgba(80, 80, 80, 0.12),
        5px 0px 40px rgba(80, 80, 80, 0.1);
    padding: 10px 20px;
    display: inline-block;
    position: relative;
    background-color: #fff;
}

.listar-feature-item .listar-feature-item-title>span span {
    box-shadow: 15px 15px 30px rgba(80, 80, 80, 0.2),
        5px 0px 80px rgba(80, 80, 80, 0.15);
    padding: 10px 0;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 30px;
    white-space: nowrap;
    position: absolute;
    top: -3px;
    left: -40px;
    border-radius: 50px;
    background-color: #fff;
}

.listar-feature-item .listar-feature-item-title span {
    display: inline-block;
    font-size: 14px;
    line-height: normal;
    font-weight: 400;
    text-shadow: none;
    border-radius: 50px;
    color: #252525;
    font-size: 18px;
}

.listar-feature-item-excerpt {
    padding: 0 20px;
}

.listar-feature-item-excerpt {
    color: #252525;
    position: relative;
    top: 0;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.pset {
    padding-top: 180px;
    padding-bottom: 80px;
    overflow: hidden;
    margin-left: -8rem;
}

.listar-map-button-text span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    height: 44px;
    line-height: 1.6;
    padding: 10px 25px;
    box-shadow: 0 0 31px rgba(0, 0, 0, 0.65), 0 0 4px rgba(0, 0, 0, 0.06);
    border-radius: 50px;
    background-color: rgba(35, 40, 45, 0.9);
    color: #fff;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
}

.listar-map-button-text span {
    background-color: #fff;
    color: #252525;
    text-shadow: none;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.listar-map-button-text span:after {
    border: 12px solid #fff;
}

.listar-map-button-text span:after {
    content: "";
    position: absolute;
    top: -14px;
    left: -14px;
    width: calc(100% + 28px);
    height: calc(100% + 28px);
    border-radius: 36px;
}

.listar-map-button:hover .listar-map-button-text span {
    padding: 10px 43px 10px 51px;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.listar-feature-with-image .listar-feature-item a:before {
    content: "";
    position: absolute;
    top: -74px;
    left: 50%;
    margin-left: -74px;
    width: 148px;
    height: 148px;
    border-radius: 1000px;
    z-index: 10;
}

.listar-feature-item.listar-feature-has-link .listar-feature-item-inner:after {
    margin-left: -25px;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    box-shadow: 10px 10px 40px rgba(80, 80, 80, 0.15),
        15px 15px 30px rgba(80, 80, 80, 0.05), 0 0 120px rgba(80, 80, 80, 0.6);
    bottom: -30px;
    background-image: url("https://image.flaticon.com/icons/svg/2316/2316674.svg");
    background-size: 40%;
    color: #555;
    line-height: 52px;
}

.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
    align-self: flex-start;
}

.swiper-wrapper {
    overflow: hidden;
}

.why-choose {
    margin-top: 60px;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.choose-text {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    gap: 0rem;
}

.choose-card img {
    margin-bottom: 0.5rem;
    margin-right: 1rem;
}

.choose-img {
    width: 600px;
    height: auto;
}

@media (max-width:786px) {
    .why-choose {
        margin: 1rem;
    }
}

.main-banner {
    position: relative;
}

.sign-form {
    display: none;
    /* border: 1px #000 double; */
    border-radius: 10px;
    padding-bottom: 3rem !important;
    background-image: linear-gradient(160deg, #fff 80%, #EB1933 2%);
    padding: 2rem;
    position: absolute;
    right: 9.5%;
    top: 22% !important;
    z-index: 1;
    box-shadow: 1px 1px 5px rgb(77, 74, 74);
}


/* .banner-form input {
  width: 200px;
} */

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .sign-form {
        border-radius: 10px;
        background-color: #fff;
        padding: 2rem;
        position: absolute;
        right: 9.5%;
        top: 20% !important;
        z-index: 1;
    }
}

.banner {
    height: 660px;
    display: grid;
    padding-bottom: 30px;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to bottom right, #FDFCFB, #e2d1c3ca);
    /* background-image: url(../images/banner-circle/Group\ 1000001800.png);
  background-repeat: no-repeat;
  background-position: start;
  background-size: contain; */
}

.banner-text {
    margin-top: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.banner-text h1 {
    margin-top: -6rem;
    font-size: 80px;
    text-align: center;
    /* margin-bottom: 1rem; */
    background: linear-gradient(60deg, #EB1933, #4196DF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: banner-heading 10s linear infinite alternate-reverse ease-in-out;
}

@keyframes banner-heading {
    0% {
        background-position: -500% 50%;
    }

    100% {
        background-position: 500% 50%;
    }
}

.welcome-text {
    padding: 0.5rem;
    border-radius: 10px;
    font-size: 15px;
    color: #4196DF;
    font-weight: bolder;
    background-color: #0075bd15;
}



.banner-para {
    text-align: center;
    width: 60%;
    font-size: 14px;
    font-weight: bold;
}

.input-group input {
    width: 50px;
    z-index: 99;
}

.sign-in {
    width: 170px;
    height: 50px;
    color: #000;
    border-radius: 65px;
    border: none;
    margin-left: 5px;
    padding: 5px 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
   /*  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1); */
    outline: none;
    /* top:115px; */
}

.sign-in {
    margin-top: -0.1rem !important;
    background-color: #000;
    background-image: linear-gradient(315deg, #ffd100 44%, #a88c0d 100%);
    border: none;
    z-index: 1;
    transition: 5s ease-in-out;
}

.sign-in:hover {
    background-image: linear-gradient(315deg, #a88c0d 44%, #ffd100 100%);
}

.input-group input {
    width: 20rem !important;
    margin-top: -0.1rem;
    height: 50px !important;
    border-radius: 30px 0 0 30px;
}

@media (max-width:426px) {
    .light-blub {
        display: none !important;
    }

    .arrow-banner {
        display: none !important;
    }

    .banner-text h1 {
        margin-top: -3rem;
        font-size: 45px;
        text-align: center;
        margin-bottom: 1rem;
        background: linear-gradient(60deg, #EB1933, #4196DF);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .banner-para {
        text-align: center;
        width: 90%;
        font-size: 13px;
        font-weight: 550;
    }

    .input-group input {
        width: 14rem !important;
        margin-top: -0.1rem;
        height: 50px !important;
        border-radius: 30px 0 0 30px;
    }

    .input-group {
        margin-top: -5rem;
    }

    .banner-text {
        margin-top: 5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .sign-in {
        width: 115px;
    }
}

@media (min-width:320px) and (max-width:375px) {
    .banner-text h1 {
        font-size: 35px;
        /* For screen width of 320px */
        margin-top: -2rem;
        /* For screen width of 320px */
        text-align: center;
        margin-bottom: 1rem;
        background: linear-gradient(60deg, #EB1933, #4196DF);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .input-group input {
        width: 10rem !important;
        margin-top: -0.1rem;
        height: 50px !important;
        border-radius: 30px 0 0 30px;
    }
}

@media (min-width:376px) and (max-width:768px) {
    .banner-text h1 {
        font-size: 41px;
        /* For screen width of 375px */
        margin-top: -3rem;
        /* For screen width of 375px */
        text-align: center;
        margin-bottom: 1rem;
        background: linear-gradient(60deg, #EB1933, #4196DF);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
}

.banner {
    position: relative;
}

.female-vecter {
    position: absolute;
    width: 600px;
    height: 600px;
    right: 0%;
    bottom: 5%;
    z-index: -1;
}

.arrow-banner {
    position: absolute;
    width: 336px;
    height: 220px;
    bottom: 6%;
    left: 8%;
    z-index: -1;
    rotate: 50deg;
}

.light-blub {
    position: absolute;
    width: 180px;
    height: 180px;
    top: 30%;
    left: 5%;
    z-index: -1;
}

@media (min-width:1400px) and (max-width:1600px) {
    .arrow-banner {
        position: absolute;
        width: 406px;
        height: 290px;
        bottom: 4%;
        left: 6%;
        z-index: -1;
        rotate: 50deg;
    }

    .light-blub {
        position: absolute;
        width: 180px !important;
        height: 180px !important;
        top: 30%;
        left: 5%;
        z-index: -1;
    }
}

/* .arrow-banner-1{
    position: absolute;
    width: 236px;
    height: 220px;
    top: 0;
    left: 10%;
    z-index: -1;
    rotate: 89deg;
  } */




/* .circle img:first-child{
  position: absolute;
  width: 30px;
  height: 30px;
  bottom: 25%;
  left: 14%;
}

.circle img:nth-child(2){
  position: absolute;
  width: 50px;
  height: 50px;
  bottom: 18%;
  left: 10%;
}

.circle img:nth-child(3){
  position: absolute;
  width: 80px;
  height: 80px;
  bottom: 5%;
  left: 5%;
}

.circle-1 img:first-child{
  position: absolute;
  width: 30px;
  height: 30px;
  bottom: 25%;
  right: 14%;
}

.circle-1 img:nth-child(2){
  position: absolute;
  width: 50px;
  height: 50px;
  bottom: 18%;
  right: 10%;
}

.circle-1 img:nth-child(3){
  position: absolute;
  width: 80px;
  height: 80px;
  bottom: 5%;
  right: 5%;
} */


.introduction {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap !important;
    justify-content: center;
    /* align-items: center; */
    gap: 3rem;
}

.about-txt {
    margin-top: 2rem;
    width: 40%;
}

.about-img {
    width: 40%;
}
.about-img img{
	margin-bottom:30px;
}

.number-mail {
    margin-top: 2rem;
    display: flex;
    /* justify-content: center; */
    gap: 1.5rem;
}

.number-mail a {
    padding: 1rem;
    background-color: #fad220;
    box-shadow: 1px 1px 5px grey;
    border-radius: 10px;
    text-decoration: none;
    color: #000;
    transition: 0.5s ease-in-out;
}

.number-mail a:hover {
        background-image: linear-gradient(315deg, #ffd100 44%, #a88c0d 100%);
    color: #fff;
    font-weight: 470;
    transform: scale(1.1, 1.1);
}



@media only screen and (min-width: 300px) and (max-width: 768px) {
    .introduction {
        margin-top: 60px;
        display: flex;
        flex-wrap: wrap !important;
        justify-content: center;
        align-items: center;
        /* gap: 5rem; */
    }

    .about-txt {
        width: 90%;
        /* display: flex; */
        align-items: center;
    }

    .about-img {
        width: 90%;
    }

    .number-mail {
        width: auto;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    #banner-para-2 {
        width: 80% !important;
    }

}

.footer-sub-txt {
    margin-top: 1rem;
    text-align: center;
    color: #b8b1b1;
}

#banner-para-2 {
    width: 70%;
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
    /* background-color: #af4169; */
    background-image: linear-gradient(160deg, #85649a, #b14169);
    color: #fff;
    font-weight: bold;
    border-radius: 30px;
}

@media (min-width:0px) and (max-width:500px) {
    .header-buttons {
        display: none;
    }
}

@media (min-width:300px) and (max-width:420px) {
    #banner-para-2 {
        margin-bottom: 5rem;
    }
}
.error{
    color:red;
    
}
.contactusspan{
    display:inline !important;
}
