@keyframes example {
    0% {
        bottom: 0px;
    }

    100% {
        bottom: 7px;
    }
}

@keyframes blink {
    0% {
        opacity: 0.1;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.1;
    }
}

/*-------------------------------------
		1.General css (Reset code)
--------------------------------------*/
/* #region General */

* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #a09e9c;
    text-transform: initial;
    max-width: 1920px;
    margin: 0 auto;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    color: #343a3f;
    font-weight: 500;
}

a {
    display: inline-block;
    text-decoration: none;
    color: #343a3f;
    font-size: 16px;
    padding: 0;
    font-weight: 500;
}

p {
    margin: 0;
    color: #767f86;
    font-size: 14px;
    line-height: 1.8;
    text-transform: initial;
}

img {
    border: none;
    max-width: 100%;
    height: auto;
}

ul {
    padding: 0;
    margin: 0 auto;
    list-style: none;
}

ul li {
    list-style: none;
}

select, input, textarea, button {
    box-shadow: none;
    outline: 0 !important;
}

button {
    background: transparent;
    border: 0;
    font-size: 12px;
}

[placeholder]:focus::-webkit-input-placeholder {
    -webkit-transition: opacity 0.3s 0.3s ease;
    -moz-transition: opacity 0.3s 0.3s ease;
    -ms-transition: opacity 0.3s 0.3s ease;
    -o-transition: opacity 0.3s 0.3s ease;
    transition: opacity 0.3s 0.3s ease;
    opacity: 0;
}

/* section-header */

.section-header {
    position: relative;
    text-align: center;
}

.section-header h2, .section-header h1 {
    color: #505866;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
}

.section-header h2 span {
    text-transform: lowercase;
}

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

/* #endregion General */

/*=============Style css=========*/

/* #region 2. Header-top */
.header-top {
    border-bottom: 1px solid #f6f8fa;
}

.header-top ul, .header-top li {
    display: inline-block;
}

.header-top li {
    padding: 10px 18px;
    border-right: 1px solid #f6f8fa;
    border-left: 1px solid #f6f8fa;
    font-size: 12px;
}

.pull-right {
    float: right !important;
}

.pull-right a {
    color: #a7b0ba;
    font-size: 12px;
    font-weight: 300;
}

/* #endregion */

/* #region 3. Navbar */

#navbar {
    background-color: #ffffff;
    padding: 0 !important;
}

.navbar-brand {
    color: #1b1e20;
    font-size: 20px;
    font-weight: 700;
    padding: 18px 0px;
    text-transform: capitalize;
}

.navbar-nav {
    margin: 0 0 0 auto !important;
}

.navbar-nav li {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
}

.navbar-toggler {
    border: none !important;
}

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

/* #endregion */

/* #region 4. Welcome-hero */
.welcome-hero {
    position: relative;
    text-align: center;
    height: 800px;
    z-index: 1;
}

.welcome-hero:before {
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(65, 73, 89, .65);
    z-index: -1;
}

.welcome-hero-txt {
    padding-top: 155px;
}

.welcome-hero-txt h2 {
    font-size: 48px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    line-height: 1.4;
}

.welcome-hero-txt p {
    font-size: 18px;
    color: #fcfcfc;
    margin-top: 25px;
}

.welcome-hero-serch-box {
    margin-top: 78px;
    display: flex;
}

.welcome-hero-form {
    display: flex;
    background: #fff;
    height: 70px;
    border-radius: 3px;
    width: 85%;
}

.single-welcome-hero-form {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 50%;
    padding: 0 30px;
}

.single-welcome-hero-form:first-child {
    border-right: 1px solid #edeff1;
}

.single-welcome-hero-form input {
    margin-left: 10px;
    height: 70px;
    width: 300px;
    border: 0;
    background: transparent;
}

.single-welcome-hero-form input[type="text"] {
    font-size: 14px;
    color: #859098;
    text-transform: capitalize;
    font-weight: 500;
}

.welcome-hero-form-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #252d32;
}

.welcome-hero-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #fff;
    width: 170px;
    height: 70px;
    background: #ff545a;
    text-transform: capitalize;
    margin-left: 30px;
    border-radius: 3px;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -ms-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}

.welcome-hero-btn:hover {
    background: #f43032;
}

/* #endregion*/

/* #region 5. List-topuics */
.list-topics {
    position: relative;
    top: -98px;
    z-index: 1;
    display: flex;
}

.list-topics ul {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
}

.list-topics ul li {
    display: inline-block;
}

.list-topics-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
    width: 205px;
    height: 170px;
    background: #fff;
    border-radius: 3px;
    margin-right: 20px;
    box-shadow: 0 0px 10px rgba(71, 71, 71, .2);
    -webkit-transition: .3s linear;
    -moz-transition: .3s linear;
    -ms-transition: .3s linear;
    -o-transition: .3s linear;
    transition: .3s linear;
}

.list-topics-content i {
    font-size: 50px;
    line-height: 40px;
}

.list-topics-content h2 {
    color: #343a3f;
    font-size: 16px;
    padding: 0;
    text-align: center;
    bottom: 0;
}

.list-topics-content:hover h2 {
    color: #fff !important;
}

.list-topics-content:hover {
    color: #fff;
    background: #ff545a;
    box-shadow: 0 5px 10px rgba(71, 71, 71, .4);
}

/* #endregion 5. List-topuics  */

/* #region 6. Works */
.works {
    padding: 0 0 90px;
}

.works-content {
    margin-top: 73px;
}

.single-how-works {
    height: 100%;
    text-align: center;
    padding: 50px 42px;
    border-radius: 3px;
    box-shadow: 0 0px 5px rgba(71, 71, 71, .2);
    margin-bottom: 30px;
    -webkit-transition: .3s linear;
    -moz-transition: .3s linear;
    -ms-transition: .3s linear;
    -o-transition: .3s linear;
    transition: .3s linear;
}

.single-how-works-icon {
    display: inline-block;
    font-size: 60px;
    color: #50616c;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: #eef2f6;
    border-radius: 50%;
}

.single-how-works-icon i {
    line-height: 80px;
}

.single-how-works h2 {
    color: #343a3f;
    font-size: 18px;
    margin: 35px 0 20px;
}

.single-how-works p {
    margin-bottom: 25px;
    text-transform: initial;
}

.single-how-works .welcome-hero-btn {
    display: inline-block;
    margin: 0;
    width: 100px;
    height: 35px;
    font-size: 12px;
    background: transparent;
    color: #767f86;
    border: 1px solid #d3d6d9;
    border-radius: 3px;
}

.single-how-works:hover h2, .single-how-works:hover p {
    color: #fff;
}

.single-how-works:hover .single-how-works-icon {
    background: #fff;
}

.single-how-works:hover .welcome-hero-btn {
    background: #fff;
    color: #ff545a;
}

.single-how-works:hover {
    box-shadow: 0 0px 10px rgba(71, 71, 71, .4);
    background: #ff545a;
}

/* #endregion 6. Works */

/* #region 7. Explore */
.explore {
    padding: 50px 0;
    background: #f8fafb;
}

.explore-content {
    margin-top: 50px;
}

.single-explore-item {
    background: #fff;
    border: 1px solid #edeff1;
    border-radius: 3px;
    margin-bottom: 25px;
    -webkit-transition: .3s linear;
    -moz-transition: .3s linear;
    -ms-transition: .3s linear;
    -o-transition: .3s linear;
    transition: .3s linear;
}

.single-explore-item a {
    width: 100%;
}

.single-explore-img:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.single-explore-img {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.single-explore-content {
    padding: 10px 25px;
}

.single-explore-content h2 {
    color: #343a3f;
    font-size: 16px;
}

.single-explore-content p {
    font-size: 12px;
    color: #777f85;
    text-transform: capitalize;
    font-weight: 400;
    margin: 15px 0 20px;
}

.explore-rating {
    display: inline-block;
    width: 32px;
    height: 20px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    border-radius: 3px;
    font-weight: 500;
    margin-right: 10px;
}

.explore-rating.bg-theme-1 {
    background: #70a9ff;
}

.explore-rating.bg-theme-2 {
    background: #00c61c;
}

.explore-rating.bg-theme-3 {
    background: #ffcc5d;
}

.explore-rating.bg-theme-4 {
    background: #bd70ff;
}

.explore-rating.bg-theme-5 {
    background: #ff7a40;
}

.explore-price-box {
    display: inline-block;
    padding: 0 10px;
    margin: 0 8px;
    border-left: 1px solid #dde0e4;
    border-right: 1px solid #dde0e4;
}

.explore-text {
    border-bottom: 1px solid #e1e5eb;
}

.explore-open-close-part {
    margin-top: 20px;
}

.close-btn {
    color: #f63138;
    text-transform: capitalize;
}

.close-btn.open-btn {
    color: #00c437;
}

.explore-button a {
    font-size: 14px;
    font-weight: 300;
    color: #c4b107;
    padding: 5px 10px;
    border: 1px solid #c4b107;
    width: auto;
}

.explore-button.phone {
    float: right;
}

.explore-button.phone a {
    color: #00c437;
    border: 1px solid #00c437;
}

.single-explore-item:hover {
    box-shadow: 0 10px 20px rgba(21, 19, 19, .2);
}

/* #endregion 7. Explore */

/* #region 8. Reviews */
.reviews {
    padding: 75px 0;
    overflow: hidden;
}

.reviews-content {
    margin-top: 30px;
}

/*single-testimonial-box */
.single-testimonial-box {
    padding: 50px 30px;
    box-shadow: 0 0px 5px rgba(71, 71, 71, .2);
    overflow-x: hidden;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.single-testimonial-box:hover {
    box-shadow: 0 10px 20px rgba(21, 19, 19, .2);
}

.slick-current .single-testimonial-box {
    box-shadow: 0 10px 20px rgba(21, 19, 19, .2);
}

/*testimonial-description*/
.single-testimonial-box {
    width: 404px;
    background: #fff;
}

/* testimonial-info */
.testimonial-info {
    display: flex;
    align-items: center;
    text-transform: capitalize;
}

.testimonial-img {
    position: relative;
    top: 11px;
    margin-right: 5px;
    border-radius: 50%;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.testimonial-person {
    margin-left: 15px;
    margin-top: 11px;
}

.testimonial-person h2 {
    color: #505866;
    font-size: 18px;
}

.testimonial-person h4 {
    color: #a2a5ab;
    font-size: 14px;
    font-weight: 400;
    margin-top: 10px;
}

.testimonial-person-star i {
    color: #ffda2b;
    margin: 9px 4px 0 0;
}

/* testimonial-info */

/* testimonial-comment */
.testimonial-comment {
    margin-top: 18px;
}

.testimonial-comment p {
    color: #8d939e;
    font-size: 14px;
    font-weight: 300;
}

/* testimonial-comment */

/*.slick-slide*/
.slick-initialized .slick-slide {
    display: block;
    padding: 40px 0;
}

.slick-slide.slick-cloned {
    outline: 0 !important;
}

.slick-slide {
    margin: 0px 10px;
}

.slick-slide {
    transition: all ease-in-out .3s;
    opacity: .5;
}

.slick-active {
    opacity: .5;
}

.slick-current {
    opacity: 1;
}

/*.slick-slide*/
/* #endregion 8. Reviews */

/* #region 9. Blog */
.blog {
    padding: 120px 0 90px;
}

.blog-content {
    margin-top: 80px;
}

.single-blog-item {
    height: 100%;
    margin-bottom: 30px;
    box-shadow: 0 0px 5px rgba(71, 71, 71, .2);
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.single-blog-item-img {
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.single-blog-item-txt {
    padding: 25px 30px;
}

.single-blog-item-txt h2 a {
    text-transform: initial;
    line-height: 1.8;
}

.single-blog-item-txt h4 {
    font-size: 14px;
    color: #8f949d;
    font-weight: 400;
    margin: 12px 0 20px;
}

.single-blog-item-txt h4 span {
    font-size: 14px;
    padding-right: 14px;
    color: #1b1e20;
    border-right: 1px solid #dde0e4;
    margin-right: 15px;
    text-transform: uppercase;
}

.single-blog-item:hover h2 a {
    color: #ff545a;
}

.single-blog-item:hover {
    box-shadow: 0 10px 20px rgba(21, 19, 19, .4);
}

.single-blog-item-txt .explore-button {
    margin-top: 10px;
    float: right;
    margin-bottom: 20px;
}

/* #endregion 9. Blog */

/* #region 10. Subscribe */
.subscription {
    background: #f8fafb;
    padding: 150px 0;
}

.subscribe-title {
    margin-bottom: 52px;
}

.subscribe-title h2 {
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
}

.subscribe-title p {
    color: #7b8088;
    font-size: 16px;
    font-weight: 500;
    margin-top: 28px;
}

/*custom-input-group*/
.subscription-input-group {
    position: relative;
    text-align: center;
    /* max-width: 630px; */
    margin: 0 auto;
}

.subscription-input-group .subscription-input-form {
    display: inline-block;
    width: 250px;
    height: 60px;
    padding-left: 30px;
    font-size: 16px;
    color: #a5adb3;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #fff;
    box-shadow: 0 0px 10px rgba(21, 19, 19, .1);
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}

.subscription-input-group:hover .subscription-input-form {
    box-shadow: 0 5px 20px rgba(21, 19, 19, .4);
}

/*appsLand-btn*/
.appsLand-btn {
    background: #ff545a;
    width: 180px;
    height: 60px;
    line-height: 60px;
    text-decoration: none;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    text-transform: capitalize;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border: 0;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.appsLand-btn:hover, .appsLand-btn:focus, .appsLand-btn:active {
    text-decoration: none;
    outline: none;
}

.appsLand-btn:hover {
    box-shadow: 0 5px 10px rgba(71, 71, 71, .4);
    background: #f43032;
}

/* #endregion 10. Subscribe */

/* #region 11. Footer */
.footer-menu {
    padding: 45px 0;
}

.footer-logo {
    color: #1b1e20;
    font-size: 20px;
    font-weight: 700;
    /* padding: 35px 0px; */
    text-transform: capitalize;
}

.footer-menu .policies ul {
    display: flex;
    flex-direction: row;
    justify-content: end;
}

.footer-menu .policies a {
    text-decoration: underline;
    color: #7b8088;
}

.hm-footer-copyright {
    padding: 40px 0;
    border-top: 1px solid #e1e5eb;
}

.hm-footer-copyright p, .hm-footer-copyright p a {
    color: #a5adb3;
    font-size: 14px;
    font-weight: 400;
}

.footer-social {
    text-align: right;
}

.footer-social .fa-phone:before {
    position: relative;
    top: 2px;
}

.footer-social a, .footer-social a.phone {
    display: inline-block;
    color: #afb4bf;
    font-size: 14px;
    margin-left: 15px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.footer-social a.social-link {
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: #eef2f6;
    text-align: center;
    border-radius: 50%;
}

.footer-social a.phone {
    margin-right: 15px;
    margin-left: 0;
    color: #a5adb3;
}

.footer-social a.phone:hover {
    color: #ff545a;
}

.footer-social a.social-link:hover {
    background: #ff545a;
    color: #fff;
}

/* #endregion 11. Footer */

/* #region Scroll Top */
#scroll-Top .return-to-top {
    position: fixed;
    right: 30px;
    bottom: 80px;
    display: none;
    width: 40px;
    line-height: 40px;
    height: 40px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    background: #ff545a;
    border: 1px solid #ff545a;
    border-radius: 50%;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    z-index: 2;
}

#scroll-Top .return-to-top:hover {
    background: #f43032;
    border: 1px solid #ff545a;
}

#scroll-Top .return-to-top i {
    position: relative;
    bottom: 0;
}

#scroll-Top .return-to-top i {
    position: relative;
    animation-name: example;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-duration: 1s;
}

/* #endregion Scroll Top */

/* #region Hemen Ara */

.call_btn {
    display: none;
    height: 60px;
}

.call_btn a {
    display: block;
    position: fixed;
    text-decoration: none;
    font-size: 18px;
    font-family: "Poppins";
    z-index: 9999;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 60px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    overflow: hidden;
    background: #f63138;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 0 1px 0px rgb(0 0 0 / 18%);
}

.blink {
    margin-left: 10px;
    animation: blink 1s linear infinite;
}

/* #endregion Hemen Ara */

#post-content {
    margin: 1rem auto;
}

#post-content header {
    margin-bottom: 1.5rem !important;
}


/* Contact Us
---------------------*/
.gray-bg {
    background-color: #f5f5f5;
}

.contact-name {
    margin-bottom: 30px;
}

.contact-name h5 {
    font-size: 22px;
    color: #20247b;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-name p {
    font-size: 18px;
    margin: 0;
}

.social-share a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    text-align: center;
    margin-right: 10px;
}

.social-share .dribbble {
    box-shadow: 0 8px 30px -4px rgba(234, 76, 137, 0.5);
    background-color: #ea4c89;
}

.social-share .behance {
    box-shadow: 0 8px 30px -4px rgba(0, 103, 255, 0.5);
    background-color: #0067ff;
}

.social-share .linkedin {
    box-shadow: 0 8px 30px -4px rgba(1, 119, 172, 0.5);
    background-color: #0177ac;
}

.contact-form .form-control {
    border: none;
    border-bottom: 1px solid #20247b;
    background: transparent;
    border-radius: 0;
    padding-left: 0;
    box-shadow: none !important;
}

.contact-form .form-control:focus {
    border-bottom: 1px solid #fc5356;
}

.contact-form .form-control.invalid {
    border-bottom: 1px solid #ff0000;
}

.contact-form .send {
    margin-top: 20px;
}

@media (max-width: 767px) {
    .contact-form .send {
        margin-bottom: 20px;
    }
}

.section-title h2 {
    font-weight: 700;
    color: #20247b;
    font-size: 45px;
    margin: 0 0 15px;
    border-left: 5px solid #fc5356;
    padding-left: 15px;
}

.section-title {
    padding-bottom: 45px;
}

.contact-form .send {
    margin-top: 20px;
}

.px-btn {
    padding: 0 50px 0 20px;
    line-height: 60px;
    position: relative;
    display: inline-block;
    color: #20247b;
    background: none;
    border: none;
}

.px-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 30px;
    background: transparent;
    border: 1px solid rgba(252, 83, 86, 0.6);
    border-right: 1px solid transparent;
    -moz-transition: ease all 0.35s;
    -o-transition: ease all 0.35s;
    -webkit-transition: ease all 0.35s;
    transition: ease all 0.35s;
    width: 60px;
    height: 60px;
}

.px-btn .arrow {
    width: 13px;
    height: 2px;
    background: currentColor;
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 25px;
}

.px-btn .arrow:after {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    content: "";
    position: absolute;
    top: -3px;
    right: 0;
    display: inline-block;
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}