@charset "UTF-8";
 
 
/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Domine:wght@400;700&family=Inter&display=swap");
/*******************************************************/
/******************* 01. Default Style *****************/
/*******************************************************/
* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

body {
    color: #494a4d;
    background: white;
    font-weight: 400;
    line-height: 1.65;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    /**/
}

a {
    color: #494a4d;
    cursor: pointer;
    outline: none;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none;
}
a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none;
}
a:hover {
    color: #5ab9b5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 12px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: #1b1d21;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white h1 a,
.text-white h2 a,
.text-white h3 a,
.text-white h4 a,
.text-white h5 a,
.text-white h6 a {
    color: white;
}

h1 {
    line-height: 1.22;
    font-size: 60px;
}

h2 {
    line-height: 1.3;
    font-size: 45px;
}

h3 {
    font-size: 30px;
}

h4 {
    line-height: 1.5;
    font-size: 22px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    display: inline-block;
}

header:after,
section:after,
footer:after {
    display: block;
    clear: both;
    content: "";
}

/*======= Input Styles =======*/
input,
select,
textarea,
.nice-select,
.form-control {
    width: 100%;
    height: auto;
    border: none;
    font-size: 14px;
    border-radius: 0;
    padding: 20px 30px;
    background: #f6f6f6;
}

textarea {
    display: inherit;
    padding-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

input:focus,
textarea:focus,
.form-control:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #f6f6f6;
}

button:focus {
    outline: none;
}

input::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder {
    
}

input:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder,
.form-control:-ms-input-placeholder {
    
}

input::-ms-input-placeholder,
select::-ms-input-placeholder,
textarea::-ms-input-placeholder,
.form-control::-ms-input-placeholder {
    
}

input::placeholder,
select::placeholder,
textarea::placeholder,
.form-control::placeholder {
    
}

input[type="search"]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input[type="search"]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

input[type="checkbox"],
input[type="radio"] {
    height: auto;
    width: auto;
}

/*******************************************************/
/*****************  02. Common Classes *****************/
/*******************************************************/
.page-wrapper {
    position: relative;
    z-index: 9;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    min-width: 300px;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
}

.no-gap {
    margin-left: 0;
    margin-right: 0;
}
.no-gap > div {
    padding-left: 0;
    padding-right: 0;
}

.small-gap {
    margin-left: -5px;
    margin-right: -5px;
}
.small-gap > div {
    padding-left: 5px;
    padding-right: 5px;
}

@media only screen and (min-width: 1501px) {
    .large-gap {
        margin-left: -37.5px;
        margin-right: -37.5px;
    }
    .large-gap > div {
        padding-left: 37.5px;
        padding-right: 37.5px;
    }
}

@media only screen and (max-width: 375px) {
    .col-small {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/** Section Title style **/
.section-title {
    z-index: 1;
    position: relative;
}
.section-title h2 {
    
}
.section-title h2 span {
    z-index: 1;
    position: relative;
    display: inline-block;
}
/*.section-title h2 span:after {*/
/*    content: "";*/
/*    left: 0;*/
/*    z-index: -1;*/
/*    bottom: 2px;*/
/*    width: 100%;*/
/*    height: 16px;*/
/*    position: absolute;*/
/*    background-size: 100% 100%;*/
/*    background-image: url(../images/shapes/title-bg-line.png);*/
/*}*/
@media only screen and (max-width: 991px) and (min-width: 768px) {
    .section-title h2 {
        font-size: 40px;
    }
}
@media only screen and (max-width: 767px) {
    .section-title h2 {
        font-size: 35px;
    }
}
@media only screen and (max-width: 575px) {
    .section-title h2 {
        font-size: 30px;
    }
}

.sub-title {
    font-weight: 700;
    color: #5ab9b5;
    display: inline-block;
    
    text-decoration: underline;
    font-family: "Poppins", sans-serif;
}

.text-white .sub-title {
    color: #5ab9b5;
}

/** Button style **/
.theme-btn,
a.theme-btn {
    color: white;
    cursor: pointer;
    font-weight: 700;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    text-align: center;
    padding: 14px 40px;
    display: inline-block;
    border-radius:15px;
    
    background: #5ab9b5;
    font-family: "Poppins", sans-serif;
    border: 1px solid #5ab9b5;
}
.theme-btn:hover,
.theme-btn:focus,
a.theme-btn:hover,
a.theme-btn:focus {
    color: #5ab9b5;
    background: transparent;
}
@media only screen and (max-width: 480px) {
    .theme-btn,
    a.theme-btn {
        padding: 12px 20px;
    }
}
.theme-btn.style-two,
a.theme-btn.style-two {
    color: #5ab9b5;
    background: transparent;
}
.theme-btn.style-two:hover,
a.theme-btn.style-two:hover {
    color: white;
    background: #5ab9b5;
}

/* View More Btn */
.view-more {
    display: inline-block;
    text-decoration: underline;
}
.view-more i {
    margin-left: 10px;
    color: #5ab9b5;
}

/* Read More Btn */
.read-more {
    z-index: 1;
    position: relative;
    display: inline-block;
    
}
.read-more:before {
    content: "";
    top: -8px;
    left: -8px;
    z-index: -1;
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(130, 76, 242, 0.2);
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
}
.read-more i {
    margin-left: 10px;
}

/* List style One */
.list-style-one li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 700;
    color: #1b1d21;
    font-family: "Poppins", sans-serif;
}
.list-style-one li:before {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    content: "";
    margin-right: 15px;
    width: 30px;
    height: 30px;
    background: white;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
    color: #5ab9b5;
    font-family: "Flaticon";
    border: 1px solid #e8e8e9;
}
.list-style-one li:not(:last-child) {
    margin-bottom: 20px;
}

/** Social Link One **/
.social-style-one {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.social-style-one a {
    margin-right: 10px;
    width: 40px;
    height: 40px;
    background: white;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    color: #1b1d21;
}
.social-style-one a:last-child {
    margin-right: 0;
}
.social-style-one a:hover {
    color: white;
    background: #5ab9b5;
}

/** Social Link two **/
.social-style-two {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.social-style-two a {
    margin: 0 15px 10px 0;
}

/*** Preloader style ** */
.preloader {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: white;
}
.preloader:after,
.preloader:before {
    position: absolute;
    content: "";
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    border: 2px solid #5ab9b5;
}
.preloader:before {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-animation: spWaveBe 0.6s infinite linear;
    animation: spWaveBe 0.6s infinite linear;
}
.preloader:after {
    opacity: 0;
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-animation: spWaveAf 0.6s infinite linear;
    animation: spWaveAf 0.6s infinite linear;
}

/* Pagination */
.pagination {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.pagination li {
    margin: 10px 5px 0;
}
.pagination li a,
.pagination li .page-link {
    padding: 0;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-weight: 600;
    width: 50px;
    height: 50px;
    background: white;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    color: #1b1d21;
}
@media only screen and (max-width: 480px) {
    .pagination li a,
    .pagination li .page-link {
        width: 40px;
        height: 40px;
        font-size: 14px;
        line-height: 40px;
    }
}
.pagination li.disabled .page-link,
.pagination li:last-child .page-link,
.pagination li:first-child .page-link {
    border-radius: 50%;
}
.pagination li:first-child {
    margin-left: 0;
}
.pagination li:last-child {
    margin-right: 0;
}
.pagination li:last-child .page-link:not(:hover),
.pagination li:first-child .page-link:not(:hover) {
    color: #5ab9b5;
}
.pagination li.active .page-link,
.pagination li:hover:not(.disabled) .page-link {
    color: white;
    background: #5ab9b5;
}

/*** Scroll Top style ***/
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    width: 40px;
    height: 40px;
    color: white;
    display: none;
    cursor: pointer;
    border-radius: 5px;
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
    background: #2d3137;
}

/* Text White */
.text-white *,
.text-white a {
    color: white;
}
.text-white * li li .dropdown-btn span,
.text-white a li li .dropdown-btn span {
    color: #1b1d21;
}

/* Position */
.rel {
    position: relative;
}

.z-0 {
    z-index: 0;
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.z-3 {
    z-index: 3;
}

.z-4 {
    z-index: 4;
}

.z-5 {
    z-index: 5;
}

.overlay {
    z-index: 1;
    position: relative;
}
.overlay::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    opacity: 0.9;
    background-color: #010c2a;
}

/* Shapes */
.clos-shape,
.circle-shape,
.triangle-shape,
.rectangle-shape,
.half-circle-shape {
    z-index: -1;
    max-width: 10%;
    position: absolute;
}

.triangle-shape {
    left: 5%;
    bottom: 50%;
    -webkit-animation: 5s down-up-one infinite;
    animation: 5s down-up-one infinite;
}

.circle-shape {
    left: 45%;
    top: 10%;
    -webkit-animation: 15s moveLeftRight infinite;
    animation: 15s moveLeftRight infinite;
}

.half-circle-shape {
    left: 50%;
    bottom: 15%;
    -webkit-animation: 20s rotated_circle infinite;
    animation: 20s rotated_circle infinite;
}

.rectangle-shape {
    right: 5%;
    bottom: 50%;
    -webkit-animation: 5s down-up-two infinite;
    animation: 5s down-up-two infinite;
}

.clos-shape {
    top: 22%;
    left: 60%;
    -webkit-animation: 5s zoomIn infinite;
    animation: 5s zoomIn infinite;
}

/* Backgruond Size */
.bgs-cover {
    background-size: cover;
    background-position: center;
}

/* Color + Background */
.bg-lighter {
    background-color: #f6f6f6;
}

.bg-blue {
    background-color: #5ab9b5;
}

.bg-dark-blue {
    background-color: #010c2a;
}

/* Border Radius */
.br-5 {
    border-radius: 5px;
}

.br-10 {
    border-radius: 10px;
}

.br-15 {
    border-radius: 15px;
}

.br-20 {
    border-radius: 20px;
}

.br-25 {
    border-radius: 25px;
}

.br-30 {
    border-radius: 30px;
}

/*******************************************************/
/******************* 03. Repeat Style ******************/
/*******************************************************/
h1,
h2,
h3,
h4,
h5,
h6,
.view-more,
.read-more,
.main-menu .navbar-collapse li a,
.success-item p,
.count-text,
.skill-bar-percent,
.pricing-item .price {
    font-weight: 700;
    color: #1b1d21;
    font-family: "Poppins", sans-serif;
}

/*******************************************************/
/************** 04. Padding Margin Spacing *************/
/*******************************************************/
/* Padding Around */
.p-5 {
    padding: 5px !important;
}

.p-10 {
    padding: 10px;
}

.p-15 {
    padding: 15px;
}

.p-20 {
    padding: 20px;
}

.p-25 {
    padding: 25px;
}

.p-30 {
    padding: 30px;
}

.p-35 {
    padding: 35px;
}

.p-40 {
    padding: 40px;
}

.p-45 {
    padding: 45px;
}

.p-50 {
    padding: 50px;
}

.p-55 {
    padding: 55px;
}

.p-60 {
    padding: 60px;
}

.p-65 {
    padding: 65px;
}

.p-70 {
    padding: 70px;
}

.p-75 {
    padding: 75px;
}

.p-80 {
    padding: 80px;
}

.p-85 {
    padding: 85px;
}

.p-90 {
    padding: 90px;
}

.p-95 {
    padding: 95px;
}

.p-100 {
    padding: 100px;
}

.p-105 {
    padding: 105px;
}

.p-110 {
    padding: 110px;
}

.p-115 {
    padding: 115px;
}

.p-120 {
    padding: 120px;
}

.p-125 {
    padding: 125px;
}

.p-130 {
    padding: 130px;
}

.p-135 {
    padding: 135px;
}

.p-140 {
    padding: 140px;
}

.p-145 {
    padding: 145px;
}

.p-150 {
    padding: 150px;
}

.p-155 {
    padding: 155px;
}

.p-160 {
    padding: 160px;
}

.p-165 {
    padding: 165px;
}

.p-170 {
    padding: 170px;
}

.p-175 {
    padding: 175px;
}

.p-180 {
    padding: 180px;
}

.p-185 {
    padding: 185px;
}

.p-190 {
    padding: 190px;
}

.p-195 {
    padding: 195px;
}

.p-200 {
    padding: 200px;
}

.p-205 {
    padding: 205px;
}

.p-210 {
    padding: 210px;
}

.p-215 {
    padding: 215px;
}

.p-220 {
    padding: 220px;
}

.p-225 {
    padding: 225px;
}

.p-230 {
    padding: 230px;
}

.p-235 {
    padding: 235px;
}

.p-240 {
    padding: 240px;
}

.p-245 {
    padding: 245px;
}

.p-250 {
    padding: 250px;
}

/* Padding Top */
.pt-5,
.py-5 {
    padding-top: 5px !important;
}

.pt-10,
.py-10 {
    padding-top: 10px;
}

.pt-15,
.py-15 {
    padding-top: 15px;
}

.pt-20,
.py-20 {
    padding-top: 20px;
}

.pt-25,
.py-25 {
    padding-top: 25px;
}

.pt-30,
.py-30 {
    padding-top: 30px;
}

.pt-35,
.py-35 {
    padding-top: 35px;
}

.pt-40,
.py-40 {
    padding-top: 40px;
}

.pt-45,
.py-45 {
    padding-top: 45px;
}

.pt-50,
.py-50 {
    padding-top: 50px;
}

.pt-55,
.py-55 {
    padding-top: 55px;
}

.pt-60,
.py-60 {
    padding-top: 60px;
}

.pt-65,
.py-65 {
    padding-top: 65px;
}

.pt-70,
.py-70 {
    padding-top: 70px;
}

.pt-75,
.py-75 {
    padding-top: 75px;
}

.pt-80,
.py-80 {
    padding-top: 80px;
}

.pt-85,
.py-85 {
    padding-top: 85px;
}

.pt-90,
.py-90 {
    padding-top: 90px;
}

.pt-95,
.py-95 {
    padding-top: 95px;
}

.pt-100,
.py-100 {
    padding-top: 100px;
}

.pt-105,
.py-105 {
    padding-top: 105px;
}

.pt-110,
.py-110 {
    padding-top: 110px;
}

.pt-115,
.py-115 {
    padding-top: 115px;
}

.pt-120,
.py-120 {
    padding-top: 120px;
}

.pt-125,
.py-125 {
    padding-top: 125px;
}

.pt-130,
.py-130 {
    padding-top: 130px;
}

.pt-135,
.py-135 {
    padding-top: 135px;
}

.pt-140,
.py-140 {
    padding-top: 140px;
}

.pt-145,
.py-145 {
    padding-top: 145px;
}

.pt-150,
.py-150 {
    padding-top: 150px;
}

.pt-155,
.py-155 {
    padding-top: 155px;
}

.pt-160,
.py-160 {
    padding-top: 160px;
}

.pt-165,
.py-165 {
    padding-top: 165px;
}

.pt-170,
.py-170 {
    padding-top: 170px;
}

.pt-175,
.py-175 {
    padding-top: 175px;
}

.pt-180,
.py-180 {
    padding-top: 180px;
}

.pt-185,
.py-185 {
    padding-top: 185px;
}

.pt-190,
.py-190 {
    padding-top: 190px;
}

.pt-195,
.py-195 {
    padding-top: 195px;
}

.pt-200,
.py-200 {
    padding-top: 200px;
}

.pt-205,
.py-205 {
    padding-top: 205px;
}

.pt-210,
.py-210 {
    padding-top: 210px;
}

.pt-215,
.py-215 {
    padding-top: 215px;
}

.pt-220,
.py-220 {
    padding-top: 220px;
}

.pt-225,
.py-225 {
    padding-top: 225px;
}

.pt-230,
.py-230 {
    padding-top: 230px;
}

.pt-235,
.py-235 {
    padding-top: 235px;
}

.pt-240,
.py-240 {
    padding-top: 240px;
}

.pt-245,
.py-245 {
    padding-top: 245px;
}

.pt-250,
.py-250 {
    padding-top: 250px;
}

/* Padding Bottom */
.pb-5,
.py-5 {
    padding-bottom: 5px !important;
}

.pb-10,
.py-10 {
    padding-bottom: 10px;
}

.pb-15,
.py-15 {
    padding-bottom: 15px;
}

.pb-20,
.py-20 {
    padding-bottom: 20px;
}

.pb-25,
.py-25 {
    padding-bottom: 25px;
}

.pb-30,
.py-30 {
    padding-bottom: 30px;
}

.pb-35,
.py-35 {
    padding-bottom: 35px;
}

.pb-40,
.py-40 {
    padding-bottom: 40px;
}

.pb-45,
.py-45 {
    padding-bottom: 45px;
}

.pb-50,
.py-50 {
    padding-bottom: 50px;
}

.pb-55,
.py-55 {
    padding-bottom: 55px;
}

.pb-60,
.py-60 {
    padding-bottom: 60px;
}

.pb-65,
.py-65 {
    padding-bottom: 65px;
}

.pb-70,
.py-70 {
    padding-bottom: 70px;
}

.pb-75,
.py-75 {
    padding-bottom: 75px;
}

.pb-80,
.py-80 {
    padding-bottom: 80px;
}

.pb-85,
.py-85 {
    padding-bottom: 85px;
}

.pb-90,
.py-90 {
    padding-bottom: 90px;
}

.pb-95,
.py-95 {
    padding-bottom: 95px;
}

.pb-100,
.py-100 {
    padding-bottom: 100px;
}

.pb-105,
.py-105 {
    padding-bottom: 105px;
}

.pb-110,
.py-110 {
    padding-bottom: 110px;
}

.pb-115,
.py-115 {
    padding-bottom: 115px;
}

.pb-120,
.py-120 {
    padding-bottom: 120px;
}

.pb-125,
.py-125 {
    padding-bottom: 125px;
}

.pb-130,
.py-130 {
    padding-bottom: 130px;
}

.pb-135,
.py-135 {
    padding-bottom: 135px;
}

.pb-140,
.py-140 {
    padding-bottom: 140px;
}

.pb-145,
.py-145 {
    padding-bottom: 145px;
}

.pb-150,
.py-150 {
    padding-bottom: 150px;
}

.pb-155,
.py-155 {
    padding-bottom: 155px;
}

.pb-160,
.py-160 {
    padding-bottom: 160px;
}

.pb-165,
.py-165 {
    padding-bottom: 165px;
}

.pb-170,
.py-170 {
    padding-bottom: 170px;
}

.pb-175,
.py-175 {
    padding-bottom: 175px;
}

.pb-180,
.py-180 {
    padding-bottom: 180px;
}

.pb-185,
.py-185 {
    padding-bottom: 185px;
}

.pb-190,
.py-190 {
    padding-bottom: 190px;
}

.pb-195,
.py-195 {
    padding-bottom: 195px;
}

.pb-200,
.py-200 {
    padding-bottom: 200px;
}

.pb-205,
.py-205 {
    padding-bottom: 205px;
}

.pb-210,
.py-210 {
    padding-bottom: 210px;
}

.pb-215,
.py-215 {
    padding-bottom: 215px;
}

.pb-220,
.py-220 {
    padding-bottom: 220px;
}

.pb-225,
.py-225 {
    padding-bottom: 225px;
}

.pb-230,
.py-230 {
    padding-bottom: 230px;
}

.pb-235,
.py-235 {
    padding-bottom: 235px;
}

.pb-240,
.py-240 {
    padding-bottom: 240px;
}

.pb-245,
.py-245 {
    padding-bottom: 245px;
}

.pb-250,
.py-250 {
    padding-bottom: 250px;
}

/* Margin Around */
.m-5 {
    margin: 5px !important;
}

.m-10 {
    margin: 10px;
}

.m-15 {
    margin: 15px;
}

.m-20 {
    margin: 20px;
}

.m-25 {
    margin: 25px;
}

.m-30 {
    margin: 30px;
}

.m-35 {
    margin: 35px;
}

.m-40 {
    margin: 40px;
}

.m-45 {
    margin: 45px;
}

.m-50 {
    margin: 50px;
}

.m-55 {
    margin: 55px;
}

.m-60 {
    margin: 60px;
}

.m-65 {
    margin: 65px;
}

.m-70 {
    margin: 70px;
}

.m-75 {
    margin: 75px;
}

.m-80 {
    margin: 80px;
}

.m-85 {
    margin: 85px;
}

.m-90 {
    margin: 90px;
}

.m-95 {
    margin: 95px;
}

.m-100 {
    margin: 100px;
}

.m-105 {
    margin: 105px;
}

.m-110 {
    margin: 110px;
}

.m-115 {
    margin: 115px;
}

.m-120 {
    margin: 120px;
}

.m-125 {
    margin: 125px;
}

.m-130 {
    margin: 130px;
}

.m-135 {
    margin: 135px;
}

.m-140 {
    margin: 140px;
}

.m-145 {
    margin: 145px;
}

.m-150 {
    margin: 150px;
}

.m-155 {
    margin: 155px;
}

.m-160 {
    margin: 160px;
}

.m-165 {
    margin: 165px;
}

.m-170 {
    margin: 170px;
}

.m-175 {
    margin: 175px;
}

.m-180 {
    margin: 180px;
}

.m-185 {
    margin: 185px;
}

.m-190 {
    margin: 190px;
}

.m-195 {
    margin: 195px;
}

.m-200 {
    margin: 200px;
}

.m-205 {
    margin: 205px;
}

.m-210 {
    margin: 210px;
}

.m-215 {
    margin: 215px;
}

.m-220 {
    margin: 220px;
}

.m-225 {
    margin: 225px;
}

.m-230 {
    margin: 230px;
}

.m-235 {
    margin: 235px;
}

.m-240 {
    margin: 240px;
}

.m-245 {
    margin: 245px;
}

.m-250 {
    margin: 250px;
}

/* Margin Top */
.mt-5,
.my-5 {
    margin-top: 5px !important;
}

.mt-10,
.my-10 {
    margin-top: 10px;
}

.mt-15,
.my-15 {
    margin-top: 15px;
}

.mt-20,
.my-20 {
    margin-top: 20px;
}

.mt-25,
.my-25 {
    margin-top: 25px;
}

.mt-30,
.my-30 {
    margin-top: 30px;
}

.mt-35,
.my-35 {
    margin-top: 35px;
}

.mt-40,
.my-40 {
    margin-top: 40px;
}

.mt-45,
.my-45 {
    margin-top: 45px;
}

.mt-50,
.my-50 {
    margin-top: 50px;
}

.mt-55,
.my-55 {
    margin-top: 55px;
}

.mt-60,
.my-60 {
    margin-top: 60px;
}

.mt-65,
.my-65 {
    margin-top: 65px;
}

.mt-70,
.my-70 {
    margin-top: 70px;
}

.mt-75,
.my-75 {
    margin-top: 75px;
}

.mt-80,
.my-80 {
    margin-top: 80px;
}

.mt-85,
.my-85 {
    margin-top: 85px;
}

.mt-90,
.my-90 {
    margin-top: 90px;
}

.mt-95,
.my-95 {
    margin-top: 95px;
}

.mt-100,
.my-100 {
    margin-top: 100px;
}

.mt-105,
.my-105 {
    margin-top: 105px;
}

.mt-110,
.my-110 {
    margin-top: 110px;
}

.mt-115,
.my-115 {
    margin-top: 115px;
}

.mt-120,
.my-120 {
    margin-top: 120px;
}

.mt-125,
.my-125 {
    margin-top: 125px;
}

.mt-130,
.my-130 {
    margin-top: 130px;
}

.mt-135,
.my-135 {
    margin-top: 135px;
}

.mt-140,
.my-140 {
    margin-top: 140px;
}

.mt-145,
.my-145 {
    margin-top: 145px;
}

.mt-150,
.my-150 {
    margin-top: 150px;
}

.mt-155,
.my-155 {
    margin-top: 155px;
}

.mt-160,
.my-160 {
    margin-top: 160px;
}

.mt-165,
.my-165 {
    margin-top: 165px;
}

.mt-170,
.my-170 {
    margin-top: 170px;
}

.mt-175,
.my-175 {
    margin-top: 175px;
}

.mt-180,
.my-180 {
    margin-top: 180px;
}

.mt-185,
.my-185 {
    margin-top: 185px;
}

.mt-190,
.my-190 {
    margin-top: 190px;
}

.mt-195,
.my-195 {
    margin-top: 195px;
}

.mt-200,
.my-200 {
    margin-top: 200px;
}

.mt-205,
.my-205 {
    margin-top: 205px;
}

.mt-210,
.my-210 {
    margin-top: 210px;
}

.mt-215,
.my-215 {
    margin-top: 215px;
}

.mt-220,
.my-220 {
    margin-top: 220px;
}

.mt-225,
.my-225 {
    margin-top: 225px;
}

.mt-230,
.my-230 {
    margin-top: 230px;
}

.mt-235,
.my-235 {
    margin-top: 235px;
}

.mt-240,
.my-240 {
    margin-top: 240px;
}

.mt-245,
.my-245 {
    margin-top: 245px;
}

.mt-250,
.my-250 {
    margin-top: 250px;
}

/* Margin Bottom */
.mb-5,
.my-5 {
    margin-bottom: 5px !important;
}

.mb-10,
.my-10 {
    margin-bottom: 10px;
}

.mb-15,
.my-15 {
    margin-bottom: 15px;
}

.mb-20,
.my-20 {
    margin-bottom: 20px;
}

.mb-25,
.my-25 {
    margin-bottom: 25px;
}

.mb-30,
.my-30 {
    margin-bottom: 30px;
}

.mb-35,
.my-35 {
    margin-bottom: 35px;
}

.mb-40,
.my-40 {
    margin-bottom: 40px;
}

.mb-45,
.my-45 {
    margin-bottom: 45px;
}

.mb-50,
.my-50 {
    margin-bottom: 50px;
}

.mb-55,
.my-55 {
    margin-bottom: 55px;
}

.mb-60,
.my-60 {
    margin-bottom: 60px;
}

.mb-65,
.my-65 {
    margin-bottom: 65px;
}

.mb-70,
.my-70 {
    margin-bottom: 70px;
}

.mb-75,
.my-75 {
    margin-bottom: 75px;
}

.mb-80,
.my-80 {
    margin-bottom: 80px;
}

.mb-85,
.my-85 {
    margin-bottom: 85px;
}

.mb-90,
.my-90 {
    margin-bottom: 90px;
}

.mb-95,
.my-95 {
    margin-bottom: 95px;
}

.mb-100,
.my-100 {
    margin-bottom: 100px;
}

.mb-105,
.my-105 {
    margin-bottom: 105px;
}

.mb-110,
.my-110 {
    margin-bottom: 110px;
}

.mb-115,
.my-115 {
    margin-bottom: 115px;
}

.mb-120,
.my-120 {
    margin-bottom: 120px;
}

.mb-125,
.my-125 {
    margin-bottom: 125px;
}

.mb-130,
.my-130 {
    margin-bottom: 130px;
}

.mb-135,
.my-135 {
    margin-bottom: 135px;
}

.mb-140,
.my-140 {
    margin-bottom: 140px;
}

.mb-145,
.my-145 {
    margin-bottom: 145px;
}

.mb-150,
.my-150 {
    margin-bottom: 150px;
}

.mb-155,
.my-155 {
    margin-bottom: 155px;
}

.mb-160,
.my-160 {
    margin-bottom: 160px;
}

.mb-165,
.my-165 {
    margin-bottom: 165px;
}

.mb-170,
.my-170 {
    margin-bottom: 170px;
}

.mb-175,
.my-175 {
    margin-bottom: 175px;
}

.mb-180,
.my-180 {
    margin-bottom: 180px;
}

.mb-185,
.my-185 {
    margin-bottom: 185px;
}

.mb-190,
.my-190 {
    margin-bottom: 190px;
}

.mb-195,
.my-195 {
    margin-bottom: 195px;
}

.mb-200,
.my-200 {
    margin-bottom: 200px;
}

.mb-205,
.my-205 {
    margin-bottom: 205px;
}

.mb-210,
.my-210 {
    margin-bottom: 210px;
}

.mb-215,
.my-215 {
    margin-bottom: 215px;
}

.mb-220,
.my-220 {
    margin-bottom: 220px;
}

.mb-225,
.my-225 {
    margin-bottom: 225px;
}

.mb-230,
.my-230 {
    margin-bottom: 230px;
}

.mb-235,
.my-235 {
    margin-bottom: 235px;
}

.mb-240,
.my-240 {
    margin-bottom: 240px;
}

.mb-245,
.my-245 {
    margin-bottom: 245px;
}

.mb-250,
.my-250 {
    margin-bottom: 250px;
}

/* Responsive Padding Margin */
@media only screen and (max-width: 991px) {
    /* Padding Around */
    .rp-0 {
        padding: 0px !important;
    }
    .rp-5 {
        padding: 5px !important;
    }
    .rp-10 {
        padding: 10px;
    }
    .rp-15 {
        padding: 15px;
    }
    .rp-20 {
        padding: 20px;
    }
    .rp-25 {
        padding: 25px;
    }
    .rp-30 {
        padding: 30px;
    }
    .rp-35 {
        padding: 35px;
    }
    .rp-40 {
        padding: 40px;
    }
    .rp-45 {
        padding: 45px;
    }
    .rp-50 {
        padding: 50px;
    }
    .rp-55 {
        padding: 55px;
    }
    .rp-60 {
        padding: 60px;
    }
    .rp-65 {
        padding: 65px;
    }
    .rp-70 {
        padding: 70px;
    }
    .rp-75 {
        padding: 75px;
    }
    .rp-80 {
        padding: 80px;
    }
    .rp-85 {
        padding: 85px;
    }
    .rp-90 {
        padding: 90px;
    }
    .rp-95 {
        padding: 95px;
    }
    .rp-100 {
        padding: 100px;
    }
    .rp-105 {
        padding: 105px;
    }
    .rp-110 {
        padding: 110px;
    }
    .rp-115 {
        padding: 115px;
    }
    .rp-120 {
        padding: 120px;
    }
    .rp-125 {
        padding: 125px;
    }
    .rp-130 {
        padding: 130px;
    }
    .rp-135 {
        padding: 135px;
    }
    .rp-140 {
        padding: 140px;
    }
    .rp-145 {
        padding: 145px;
    }
    .rp-150 {
        padding: 150px;
    }
    /* Padding Top */
    .rpt-0,
    .rpy-0 {
        padding-top: 0px !important;
    }
    .rpt-5,
    .rpy-5 {
        padding-top: 5px !important;
    }
    .rpt-10,
    .rpy-10 {
        padding-top: 10px;
    }
    .rpt-15,
    .rpy-15 {
        padding-top: 15px;
    }
    .rpt-20,
    .rpy-20 {
        padding-top: 20px;
    }
    .rpt-25,
    .rpy-25 {
        padding-top: 25px;
    }
    .rpt-30,
    .rpy-30 {
        padding-top: 30px;
    }
    .rpt-35,
    .rpy-35 {
        padding-top: 35px;
    }
    .rpt-40,
    .rpy-40 {
        padding-top: 40px;
    }
    .rpt-45,
    .rpy-45 {
        padding-top: 45px;
    }
    .rpt-50,
    .rpy-50 {
        padding-top: 50px;
    }
    .rpt-55,
    .rpy-55 {
        padding-top: 55px;
    }
    .rpt-60,
    .rpy-60 {
        padding-top: 60px;
    }
    .rpt-65,
    .rpy-65 {
        padding-top: 65px;
    }
    .rpt-70,
    .rpy-70 {
        padding-top: 70px;
    }
    .rpt-75,
    .rpy-75 {
        padding-top: 75px;
    }
    .rpt-80,
    .rpy-80 {
        padding-top: 80px;
    }
    .rpt-85,
    .rpy-85 {
        padding-top: 85px;
    }
    .rpt-90,
    .rpy-90 {
        padding-top: 90px;
    }
    .rpt-95,
    .rpy-95 {
        padding-top: 95px;
    }
    .rpt-100,
    .rpy-100 {
        padding-top: 100px;
    }
    .rpt-105,
    .rpy-105 {
        padding-top: 105px;
    }
    .rpt-110,
    .rpy-110 {
        padding-top: 110px;
    }
    .rpt-115,
    .rpy-115 {
        padding-top: 115px;
    }
    .rpt-120,
    .rpy-120 {
        padding-top: 120px;
    }
    .rpt-125,
    .rpy-125 {
        padding-top: 125px;
    }
    .rpt-130,
    .rpy-130 {
        padding-top: 130px;
    }
    .rpt-135,
    .rpy-135 {
        padding-top: 135px;
    }
    .rpt-140,
    .rpy-140 {
        padding-top: 140px;
    }
    .rpt-145,
    .rpy-145 {
        padding-top: 145px;
    }
    .rpt-150,
    .rpy-150 {
        padding-top: 150px;
    }
    /* Padding Bottom */
    .rpb-0,
    .rpy-0 {
        padding-bottom: 0px !important;
    }
    .rpb-5,
    .rpy-5 {
        padding-bottom: 5px !important;
    }
    .rpb-10,
    .rpy-10 {
        padding-bottom: 10px;
    }
    .rpb-15,
    .rpy-15 {
        padding-bottom: 15px;
    }
    .rpb-20,
    .rpy-20 {
        padding-bottom: 20px;
    }
    .rpb-25,
    .rpy-25 {
        padding-bottom: 25px;
    }
    .rpb-30,
    .rpy-30 {
        padding-bottom: 30px;
    }
    .rpb-35,
    .rpy-35 {
        padding-bottom: 35px;
    }
    .rpb-40,
    .rpy-40 {
        padding-bottom: 40px;
    }
    .rpb-45,
    .rpy-45 {
        padding-bottom: 45px;
    }
    .rpb-50,
    .rpy-50 {
        padding-bottom: 50px;
    }
    .rpb-55,
    .rpy-55 {
        padding-bottom: 55px;
    }
    .rpb-60,
    .rpy-60 {
        padding-bottom: 60px;
    }
    .rpb-65,
    .rpy-65 {
        padding-bottom: 65px;
    }
    .rpb-70,
    .rpy-70 {
        padding-bottom: 70px;
    }
    .rpb-75,
    .rpy-75 {
        padding-bottom: 75px;
    }
    .rpb-80,
    .rpy-80 {
        padding-bottom: 80px;
    }
    .rpb-85,
    .rpy-85 {
        padding-bottom: 85px;
    }
    .rpb-90,
    .rpy-90 {
        padding-bottom: 90px;
    }
    .rpb-95,
    .rpy-95 {
        padding-bottom: 95px;
    }
    .rpb-100,
    .rpy-100 {
        padding-bottom: 100px;
    }
    .rpb-105,
    .rpy-105 {
        padding-bottom: 105px;
    }
    .rpb-110,
    .rpy-110 {
        padding-bottom: 110px;
    }
    .rpb-115,
    .rpy-115 {
        padding-bottom: 115px;
    }
    .rpb-120,
    .rpy-120 {
        padding-bottom: 120px;
    }
    .rpb-125,
    .rpy-125 {
        padding-bottom: 125px;
    }
    .rpb-130,
    .rpy-130 {
        padding-bottom: 130px;
    }
    .rpb-135,
    .rpy-135 {
        padding-bottom: 135px;
    }
    .rpb-140,
    .rpy-140 {
        padding-bottom: 140px;
    }
    .rpb-145,
    .rpy-145 {
        padding-bottom: 145px;
    }
    .rpb-150,
    .rpy-150 {
        padding-bottom: 150px;
    }
    /* Margin Around */
    .rm-0 {
        margin: 0px !important;
    }
    .rm-5 {
        margin: 5px !important;
    }
    .rm-10 {
        margin: 10px;
    }
    .rm-15 {
        margin: 15px;
    }
    .rm-20 {
        margin: 20px;
    }
    .rm-25 {
        margin: 25px;
    }
    .rm-30 {
        margin: 30px;
    }
    .rm-35 {
        margin: 35px;
    }
    .rm-40 {
        margin: 40px;
    }
    .rm-45 {
        margin: 45px;
    }
    .rm-50 {
        margin: 50px;
    }
    .rm-55 {
        margin: 55px;
    }
    .rm-60 {
        margin: 60px;
    }
    .rm-65 {
        margin: 65px;
    }
    .rm-70 {
        margin: 70px;
    }
    .rm-75 {
        margin: 75px;
    }
    .rm-80 {
        margin: 80px;
    }
    .rm-85 {
        margin: 85px;
    }
    .rm-90 {
        margin: 90px;
    }
    .rm-95 {
        margin: 95px;
    }
    .rm-100 {
        margin: 100px;
    }
    .rm-105 {
        margin: 105px;
    }
    .rm-110 {
        margin: 110px;
    }
    .rm-115 {
        margin: 115px;
    }
    .rm-120 {
        margin: 120px;
    }
    .rm-125 {
        margin: 125px;
    }
    .rm-130 {
        margin: 130px;
    }
    .rm-135 {
        margin: 135px;
    }
    .rm-140 {
        margin: 140px;
    }
    .rm-145 {
        margin: 145px;
    }
    .rm-150 {
        margin: 150px;
    }
    /* Margin Top */
    .rmt-0,
    .rmy-0 {
        margin-top: 0px !important;
    }
    .rmt-5,
    .rmy-5 {
        margin-top: 5px !important;
    }
    .rmt-10,
    .rmy-10 {
        margin-top: 10px;
    }
    .rmt-15,
    .rmy-15 {
        margin-top: 15px;
    }
    .rmt-20,
    .rmy-20 {
        margin-top: 20px;
    }
    .rmt-25,
    .rmy-25 {
        margin-top: 25px;
    }
    .rmt-30,
    .rmy-30 {
        margin-top: 30px;
    }
    .rmt-35,
    .rmy-35 {
        margin-top: 35px;
    }
    .rmt-40,
    .rmy-40 {
        margin-top: 40px;
    }
    .rmt-45,
    .rmy-45 {
        margin-top: 45px;
    }
    .rmt-50,
    .rmy-50 {
        margin-top: 50px;
    }
    .rmt-55,
    .rmy-55 {
        margin-top: 55px;
    }
    .rmt-60,
    .rmy-60 {
        margin-top: 60px;
    }
    .rmt-65,
    .rmy-65 {
        margin-top: 65px;
    }
    .rmt-70,
    .rmy-70 {
        margin-top: 70px;
    }
    .rmt-75,
    .rmy-75 {
        margin-top: 75px;
    }
    .rmt-80,
    .rmy-80 {
        margin-top: 80px;
    }
    .rmt-85,
    .rmy-85 {
        margin-top: 85px;
    }
    .rmt-90,
    .rmy-90 {
        margin-top: 90px;
    }
    .rmt-95,
    .rmy-95 {
        margin-top: 95px;
    }
    .rmt-100,
    .rmy-100 {
        margin-top: 100px;
    }
    .rmt-105,
    .rmy-105 {
        margin-top: 105px;
    }
    .rmt-110,
    .rmy-110 {
        margin-top: 110px;
    }
    .rmt-115,
    .rmy-115 {
        margin-top: 115px;
    }
    .rmt-120,
    .rmy-120 {
        margin-top: 120px;
    }
    .rmt-125,
    .rmy-125 {
        margin-top: 125px;
    }
    .rmt-130,
    .rmy-130 {
        margin-top: 130px;
    }
    .rmt-135,
    .rmy-135 {
        margin-top: 135px;
    }
    .rmt-140,
    .rmy-140 {
        margin-top: 140px;
    }
    .rmt-145,
    .rmy-145 {
        margin-top: 145px;
    }
    .rmt-150,
    .rmy-150 {
        margin-top: 150px;
    }
    /* Margin Bottom */
    .rmb-0,
    .rmy-0 {
        margin-bottom: 0px !important;
    }
    .rmb-5,
    .rmy-5 {
        margin-bottom: 5px !important;
    }
    .rmb-10,
    .rmy-10 {
        margin-bottom: 10px;
    }
    .rmb-15,
    .rmy-15 {
        margin-bottom: 15px;
    }
    .rmb-20,
    .rmy-20 {
        margin-bottom: 20px;
    }
    .rmb-25,
    .rmy-25 {
        margin-bottom: 25px;
    }
    .rmb-30,
    .rmy-30 {
        margin-bottom: 30px;
    }
    .rmb-35,
    .rmy-35 {
        margin-bottom: 35px;
    }
    .rmb-40,
    .rmy-40 {
        margin-bottom: 40px;
    }
    .rmb-45,
    .rmy-45 {
        margin-bottom: 45px;
    }
    .rmb-50,
    .rmy-50 {
        margin-bottom: 50px;
    }
    .rmb-55,
    .rmy-55 {
        margin-bottom: 55px;
    }
    .rmb-60,
    .rmy-60 {
        margin-bottom: 60px;
    }
    .rmb-65,
    .rmy-65 {
        margin-bottom: 65px;
    }
    .rmb-70,
    .rmy-70 {
        margin-bottom: 70px;
    }
    .rmb-75,
    .rmy-75 {
        margin-bottom: 75px;
    }
    .rmb-80,
    .rmy-80 {
        margin-bottom: 80px;
    }
    .rmb-85,
    .rmy-85 {
        margin-bottom: 85px;
    }
    .rmb-90,
    .rmy-90 {
        margin-bottom: 90px;
    }
    .rmb-95,
    .rmy-95 {
        margin-bottom: 95px;
    }
    .rmb-100,
    .rmy-100 {
        margin-bottom: 100px;
    }
    .rmb-105,
    .rmy-105 {
        margin-bottom: 105px;
    }
    .rmb-110,
    .rmy-110 {
        margin-bottom: 110px;
    }
    .rmb-115,
    .rmy-115 {
        margin-bottom: 115px;
    }
    .rmb-120,
    .rmy-120 {
        margin-bottom: 120px;
    }
    .rmb-125,
    .rmy-125 {
        margin-bottom: 125px;
    }
    .rmb-130,
    .rmy-130 {
        margin-bottom: 130px;
    }
    .rmb-135,
    .rmy-135 {
        margin-bottom: 135px;
    }
    .rmb-140,
    .rmy-140 {
        margin-bottom: 140px;
    }
    .rmb-145,
    .rmy-145 {
        margin-bottom: 145px;
    }
    .rmb-150,
    .rmy-150 {
        margin-bottom: 150px;
    }
}

/*******************************************************/
/***************** 05. Custom Animation ****************/
/*******************************************************/
/* Animation Delay */
.delay-1-0s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.delay-2-0s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.delay-0-1s {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.delay-0-2s {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.delay-0-3s {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.delay-0-4s {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.delay-0-5s {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.delay-0-6s {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.delay-0-7s {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

.delay-0-8s {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.delay-0-9s {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

.delay-1-1s {
    -webkit-animation-delay: 1.1s;
    animation-delay: 1.1s;
}

.delay-1-2s {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.delay-1-3s {
    -webkit-animation-delay: 1.3s;
    animation-delay: 1.3s;
}

.delay-1-4s {
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
}

.delay-1-5s {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

.delay-1-6s {
    -webkit-animation-delay: 1.6s;
    animation-delay: 1.6s;
}

.delay-1-7s {
    -webkit-animation-delay: 1.7s;
    animation-delay: 1.7s;
}

.delay-1-8s {
    -webkit-animation-delay: 1.8s;
    animation-delay: 1.8s;
}

.delay-1-9s {
    -webkit-animation-delay: 1.9s;
    animation-delay: 1.9s;
}

/* Menu Sticky */
@-webkit-keyframes sticky {
    0% {
        top: -100px;
    }
    100% {
        top: 0;
    }
}

@keyframes sticky {
    0% {
        top: -100px;
    }
    100% {
        top: 0;
    }
}

/* Hero Circle */
@-webkit-keyframes rotated_circle {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes rotated_circle {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* Hero Circle */
@-webkit-keyframes upDownLeft {
    0%,
    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
    25%,
    75% {
        -webkit-transform: translate(0px, 50px);
        transform: translate(0px, 50px);
    }
    50% {
        -webkit-transform: translate(-50px, 50px);
        transform: translate(-50px, 50px);
    }
}
@keyframes upDownLeft {
    0%,
    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
    25%,
    75% {
        -webkit-transform: translate(0px, 50px);
        transform: translate(0px, 50px);
    }
    50% {
        -webkit-transform: translate(-50px, 50px);
        transform: translate(-50px, 50px);
    }
}

@-webkit-keyframes shapeAnimationOne {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }
    25% {
        -webkit-transform: translate(0px, 150px) rotate(90deg);
        transform: translate(0px, 150px) rotate(90deg);
    }
    50% {
        -webkit-transform: translate(150px, 150px) rotate(180deg);
        transform: translate(150px, 150px) rotate(180deg);
    }
    75% {
        -webkit-transform: translate(150px, 0px) rotate(270deg);
        transform: translate(150px, 0px) rotate(270deg);
    }
    100% {
        -webkit-transform: translate(0px, 0px) rotate(360deg);
        transform: translate(0px, 0px) rotate(360deg);
    }
}

@keyframes shapeAnimationOne {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }
    25% {
        -webkit-transform: translate(0px, 150px) rotate(90deg);
        transform: translate(0px, 150px) rotate(90deg);
    }
    50% {
        -webkit-transform: translate(150px, 150px) rotate(180deg);
        transform: translate(150px, 150px) rotate(180deg);
    }
    75% {
        -webkit-transform: translate(150px, 0px) rotate(270deg);
        transform: translate(150px, 0px) rotate(270deg);
    }
    100% {
        -webkit-transform: translate(0px, 0px) rotate(360deg);
        transform: translate(0px, 0px) rotate(360deg);
    }
}

@-webkit-keyframes shapeAnimationTwo {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }
    25% {
        -webkit-transform: translate(-150px, 0px) rotate(270deg);
        transform: translate(-150px, 0px) rotate(270deg);
    }
    50% {
        -webkit-transform: translate(-150px, -150px) rotate(180deg);
        transform: translate(-150px, -150px) rotate(180deg);
    }
    75% {
        -webkit-transform: translate(0px, -150px) rotate(90deg);
        transform: translate(0px, -150px) rotate(90deg);
    }
    100% {
        -webkit-transform: translate(0px, 0px) rotate(360deg);
        transform: translate(0px, 0px) rotate(360deg);
    }
}

@keyframes shapeAnimationTwo {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }
    25% {
        -webkit-transform: translate(-150px, 0px) rotate(270deg);
        transform: translate(-150px, 0px) rotate(270deg);
    }
    50% {
        -webkit-transform: translate(-150px, -150px) rotate(180deg);
        transform: translate(-150px, -150px) rotate(180deg);
    }
    75% {
        -webkit-transform: translate(0px, -150px) rotate(90deg);
        transform: translate(0px, -150px) rotate(90deg);
    }
    100% {
        -webkit-transform: translate(0px, 0px) rotate(360deg);
        transform: translate(0px, 0px) rotate(360deg);
    }
}

@-webkit-keyframes shapeAnimationThree {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }
    25% {
        -webkit-transform: translate(50px, 150px) rotate(90deg);
        transform: translate(50px, 150px) rotate(90deg);
    }
    50% {
        -webkit-transform: translate(150px, 150px) rotate(180deg);
        transform: translate(150px, 150px) rotate(180deg);
    }
    75% {
        -webkit-transform: translate(150px, 50px) rotate(270deg);
        transform: translate(150px, 50px) rotate(270deg);
    }
    100% {
        -webkit-transform: translate(0px, 0px) rotate(360deg);
        transform: translate(0px, 0px) rotate(360deg);
    }
}

@keyframes shapeAnimationThree {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }
    25% {
        -webkit-transform: translate(50px, 150px) rotate(90deg);
        transform: translate(50px, 150px) rotate(90deg);
    }
    50% {
        -webkit-transform: translate(150px, 150px) rotate(180deg);
        transform: translate(150px, 150px) rotate(180deg);
    }
    75% {
        -webkit-transform: translate(150px, 50px) rotate(270deg);
        transform: translate(150px, 50px) rotate(270deg);
    }
    100% {
        -webkit-transform: translate(0px, 0px) rotate(360deg);
        transform: translate(0px, 0px) rotate(360deg);
    }
}

@-webkit-keyframes shapeAnimationFour {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }
    25% {
        -webkit-transform: translate(-150px -50px) rotate(90deg);
        transform: translate(-150px -50px) rotate(90deg);
    }
    50% {
        -webkit-transform: translate(-150px, -150px) rotate(180deg);
        transform: translate(-150px, -150px) rotate(180deg);
    }
    75% {
        -webkit-transform: translate(-50px, -150px) rotate(270deg);
        transform: translate(-50px, -150px) rotate(270deg);
    }
    100% {
        -webkit-transform: translate(0px, 0px) rotate(360deg);
        transform: translate(0px, 0px) rotate(360deg);
    }
}

@keyframes shapeAnimationFour {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }
    25% {
        -webkit-transform: translate(-150px -50px) rotate(90deg);
        transform: translate(-150px -50px) rotate(90deg);
    }
    50% {
        -webkit-transform: translate(-150px, -150px) rotate(180deg);
        transform: translate(-150px, -150px) rotate(180deg);
    }
    75% {
        -webkit-transform: translate(-50px, -150px) rotate(270deg);
        transform: translate(-50px, -150px) rotate(270deg);
    }
    100% {
        -webkit-transform: translate(0px, 0px) rotate(360deg);
        transform: translate(0px, 0px) rotate(360deg);
    }
}

@-webkit-keyframes shapeAnimationFive {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }
    25% {
        -webkit-transform: translate(-100px -100px) rotate(90deg);
        transform: translate(-100px -100px) rotate(90deg);
    }
    50% {
        -webkit-transform: translate(100px, 50px) rotate(180deg);
        transform: translate(100px, 50px) rotate(180deg);
    }
    75% {
        -webkit-transform: translate(-100px, 150px) rotate(270deg);
        transform: translate(-100px, 150px) rotate(270deg);
    }
    100% {
        -webkit-transform: translate(0px, 0px) rotate(360deg);
        transform: translate(0px, 0px) rotate(360deg);
    }
}

@keyframes shapeAnimationFive {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }
    25% {
        -webkit-transform: translate(-100px -100px) rotate(90deg);
        transform: translate(-100px -100px) rotate(90deg);
    }
    50% {
        -webkit-transform: translate(100px, 50px) rotate(180deg);
        transform: translate(100px, 50px) rotate(180deg);
    }
    75% {
        -webkit-transform: translate(-100px, 150px) rotate(270deg);
        transform: translate(-100px, 150px) rotate(270deg);
    }
    100% {
        -webkit-transform: translate(0px, 0px) rotate(360deg);
        transform: translate(0px, 0px) rotate(360deg);
    }
}

@-webkit-keyframes down-up-one {
    0% {
        -webkit-transform: rotateX(0deg) translateY(0px);
        transform: rotateX(0deg) translateY(0px);
    }
    50% {
        -webkit-transform: rotateX(0deg) translateY(25px);
        transform: rotateX(0deg) translateY(25px);
    }
    100% {
        -webkit-transform: rotateX(0deg) translateY(0px);
        transform: rotateX(0deg) translateY(0px);
    }
}

@keyframes down-up-one {
    0% {
        -webkit-transform: rotateX(0deg) translateY(0px);
        transform: rotateX(0deg) translateY(0px);
    }
    50% {
        -webkit-transform: rotateX(0deg) translateY(25px);
        transform: rotateX(0deg) translateY(25px);
    }
    100% {
        -webkit-transform: rotateX(0deg) translateY(0px);
        transform: rotateX(0deg) translateY(0px);
    }
}

@-webkit-keyframes down-up-two {
    0% {
        -webkit-transform: rotateX(0deg) translate(0px);
        transform: rotateX(0deg) translate(0px);
    }
    50% {
        -webkit-transform: rotateX(0deg) translate(-25px, -25px);
        transform: rotateX(0deg) translate(-25px, -25px);
    }
    100% {
        -webkit-transform: rotateX(0deg) translate(0px);
        transform: rotateX(0deg) translate(0px);
    }
}

@keyframes down-up-two {
    0% {
        -webkit-transform: rotateX(0deg) translate(0px);
        transform: rotateX(0deg) translate(0px);
    }
    50% {
        -webkit-transform: rotateX(0deg) translate(-25px, -25px);
        transform: rotateX(0deg) translate(-25px, -25px);
    }
    100% {
        -webkit-transform: rotateX(0deg) translate(0px);
        transform: rotateX(0deg) translate(0px);
    }
}

@-webkit-keyframes moveLeftRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(80px);
        transform: translateX(80px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes moveLeftRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(80px);
        transform: translateX(80px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes zoomInOut {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes zoomInOut {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* Preloader */
@-webkit-keyframes spWaveAf {
    from {
        opacity: 0;
        -webkit-transform: scale(0.5, 0.5);
        transform: scale(0.5, 0.5);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}
@keyframes spWaveAf {
    from {
        opacity: 0;
        -webkit-transform: scale(0.5, 0.5);
        transform: scale(0.5, 0.5);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@-webkit-keyframes spWaveBe {
    from {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(1.5, 1.5);
        transform: scale(1.5, 1.5);
    }
}

@keyframes spWaveBe {
    from {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(1.5, 1.5);
        transform: scale(1.5, 1.5);
    }
}

/*******************************************************/
/******************* 06. Header style ******************/
/*******************************************************/
.main-header {
    position: relative;
    left: 0px;
    top: 0px;
    z-index: 999;
    width: 100%;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.main-header .header-upper {
    z-index: 5;
    width: 100%;
    background: white;
    position: relative;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    padding-left: 110px;
    padding-right: 110px;
}
@media only screen and (max-width: 1700px) and (min-width: 1500px) {
    .main-header .header-upper {
        padding-left: 55px;
        padding-right: 55px;
    }
}
@media only screen and (max-width: 1500px) {
    .main-header .header-upper {
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media only screen and (max-width: 991px) {
    .main-header .header-upper {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}
.main-header .logo-outer {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}
@media only screen and (max-width: 991px) {
    .main-header .logo-outer {
        display: none;
    }
}
.main-header .logo {
    z-index: 9;
    padding: 2px 0;
    position: relative;
}
@media only screen and (max-width: 480px) {
    .main-header .logo {
        max-width: 120px;
    }
}
.main-header .header-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 90px;
    padding-left: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-left: 1px solid #e8e8e9;
}
@media only screen and (max-width: 1700px) and (min-width: 1500px) {
    .main-header .header-contact {
        margin-left: 25px;
        padding-left: 25px;
    }
}
@media only screen and (max-width: 1500px) {
    .main-header .header-contact {
        display: none;
    }
}
.main-header .header-contact > i {
    font-size: 25px;
    margin-right: 20px;
    color: #5ab9b5;
    width: 60px;
    height: 60px;
    background: #f6f6f6;
    line-height: 60px;
    border-radius: 50%;
    text-align: center;
}
.main-header .header-contact .content h5 {
    font-size: 18px;
    margin-bottom: 5px;
}
.main-header .header-contact .content h6 {
    margin-bottom: 0;
}
.main-header.fixed-header .header-upper {
    top: 0;
    left: 0;
    position: fixed;
    -webkit-animation: sticky 1s;
    animation: sticky 1s;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(87, 95, 245, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(87, 95, 245, 0.1);
}

.nav-outer {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: center;
}
.nav-outer .menu-btn {
    margin-left: 75px;
}
@media only screen and (max-width: 991px) {
    .nav-outer .menu-btn {
        display: none;
    }
}

/** Header Main Menu **/
@media only screen and (max-width: 991px) {
    .main-menu .collapse {
        overflow: auto;
    }
}

.main-menu .navbar-collapse {
    padding: 0px;
}
.main-menu .navbar-collapse > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media only screen and (max-width: 991px) {
    .main-menu .navbar-collapse > ul {
        display: block;
        padding: 40px 0;
        background: #ffffff;
    }
    .main-menu .navbar-collapse > ul > li:last-child {
        border-bottom: 1px solid #f3f3f3;
    }
}
@media only screen and (max-width: 991px) {
    .main-menu .navbar-collapse {
        left: 0;
        width: 100%;
        padding: 0 15px;
        position: absolute;
    }
}
.main-menu .navbar-collapse li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 40px 20px;
}
@media only screen and (max-width: 1500px) {
    .main-menu .navbar-collapse li {
        padding: 30px 20px;
    }
}
@media only screen and (max-width: 1199px) {
    .main-menu .navbar-collapse li {
        padding: 30px 10px;
    }
}
@media only screen and (max-width: 991px) {
    .main-menu .navbar-collapse li {
        display: block;
        padding: 0 20px;
        border-top: 1px solid #f3f3f3;
    }
}
.main-menu .navbar-collapse li.dropdown .dropdown-btn {
    cursor: pointer;
    font-size: 8px;
    margin-left: 5px;
    margin-top: -2px;
}
@media only screen and (max-width: 991px) {
    .main-menu .navbar-collapse li.dropdown .dropdown-btn {
        position: absolute;
        /*right: 10px;*/
        top: 0;
        width: 50px;
        height: 43px;
        line-height: 46px;
        text-align: center;
        border-left: 1px solid #f2f2f2;
        left:100%;
    }
}
.main-menu .navbar-collapse li a {
    position: relative;
    display: block;
    opacity: 1;
    
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
@media only screen and (max-width: 991px) {
    .main-menu .navbar-collapse li a {
        padding: 10px 10px;
        line-height: 22px;
    }
}
.main-menu .navbar-collapse li.current > a,
.main-menu .navbar-collapse li.current-menu-item > a {
    font-weight: 500;
}
.main-menu .navbar-collapse li li {
    border-top: 1px solid #f3f3f3;
}
.main-menu .navbar-collapse li li a {
    
}
.main-menu .navbar-collapse li .megamenu {
    position: absolute;
    left: 0px;
    top: 100%;
    width: 100%;
    z-index: 100;
    display: none;
    padding: 20px 0;
    background: #ffffff;
    -webkit-box-shadow:
        2px 2px 5px 1px rgba(0, 0, 0, 0.05),
        -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow:
        2px 2px 5px 1px rgba(0, 0, 0, 0.05),
        -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
.main-menu .navbar-collapse li .megamenu:after {
    display: block;
    clear: both;
    content: "";
}
@media only screen and (max-width: 991px) {
    .main-menu .navbar-collapse li .megamenu {
        position: relative;
        -webkit-box-shadow: none;
        box-shadow: none;
        width: 100%;
    }
    .main-menu .navbar-collapse li .megamenu .container {
        max-width: 100%;
    }
    .main-menu .navbar-collapse li .megamenu .row {
        margin: 0px;
    }
}
.main-menu .navbar-collapse li .megamenu ul {
    display: block;
    position: relative;
    top: 0;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.main-menu .navbar-collapse li ul {
    position: absolute;
    left: inherit;
    top: 100%;
    min-width: 301px;
    z-index: 100;
    display: none;
    background: #ffffff;
    -webkit-box-shadow:
        2px 2px 5px 1px rgba(0, 0, 0, 0.05),
        -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow:
        2px 2px 5px 1px rgba(0, 0, 0, 0.05),
        -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
@media only screen and (max-width: 991px) {
    .main-menu .navbar-collapse li ul {
        position: relative;
        display: none;
        width: 100%;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .main-menu .navbar-collapse li ul:after {
        display: block;
        clear: both;
        content: "";
    }
}
@media only screen and (max-width: 991px) and (max-width: 375px) {
    .main-menu .navbar-collapse li ul {
        min-width: auto;
    }
}
.main-menu .navbar-collapse li ul li {
    width: 100%;
    padding: 10px 20px;
}
@media only screen and (max-width: 991px) {
    .main-menu .navbar-collapse li ul li {
        padding: 0 15px;
    }
}
.main-menu .navbar-collapse li ul li ul {
    left: 100%;
    top: 0%;
}
@media only screen and (max-width: 991px) {
    .main-menu .navbar-collapse li ul li ul {
        left: auto;
    }
}

.main-menu .navbar-header {
    display: none;
}
@media only screen and (max-width: 991px) {
    .main-menu .navbar-header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
    }
}
.main-menu .navbar-header .navbar-toggle {
    float: right;
    padding: 4px 0;
    cursor: pointer;
    background: transparent;
}
.main-menu .navbar-header .navbar-toggle .icon-bar {
    background: #494a4d;
    height: 2px;
    width: 30px;
    display: block;
    margin: 7px 0;
}

/* Menu Icons */
.menu-icons {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media only screen and (max-width: 991px) {
    .menu-icons {
        display: none;
    }
}
.menu-icons button {
    background: transparent;
}

/* Header Search */
.nav-search {
    margin-left: 15px;
    margin-right: 65px;
    position: relative;
}
@media only screen and (max-width: 1700px) and (min-width: 1500px) {
    .nav-search {
        margin-right: 25px;
    }
}
@media only screen and (max-width: 1199px) {
    .nav-search {
        margin-left: 25px;
        margin-right: 25px;
    }
}
@media only screen and (max-width: 480px) {
    .nav-search {
        display: none;
    }
}
.nav-search button {
    background: transparent;
}
.nav-search form {
    position: absolute;
    width: 320px;
    top: 100%;
    right: 0;
    z-index: 777;
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.05);
}
.nav-search form.hide {
    display: none;
}
.nav-search form input {
    border: none;
    background: white;
    padding: 15px 5px 15px 25px;
}
.nav-search form button {
    padding: 15px 20px 15px 0;
}

.header-two .container-fluid {
    max-width: 1550px;
}

.header-two .nav-outer {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media only screen and (max-width: 991px) {
    .header-two .nav-outer {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: end;
    }
}

.header-two .nav-search > button {
    width: 50px;
    height: 50px;
    background: transparent;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    border: 1px solid #e8e8e9;
}

/*******************************************************/
/******************* 07. Hero Section ******************/
/*******************************************************/
.hero-section {
    overflow: hidden;
    background-repeat: no-repeat;
}
.hero-section:before {
    content: "";
    position: absolute;
    height: 450px;
    width: 350px;
    opacity: 0.2;
    left: 0;
    top: 10%;
    z-index: -2;
    background: #005de0;
    -webkit-filter: blur(200px);
    filter: blur(200px);
}
.hero-section:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    background: url(../images/hero/bg-shape.png) no-repeat;
}
.hero-section .container {
    max-width: 1350px;
}

.hero-content {
    z-index: 1;
    position: relative;
}
@media only screen and (max-width: 1199px) and (min-width: 991px) {
    .hero-content {
        margin-top: 120px;
        margin-bottom: 120px;
    }
}
.hero-content h1 {
    
}
.hero-content h1 span {
    position: relative;
}
.hero-content h1 span:after {
    content: "";
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 20px;
    position: absolute;
    background-size: 100% 100%;
    background-image: url(../images/shapes/title-bg-line.png);
}
@media only screen and (max-width: 1199px) {
    .hero-content h1 span:after {
        height: 15px;
    }
}
@media only screen and (max-width: 480px) {
    .hero-content h1 span:after {
        height: 10px;
    }
}
@media only screen and (max-width: 1199px) {
    .hero-content h1 {
        font-size: 55px;
    }
}
@media only screen and (max-width: 767px) {
    .hero-content h1 {
        font-size: 50px;
    }
}
@media only screen and (max-width: 575px) {
    .hero-content h1 {
        font-size: 40px;
    }
}
@media only screen and (max-width: 375px) {
    .hero-content h1 {
        font-size: 32px;
    }
}
.hero-content p {
    font-size: 18px;
    
}
@media only screen and (max-width: 480px) {
    .hero-content p {
        font-size: 16px;
    }
}

.hero-right-images {
    z-index: 1;
    position: relative;
}
@media only screen and (min-width: 1501px) {
    .hero-right-images {
        margin-right: -100px;
    }
}
.hero-right-images:after {
    content: "";
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.2;
    position: absolute;
    -webkit-filter: blur(250px);
    filter: blur(250px);
    width: 550px;
    height: 400px;
    background: #5ab9b5;
}

/*******************************************************/
/******************* 08. Page Banner *******************/
/*******************************************************/
.page-banner {
    overflow: hidden;
}
.page-banner:before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    opacity: 0.1;
    right: -200px;
    top: -200px;
    z-index: -2;
    border-radius: 50%;
    background: #005de0;
    -webkit-filter: blur(200px);
    filter: blur(200px);
}
.page-banner:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    background: url(../images/background/banner-bg.png) no-repeat;
}
.page-banner .triangle-shape {
    left: 20%;
    bottom: 35%;
}
.page-banner .half-circle-shape {
    left: 80%;
    bottom: 65%;
}

.banner-inner:before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    opacity: 0.2;
    left: 0;
    top: 0;
    z-index: -2;
    border-radius: 50%;
    -webkit-filter: blur(150px);
    filter: blur(150px);
    background: #5ab9b5;
}

.page-title {
    margin-bottom: 15px;
    
}
@media only screen and (max-width: 767px) {
    .page-title {
        font-size: 40px;
    }
}
@media only screen and (max-width: 480px) {
    .page-title {
        font-size: 35px;
    }
}

.breadcrumb {
    margin: 0;
    padding: 0;
    font-weight: 700;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: transparent;
    font-family: "Poppins", sans-serif;
    
}
.breadcrumb .breadcrumb-item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.breadcrumb .breadcrumb-item a:not(:hover) {
    color: #1b1d21;
}
.breadcrumb .breadcrumb-item.active {
    color: #5ab9b5;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "\f061";
    font-weight: 600;
    font-size: 14px;
    margin: 0 10px;
    font-family: "Font Awesome 5 Free";
}

/*******************************************************/
/***************** 09. Services Section ****************/
/*******************************************************/
@media only screen and (min-width: 1501px) {
    .service-title-content {
        margin-left: 30px;
    }
}

.service-item {
    height: 100%;
    padding: 40px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    border-radius: 10px;
    border-right: 1px solid #e8e8e9;
}
@media only screen and (max-width: 1199px) {
    .service-item {
        border-bottom: 1px solid #e8e8e9;
    }
}
.service-item .icon {
    margin-bottom: 30px;
    width: 80px;
    height: 80px;
    background: white;
    line-height: 80px;
    border-radius: 50%;
    text-align: center;
}
.service-item h4 {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    margin-bottom: 30px;
}
.service-item:hover {
    background: #5ab9b5;
}
.service-item:hover h4,
.service-item:hover a {
    color: white;
}
.service-item:hover .read-more:before {
    background: rgba(255, 255, 255, 0.2);
}

/*******************************************************/
/****************** 10. About Section ******************/
/*******************************************************/
.about-section .half-circle-shape {
    left: 85%;
}

.about-content {
    max-width: 480px;
}
@media only screen and (min-width: 1501px) {
    .about-content {
        margin-left: 50px;
    }
}

.creative-area,
.team-section-bg,
.vision-mission-area {
    overflow: hidden;
}
.creative-area:before,
.team-section-bg:before,
.vision-mission-area:before {
    content: "";
    position: absolute;
    height: 350px;
    width: 450px;
    opacity: 0.1;
    left: 0;
    top: 0;
    z-index: -1;
    background: #005de0;
    -webkit-filter: blur(150px);
    filter: blur(150px);
}
.creative-area:after,
.team-section-bg:after,
.vision-mission-area:after {
    content: "";
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.2;
    position: absolute;
    -webkit-filter: blur(200px);
    filter: blur(200px);
    width: 550px;
    height: 400px;
    background: #5ab9b5;
}
.creative-area .circle-shape,
.team-section-bg .circle-shape,
.vision-mission-area .circle-shape {
    left: 6%;
    top: 15%;
}
.creative-area .half-circle-shape,
.team-section-bg .half-circle-shape,
.vision-mission-area .half-circle-shape {
    left: 85%;
    bottom: 20%;
}
.creative-area .triangle-shape,
.team-section-bg .triangle-shape,
.vision-mission-area .triangle-shape {
    left: 50%;
    bottom: 30%;
}

.vision-mission-tab {
    max-width: 500px;
}
.vision-mission-tab .nav-link {
    margin-right: 5px;
    margin-bottom: 10px;
    padding: 10px 25px;
    color: #5ab9b5;
    font-family: "Poppins", sans-serif;
    
    border: 1px solid #5ab9b5;
}
.vision-mission-tab .nav-link.active {
    color: white;
    background: #5ab9b5;
}

.creative-content .list-style-one {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.creative-content .list-style-one li {
    width: 50%;
}
@media only screen and (max-width: 575px) {
    .creative-content .list-style-one li {
        width: 100%;
    }
}

@media only screen and (min-width: 1501px) {
    .creative-image {
        margin-right: -65px;
    }
}

.about-content-two {
    max-width: 455px;
}
@media only screen and (max-width: 767px) {
    .about-content-two {
        margin-bottom: 65px;
    }
}

/*******************************************************/
/***************** 11. Features Section ****************/
/*******************************************************/
.features-section {
    overflow: hidden;
}
.features-section:before {
    content: "";
    left: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.15;
    position: absolute;
    width: 800px;
    height: 500px;
    -webkit-filter: blur(200px);
    filter: blur(200px);
    background: #5ab9b5;
}
.features-section:after {
    content: "";
    top: 0;
    right: 0;
    z-index: -1;
    opacity: 0.1;
    width: 600px;
    height: 600px;
    position: absolute;
    -webkit-filter: blur(200px);
    filter: blur(200px);
    background: #005de0;
}

.feature-content {
    max-width: 515px;
}

@media only screen and (min-width: 1501px) {
    .features-image {
        margin-right: -200px;
    }
}

/* Success Items */
.success-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media only screen and (max-width: 575px) {
    .success-wrap {
        display: block;
    }
}

.success-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.success-item p {
    margin-bottom: 0;
    
}
.success-item:not(:last-child) {
    margin-right: 30px;
    padding-right: 30px;
    border-right: 1px solid #d1d2d3;
}
@media only screen and (max-width: 575px) {
    .success-item:not(:last-child) {
        margin-right: 0;
        padding-right: 0;
        border-right: none;
        margin-bottom: 30px;
    }
}

.count-text {
    line-height: 1;
    font-size: 50px;
    min-width: 115px;
    margin-right: 20px;
}
@media only screen and (max-width: 480px) {
    .count-text {
        font-size: 40px;
    }
}
.count-text.plus:after {
    content: "+";
}

/*******************************************************/
/**************** 12. Solution Section *****************/
/*******************************************************/
@media only screen and (min-width: 1501px) {
    .solution-image {
        margin-left: -65px;
    }
}

@media only screen and (min-width: 1501px) {
    .solution-content {
        margin-left: 50px;
    }
}

.skillbar {
    position: relative;
}
.skillbar:not(:last-child) {
    margin-bottom: 20px;
}

.skill-bar-percent {
    position: absolute;
    right: 0;
    top: 0;
}

.skillbar-wrap {
    width: 100%;
    height: 14px;
    padding: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #a4a5a6;
}

.skillbar-bar {
    height: 6px;
    background: #5ab9b5;
}

/*******************************************************/
/**************** 13. Portfolio Section ****************/
/*******************************************************/
.portfolio-item {
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    border-radius: 10px;
    z-index: 1;
    position: relative;
}
.portfolio-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    opacity: 0;
    background-color: #1b1d21;
}
.portfolio-item img {
    width: 100%;
}
.portfolio-item:before {
    z-index: 1;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.portfolio-item:hover .portfolio-hover {
    opacity: 1;
}
.portfolio-item:hover .portfolio-hover > i:after {
    -webkit-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-transform: translate(-30%, -50%);
    -ms-transform: translate(-30%, -50%);
    transform: translate(-30%, -50%);
}
.portfolio-item:hover:before {
    opacity: 0.6;
}

.portfolio-hover {
    left: 30px;
    z-index: 2;
    opacity: 0;
    bottom: 15%;
    padding: 30px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    overflow: hidden;
    background: white;
    position: absolute;
    width: calc(100% - 60px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media only screen and (max-width: 1500px) {
    .portfolio-hover {
        left: 15px;
        bottom: 30px;
        width: calc(100% - 30px);
    }
}
.portfolio-hover .content {
    margin-right: 20px;
}
.portfolio-hover .category {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #5ab9b5;
    display: inline-block;
    font-family: "Poppins", sans-serif;
}
.portfolio-hover h4 {
    margin-bottom: 0;
}
.portfolio-hover > i {
    z-index: 1;
    color: white;
    font-size: 22px;
    position: relative;
}
.portfolio-hover > i:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -1;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    width: 100px;
    height: 100px;
    background: #5ab9b5;
    line-height: 100px;
    border-radius: 50%;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.slider-arrow-btns button {
    font-size: 20px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    width: 55px;
    height: 55px;
    background: #f6f6f6;
    line-height: 55px;
    border-radius: 50%;
    text-align: center;
}
.slider-arrow-btns button:first-child {
    margin-right: 5px;
}
.slider-arrow-btns button:focus,
.slider-arrow-btns button:hover {
    color: white;
    background: #5ab9b5;
}

.portfolio-wrap {
    margin-left: -15px;
    margin-right: -15px;
}
.portfolio-wrap .portfolio-item {
    margin-left: 15px;
    margin-right: 15px;
}

/* Portfolio Page */
.portfolio-page:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 35%;
    bottom: 0;
    left: 0;
    z-index: -2;
    background: #f6f6f6;
}

.portfolio-page .half-circle-shape {
    left: 88%;
    bottom: 10%;
}

.portfolio-page .circle-shape {
    left: 5%;
    top: 70%;
}

/* Protfolio Details */
.portfolio-description {
    padding: 20px 40px;
    margin-left: -200px;
}
@media only screen and (max-width: 991px) {
    .portfolio-description {
        margin: -100px 50px 0;
    }
}
@media only screen and (max-width: 575px) {
    .portfolio-description {
        margin: -50px 10px 0;
    }
}
@media only screen and (max-width: 480px) {
    .portfolio-description {
        padding-left: 15px;
        padding-right: 15px;
    }
}
.portfolio-description table {
    width: 100%;
}
.portfolio-description table tr td {
    padding: 30px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.portfolio-description table tr td:first-child {
    padding-left: 0;
}
.portfolio-description table tr td:last-child {
    padding-right: 0;
}
.portfolio-description table tr:last-child td {
    border-bottom: none;
}
.portfolio-description table span {
    color: #d1d2d3;
    font-size: 14px;
}
.portfolio-description table b {
    color: white;
    font-family: "Poppins", sans-serif;
}
.portfolio-description table .social-style-one a {
    width: 34px;
    height: 34px;
    font-size: 14px;
    line-height: 34px;
}
@media only screen and (max-width: 480px) {
    .portfolio-description table .social-style-one a {
        margin: 3px 6px 3px 0;
    }
}

.portfolio-footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.portfolio-footer-nav .next-prev-item {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media only screen and (max-width: 575px) {
    .portfolio-footer-nav .next-prev-item {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }
}
.portfolio-footer-nav .next-prev-item img {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    max-width: 100px;
}
@media only screen and (max-width: 575px) {
    .portfolio-footer-nav .next-prev-item img {
        margin-bottom: 15px;
    }
}
.portfolio-footer-nav .next-prev-item h6 {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    margin: 15px 0 0;
    line-height: 1.4;
    color: #1b1d21;
}
.portfolio-footer-nav .next-prev-item h6:hover {
    color: #5ab9b5;
}
.portfolio-footer-nav .next-prev-item span {
    color: #5ab9b5;
    font-family: "Poppins", sans-serif;
}
.portfolio-footer-nav .next-prev-item.prev {
    margin-right: 5px;
}
@media only screen and (max-width: 575px) {
    .portfolio-footer-nav .next-prev-item.prev {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
    }
}
.portfolio-footer-nav .next-prev-item.prev img {
    margin-right: 30px;
}
.portfolio-footer-nav .next-prev-item.prev span i {
    margin-right: 10px;
}
.portfolio-footer-nav .next-prev-item.next {
    margin-left: 5px;
    text-align: right;
}
@media only screen and (max-width: 575px) {
    .portfolio-footer-nav .next-prev-item.next {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: end;
    }
}
.portfolio-footer-nav .next-prev-item.next img {
    margin-left: 30px;
}
.portfolio-footer-nav .next-prev-item.next span i {
    margin-left: 10px;
}
@media only screen and (max-width: 575px) {
    .portfolio-footer-nav .next-prev-item.next .content {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}

/*******************************************************/
/***************** 14. Pricing Section *****************/
/*******************************************************/
.pricing-section:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    z-index: -1;
    -webkit-filter: blur(200px);
    filter: blur(200px);
    width: 600px;
    height: 600px;
    background: rgba(130, 76, 242, 0.1);
    line-height: 600px;
    border-radius: 50%;
    text-align: center;
}

.pricing-section:after {
    position: absolute;
    content: "";
    z-index: -1;
    right: 100px;
    bottom: 100px;
    -webkit-filter: blur(150px);
    filter: blur(150px);
    width: 400px;
    height: 400px;
    background: rgba(130, 76, 242, 0.1);
    line-height: 400px;
    border-radius: 50%;
    text-align: center;
}

.pricing-section .triangle-shape {
    left: 88%;
    bottom: 20%;
}

.pricing-section .half-circle-shape {
    left: 10%;
    top: 15%;
}

.pricing-item {
    padding: 50px;
    background: white;
    margin-bottom: 30px;
    border-radius: 10px;
}
@media only screen and (max-width: 375px) {
    .pricing-item {
        padding-left: 25px;
        padding-right: 25px;
    }
}
.pricing-item h3 {
    margin-bottom: 5px;
}
.pricing-item .license {
    display: block;
    font-size: 14px;
    margin-bottom: 40px;
}
.pricing-item .price {
    z-index: 1;
    line-height: 1;
    font-size: 70px;
    padding-left: 35px;
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
@media only screen and (max-width: 480px) {
    .pricing-item .price {
        font-size: 50px;
    }
}
.pricing-item .price:before {
    content: "$";
    left: 20px;
    top: -12px;
    font-size: 30px;
    text-indent: -80px;
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(130, 76, 242, 0.2);
    line-height: 60px;
    border-radius: 50%;
    text-align: center;
}
.pricing-item .price:after {
    font-size: 16px;
    -ms-flex-item-align: end;
    -ms-grid-row-align: end;
    align-self: end;
    content: "/ month";
    margin-left: 10px;
    
}
.pricing-item .list-style-one {
    margin-top: 33px;
    padding-top: 30px;
    margin-bottom: 45px;
    border-top: 1px solid #e8e8e9;
}
.pricing-item .list-style-one li {
    font-weight: 400;
}
.pricing-item .list-style-one li:not(:last-child) {
    margin-bottom: 15px;
}

/* Video Section */
.video-wrap {
    overflow: hidden;
    margin-top: -180px;
    z-index: 1;
    position: relative;
    -webkit-transform: translateY(180px);
    -ms-transform: translateY(180px);
    transform: translateY(180px);
}
.video-wrap::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    opacity: 0.7;
    background-color: #010c2a;
}
@media only screen and (max-width: 991px) {
    .video-wrap {
        padding-left: 50px;
        padding-right: 50px;
    }
}
@media only screen and (max-width: 575px) {
    .video-wrap {
        padding-left: 15px;
        padding-right: 15px;
    }
}
.video-wrap .video-play {
    bottom: 0;
    left: 50%;
    z-index: 5;
    position: absolute;
    -webkit-transform: translate(-50%, -20%);
    -ms-transform: translate(-50%, -20%);
    transform: translate(-50%, -20%);
}
.video-wrap .video-play i {
    color: white;
    font-size: 20px;
    border: 2px dashed;
    width: 75px;
    height: 75px;
    background: transparent;
    line-height: 75px;
    border-radius: 50%;
    text-align: center;
    line-height: 71px;
}
.video-wrap .video-play:after {
    content: "";
    z-index: -1;
    left: 50%;
    top: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    position: absolute;
    width: 300%;
    height: 300%;
    background: #5ab9b5;
    line-height: 300%;
    border-radius: 50%;
    text-align: center;
    -webkit-transform: translate(-50%, -30px);
    -ms-transform: translate(-50%, -30px);
    transform: translate(-50%, -30px);
}
.video-wrap .video-play:hover {
    -webkit-transform: translate(-50%, -25%);
    -ms-transform: translate(-50%, -25%);
    transform: translate(-50%, -25%);
}
.video-wrap .video-play:hover:after {
    -webkit-transform: translate(-50%, -35px);
    -ms-transform: translate(-50%, -35px);
    transform: translate(-50%, -35px);
}

/*******************************************************/
/****************** 15. Team Section *******************/
/*******************************************************/
.team-section .circle-shape {
    left: 8%;
}

.team-section .half-circle-shape {
    bottom: 0;
    left: 82%;
}

.team-member {
    margin-bottom: 30px;
}
.team-member img {
    width: 100%;
    border-radius: 5px 5px 0 0;
}
.team-member .member-description {
    padding: 30px;
    position: relative;
    background: #ffffff;
    border-radius: 0 0 5px 5px;
    -webkit-box-shadow: 0px 10px 70px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 70px rgba(0, 0, 0, 0.05);
}
.team-member .social-area {
    right: 30px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    position: absolute;
    bottom: calc(100% - 25px);
}
.team-member .social-area button {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    color: #5ab9b5;
    width: 50px;
    height: 50px;
    background: #f6f6f6;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
}
.team-member .social-area .social-icons {
    height: 0;
    opacity: 0;
    z-index: -1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.team-member .social-area .social-icons a {
    margin-bottom: 10px;
    width: 50px;
    height: 50px;
    background: white;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    color: #5ab9b5;
}
.team-member .social-area .social-icons a:hover {
    color: white;
    background: #5ab9b5;
}
.team-member .social-area:hover button {
    color: white;
    background: #5ab9b5;
}
.team-member .social-area:hover .social-icons {
    opacity: 1;
    z-index: 1;
    height: 100%;
}
.team-member h4 {
    font-size: 17px;
    margin-bottom: 5px;
    
}
.team-member .designation {
    font-size: 14px;
    font-weight: 700;
    color: #5ab9b5;
    
    font-family: "Poppins", sans-serif;
}

.team-wrap {
    margin-left: -15px;
    margin-right: -15px;
}
.team-wrap .slick-list {
    padding-right: 400px;
    margin-right: -400px;
}
.team-wrap .team-member {
    margin-left: 15px;
    margin-right: 15px;
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
}

.team-section-bg {
    position: absolute;
    height: 65%;
    width: 100%;
    left: 0;
    top: -22%;
    z-index: -2;
    background: #f6f6f6;
}
.team-section-bg:after {
    bottom: 25%;
    right: -10%;
}
.team-section-bg .half-circle-shape {
    bottom: 46%;
}

/*******************************************************/
/*************** 16. Testimonial Section ***************/
/*******************************************************/
@media only screen and (max-width: 1199px) and (min-width: 991px) {
    .testimonial-section .section-title h2 {
        font-size: 40px;
    }
}

.testimonial-section .rectangle-shape {
    max-width: 15%;
    bottom: 0;
}

.testimonial-wrap {
    margin-left: -15px;
    margin-right: -15px;
}

.testimonial-item {
    margin: 15px;
    padding: 50px 40px;
    background: white;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
}
@media only screen and (max-width: 480px) {
    .testimonial-item {
        padding-left: 25px;
        padding-right: 25px;
    }
}
.testimonial-item p {
    
}

.testimonial-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 45px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.testimonial-author .image {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    max-width: 100px;
    position: relative;
    margin-right: 30px;
}
@media only screen and (max-width: 375px) {
    .testimonial-author .image {
        margin-right: 15px;
    }
}
.testimonial-author .image:after {
    position: absolute;
    content: "\f10e";
    color: white;
    right: -5px;
    top: -15px;
    z-index: 1;
    font-size: 14px;
    font-weight: 600;
    width: 40px;
    height: 40px;
    background: #5ab9b5;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    font-family: "Font Awesome 5 Free";
}
.testimonial-author .image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
@media only screen and (max-width: 375px) {
    .testimonial-author .image img {
        width: 75px;
        height: 75px;
    }
}
.testimonial-author h5 {
    margin-bottom: 5px;
}
.testimonial-author .designation {
    font-size: 14px;
    font-weight: 700;
    color: #5ab9b5;
    font-family: "Poppins", sans-serif;
}

/*******************************************************/
/****************** 17. FAQs Section *******************/
/*******************************************************/
.faq-section .rectangle-shape {
    left: 20%;
    top: 15%;
}

.faq-accordion .card {
    border: none;
    padding: 15px 30px;
    background: #f6f6f6;
}
@media only screen and (max-width: 375px) {
    .faq-accordion .card {
        padding-left: 15px;
        padding-right: 15px;
    }
}
.faq-accordion .card:not(:last-child) {
    margin-bottom: 15px;
}

.faq-accordion .card-header {
    padding: 0;
    border: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 0;
    color: #1b1d21;
    background: transparent;
    font-family: "Poppins", sans-serif;
    
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media only screen and (max-width: 480px) {
    .faq-accordion .card-header {
        font-size: 16px;
    }
}
.faq-accordion .card-header .toggle-btn {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    margin-left: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.faq-accordion .card-header .toggle-btn:after,
.faq-accordion .card-header .toggle-btn:before {
    content: "";
    width: 20px;
    height: 2px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    position: absolute;
    background: #5ab9b5;
}
.faq-accordion .card-header .toggle-btn:before {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}
.faq-accordion .card-header.collapsed .toggle-btn {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}
.faq-accordion .card-header.collapsed .toggle-btn:before {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.faq-accordion .card-body {
    padding: 15px 0 0;
}
.faq-accordion .card-body p {
    margin-bottom: 10px;
}

/*******************************************************/
/****************** 18. Blog Styles *******************/
/*******************************************************/
@media only screen and (min-width: 1501px) {
    .blog-row {
        margin-left: -25px;
        margin-right: -25px;
    }
    .blog-row > div {
        padding-left: 25px;
        padding-right: 25px;
    }
}

.blog-item {
    margin-bottom: 30px;
}
.blog-item .image {
    width: 100%;
    position: relative;
}
.blog-item .image img {
    width: 100%;
}
.blog-item .image .video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 25px;
    color: #1b1d21;
    width: 100px;
    height: 100px;
    background: white;
    line-height: 100px;
    border-radius: 50%;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
@media only screen and (max-width: 575px) {
    .blog-item .image .video-play {
        width: 75px;
        height: 75px;
        font-size: 20px;
        line-height: 75px;
    }
}
.blog-item .image .video-play:before {
    position: absolute;
    content: "";
    width: 80%;
    height: 80%;
    left: 10%;
    top: 10%;
    opacity: 0.1;
    border-radius: 50%;
    border: 1px solid #1b1d21;
    -webkit-animation: 2s zoomInOut infinite;
    animation: 2s zoomInOut infinite;
}
.blog-item .image .slick-arrow {
    width: 50px;
    height: 50px;
    background: white;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    color: #1b1d21;
    position: absolute;
    top: 50%;
    z-index: 2;
    font-size: 20px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.blog-item .image .slick-arrow:focus,
.blog-item .image .slick-arrow:hover {
    color: white;
    background: #5ab9b5;
}
.blog-item .image .slick-arrow.blog-slider-prev {
    left: 10px;
}
.blog-item .image .slick-arrow.blog-slider-next {
    right: 10px;
}
.blog-item.blog-bg-image {
    background-size: cover;
}
.blog-item.blog-bg-image .blog-content {
    padding-top: 40px;
}
.blog-item.blog-bg-image .blog-meta {
    background: white;
    margin-bottom: 30px;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
}
.blog-item.blog-bg-image .blog-meta li {
    border-color: #e8e8e9;
}
.blog-item.blog-bg-image .blog-meta li i,
.blog-item.blog-bg-image .blog-meta li a {
    color: #1b1d21;
}
.blog-item.blockquote .blog-content {
    z-index: 1;
    border: none;
    padding-top: 30px;
    position: relative;
}
.blog-item.blockquote .blog-content:after {
    position: absolute;
    font-weight: 600;
    content: "\f10e";
    right: 40px;
    top: 50%;
    z-index: -1;
    opacity: 0.1;
    line-height: 1;
    font-size: 90px;
    color: #1b1d21;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
}
.blog-item.blockquote .name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
    margin-top: 35px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.blog-item.blockquote .name:before {
    content: "";
    height: 4px;
    width: 40px;
    margin-right: 25px;
    background: #5ab9b5;
}

.blog-content {
    padding: 0 40px 40px;
    border: 1px solid #e8e8e9;
}
@media only screen and (max-width: 767px) {
    .blog-content {
        padding-left: 25px;
        padding-right: 25px;
    }
}
@media only screen and (max-width: 375px) {
    .blog-content {
        padding-left: 15px;
        padding-right: 15px;
    }
}
.blog-content h3 {
    margin: 10px 0 20px;
}
@media only screen and (max-width: 575px) {
    .blog-content h3 {
        font-size: 25px;
    }
}
@media only screen and (max-width: 375px) {
    .blog-content h3 {
        font-size: 20px;
        line-height: 1.5;
    }
}
.blog-content .btn-share {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.blog-content .btn-share .theme-btn {
    margin-top: 20px;
    margin-right: 15px;
    border-radius: 5px;
}
.blog-content .btn-share .share-icons {
    margin-top: 20px;
}
.blog-content .btn-share .share-icons a {
    margin-left: 20px;
}
.blog-content .btn-share b {
    font-family: "Poppins", sans-serif;
}

.blog-meta {
    color: white;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 9px 30px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    background: #1b1d21;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
}
.blog-meta li {
    line-height: 1;
    margin-top: 8px;
    margin-bottom: 8px;
}
.blog-meta li:not(:last-child) {
    margin-right: 30px;
    padding-right: 30px;
    border-right: 1px solid #494a4d;
}
@media only screen and (max-width: 767px) {
    .blog-meta li:not(:last-child) {
        padding-right: 0;
        margin-right: 25px;
        border-right: none;
    }
}
.blog-meta li i {
    margin-right: 5px;
}
.blog-meta li a {
    color: white;
    font-weight: 500;
}

.blog-standard-wrap .pagination .page-link {
    width: 40px;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
    color: #5ab9b5;
    border: 1px solid #5ab9b5;
}

.blog-standard-wrap .pagination .active .page-link:not(:hover) {
    color: white;
}

.blog-standard-wrap .pagination .dot {
    color: #5ab9b5;
}

/* Blog Details */
.blog-details-content .blog-content > p {
    margin-bottom: 30px;
}

.blog-details-content blockquote {
    z-index: 1;
    padding: 40px;
    font-size: 20px;
    position: relative;
    margin-bottom: 30px;
    border-radius: 10px;
    color: #1b1d21;
    background: #f6f6f6;
    font-family: "Poppins", sans-serif;
}
@media only screen and (max-width: 480px) {
    .blog-details-content blockquote {
        font-size: 18px;
        padding-left: 25px;
        padding-right: 25px;
    }
}
@media only screen and (max-width: 375px) {
    .blog-details-content blockquote {
        font-size: 16px;
        padding-left: 15px;
        padding-right: 15px;
    }
}
.blog-details-content blockquote:after {
    position: absolute;
    font-weight: 600;
    content: "\f10e";
    left: 40px;
    top: 30px;
    z-index: -1;
    opacity: 0.1;
    line-height: 1;
    font-size: 90px;
    color: #1b1d21;
    font-family: "Font Awesome 5 Free";
}
.blog-details-content blockquote .name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
    margin-top: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.blog-details-content blockquote .name:before {
    content: "";
    height: 4px;
    width: 40px;
    margin-right: 25px;
    background: #5ab9b5;
}

.blog-details-content .btn-share b {
    font-size: 18px;
}

.blog-details-content .tag-cloud b {
    margin: 5px 10px 0 0;
}

.comment-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media only screen and (max-width: 575px) {
    .comment-item {
        display: block;
    }
}
.comment-item:not(:last-child) {
    margin-bottom: 40px;
}
.comment-item.child-comment {
    margin-left: 80px;
}
@media only screen and (max-width: 480px) {
    .comment-item.child-comment {
        margin-left: 25px;
    }
}
.comment-item .author-image {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    max-width: 100px;
    margin-right: 30px;
}
@media only screen and (max-width: 575px) {
    .comment-item .author-image {
        margin-bottom: 20px;
    }
}
.comment-item .author-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.comment-item .name-date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.comment-item .name-date h5 {
    font-size: 18px;
    margin-right: 40px;
}
.comment-item .name-date .date {
    font-size: 14px;
    margin-bottom: 12px;
}
.comment-item form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #e8e8e9;
}
.comment-item form input {
    padding: 0;
    font-size: 14px;
    background: white;
}
.comment-item form input::-webkit-input-placeholder {
    font-style: italic;
}
.comment-item form input:-ms-input-placeholder {
    font-style: italic;
}
.comment-item form input::-ms-input-placeholder {
    font-style: italic;
}
.comment-item form input::placeholder {
    font-style: italic;
}
.comment-item form button {
    color: #5ab9b5;
    background: transparent;
}
.comment-item.admin-comment {
    padding: 30px;
    background: #f6f6f6;
}
@media only screen and (max-width: 375px) {
    .comment-item.admin-comment {
        padding-left: 15px;
        padding-right: 15px;
    }
}
.comment-item.admin-comment .author-image {
    max-width: 170px;
}
@media only screen and (max-width: 767px) {
    .comment-item.admin-comment .author-image {
        max-width: 100px;
    }
}
.comment-item.admin-comment .author-image img {
    width: 170px;
    height: 170px;
}
@media only screen and (max-width: 767px) {
    .comment-item.admin-comment .author-image img {
        width: 100px;
        height: 100px;
    }
}
.comment-item.admin-comment h5 {
    font-size: 20px;
    margin-bottom: 15px;
}
.comment-item.admin-comment .comment-details {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

/*******************************************************/
/***************** 19. Sidebar Widgets *****************/
/*******************************************************/
.widget-title {
    margin-bottom: 20px;
}

.widget {
    padding: 40px 30px;
    border: 1px solid #e8e8e9;
}
@media only screen and (max-width: 375px) {
    .widget {
        padding-left: 15px;
        padding-right: 15px;
    }
}
.widget:not(:last-child) {
    margin-bottom: 30px;
}

.search-widget {
    padding-top: 30px;
    padding-bottom: 30px;
}
.search-widget form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.search-widget form input {
    border: none;
    background: #f6f6f6;
    padding: 18px 0 18px 20px;
}
.search-widget form input::-webkit-input-placeholder {
    font-style: italic;
    color: #494a4d;
}
.search-widget form input:-ms-input-placeholder {
    font-style: italic;
    color: #494a4d;
}
.search-widget form input::-ms-input-placeholder {
    font-style: italic;
    color: #494a4d;
}
.search-widget form input::placeholder {
    font-style: italic;
    color: #494a4d;
}
.search-widget form button {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 60px;
    color: white;
    background: #5ab9b5;
}

.category-widget ul li {
    padding-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #e8e8e9;
}
.category-widget ul li:not(:last-child) {
    margin-bottom: 10px;
}
.category-widget ul li a {
    position: relative;
}
.category-widget ul li a:before {
    left: 0;
    top: 1px;
    opacity: 0;
    content: "\f101";
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    font-weight: 600;
    position: absolute;
    color: #5ab9b5;
    font-family: "Font Awesome 5 Free";
}
.category-widget ul li a:hover {
    padding-left: 20px;
}
.category-widget ul li a:hover:before {
    opacity: 1;
}
.category-widget ul li span {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    font-size: 12px;
    font-weight: 600;
    width: 30px;
    height: 30px;
    background: #f6f6f6;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
}

.widgets-posts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.blog-widget img {
    width: 100%;
}

.blog-widget .view-more {
    color: #5ab9b5;
}

@media only screen and (max-width: 991px) and (min-width: 768px) {
    .blog-widget-item {
        width: calc(50% - 10px);
    }
}

.blog-widget-item:not(:last-child) {
    margin-bottom: 20px;
}

.blog-widget-content {
    padding: 0 30px 30px;
    border: 1px solid #e8e8e9;
}
@media only screen and (max-width: 375px) {
    .blog-widget-content {
        padding-left: 15px;
        padding-right: 15px;
    }
}
.blog-widget-content h5 {
    font-size: 18px;
    margin: -5px 0 0;
    line-height: 1.5;
}
@media only screen and (max-width: 375px) {
    .blog-widget-content h5 {
        font-size: 16px;
    }
}
.blog-widget-content .blog-meta {
    font-size: 14px;
    padding: 5px 20px;
    -webkit-transform: translateY(-25px);
    -ms-transform: translateY(-25px);
    transform: translateY(-25px);
}

.tag-cloud {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -10px -10px 0;
}
.tag-cloud a {
    font-size: 14px;
    padding: 5px 16px;
    margin: 0 10px 10px 0;
    border: 1px solid #e8e8e9;
}
.tag-cloud a:hover {
    color: white;
    background: #5ab9b5;
    border-color: #5ab9b5;
}

.gallery-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -10px -10px 0;
}
.gallery-items .gallery-widget-item {
    margin: 0 10px 10px 0;
    z-index: 1;
    position: relative;
    max-width: calc(33.333% - 10px);
}
.gallery-items .gallery-widget-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    opacity: 0;
    background-color: #1b1d21;
}
.gallery-items .gallery-widget-item:before {
    z-index: 1;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.gallery-items .gallery-widget-item img {
    width: 100%;
}
.gallery-items .gallery-widget-item a {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    color: white;
    font-size: 25px;
    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
    -webkit-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
}
.gallery-items .gallery-widget-item:hover a {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}
.gallery-items .gallery-widget-item:hover:before {
    opacity: 0.9;
}

/*******************************************************/
/***************** 20. Contact Section ******************/
/*******************************************************/
.contact-form,
.contact-info-wrap {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 30px 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media only screen and (max-width: 375px) {
    .contact-form,
    .contact-info-wrap {
        padding-left: 25px;
        padding-right: 25px;
    }
}

.contact-info-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.contact-info-item:not(:last-child) {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-info-item i {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    font-size: 25px;
    margin-right: 20px;
    width: 70px;
    height: 70px;
    background: white;
    line-height: 70px;
    border-radius: 50%;
    text-align: center;
    color: #5ab9b5;
}
@media only screen and (max-width: 375px) {
    .contact-info-item i {
        width: 50px;
        height: 50px;
        font-size: 20px;
        line-height: 50px;
    }
}
.contact-info-item h5 {
    margin-bottom: 8px;
}
.contact-info-item p {
    margin-bottom: 0;
}
@media only screen and (max-width: 375px) {
    .contact-info-item .content {
        font-size: 14px;
    }
}

.contact-form {
    background: #ecf2f6;
}
.contact-form .form-control {
    background: white;
}

.contact-page-map {
    margin-bottom: -10px;
}

 
/******************* 21. Main Footer *******************/

.main-footer .half-circle-shape {
    bottom: 60%;
    left: 80%;
}

@media only screen and (max-width: 1199px) and (min-width: 991px) {
    .main-footer .section-title h2 {
        font-size: 45px;
    }
}

.subscribe-wrap {
    padding: 70px 70px 60px;
    -webkit-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    transform: translateY(-100px);
}
@media only screen and (max-width: 575px) {
    .subscribe-wrap {
        padding-left: 20px;
        padding-right: 20px;
    }
    .subscribe-wrap h2 {
        font-size: 28px;
    }
}

.subscribe-form {
    z-index: 1;
    position: relative;
}
.subscribe-form form {
    padding: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: white;
    border-radius: 5px;
    margin-bottom: 25px;
}
@media only screen and (max-width: 480px) {
    .subscribe-form form {
        display: block;
    }
}
.subscribe-form form input {
    border: none;
    color: #494a4d;
    padding: 16px 0 16px 30px;
}
.subscribe-form form input::-webkit-input-placeholder {
    font-size: 16px;
    font-weight: 400;
    color: #494a4d;
}
.subscribe-form form input:-ms-input-placeholder {
    font-size: 16px;
    font-weight: 400;
    color: #494a4d;
}
.subscribe-form form input::-ms-input-placeholder {
    font-size: 16px;
    font-weight: 400;
    color: #494a4d;
}
.subscribe-form form input::placeholder {
    font-size: 16px;
    font-weight: 400;
    color: #494a4d;
}
.subscribe-form form button {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    color: white;
    font-weight: 600;
    padding: 16px 25px;
    border-radius: 5px;
    background: #ff6abb;
    
}
@media only screen and (max-width: 480px) {
    .subscribe-form form button {
        width: 100%;
    }
}
.subscribe-form .hand {
    position: absolute;
    max-width: 55%;
    z-index: -1;
    left: 100%;
    top: 35%;
}

.footer-title {
    margin-bottom: 35px;
}

.footer-widget {
    margin-bottom: 20px;
}

.footer-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    /*align-items: center;*/
}
.footer-contact i {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    font-size: 18px;
    margin-right: 20px;
    width: 40px;
    height: 40px;
    background: white;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    color: #5ab9b5;
}
.footer-contact a {
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    align-content: center;
}

.menu-widget ul li {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    position: relative;
    
}
.menu-widget ul li:before {
    position: absolute;
    content: "";
    height: 4px;
    width: 14px;
    left: 0;
    top: 11px;
    opacity: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    background: #5ab9b5;
}
.menu-widget ul li a {
    color: #d1d2d3;
}
.menu-widget ul li:hover {
    padding-left: 20px;
}
.menu-widget ul li:hover:before {
    opacity: 1;
}
.menu-widget ul li:hover a {
    color: #5ab9b5;
}
.menu-widget ul li:not(:last-child) {
    margin-bottom: 15px;
}

.footer-widget .social-style-one a:not(:hover) i {
    color: #1b1d21;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.copyright-area {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /*margin-top: 45px;*/
    padding-top: 35px;
    padding-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.copyright-area p {
    font-weight: 700;
    margin-right: 25px;
    font-family: "Poppins", sans-serif;
}
.copyright-area p a {
    color: #5ab9b5;
}
.copyright-area .footer-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-weight: 700;
    margin-bottom: 5px;
    
    font-family: "Poppins", sans-serif;
}
.copyright-area .footer-menu li {
    line-height: 1;
    margin-bottom: 10px;
}
.copyright-area .footer-menu li a {
    text-decoration: underline;
}
.copyright-area .footer-menu li:not(:last-child) {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid;
}
@media only screen and (max-width: 1199px) {
    .copyright-area .footer-menu li {
        margin-right: 25px;
    }
}

/*custom css by prince */

.box-restyle {
    padding: 5px;
    border: 1px solid #e85691;
    border-radius: 10px;
    border-bottom: 5px solid #5ab9b5;
}

.box-restyle::hover {
    box-shadow: rgba(87, 95, 245, 0.1) 0px 0px 30px 0px;
}

.logo img {
    height: 100px;
}

.top-heading-style{
    font-size:45px !important;
    font-weight:600;
}


@media only screen and (max-width: 567px) {
    /*.main-header .logo a,*/
    /*img {*/
    /*    max-width: 80px !important;*/
    /*}*/
    
    .vision-mission-tab .nav-link {
    margin-right: 5px;
    margin-bottom: 10px;
    padding: 7px 9px;
    color: #5ab9b5;
    font-family: "Poppins", sans-serif;
    
    border: 1px solid #5ab9b5;
}
.team-member img {
    width: 100%;
    border-radius: 5px 5px 0 0;
    max-width: 100% !important;
}

.team-member h4 {
    font-size: 20px;
    margin-bottom: 5px;
    
    font-weight: 600;
}

.popup-box input, .popup-box select, .popup-box textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 5px;
    font-size: 14px;
}

.popup-box {
    width: 340px!important;
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    position: relative;
    animation: popupShow 0.4s ease;
    height: auto;
    overflow-y:scroll;
}

.popup-title {
    font-size: 25px;
    font-weight: 800;
    color: #5ab9b5;
    margin-bottom: 10px !important;
}

.popup-box input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 5px !important;
    font-size: 14px;
}

.popup-box textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 5px !important;
    font-size: 12px;
}

.cta-banner h2 {
    font-size: 24px !important;
    font-weight: 700;
    color: white;
    margin: 0;
    margin-bottom: 20px !important;
}

.nav-outer {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end !important;
}

.hero-content h1 {
        font-size: 30px!important;
    }

}


























/* WHY CHOOSE TOTAL LIGHT DESIGN------------------------ */

 
/* Timeline Core */
.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;
  background-color:white;   
  transform: translateX(-50%);
  z-index: 1;
}
.timeline-active-dot {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #5ab9b5;
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.7);
  transform: translateX(-50%);
  transition: top 0.4s ease;
  z-index: 2;
}
.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 20px;
}
.timeline-item.left {
  left: 0;
  text-align: left;
}
.timeline-item.right {
  left: 50%;
  text-align: left;
}
.timeline-content {
  background-color: #11151a;
  border: 1px solid #1f252d;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
  border-left: 5px solid #5ab9b5;
} 
.timeline-content:hover {
  border-color: #5ab9b5;
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.4); 
  border-left: 5px solid #ffff;
}
  
.timeline-content h3{
    color:#5ab9b5 !important;
}

/* CTA Button */
.btn-estimate {
    font-family: Alata, sans-serif !important;
    border: 1px solid white;
    border-radius:20px;
    color: #fff;
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
    transition: all 0.3s ease;
    /**/
    padding: 10px 30px;
    text-decoration:none !important;
    font-size:15px;
    font-weight:600;
    background: #5ab9b5;
}
.btn-estimate:hover {
  color: white;
  background: black;
  border-color: #5ab9b5;
  box-shadow: 0 0 25px rgba(0,191,255,0.6);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 767px) {
  .timeline-item {
    width: 100%;
    text-align: left;
    padding-left: 50px;
  }
  .timeline-line,
  .timeline-active-dot {
    left: 20px;
  }
  .timeline-item.right {
  left: 0%;
  text-align: left;
}
}

.heading-style {
    font-size:40px !important;
} 

 
 
 

/* WHY CHOOSE TOTAL LIGHT DESIGN------------------------ */

/*custom css by prince */
