@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap";

body {
    font-family: poppins, sans-serif;
    overflow-x: hidden
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

button,
input,
textarea,
select {
    border: 0;
    background: 0 0;
    -webkit-transition: .4s;
    transition: .4s
}

button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none
}

a {
    display: inline-block;
    -webkit-transition: .4s;
    transition: .4s
}

a:hover {
    text-decoration: none
}

img {
    max-width: 100%
}

span {
    display: inline-block
}

@media only screen and (min-width:1700px) {
    .container {
        width: 1680px;
        max-width: inherit
    }
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 99
}

.preloader .loader {
    width: 100px;
    height: 100px
}

.preloader .loader img {
    width: 100%
}

.scroll-to-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 11;
    visibility: hidden
}

.scroll-to-top .container {
    height: 100%;
    position: relative
}

.scroll-to-top .container button {
    position: absolute;
    bottom: 100%;
    right: 15px;
    width: 55px;
    height: 55px;
    line-height: 50px;
    font-size: 22px;
    color: #fff;
    background: #d7deff;
    border: 2px solid #fff;
    border-radius: 50%;
    visibility: visible
}

.scroll-to-top .container button.active {
    bottom: 20px
}

.scroll-to-top .container button:hover {
    color: #d7deff;
    background: #fff;
    border-color: #d7deff
}

.def-btn {
    height: 65px;
    line-height: 65px;
    background: #ff792d;
    border-radius: 7px;
    padding: 0 40px;
    font-size: 20px;
    color: #fff
}

.def-btn.def-btn-2 {
    background: #5446db
}

.def-btn.def-btn-2:hover,
.def-btn.def-btn-2:focus {
    background: #ff792d
}

.def-btn.def-btn-3 {
    background: 0 0;
    position: relative;
    z-index: 2
}

.def-btn.def-btn-3:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, right top, left top, from(#ff4d49), to(#EBC95F));
    background: linear-gradient(-90deg, #ff4d49, #EBC95F);
    border-radius: 7px;
    z-index: -1
}

.def-btn.def-btn-3:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(#ff4d49), to(#EBC95F));
    background: linear-gradient(90deg, #ff4d49, #EBC95F);
    border-radius: 7px;
    opacity: 0;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    z-index: -1
}

.def-btn.def-btn-3:hover:after {
    opacity: 1
}

.def-btn:hover,
.def-btn:focus {
    background: #5446db;
    color: #fff
}

.heading {
    text-align: center;
    margin-bottom: 70px
}

.heading h2 {
    font-size: 55px;
    line-height: 75px;
    font-weight: 700;
    color: #4b4b46;
    margin-top: -13px;
    margin-bottom: 15px
}

.heading p {
    font-size: 15px;
    line-height: 25px;
    color: #4b4b46;
    margin-bottom: -7px
}

.clear {
    overflow: hidden
}

.fb {
    background: #1976d2;
    color: #fff
}

.tw {
    background: #03a9f4;
    color: #fff
}

.ggl {
    background: #dd4b39;
    color: #fff
}

.ld {
    background: #007ab9;
    color: #fff
}

.yt {
    background: #f44336;
    color: #fff
}

.pin {
    background: #d01d1d;
    color: #fff
}

.sp {
    background: #0693d3;
    color: #fff
}

.p-120 {
    padding: 120px 0
}

.p-60 {
    padding: 60px 0
}

.pt-120 {
    padding-top: 120px
}

.pt-60 {
    padding-top: 60px
}

.pb-120 {
    padding-bottom: 120px
}

.pb-60 {
    padding-bottom: 60px
}

.pb-90 {
    padding-bottom: 90px
}

.pb-30 {
    padding-bottom: 30px
}

.pt-360 {
    padding-top: 360px
}

@-webkit-keyframes shakeY {
    0% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    100% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }
}

@keyframes shakeY {
    0% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    100% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes spin-2 {
    0% {
        -webkit-transform: rotateX(55deg) rotate(0);
        transform: rotateX(55deg) rotate(0)
    }

    100% {
        -webkit-transform: rotateX(55deg) rotate(360deg);
        transform: rotateX(55deg) rotate(360deg)
    }
}

@keyframes spin-2 {
    0% {
        -webkit-transform: rotateX(55deg) rotate(0);
        transform: rotateX(55deg) rotate(0)
    }

    100% {
        -webkit-transform: rotateX(55deg) rotate(360deg);
        transform: rotateX(55deg) rotate(360deg)
    }
}

@-webkit-keyframes skewSpin {
    0% {
        -webkit-transform: skewX(-10deg) skewY(-18deg) rotate(0);
        transform: skewX(-10deg) skewY(-18deg) rotate(0)
    }

    100% {
        -webkit-transform: skewX(-10deg) skewY(-18deg) rotate(360deg);
        transform: skewX(-10deg) skewY(-18deg) rotate(360deg)
    }
}

@keyframes skewSpin {
    0% {
        -webkit-transform: skewX(-10deg) skewY(-18deg) rotate(0);
        transform: skewX(-10deg) skewY(-18deg) rotate(0)
    }

    100% {
        -webkit-transform: skewX(-10deg) skewY(-18deg) rotate(360deg);
        transform: skewX(-10deg) skewY(-18deg) rotate(360deg)
    }
}

@-webkit-keyframes skewSpin2 {
    0% {
        -webkit-transform: skewX(-10deg) skewY(-15deg) rotateY(-40deg) rotate(0);
        transform: skewX(-10deg) skewY(-15deg) rotateY(-40deg) rotate(0)
    }

    100% {
        -webkit-transform: skewX(-10deg) skewY(-15deg) rotateY(-40deg) rotate(360deg);
        transform: skewX(-10deg) skewY(-15deg) rotateY(-40deg) rotate(360deg)
    }
}

@keyframes skewSpin2 {
    0% {
        -webkit-transform: skewX(-10deg) skewY(-15deg) rotateY(-40deg) rotate(0);
        transform: skewX(-10deg) skewY(-15deg) rotateY(-40deg) rotate(0)
    }

    100% {
        -webkit-transform: skewX(-10deg) skewY(-15deg) rotateY(-40deg) rotate(360deg);
        transform: skewX(-10deg) skewY(-15deg) rotateY(-40deg) rotate(360deg)
    }
}

@-webkit-keyframes left {
    0% {
        -webkit-transform: translateX(40px);
        transform: translateX(40px)
    }

    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px)
    }
}

@keyframes left {
    0% {
        -webkit-transform: translateX(40px);
        transform: translateX(40px)
    }

    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px)
    }
}

@-webkit-keyframes shadow {
    0% {
        -webkit-box-shadow: 0 0 0 0 #ff792d;
        box-shadow: 0 0 0 0 #ff792d
    }

    100% {
        -webkit-box-shadow: 0 0 0 30px transparent;
        box-shadow: 0 0 0 30px transparent
    }
}

@keyframes shadow {
    0% {
        -webkit-box-shadow: 0 0 0 0 #ff792d;
        box-shadow: 0 0 0 0 #ff792d
    }

    100% {
        -webkit-box-shadow: 0 0 0 30px transparent;
        box-shadow: 0 0 0 30px transparent
    }
}

i[class^=flaticon-]:before,
i[class*=" flaticon-"]:before {
    display: inherit;
    line-height: 1px
}

.header {
    background: #d7deff
}

.header.header-2 {
    background: #ffe2e2;
    position: relative;
    z-index: 11
}

.header.header-2 .bottom-header {
    background: #fff;
    -webkit-box-shadow: 0 0 20px 0 rgba(51, 51, 51, .07);
    box-shadow: 0 0 20px 0 rgba(51, 51, 51, .07)
}

.header.header-2 .bottom-header.fixed-header {
    background: #fff
}

.header.header-2 .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
    background: #fff;
    -webkit-box-shadow: 0 5px 20px 5px rgba(51, 51, 51, .05);
    box-shadow: 0 5px 20px 5px rgba(51, 51, 51, .05)
}

.header.header-2 .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
    background: #ff4d49
}

.header.header-2 .bottom-header .navbar .navbar-nav .nav-item .nav-link:after {
    background: #ff4d49
}

.header.header-2 .bottom-header .navbar .navbar-nav .nav-item .nav-link:hover,
.header.header-2 .bottom-header .navbar .navbar-nav .nav-item .nav-link:focus {
    color: #ff4d49
}

.header.header-2 .bottom-header .bottom-right .nav-form {
    background: #ffe2e2;
    border-color: rgba(51, 51, 51, .1)
}

.header .top-header .top-left ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.header .top-header .top-left ul li {
    font-size: 13px;
    line-height: 100%;
    font-weight: 500;
    color: #333;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header .top-header .top-left ul li:first-child {
    padding-right: 55px
}

.header .top-header .top-left ul li i {
    color: #5446db;
    margin-right: 10px
}

.header .top-header .top-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 15px 0;
    margin-right: -5px
}

.header .top-header .top-right a {
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 34px;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    margin: 0 5px
}

.header .top-header .top-right a:hover,
.header .top-header .top-right a:focus {
    background: #fff;
    color: #5446db
}

.header .middle-header {
    background: #fff
}

.header .middle-header .logo {
    width: 190px
}

.header .middle-header .mid-right {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 50px 0
}

.header .middle-header .mid-right .info {
    height: 100%;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none
}

.header .middle-header .mid-right .info li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 120px
}

.header .middle-header .mid-right .info li .icon {
    text-align: center;
    width: 50px;
    height: 50px;
    line-height: 54px;
    background: #5446db;
    border-radius: 5px;
    color: #d7deff;
    font-size: 20px;
    margin-right: 20px
}

.header .middle-header .mid-right .info li p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0
}

.header .middle-header .mid-right .info li p span {
    display: block;
    font-size: 18px;
    font-weight: 600
}

.header .middle-header .mid-right .language {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 0;
    width: 126px
}

.header .middle-header .mid-right .language .select-lang {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.header .middle-header .mid-right .language .select-lang .flagstrap-icon {
    margin-top: -2px
}

.header .middle-header .mid-right .language .select-lang .flagstrap-icon.flagstrap-us {
    width: 56px;
    height: 35px;
    border: 3px solid #fff;
    -webkit-box-shadow: 0 0 5px 0 rgba(51, 51, 51, .3);
    box-shadow: 0 0 5px 0 rgba(51, 51, 51, .3);
    border-radius: 5px;
    background: url(../images/us.jpg) center center no-repeat;
    background-size: contain
}

.header .middle-header .mid-right .language .select-lang .flagstrap-icon.flagstrap-bd {
    width: 56px;
    height: 35px;
    border: 3px solid #fff;
    -webkit-box-shadow: 0 0 5px 0 rgba(51, 51, 51, .3);
    box-shadow: 0 0 5px 0 rgba(51, 51, 51, .3);
    border-radius: 5px;
    background: url(../images/bd.jpg) center center no-repeat;
    background-size: contain
}

.header .middle-header .mid-right .language .select-lang .flagstrap-icon.flagstrap-sp {
    width: 56px;
    height: 35px;
    border: 3px solid #fff;
    -webkit-box-shadow: 0 0 5px 0 rgba(51, 51, 51, .3);
    box-shadow: 0 0 5px 0 rgba(51, 51, 51, .3);
    border-radius: 5px;
    background: url(../images/sp.jpg) center center no-repeat;
    background-size: contain
}

.header .middle-header .mid-right .language .select-lang .dropdown-toggle {
    background: 0 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #333
}

.header .middle-header .mid-right .language .select-lang .dropdown-toggle:after {
    border: 0;
    content: "";
    font-family: flaticon;
    margin-left: 0;
    font-size: 12px;
    color: #333
}

.header .middle-header .mid-right .language .select-lang .dropdown-toggle span:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header .middle-header .mid-right .language .select-lang ul {
    width: 150px;
    padding: 5px;
    -webkit-transform: translate3d(0px, 0px, 0px) !important;
    transform: translate3d(0px, 0px, 0px) !important;
    top: 100% !important
}

.header .middle-header .mid-right .language .select-lang ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.header .middle-header .mid-right .language .select-lang ul li:last-child a {
    margin-bottom: 0
}

.header .middle-header .mid-right .language .select-lang ul li:first-child {
    display: none
}

.header .middle-header .mid-right .language .select-lang ul li a {
    line-height: 30px;
    padding: 5px 10px;
    width: 100%;
    border: 1px solid rgba(51, 51, 51, .1);
    border-radius: 3px;
    margin-bottom: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    cursor: pointer
}

.header .middle-header .mid-right .language .select-lang ul li a .flagstrap-icon {
    margin-top: 0;
    width: 35px !important;
    height: 22px !important;
    border-width: 2px !important
}

.header .middle-header .mid-right .language .select-lang ul li a:hover {
    background: #d7deff
}

.header .bottom-header.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #d7deff;
    border-bottom: 1px solid rgba(51, 51, 51, .15);
    z-index: 11
}

.header .bottom-header .navbar {
    padding: 0
}

.header .bottom-header .navbar .navbar-nav .nav-item {
    padding: 0 15px
}

.header .bottom-header .navbar .navbar-nav .nav-item:first-child {
    padding-left: 0
}

.header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
    display: block;
    margin-top: -10px;
    border: 0;
    border-radius: 0;
    padding: 0;
    width: 220px;
    -webkit-box-shadow: 0 10px 30px 0 rgba(51, 51, 51, .15);
    box-shadow: 0 10px 30px 0 rgba(51, 51, 51, .15);
    opacity: 0;
    background: #f6f6f6;
    visibility: hidden;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in
}

.header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
    font-size: 16px;
    line-height: 100%;
    color: #4b4b46;
    padding: 0 20px;
    border-bottom: 1px solid rgba(51, 51, 51, .1);
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in
}

.header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:last-child {
    border-bottom: 0
}

.header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
    background: #5446db;
    color: #fff
}

.header .bottom-header .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu,
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown:focus .dropdown-menu,
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown:active .dropdown-menu,
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown:visited .dropdown-menu {
    opacity: 1;
    visibility: visible
}

.header .bottom-header .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu .dropdown-item,
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown:focus .dropdown-menu .dropdown-item,
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown:active .dropdown-menu .dropdown-item,
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown:visited .dropdown-menu .dropdown-item {
    padding: 18px 20px 17px
}

.header .bottom-header .navbar .navbar-nav .nav-item .nav-link {
    font-size: 18px;
    line-height: 100%;
    font-weight: 500;
    color: #333;
    padding: 40px 0;
    position: relative
}

.header .bottom-header .navbar .navbar-nav .nav-item .nav-link:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #5446db;
    opacity: 0;
    -webkit-transition: .4s;
    transition: .4s
}

.header .bottom-header .navbar .navbar-nav .nav-item .nav-link:hover,
.header .bottom-header .navbar .navbar-nav .nav-item .nav-link:focus {
    color: #5446db
}

.header .bottom-header .navbar .navbar-nav .nav-item .nav-link:hover:after,
.header .bottom-header .navbar .navbar-nav .nav-item .nav-link:focus:after {
    bottom: 20px;
    height: 3px;
    opacity: 1
}

.header .bottom-header .bottom-right .nav-form {
    background: #fff;
    border: 1px solid rgba(51, 51, 51, .3);
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 15px;
    overflow: hidden
}

.header .bottom-header .bottom-right .nav-form input {
    width: 100%;
    height: 60px;
    padding: 0 10px 0 0;
    color: #333
}

.header .bottom-header .bottom-right .nav-form button {
    padding: 0;
    height: 60px;
    line-height: 66px;
    font-size: 25px;
    color: rgba(75, 75, 70, .5)
}

.header .bottom-header .bottom-right .nav-form button:hover,
.header .bottom-header .bottom-right .nav-form button:focus {
    color: #5446db
}

.banner {
    background: url(../images/banner-bg.jpg) center center no-repeat;
    background-size: cover;
    padding-bottom: 80px
}

.banner.banner-2 {
    background-image: url(../images/banner-bg-2.jpg);
    padding-bottom: 0
}

.banner.banner-2 .banner-txt h4 {
    letter-spacing: 7px;
    color: #ff4d49
}

.banner.banner-2 .banner-txt h1 span {
    color: #ff4d49
}

.banner.banner-2 .banner-txt .btn-box a {
    background: -webkit-gradient(linear, right top, left top, from(#ff4d49), to(#EBC95F));
    background: linear-gradient(-90deg, #ff4d49, #EBC95F);
    border: 0;
    position: relative;
    z-index: 2
}

.banner.banner-2 .banner-txt .btn-box a:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(#ff4d49), to(#EBC95F));
    background: linear-gradient(90deg, #ff4d49, #EBC95F);
    border-radius: 7px;
    opacity: 0;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    z-index: -1
}

.banner.banner-2 .banner-txt .btn-box a.right-btn-2 {
    background: -webkit-gradient(linear, right top, left top, from(#ff4d49), to(#EBC95F));
    background: linear-gradient(-90deg, #ff4d49, #EBC95F);
    margin-left: 20px;
    color: #333
}

.banner.banner-2 .banner-txt .btn-box a.right-btn-2:after {
    top: 1px;
    left: 1px;
    bottom: 1px;
    right: 1px;
    width: auto;
    height: auto;
    background: #fff;
    border-radius: 6px;
    opacity: 1
}

.banner.banner-2 .banner-txt .btn-box a.right-btn-2:hover:after,
.banner.banner-2 .banner-txt .btn-box a.right-btn-2:focus:after {
    opacity: 0
}

.banner.banner-2 .banner-txt .btn-box a:hover,
.banner.banner-2 .banner-txt .btn-box a:focus {
    background: -webkit-gradient(linear, right top, left top, from(#ff4d49), to(#EBC95F));
    background: linear-gradient(-90deg, #ff4d49, #EBC95F);
    color: #fff
}

.banner.banner-2 .banner-txt .btn-box a:hover:after,
.banner.banner-2 .banner-txt .btn-box a:focus:after {
    opacity: 1
}

.banner.banner-2 .part-img {
    z-index: 2
}

.banner.banner-2 .part-img .vector-3 {
    position: absolute;
    top: 150px;
    left: 100px;
    width: 110px;
    -webkit-animation: skewSpin 2s linear infinite;
    animation: skewSpin 2s linear infinite;
    z-index: -1
}

.banner .banner-txt {
    padding: 180px 0
}

.banner .banner-txt h4 {
    font-size: 18px;
    line-height: 100%;
    font-weight: 700;
    text-transform: uppercase;
    color: #ff792d;
    margin-top: -2px;
    margin-bottom: 18px
}

.banner .banner-txt h1 {
    font-size: 65px;
    line-height: 80px;
    font-weight: 700;
    color: #333;
    margin-bottom: 26px
}

.banner .banner-txt h1 span {
    color: #ff792d
}

.banner .banner-txt p {
    font-size: 18px;
    line-height: 28px;
    color: #333;
    margin-bottom: 15px
}

.banner .banner-txt .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 27px
}

.banner .banner-txt .btn-box a {
    height: 65px;
    line-height: 63px;
    padding: 0 40px;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    background: #ff792d;
    border: 1px solid #ff792d;
    border-radius: 7px
}

.banner .banner-txt .btn-box a.right-btn {
    margin-left: 20px;
    background: #fff;
    color: #333
}

.banner .banner-txt .btn-box a.right-btn:hover,
.banner .banner-txt .btn-box a.right-btn:focus {
    background: #ff792d;
    color: #fff
}

.banner .banner-txt .btn-box a:hover,
.banner .banner-txt .btn-box a:focus {
    background: #fff;
    color: #333
}

.banner .part-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-animation: shakeY 5s ease-in-out infinite;
    animation: shakeY 5s ease-in-out infinite;
    position: relative
}

.banner .part-img .vector-1 {
    position: absolute;
    top: 0;
    left: 50px;
    -webkit-box-shadow: 0 0 20px 0 rgba(51, 51, 51, .1);
    box-shadow: 0 0 20px 0 rgba(51, 51, 51, .1);
    -webkit-animation: pulse 3s ease-in-out infinite;
    animation: pulse 3s ease-in-out infinite
}

.banner .part-img .vector-2 {
    position: absolute;
    top: -20px;
    right: 0;
    -webkit-box-shadow: 0 0 20px 0 rgba(51, 51, 51, .1);
    box-shadow: 0 0 20px 0 rgba(51, 51, 51, .1);
    -webkit-animation: pulse 3s ease-in-out infinite;
    animation: pulse 3s ease-in-out infinite
}

.feature.feature-inner .bg {
    margin-top: 0
}

.feature .bg {
    margin-top: -80px;
    background: #ff792d;
    background: #fff;
    -webkit-box-shadow: 0 0 30px 0 rgba(84, 70, 219, .2);
    box-shadow: 0 0 30px 0 rgba(84, 70, 219, .2);
    border-radius: 10px;
    overflow: hidden
}

.feature .bg .single-box {
    padding: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    -webkit-transition: .4s;
    transition: .4s
}

.feature .bg .single-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border: 30px solid transparent;
    border-top-color: #ff792d;
    border-left-color: #ff792d;
    opacity: 0;
    -webkit-transition: .4s;
    transition: .4s
}

.feature .bg .single-box:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    border: 30px solid transparent;
    border-bottom-color: #ff792d;
    border-right-color: #ff792d;
    opacity: 0;
    -webkit-transition: .4s;
    transition: .4s
}

.feature .bg .single-box .part-icon {
    text-align: center;
    width: 85px;
    height: 85px;
    background: #ff792d;
    border-radius: 5px;
    margin-bottom: 40px;
    -webkit-transition: .4s;
    transition: .4s
}

.feature .bg .single-box .part-icon span {
    display: block;
    font-size: 40px;
    line-height: 94px;
    color: #fff;
    -webkit-transition: .4s;
    transition: .4s;
    margin-top: -2px;
    margin-bottom: -8px
}

.feature .bg .single-box .part-txt {
    text-align: center
}

.feature .bg .single-box .part-txt h3 {
    font-size: 26px;
    line-height: 100%;
    font-weight: 600;
    color: #4b4b46;
    margin-top: -2px;
    margin-bottom: 30px;
    -webkit-transition: .4s;
    transition: .4s
}

.feature .bg .single-box .part-txt p {
    font-size: 16px;
    line-height: 26px;
    color: #4b4b46;
    margin-bottom: -8px;
    -webkit-transition: .4s;
    transition: .4s
}

.feature .bg .single-box:hover {
    background: #f7f7fe
}

.feature .bg .single-box:hover:before,
.feature .bg .single-box:hover:after {
    opacity: .8
}

.feature .bg .single-box:hover .part-icon {
    background: #fff;
    -webkit-box-shadow: 0 0 20px 0 rgba(51, 51, 51, .1);
    box-shadow: 0 0 20px 0 rgba(51, 51, 51, .1)
}

.feature .bg .single-box:hover .part-icon span {
    color: #ff792d
}

.about.about-2 .part-img {
    position: relative;
    -webkit-animation: shakeY 5s linear infinite;
    animation: shakeY 5s linear infinite
}

.about.about-2 .part-img .vector-1 {
    position: absolute;
    top: 52%;
    left: 47.5%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100px;
    -webkit-animation: skewSpin2 5s linear infinite;
    animation: skewSpin2 5s linear infinite;
    opacity: .3
}

.about.about-2 .part-img .vector-2 {
    position: absolute;
    bottom: 11%;
    left: 31%;
    width: 75px;
    height: 75px;
    -webkit-transform: rotateX(55deg);
    transform: rotateX(55deg);
    -webkit-animation: spin-2 10s linear infinite;
    animation: spin-2 10s linear infinite;
    z-index: -1
}

.about.about-2 .part-img .vector-3 {
    position: absolute;
    bottom: 1.5%;
    left: 16%;
    width: 125px;
    height: 125px;
    -webkit-transform: rotateX(55deg);
    transform: rotateX(55deg);
    animation: spin-2 reverse 10s linear infinite
}

.about.about-2 .part-txt .progress-area {
    padding: 20px 0
}

.about.about-2 .part-txt .progress-area .group {
    margin-bottom: 30px
}

.about.about-2 .part-txt .progress-area .group .txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.about.about-2 .part-txt .progress-area .group .txt span {
    font-size: 15px;
    line-height: 100%;
    color: #333;
    margin-bottom: 13px
}

.about.about-2 .part-txt .progress-area .group .progress {
    background: #ffe2e2;
    height: 10px;
    border-radius: 3px;
    overflow: visible
}

.about.about-2 .part-txt .progress-area .group .progress .progress-bar {
    background: -webkit-gradient(linear, right top, left top, from(#ff4d49), to(#EBC95F));
    background: linear-gradient(-90deg, #ff4d49, #EBC95F);
    border-radius: 3px;
    position: relative;
    overflow: visible
}

.about.about-2 .part-txt .progress-area .group .progress .progress-bar:after {
    content: "";
    position: absolute;
    top: -15px;
    right: 0;
    -webkit-transform: translateX(30%) rotate(45deg);
    transform: translateX(30%) rotate(45deg);
    width: 12px;
    height: 12px;
    border-radius: 50% 50% 0 50%;
    background: -webkit-gradient(linear, right top, left top, from(#ff4d49), to(#EBC95F));
    background: linear-gradient(-90deg, #ff4d49, #EBC95F)
}

.about .part-img {
    position: relative
}

.about .part-img .counter {
    position: absolute;
    top: 50%;
    right: 25%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 255px;
    height: 255px;
    background: #ff792d;
    -webkit-box-shadow: 0 0 35px -5px rgba(84, 70, 219, .7);
    box-shadow: 0 0 35px -5px rgba(84, 70, 219, .7);
    border: 10px solid #d7deff;
    border-radius: 50%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.about .part-img .counter:after {
    content: "";
    position: absolute;
    top: -6px;
    left: -6px;
    bottom: -6px;
    right: -6px;
    border: 3px dashed #ff792d;
    border-radius: 50%;
    -webkit-animation: spin 10s linear infinite;
    animation: spin 10s linear infinite
}

.about .part-img .counter h2 {
    font-size: 50px;
    line-height: 100%;
    font-weight: 500;
    color: #fff;
    margin-top: -10px;
    margin-bottom: 10px
}

.about .part-img .counter p {
    font-size: 18px;
    line-height: 100%;
    font-weight: 600;
    color: #fff;
    margin-bottom: -3px
}

.about .part-txt h2 {
    font-size: 55px;
    line-height: 75px;
    font-weight: 700;
    color: #4b4b46;
    margin-top: -16px;
    margin-bottom: 26px
}

.about .part-txt h2 span {
    color: #ff792d
}

.about .part-txt p {
    font-size: 16px;
    line-height: 26px;
    color: #4b4b46;
    margin-bottom: 20px
}

.about .part-txt .boxes {
    padding-top: 2px;
    margin-bottom: 50px
}

.about .part-txt .boxes ul {
    padding: 0;
    margin-bottom: -10px;
    list-style: none;
    width: 50%
}

.about .part-txt .boxes ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-style: italic;
    font-size: 14px;
    line-height: 32px;
    font-weight: 500;
    color: #4b4b46
}

.about .part-txt .boxes ul li span {
    font-size: 12px;
    color: #5446db;
    margin-right: 10px
}

.about .part-txt .boxes ul li span i {
    display: inherit
}

.cta {
    background: url(../images/cta-bg.png) center center no-repeat;
    background-size: cover
}

.cta .part-txt {
    position: relative;
    z-index: 2
}

.cta .part-txt h2 {
    font-size: 55px;
    line-height: 75px;
    font-weight: 700;
    color: #4b4b46;
    margin-top: -13px;
    margin-bottom: 36px
}

.cta .part-txt p {
    font-size: 16px;
    line-height: 26px;
    color: #4b4b46;
    margin-bottom: 52px
}

.cta .part-txt .part-form {
    padding: 50px 40px;
    background: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 30px 0 rgba(51, 51, 51, .1);
    box-shadow: 0 0 30px 0 rgba(51, 51, 51, .1)
}

.cta .part-txt .part-form input {
    width: 100%;
    height: 60px;
    padding: 0 20px;
    border: 1px solid #5446db;
    border-radius: 7px;
    background: rgba(215, 222, 255, .3);
    margin-bottom: 40px;
    -webkit-transition: .4s;
    transition: .4s
}

.cta .part-txt .part-form input:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(84, 70, 219, .3);
    box-shadow: 0 0 0 3px rgba(84, 70, 219, .3)
}

.cta .part-txt .part-form .def-btn {
    width: 100%
}

.cta .part-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 1
}

.cta .part-img:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    border-width: 225px 350px;

    z-index: -1
}

.cta .part-img img {
    -webkit-animation: pulse 3s ease-in-out infinite;
    animation: pulse 3s ease-in-out infinite
}

.cta-2 .bg {
    background: url(../images/cta-bg-2.png) center center no-repeat;
    background-size: cover;
    border-radius: 10px
}

.cta-2 .bg .title {
    text-align: center;
    color: #fff;
    margin-bottom: 70px
}

.cta-2 .bg .title p {
    font-size: 25px;
    line-height: 100%;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: -3px;
    margin-bottom: 22px
}

.cta-2 .bg .title h2 {
    font-size: 55px;
    line-height: 65px;
    font-weight: 700;
    margin-bottom: -13px
}

.cta-2 .bg .form {
    background: #fff;
    border-radius: 7px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.cta-2 .bg .form input {
    width: 100%;
    height: 35px;
    margin: 25px 0;
    padding: 0 25px;
    font-size: 20px
}

.cta-2 .bg .form input::-webkit-input-placeholder {
    text-transform: uppercase
}

.cta-2 .bg .form input::-moz-placeholder {
    text-transform: uppercase
}

.cta-2 .bg .form input:-ms-input-placeholder {
    text-transform: uppercase
}

.cta-2 .bg .form input::-ms-input-placeholder {
    text-transform: uppercase
}

.cta-2 .bg .form input::placeholder {
    text-transform: uppercase
}

.cta-2 .bg .form input:first-child {
    border-right: 2px solid #ff4d49
}

.cta-2 .bg .form button {
    padding: 0;
    height: 85px;
    line-height: 85px;
    width: 60%;
    background: #ebc95f;
    color: #fff;
    font-size: 20px
}

.cta-2 .bg .form button:hover,
.cta-2 .bg .form button:focus {
    background: #ffe2e2;
    color: #4b4b46
}

.service .single-box {
    background: #d7deff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 50px 40px;
    border-radius: 5px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    -webkit-transition: .4s;
    transition: .4s;
    z-index: 2
}

.service .single-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border: 45px solid transparent;
    border-top-color: rgba(255, 255, 255, .5);
    border-left-color: rgba(255, 255, 255, .5);
    -webkit-transition: .4s;
    transition: .4s;
    z-index: -1
}

.service .single-box:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    border: 45px solid transparent;
    border-bottom-color: rgba(255, 255, 255, .5);
    border-right-color: rgba(255, 255, 255, .5);
    -webkit-transition: .4s;
    transition: .4s;
    z-index: -1
}

.service .single-box .part-icon {
    width: 80px;
    height: 80px;
    text-align: center;
    background: #ff792d;
    border-radius: 5px;
    margin-bottom: 40px;
    -webkit-transition: .4s;
    transition: .4s
}

.service .single-box .part-icon span {
    font-size: 45px;
    line-height: 90px;
    color: #fff;
    -webkit-transition: .4s;
    transition: .4s
}

.service .single-box .part-txt {
    text-align: center
}

.service .single-box .part-txt a {
    font-size: 25px;
    line-height: 100%;
    font-weight: 600;
    color: #4b4b46;
    margin-top: -3px;
    margin-bottom: 30px
}

.service .single-box .part-txt a:hover,
.service .single-box .part-txt a:focus {
    color: #5446db
}

.service .single-box .part-txt p {
    font-size: 16px;
    line-height: 26px;
    color: #4b4b46;
    margin-bottom: -7px;
    -webkit-transition: .4s;
    transition: .4s
}

.service .single-box:hover {
    background: #ff792d;
    -webkit-box-shadow: 0 0 30px 0 rgba(51, 51, 51, .2);
    box-shadow: 0 0 30px 0 rgba(51, 51, 51, .2)
}

.service .single-box:hover:before {
    border-top-color: rgba(255, 255, 255, .3);
    border-left-color: rgba(255, 255, 255, .3)
}

.service .single-box:hover:after {
    border-bottom-color: rgba(255, 255, 255, .3);
    border-right-color: rgba(255, 255, 255, .3)
}

.service .single-box:hover .part-icon {
    background: #fff
}

.service .single-box:hover .part-icon span {
    color: #ff792d
}

.service .single-box:hover .part-txt a {
    color: #fff
}

.service .single-box:hover .part-txt p {
    color: #fff
}

.pricing {
    background: #f7f7fe
}

.pricing.pricing-inner {
    background: url(../images/pricing-bg.png) top center no-repeat;
    background-size: cover;
    padding-top: 320px
}

.pricing.pricing-inner .title .controls nav .nav {
    background: #fff
}

.pricing .title h2 {
    font-size: 55px;
    line-height: 75px;
    font-weight: 700;
    color: #4b4b46;
    margin-top: -13px;
    margin-bottom: 26px
}

.pricing .title p {
    font-size: 16px;
    line-height: 26px;
    color: #4b4b46;
    margin-bottom: 42px
}

.pricing .title .controls nav .nav {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    background: #d7deff;
    padding: 5px;
    border: 0;
    border-radius: 5px
}

.pricing .title .controls nav .nav .nav-item {
    height: 60px;
    padding: 0 40px;
    border: 0;
    border-radius: 5px;
    font-size: 18px;
    line-height: 60px;
    font-weight: 500;
    color: #4b4b46
}

.pricing .title .controls nav .nav .nav-item.active {
    background: #5446db;
    color: #fff
}

.pricing .tab-pane {
    -webkit-transition: .4s;
    transition: .4s
}

.pricing .tab-pane .single-box {
    -webkit-box-shadow: 0 0 30px 0 rgba(51, 51, 51, .1);
    box-shadow: 0 0 30px 0 rgba(51, 51, 51, .1);
    border-radius: 10px;
    background: #fff;
    overflow: hidden
}

.pricing .tab-pane .single-box.center .top h3 {
    background: #ff792d;
    padding-top: 38px;
    padding-bottom: 66px
}

.pricing .tab-pane .single-box.center .top .price h4 {
    color: #ff792d
}

.pricing .tab-pane .single-box.center .middle ul li:nth-child(odd) {
    background: rgba(255, 121, 45, .2)
}

.pricing .tab-pane .single-box.center .bottom {
    padding-bottom: 50px
}

.pricing .tab-pane .single-box .top {
    text-align: center
}

.pricing .tab-pane .single-box .top h3 {
    font-size: 24px;
    line-height: 100%;
    font-weight: 600;
    color: #fff;
    background: #5446db;
    padding-top: 28px;
    padding-bottom: 56px;
    margin-bottom: 0;
    -webkit-transition: .4s;
    transition: .4s
}

.pricing .tab-pane .single-box .top .price {
    background: #f7f7fe;
    border-radius: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: 0 0 20px 0 rgba(51, 51, 51, .1);
    box-shadow: 0 0 20px 0 rgba(51, 51, 51, .1);
    padding-top: 24px;
    padding-bottom: 22px;
    margin: -30px 85px 0
}

.pricing .tab-pane .single-box .top .price h4 {
    display: inline-block;
    font-size: 55px;
    line-height: 100%;
    font-weight: 700;
    color: #5446db;
    margin-bottom: 0;
    position: relative
}

.pricing .tab-pane .single-box .top .price h4 span:first-child {
    position: absolute;
    top: 3px;
    left: -15px;
    font-size: 20px;
    line-height: 100%
}

.pricing .tab-pane .single-box .top .price h4 span:last-child {
    font-size: 20px;
    line-height: 100%;
    font-weight: 400
}

.pricing .tab-pane .single-box .middle {
    padding: 30px 30px 0
}

.pricing .tab-pane .single-box .middle ul {
    padding: 0;
    margin-bottom: 0;
    list-style: none;
    text-align: center
}

.pricing .tab-pane .single-box .middle ul li {
    height: 50px;
    font-size: 16px;
    line-height: 50px;
    color: #4b4b46;
    border-radius: 5px
}

.pricing .tab-pane .single-box .middle ul li:nth-child(odd) {
    background: rgba(84, 70, 219, .1)
}

.pricing .tab-pane .single-box .middle ul li span {
    font-size: 12px;
    line-height: 100%;
    color: #d7deff;
    margin-right: 20px;
    -webkit-transition: .4s;
    transition: .4s
}

.pricing .tab-pane .single-box .bottom {
    padding: 0 30px 30px
}

.pricing .tab-pane .single-box .bottom .def-btn {
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    width: 100%;
    text-align: center
}

.testimonial .comment-slider .single-comment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 43px 30px;
    cursor: -webkit-grab;
    cursor: grab;
    position: relative;
    z-index: 2
}

.testimonial .comment-slider .single-comment:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0;
    background: rgba(215, 222, 255, .2);
    border-top: 3px solid rgba(84, 70, 219, .9);
    border-bottom: 3px solid rgba(84, 70, 219, .9);
    -webkit-transition: .7s ease-in;
    transition: .7s ease-in;
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    z-index: -1
}

.testimonial .comment-slider .single-comment:after {
    content: "";
    font-family: flaticon;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    font-size: 60px;
    color: #ff792d;
    opacity: .3;
    -webkit-transition: .7s ease-in;
    transition: .7s ease-in;
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    z-index: -1
}

.testimonial .comment-slider .single-comment.slick-current:before {
    width: 400px
}

.testimonial .comment-slider .single-comment.slick-current:after {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1)
}

.testimonial .comment-slider .single-comment .part-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 40px
}

.testimonial .comment-slider .single-comment .part-txt {
    text-align: center
}

.testimonial .comment-slider .single-comment .part-txt p {
    font-size: 18px;
    line-height: 28px;
    color: #4b4b46;
    margin-top: -6px;
    margin-bottom: 30px
}

.testimonial .comment-slider .single-comment .part-txt h3 {
    font-size: 25px;
    line-height: 100%;
    font-weight: 600;
    color: #ff792d;
    margin-bottom: 15px
}

.testimonial .comment-slider .single-comment .part-txt h5 {
    font-style: italic;
    font-size: 18px;
    line-height: 100%;
    font-weight: 400;
    color: #4b4b46;
    margin-bottom: -3px
}

.testimonial .comment-slider .slick-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    padding: 0;
    line-height: 50px;
    font-size: 25px;
    background: #ff792d;
    color: #fff;
    border-radius: 5px
}

.testimonial .comment-slider .slick-arrow.prev {
    left: -70px
}

.testimonial .comment-slider .slick-arrow.next {
    right: -70px
}

.testimonial .comment-slider .slick-arrow:hover,
.testimonial .comment-slider .slick-arrow:focus {
    background: #d7deff;
    color: #ff792d
}

.blog {
    background: url(../images/blog-bg.jpg) center center no-repeat;
    background-size: cover
}

.blog .blog-slider {
    overflow: hidden
}

.blog .blog-slider .slick-list {
    margin: 0 -10px
}

.blog .blog-slider .slick-list .single-blog {
    border-radius: 10px;
    margin: 0 10px;
    position: relative;
    cursor: -webkit-grab;
    cursor: grab;
    overflow: hidden
}

.blog .blog-slider .slick-list .single-blog .part-img {
    position: relative
}

.blog .blog-slider .slick-list .single-blog .part-img:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #333;
    border-radius: 10px;
    opacity: .6
}

.blog .blog-slider .slick-list .single-blog .part-txt {
    position: absolute;
    left: 70px;
    bottom: 80px;
    right: 70px
}

.blog .blog-slider .slick-list .single-blog .part-txt .blog-info {
    padding: 0 0 40px;
    margin-bottom: 33px;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #f7f7fe
}

.blog .blog-slider .slick-list .single-blog .part-txt .blog-info li {
    height: 30px;
    font-size: 14px;
    line-height: 30px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.blog .blog-slider .slick-list .single-blog .part-txt .blog-info li:first-child {
    padding: 0 15px;
    background: #ff792d;
    border-radius: 5px
}

.blog .blog-slider .slick-list .single-blog .part-txt .blog-info li span {
    padding: 0 15px;
    background: #5446db;
    border-radius: 5px;
    margin: 0 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.blog .blog-slider .slick-list .single-blog .part-txt .blog-info li span i {
    margin-right: 10px
}

.blog .blog-slider .slick-list .single-blog .part-txt .blog-info li span:last-child {
    margin-right: 0
}

.blog .blog-slider .slick-list .single-blog .part-txt a {
    display: block;
    font-size: 25px;
    line-height: 35px;
    font-weight: 600;
    color: #fff;
    margin-bottom: -9px;
    position: relative
}

.blog .blog-slider .slick-list .single-blog .part-txt a:hover,
.blog .blog-slider .slick-list .single-blog .part-txt a:focus {
    color: #d7deff
}

.blog .blog-static {
    margin-bottom: -30px
}

.blog .blog-static .single-blog {
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden
}

.blog .blog-static .single-blog .part-img {
    position: relative
}

.blog .blog-static .single-blog .part-img:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #333;
    border-radius: 10px;
    opacity: .6
}

.blog .blog-static .single-blog .part-txt {
    position: absolute;
    left: 30px;
    bottom: 30px;
    right: 30px
}

.blog .blog-static .single-blog .part-txt .blog-info {
    padding: 0 0 25px;
    margin-bottom: 18px;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #f7f7fe
}

.blog .blog-static .single-blog .part-txt .blog-info li {
    height: 30px;
    font-size: 14px;
    line-height: 30px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.blog .blog-static .single-blog .part-txt .blog-info li:first-child {
    padding: 0 15px;
    background: #ff792d;
    border-radius: 5px
}

.blog .blog-static .single-blog .part-txt .blog-info li span {
    padding: 0 15px;
    background: #5446db;
    border-radius: 5px;
    margin: 0 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.blog .blog-static .single-blog .part-txt .blog-info li span i {
    margin-right: 10px
}

.blog .blog-static .single-blog .part-txt .blog-info li span:last-child {
    margin-right: 0
}

.blog .blog-static .single-blog .part-txt a {
    display: block;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    color: #fff;
    margin-bottom: -8px;
    position: relative
}

.blog .blog-static .single-blog .part-txt a:hover,
.blog .blog-static .single-blog .part-txt a:focus {
    color: #d7deff
}

.blog-2 .single-blog {
    -webkit-box-shadow: 0 0 25px 0 rgba(51, 51, 51, .1);
    box-shadow: 0 0 25px 0 rgba(51, 51, 51, .1);
    border-radius: 10px;
    overflow: hidden
}

.blog-2 .single-blog .part-txt {
    color: #333;
    padding: 30px;
    padding-left: 60px;
    position: relative
}

.blog-2 .single-blog .part-txt:before {
    content: "";
    position: absolute;
    top: 40px;
    left: 29px;
    bottom: 30px;
    width: 2px;
    background: -webkit-gradient(linear, left top, left bottom, from(#ff4d49), to(#EBC95F));
    background: linear-gradient(#ff4d49, #EBC95F);
    border-radius: 1px
}

.blog-2 .single-blog .part-txt:after {
    content: "";
    position: absolute;
    top: 30px;
    left: 20px;
    width: 20px;
    height: 20px;
    background: -webkit-gradient(linear, right top, left top, from(#ff4d49), to(#EBC95F));
    background: linear-gradient(-90deg, #ff4d49, #EBC95F);
    border-radius: 50% 50% 0 50%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.blog-2 .single-blog .part-txt a {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    color: #333;
    margin-top: -6px;
    margin-bottom: 21px
}

.blog-2 .single-blog .part-txt a:hover,
.blog-2 .single-blog .part-txt a:focus {
    color: #ff4d49
}

.blog-2 .single-blog .part-txt ul {
    padding-left: 0;
    padding-top: 30px;
    border-top: 1px solid rgba(51, 51, 51, .15);
    margin-bottom: -2px;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.blog-2 .single-blog .part-txt ul li {
    font-size: 14px;
    line-height: 100%;
    font-weight: 500;
    margin-right: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.blog-2 .single-blog .part-txt ul li i {
    margin-right: 10px;
    font-size: 12px;
    color: #ff4d49
}

.blog-2 .single-blog .part-txt ul li:last-child {
    margin-right: 0
}

.partner .all-brand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.partner .all-brand .single-box {
    opacity: .4;
    -webkit-transition: .4s;
    transition: .4s
}

.partner .all-brand .single-box:hover {
    opacity: 1
}

.footer {
    background: url(../images/footer-bg.png) top center no-repeat;
    background-size: cover
}

.footer.footer-2 {
    background: #5446db
}

.footer.footer-2 .copyright {
    background: #402bc1
}

.footer .main-footer h3 {
    font-size: 25px;
    line-height: 100%;
    font-weight: 600;
    color: #fff;
    padding-bottom: 8px;
    margin-top: -2px;
    margin-bottom: 40px;
    position: relative
}

.footer .main-footer h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 2px;
    background: #fff;
    border-radius: 1px
}

.footer .main-footer .footer-about p {
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    margin-top: -6px;
    margin-bottom: 16px
}

.footer .main-footer .footer-about ul {
    padding: 0;
    margin-bottom: -16px;
    list-style: none
}

.footer .main-footer .footer-about ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    margin-bottom: 8px
}

.footer .main-footer .footer-about ul li span {
    font-size: 14px;
    margin-right: 10px
}

.footer .main-footer .links ul {
    padding: 0;
    margin-top: -5px;
    margin-bottom: -7px;
    list-style: none
}

.footer .main-footer .links ul li a {
    font-size: 16px;
    line-height: 100%;
    margin-bottom: 13px;
    color: #fff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.footer .main-footer .links ul li a i {
    font-size: 12px;
    margin-right: 10px
}

.footer .main-footer .links ul li a:hover,
.footer .main-footer .links ul li a:focus {
    padding-left: 10px
}

.footer .main-footer .links ul li:last-child a {
    margin-bottom: 0
}

.footer .main-footer .newsletter p {
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    margin-top: -6px;
    margin-bottom: 22px
}

.footer .main-footer .newsletter form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 30px
}

.footer .main-footer .newsletter form input {
    width: 100%;
    height: 60px;
    padding: 0 20px
}

.footer .main-footer .newsletter form button {
    height: 60px;
    line-height: 66px;
    font-size: 25px;
    color: #fff;
    background: #ff792d;
    padding: 0 20px
}

.footer .main-footer .newsletter form button:hover,
.footer .main-footer .newsletter form button:focus {
    background: #5446db
}

.footer .main-footer .newsletter .social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -5px
}

.footer .main-footer .newsletter .social a {
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 34px;
    -webkit-box-shadow: 0 5px 5px 0 rgba(51, 51, 51, .3);
    box-shadow: 0 5px 5px 0 rgba(51, 51, 51, .3);
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    margin: 0 5px
}

.footer .main-footer .newsletter .social a:hover,
.footer .main-footer .newsletter .social a:focus {
    background: #fff;
    color: #5446db
}

.footer .main-footer .instagram-post .all-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -10px
}

.footer .main-footer .instagram-post .all-post .single-post {
    width: calc(100%/4 - 20px);
    margin: 10px;
    position: relative;
    border-radius: 10px;
    overflow: hidden
}

.footer .main-footer .instagram-post .all-post .single-post .txt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 121, 45, .7);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
    -webkit-transition: .4s;
    transition: .4s
}

.footer .main-footer .instagram-post .all-post .single-post .txt a {
    font-size: 25px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.footer .main-footer .instagram-post .all-post .single-post:hover .txt {
    opacity: 1
}

.footer .copyright {
    padding: 30px 0;
    background: #5446db
}

.footer .copyright p {
    font-size: 15px;
    line-height: 100%;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0
}

.footer .copyright .link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.footer .copyright .link a {
    font-size: 15px;
    line-height: 100%;
    font-weight: 500;
    color: #fff;
    padding: 0 15px;
    border-left: 1px solid #fff
}

.footer .copyright .link a:first-child {
    border: 0;
    padding-left: 0
}

.footer .copyright .link a:last-child {
    padding-right: 0
}

.footer .copyright .link a:hover,
.footer .copyright .link a:focus {
    color: #ff792d
}

.fun-fact .single-box {
    padding-bottom: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 2
}

.fun-fact .single-box:before {
    content: "";
    position: absolute;
    top: 30px;
    bottom: 0;
    left: 0;
    right: 0;
    border: 2px solid #ffe2e2;
    border-radius: 10px;
    z-index: -1
}

.fun-fact .single-box:after {
    content: "";
    position: absolute;
    top: 45px;
    left: 15px;
    bottom: 15px;
    right: 15px;
    background: -webkit-gradient(linear, left top, left bottom, from(#ff4d49), to(#EBC95F));
    background: linear-gradient(#ff4d49, #EBC95F);
    -webkit-box-shadow: 0 0 20px 0 rgba(51, 51, 51, .1);
    box-shadow: 0 0 20px 0 rgba(51, 51, 51, .1);
    border-radius: 7px;
    z-index: -1
}

.fun-fact .single-box .part-icon {
    width: 110px;
    padding: 0 20px 20px;
    background: #fff;
    border-radius: 5px;
    margin-bottom: 40px
}

.fun-fact .single-box .part-txt {
    text-align: center;
    color: #fff
}

.fun-fact .single-box .part-txt h2 {
    font-size: 45px;
    line-height: 100%;
    font-weight: 600;
    margin-top: -5px;
    margin-bottom: 21px
}

.fun-fact .single-box .part-txt p {
    font-size: 16px;
    line-height: 100%;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: -3px
}

.fun-fact-2 {
    background: url(../images/fun-fact-bg.jpg) center center no-repeat;
    background-size: cover
}

.fun-fact-2 .single-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 2
}

.fun-fact-2 .single-box:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 70px;
    height: 2px;
    background: -webkit-gradient(linear, left top, right top, from(#ff4d49), to(#EBC95F));
    background: linear-gradient(90deg, #ff4d49, #EBC95F);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: -1
}

.fun-fact-2 .single-box:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 70px;
    height: 2px;
    background: -webkit-gradient(linear, right top, left top, from(#ff4d49), to(#EBC95F));
    background: linear-gradient(-90deg, #ff4d49, #EBC95F);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: -1
}

.fun-fact-2 .single-box .part-icon {
    width: 80px;
    background: #f7f7fe;
    padding: 15px;
    border: 1px solid #ff792d;
    border-radius: 50%;
    margin-bottom: 20px;
    -webkit-transition: .4s;
    transition: .4s
}

.fun-fact-2 .single-box .part-txt {
    text-align: center
}

.fun-fact-2 .single-box .part-txt h2 {
    font-size: 50px;
    line-height: 100%;
    font-weight: 500;
    color: #4b4b46;
    margin-bottom: 13px
}

.fun-fact-2 .single-box .part-txt p {
    font-size: 20px;
    line-height: 100%;
    color: #333;
    margin-bottom: -3px
}

.fun-fact-2 .single-box:hover .part-icon {
    border-radius: 5px
}

.success {
    background: url(../images/success-bg.png) top center no-repeat;
    background-size: cover
}

.success .part-txt {
    padding-right: 100px;
    color: #333
}

.success .part-txt h2 {
    font-size: 55px;
    line-height: 70px;
    font-weight: 700;
    margin-top: -15px;
    margin-bottom: 28px
}

.success .part-txt p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px
}

.success .part-txt .progress-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 22px;
    margin: -15px
}

.success .part-txt .progress-area .single-skill {
    width: calc(100%/3);
    padding: 15px
}

.success .part-txt .progress-area .single-skill .circle-chart {
    width: 100%;
    height: 100%
}

.success .part-txt .progress-area .single-skill .circle-chart .success-stroke {
    stroke: #ff792d
}

.success .part-txt .progress-area .single-skill .circle-chart .circle-chart__background {
    stroke: #ebc95f
}

.success .part-txt .progress-area .single-skill .circle-chart .circle-chart__info .circle-chart__percent {
    display: inline-block;
    font-size: 6px;
    line-height: 16px;
    font-weight: 700;
    fill: #ff4d49 !important;
    margin-bottom: 9px
}

.success .part-txt .progress-area .single-skill .circle-chart .circle-chart__info .circle-chart__subline {
    font-size: 3px;
    line-height: 100%;
    font-weight: 600;
    fill: #333
}

.success .part-img {
    -webkit-animation: shakeY 5s linear infinite;
    animation: shakeY 5s linear infinite
}

.portfolio .portfolio-slider {
    overflow: hidden
}

.portfolio .portfolio-slider .slick-list {
    margin: 0 -15px;
    cursor: -webkit-grab;
    cursor: grab
}

.portfolio .portfolio-slider .slick-list .single-box {
    min-height: 80px;
    padding: 30px;
    border: 1px solid #ededec;
    border-radius: 10px;
    margin: 0 15px;
    -webkit-transition: all .4s ease-in;
    transition: all .4s ease-in;
    position: relative;
    z-index: 2
}

.portfolio .portfolio-slider .slick-list .single-box:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    bottom: 15px;
    right: 15px;
    background: #ffe2e2;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 20px rgba(51, 51, 51, .1);
    box-shadow: 0 0 20px rgba(51, 51, 51, .1);
    z-index: -1
}

.portfolio .portfolio-slider .slick-list .single-box .part-img {
    border-radius: 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 30px;
    -webkit-transition: all .4s ease-in;
    transition: all .4s ease-in
}

.portfolio .portfolio-slider .slick-list .single-box .part-txt {
    text-align: center;
    background: -webkit-gradient(linear, right top, left top, from(#ff4d49), to(#EBC95F));
    background: linear-gradient(-90deg, #ff4d49, #EBC95F);
    border-radius: 7px;
    -webkit-transition: all .4s ease-in;
    transition: all .4s ease-in
}

.portfolio .portfolio-slider .slick-list .single-box .part-txt h3 {
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    height: 70px;
    line-height: 70px;
    margin-bottom: 0
}

.portfolio .portfolio-slider .slick-list .single-box .view-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 121, 45, .3);
    border-radius: 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    -webkit-transition: all .4s ease-in;
    transition: all .4s ease-in
}

.portfolio .portfolio-slider .slick-list .single-box .view-btn a {
    text-align: center;
    width: 60px;
    height: 60px;
    font-size: 30px;
    line-height: 70px;
    color: #fff;
    background: -webkit-gradient(linear, right top, left top, from(#ff4d49), to(#EBC95F));
    background: linear-gradient(-90deg, #ff4d49, #EBC95F);
    -webkit-box-shadow: 0 0 30px 0 rgba(51, 51, 51, .5);
    box-shadow: 0 0 30px 0 rgba(51, 51, 51, .5);
    border-radius: 5px;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all .4s ease-in;
    transition: all .4s ease-in;
    position: relative;
    z-index: 2
}

.portfolio .portfolio-slider .slick-list .single-box .view-btn a:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(#ff4d49), to(#EBC95F));
    background: linear-gradient(90deg, #ff4d49, #EBC95F);
    border-radius: 5px;
    opacity: 0;
    -webkit-transition: .4s;
    transition: .4s;
    z-index: -1
}

.portfolio .portfolio-slider .slick-list .single-box .view-btn a:hover:after {
    opacity: 1
}

.portfolio .portfolio-slider .slick-list .single-box:hover {
    border-color: #ff4d49
}

.portfolio .portfolio-slider .slick-list .single-box:hover:after {
    -webkit-box-shadow: 0 0 20px rgba(51, 51, 51, .15);
    box-shadow: 0 0 20px rgba(51, 51, 51, .15)
}

.portfolio .portfolio-slider .slick-list .single-box:hover .part-img {
    -webkit-filter: blur(2px);
    filter: blur(2px)
}

.portfolio .portfolio-slider .slick-list .single-box:hover .part-txt {
    -webkit-filter: blur(2px);
    filter: blur(2px)
}

.portfolio .portfolio-slider .slick-list .single-box:hover .view-btn {
    opacity: 1
}

.portfolio .portfolio-slider .slick-list .single-box:hover .view-btn a {
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

.portfolio .portfolio-slider .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    list-style: none;
    padding-top: 50px;
    padding-left: 0;
    margin-bottom: 0
}

.portfolio .portfolio-slider .slick-dots li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.portfolio .portfolio-slider .slick-dots li button {
    padding: 0;
    font-size: 0;
    width: 12px;
    height: 12px;
    background: -webkit-gradient(linear, right top, left top, from(#ff4d49), to(#EBC95F));
    background: linear-gradient(-90deg, #ff4d49, #EBC95F);
    border-radius: 6px;
    margin: 0 5px;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in
}

.portfolio .portfolio-slider .slick-dots li.slick-active button {
    width: 50px
}

.team {
    background: url(../images/team-bg.png) bottom center no-repeat;
    background-size: cover
}

.team.team-inner {
    background: 0 0
}

.team.team-page {
    background: 0 0
}

.team.team-page .single-box {
    margin-bottom: 30px;
    -webkit-box-shadow: 0 0;
    box-shadow: 0 0
}

.team .single-box {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    -webkit-box-shadow: 0 0 30px 0 rgba(51, 51, 51, .3);
    box-shadow: 0 0 30px 0 rgba(51, 51, 51, .3);
    min-height: 360px
}

.team .single-box .part-txt {
    position: absolute;
    left: 20px;
    bottom: 20px;
    right: 20px;
    background: #fff;
    -webkit-box-shadow: 0 0 30px 5px rgba(51, 51, 51, .3);
    box-shadow: 0 0 30px 5px rgba(51, 51, 51, .3);
    border-radius: 7px;
    text-align: center;
    padding: 28px 0;
    z-index: 2
}

.team .single-box .part-txt a {
    font-size: 25px;
    line-height: 100%;
    font-weight: 600;
    color: transparent;
    background: -webkit-gradient(linear, left top, right top, from(#ff4d49), to(#EBC95F));
    background: linear-gradient(90deg, #ff4d49, #EBC95F);
    -webkit-background-clip: text;
    background-clip: text;
    padding-bottom: 5px;
    margin-bottom: 10px
}

.team .single-box .part-txt a:hover {
    text-decoration: underline;
    -webkit-text-decoration-color: #ff792d;
    text-decoration-color: #ff792d
}

.team .single-box .part-txt p {
    font-size: 16px;
    line-height: 100%;
    font-weight: 500;
    color: #4b4b46;
    margin-bottom: -1px
}

.team .single-box .social {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: -webkit-gradient(linear, left top, right top, from(transparent), to(#333333));
    background: linear-gradient(90deg, transparent, #333333);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    opacity: 0;
    -webkit-transition: .4s;
    transition: .4s;
    z-index: 1
}

.team .single-box .social ul {
    padding: 13px 20px 0 0;
    margin: 0;
    list-style: none
}

.team .single-box .social ul li {
    padding: 7px 0
}

.team .single-box .social ul li a {
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 33px;
    background: #ff4d49;
    border-radius: 50%;
    font-size: 12px;
    color: #fff
}

.team .single-box .social ul li a:hover,
.team .single-box .social ul li afocus {
    background: #fff;
    color: #ff4d49
}

.team .single-box:hover .social {
    opacity: 1
}

.team .single-box:hover .social ul li:nth-child(1) {
    -webkit-animation: left .15s ease-in-out;
    animation: left .15s ease-in-out
}

.team .single-box:hover .social ul li:nth-child(2) {
    -webkit-animation: left .2s ease-in-out;
    animation: left .2s ease-in-out
}

.team .single-box:hover .social ul li:nth-child(3) {
    -webkit-animation: left .4s ease-in-out;
    animation: left .4s ease-in-out
}

.team .single-box:hover .social ul li:nth-child(4) {
    -webkit-animation: left .6s ease-in-out;
    animation: left .6s ease-in-out
}

.team .single-box:hover .social ul li:nth-child(5) {
    -webkit-animation: left .8s ease-in-out;
    animation: left .8s ease-in-out
}

.app-download .part-img {
    -webkit-animation: shakeY 5s linear infinite;
    animation: shakeY 5s linear infinite
}

.app-download .part-txt {
    color: #333
}

.app-download .part-txt h2 {
    font-size: 55px;
    line-height: 80px;
    font-weight: 700;
    margin-top: -15px;
    margin-bottom: 23px
}

.app-download .part-txt p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 15px
}

.app-download .part-txt .btn-box {
    padding-top: 27px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.app-download .part-txt .btn-box a {
    border-radius: 7px;
    overflow: hidden;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in
}

.app-download .part-txt .btn-box a.left-btn {
    margin-right: 20px
}

.app-download .part-txt .btn-box a:hover,
.app-download .part-txt .btn-box a:focus {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px)
}

.def-breadcrumb {
    background: url(../images/breadcrumb-bg.jpg) center center no-repeat;
    background-size: cover
}

.def-breadcrumb .part-txt {
    text-align: center;
    padding: 170px 0
}

.def-breadcrumb .part-txt h1 {
    font-size: 65px;
    line-height: 100%;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-top: -9px;
    margin-bottom: 38px
}

.def-breadcrumb .part-txt h1 span {
    color: #ff792d
}

.def-breadcrumb .part-txt ul {
    padding: 0;
    margin-bottom: -3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.def-breadcrumb .part-txt ul li {
    list-style: none;
    font-size: 18px;
    line-height: 100%;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-right: 30px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.def-breadcrumb .part-txt ul li:last-child {
    color: #ff792d;
    margin-right: 0
}

.def-breadcrumb .part-txt ul li i {
    font-size: 14px
}

.video {
    margin-bottom: -240px
}

.video .video-area {
    background: url(../images/video-bg.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    padding: 150px 0;
    text-align: center;
    position: relative;
    z-index: 2
}

.video .video-area:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(51, 51, 51, .5);
    border-radius: 10px;
    z-index: -1
}

.video .video-area a {
    text-align: center;
    width: 110px;
    height: 110px;
    line-height: 115px;
    background: #ff792d;
    border-radius: 50%;
    font-size: 40px;
    color: #fff;
    -webkit-animation: shadow 1.5s ease-in infinite;
    animation: shadow 1.5s ease-in infinite;
    position: relative;
    z-index: 2
}

.video .video-area a:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-animation: shadow 1.5s ease-in .75s infinite;
    animation: shadow 1.5s ease-in .75s infinite;
    z-index: -1
}

.video .video-area a i {
    margin-left: 15px
}

.timeline .single-box {
    margin-bottom: 60px
}

.timeline .single-box .title {
    text-align: center;
    height: 80px;
    background: #5446db;
    border-radius: 15px;
    position: relative;
    margin-bottom: 45px;
    z-index: 2
}

.timeline .single-box .title:after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
    border: 1px dashed #fff;
    border-radius: 13px;
    z-index: -1
}

.timeline .single-box .title h3 {
    height: 80px;
    line-height: 80px;
    font-size: 35px;
    font-weight: 700;
    color: #d7deff;
    margin-bottom: 0;
    position: relative
}

.timeline .single-box .title h3:before {
    content: "";
    position: absolute;
    bottom: 1px;
    left: 50%;
    -webkit-transform: translatex(-50%) rotate(45deg);
    transform: translatex(-50%) rotate(45deg);
    width: 25px;
    height: 3px;
    background: -webkit-gradient(linear, left top, right top, from(#ff4d49), to(#EBC95F));
    background: linear-gradient(90deg, #ff4d49, #EBC95F)
}

.timeline .single-box .title h3:after {
    content: "";
    position: absolute;
    bottom: 1px;
    left: 50%;
    -webkit-transform: translatex(-50%) rotate(-45deg);
    transform: translatex(-50%) rotate(-45deg);
    width: 25px;
    height: 3px;
    background: -webkit-gradient(linear, left top, right top, from(#ff4d49), to(#EBC95F));
    background: linear-gradient(90deg, #ff4d49, #EBC95F)
}

.timeline .single-box .part-txt {
    text-align: center;
    padding: 0 30px
}

.timeline .single-box .part-txt h3 {
    font-size: 25px;
    line-height: 100%;
    font-weight: 600;
    color: #4b4b46;
    margin-bottom: 20px
}

.timeline .single-box .part-txt p {
    font-size: 16px;
    line-height: 26px;
    color: #333;
    margin-bottom: -8px
}

.timeline .line-shape {
    width: 100%;
    height: 4px;
    background: -webkit-gradient(linear, right top, left top, from(#5446DB), to(#3E3768));
    background: linear-gradient(-90deg, #5446DB, #3E3768);
    border-radius: 2px;
    -webkit-transform: translateY(38px);
    transform: translateY(38px);
    position: relative
}

.timeline .line-shape .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: -webkit-gradient(linear, right top, left top, from(#5446DB), to(#3E3768));
    background: linear-gradient(-90deg, #5446DB, #3E3768);
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.timeline .line-shape .circle:before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    bottom: -5px;
    right: -5px;
    background: -webkit-gradient(linear, right top, left top, from(#5446DB), to(#3E3768));
    background: linear-gradient(-90deg, #5446DB, #3E3768);
    border-radius: 50%;
    opacity: .3
}

.choosing-reason {
    background: #f7f7fe
}

.choosing-reason .part-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.choosing-reason .part-txt {
    color: #4b4b46
}

.choosing-reason .part-txt h2 {
    font-size: 55px;
    line-height: 65px;
    font-weight: 700;
    margin-top: -8px;
    margin-bottom: 31px
}

.choosing-reason .part-txt p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 30px
}

.choosing-reason .part-txt ul {
    padding-left: 0;
    padding-top: 12px;
    margin-bottom: -2px;
    list-style: none
}

.choosing-reason .part-txt ul li {
    font-size: 18px;
    line-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 18px
}

.choosing-reason .part-txt ul li:last-child {
    margin-bottom: 0
}

.choosing-reason .part-txt ul li i {
    margin-right: 10px;
    font-size: 16px;
    color: #5446db
}

.service-txt {
    margin-bottom: -200px
}

.service-txt .part-txt {
    color: #4b4b46
}

.service-txt .part-txt h2 {
    font-size: 55px;
    line-height: 65px;
    font-weight: 700;
    margin-top: -8px;
    margin-bottom: 31px
}

.service-txt .part-txt p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 40px
}

.service-txt .part-txt .boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -20px 50px
}

.service-txt .part-txt .boxes .single-box {
    width: calc(100%/2 - 40px);
    margin: 0 20px
}

.service-txt .part-txt .boxes .single-box h3 {
    font-size: 20px;
    line-height: 100%;
    font-weight: 600;
    margin-bottom: 16px
}

.service-txt .part-txt .boxes .single-box span {
    display: block;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: -8px
}

.free-analysis .part-txt {
    color: #4b4b46
}

.free-analysis .part-txt h2 {
    font-size: 55px;
    line-height: 65px;
    font-weight: 700;
    margin-top: -8px;
    margin-bottom: 31px
}

.free-analysis .part-txt p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 30px
}

.free-analysis .part-txt .part-form {
    padding-top: 12px
}

.free-analysis .part-txt .part-form input {
    width: 100%;
    height: 65px;
    padding: 0 30px;
    background: #f7f7fe;
    border: 1px solid rgba(75, 75, 70, .1);
    border-radius: 10px;
    margin-bottom: 30px
}

.free-analysis .part-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.service-details {
    padding-top: 120px
}

.service-details .main-content .main-img {
    border: 1px solid rgba(62, 55, 104, .1);
    border-radius: 15px;
    padding: 10px;
    overflow: hidden;
    margin-bottom: 60px
}

.service-details .main-content .main-img img {
    border: 1px solid rgba(51, 51, 51, .1);
    border-radius: 10px
}

.service-details .main-content .part-txt {
    color: #4b4b46;
    margin-bottom: 60px
}

.service-details .main-content .part-txt h2 {
    font-size: 55px;
    line-height: 65px;
    font-weight: 600;
    margin-top: -8px;
    margin-bottom: 31px
}

.service-details .main-content .part-txt p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 16px
}

.service-details .main-content .part-txt p.marked-txt {
    background: #ff792d;
    color: #fff;
    text-align: center;
    border-radius: 15px;
    font-style: italic;
    padding: 44px 50px 42px;
    margin-bottom: 0
}

.service-details .main-content .part-txt h3 {
    font-size: 30px;
    line-height: 100%;
    font-weight: 600;
    padding-top: 34px;
    margin-bottom: 29px
}

.service-details .main-content .part-txt ul {
    padding: 0;
    padding-top: 9px;
    margin-bottom: 31px;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.service-details .main-content .part-txt ul li {
    width: 50%;
    font-size: 16px;
    line-height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.service-details .main-content .part-txt ul li i {
    font-size: 14px;
    color: #5446db;
    margin-right: 10px
}

.service-details .main-content .part-tab nav {
    margin-bottom: 10px
}

.service-details .main-content .part-tab nav .nav {
    padding: 0 10px;
    border: 0;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    background: #5446db;
    border-radius: 10px
}

.service-details .main-content .part-tab nav .nav .nav-link {
    text-align: center;
    width: 100%;
    margin: 0;
    border: 0;
    padding: 0;
    background: 0 0;
    height: 100px;
    line-height: 100px;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    position: relative;
    z-index: 2
}

.service-details .main-content .part-tab nav .nav .nav-link:after {
    content: "";
    position: absolute;
    top: 50%;
    bottom: 50%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 3px solid #ff792d;
    border-bottom: 3px solid #ff792d;
    -webkit-transition: .2s ease-in;
    transition: .2s ease-in;
    opacity: 0;
    z-index: -1
}

.service-details .main-content .part-tab nav .nav .nav-link.active {
    color: #ff792d
}

.service-details .main-content .part-tab nav .nav .nav-link.active:after {
    top: -10px;
    bottom: -10px;
    opacity: 1
}

.service-details .main-content .part-tab .tab-content {
    padding-top: 40px
}

.service-details .main-content .part-tab .tab-content .txt {
    padding-right: 20px
}

.service-details .main-content .part-tab .tab-content .txt p {
    margin-top: -6px;
    font-size: 14px;
    line-height: 24px;
    color: #4b4b46;
    margin-bottom: 12px
}

.service-details .main-content .part-tab .tab-content .txt p:last-child {
    margin-bottom: 0
}

.service-details .main-content .part-tab .tab-content .img {
    border-radius: 10px;
    overflow: hidden
}

.service-details .sidebar .nav {
    padding: 15px;
    border: 1px solid rgba(62, 55, 104, .1);
    border-radius: 10px;
    margin-bottom: 50px
}

.service-details .sidebar .nav .nav-link {
    height: 60px;
    line-height: 60px;
    padding: 0 10px;
    border: 1px solid rgba(62, 55, 104, .1);
    border-radius: 7px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #5446db;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.service-details .sidebar .nav .nav-link span {
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 49px;
    background: #5446db;
    border-radius: 5px;
    color: #fff;
    font-size: 25px;
    margin-right: 20px;
    -webkit-transition: .4s;
    transition: .4s
}

.service-details .sidebar .nav .nav-link.active {
    background: #5446db;
    color: #fff
}

.service-details .sidebar .nav .nav-link.active span {
    background: #fff;
    color: #5446db
}

.service-details .sidebar .nav .nav-link:last-child {
    margin-bottom: 0
}

.team-details {
    padding-top: 120px
}

.team-details .profile {
    -webkit-box-shadow: 0 0 20px 0 rgba(75, 75, 70, .1);
    box-shadow: 0 0 20px 0 rgba(75, 75, 70, .1);
    padding: 15px;
    border-radius: 15px;
    overflow: hidden
}

.team-details .profile .part-img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px
}

.team-details .profile .part-img img {
    width: 100%
}

.team-details .profile .txt {
    padding: 30px 0;
    background: #f7f7fe;
    text-align: center;
    border: 1px solid rgba(75, 75, 70, .05);
    border-radius: 10px;
    margin-bottom: 30px
}

.team-details .profile .txt h3 {
    font-size: 25px;
    line-height: 100%;
    font-weight: 600;
    color: #5446db;
    margin-top: -2px;
    margin-bottom: 15px
}

.team-details .profile .txt span {
    display: block;
    font-size: 16px;
    line-height: 100%;
    color: #4b4b46;
    margin-bottom: -3px
}

.team-details .profile .social {
    padding-bottom: 15px
}

.team-details .profile .social ul {
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none
}

.team-details .profile .social ul li a {
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 45px;
    background: #5446db;
    border-radius: 50%;
    font-size: 16px;
    margin: 0 5px;
    color: #fff
}

.team-details .profile .social ul li a:hover {
    background: #ff792d;
    color: #d7deff
}

.team-details .biography h2 {
    font-size: 55px;
    line-height: 100%;
    font-weight: 600;
    color: #4b4b46;
    margin-top: -4px;
    margin-bottom: 42px
}

.team-details .biography ul {
    padding: 0;
    margin-bottom: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.team-details .biography ul:nth-last-of-type(1) {
    margin-bottom: 9px
}

.team-details .biography ul:nth-child(2n+1) li {
    background: 0 0;
    border: 0
}

.team-details .biography ul li {
    width: calc(100%/2 - 15px);
    font-size: 16px;
    color: #4b4b46;
    height: 80px;
    line-height: 80px;
    padding: 0 30px;
    background: #f7f7fe;
    border: 1px solid rgba(75, 75, 70, .05);
    border-radius: 10px
}

.team-details .biography ul li span {
    min-width: 150px;
    font-weight: 600;
    color: #333
}

.team-details .biography ul li a {
    color: #4b4b46
}

.team-details .biography p {
    font-size: 16px;
    line-height: 26px;
    color: #4b4b46;
    margin-bottom: 16px
}

.team-details .skill {
    padding-top: 26px
}

.team-details .skill .single-box {
    margin-bottom: 30px
}

.team-details .skill .single-box:last-child {
    margin-bottom: 0
}

.team-details .skill .single-box p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 16px;
    line-height: 100%;
    margin-top: -1px;
    margin-bottom: 7px;
    color: #4b4b46
}

.team-details .skill .single-box .progress {
    background: #d7deff;
    height: 10px;
    border-radius: 5px;
    overflow: visible
}

.team-details .skill .single-box .progress .progress-bar {
    background: -webkit-gradient(linear, right top, left top, from(#5446DB), to(#3E3768));
    background: linear-gradient(-90deg, #5446DB, #3E3768);
    border-radius: 5px;
    position: relative;
    overflow: visible
}

.team-details .skill .single-box .progress .progress-bar:after {
    content: "";
    position: absolute;
    top: -15px;
    right: 0;
    -webkit-transform: translateX(30%) rotate(45deg);
    transform: translateX(30%) rotate(45deg);
    width: 12px;
    height: 12px;
    border-radius: 50% 50% 0 50%;
    background: -webkit-gradient(linear, right top, left top, from(#5446DB), to(#3E3768));
    background: linear-gradient(-90deg, #5446DB, #3E3768)
}

.team-details .education {
    padding-top: 26px
}

.team-details .education h3 {
    font-size: 25px;
    line-height: 100%;
    font-weight: 600;
    color: #4b4b46;
    margin-top: -2px;
    margin-bottom: 20px
}

.team-details .education ul {
    padding: 0;
    margin-bottom: -9px;
    list-style: none
}

.team-details .education ul li {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: #4b4b46;
    margin-bottom: 10px
}

.team-details .education ul li:last-child {
    margin-bottom: 0
}

.team-details .education ul li span {
    display: block;
    font-size: 16px;
    font-weight: 400
}

.faq .part-txt {
    color: #4b4b46
}

.faq .part-txt .top-txt {
    padding-bottom: 26px
}

.faq .part-txt .top-txt h2 {
    font-size: 55px;
    line-height: 100%;
    font-weight: 600;
    margin-top: -6px;
    margin-bottom: 36px
}

.faq .part-txt .top-txt p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 16px
}

.faq .part-txt .accordion .card {
    border: 0;
    border-radius: 0;
    margin-bottom: 30px
}

.faq .part-txt .accordion .card:last-child {
    margin-bottom: 0
}

.faq .part-txt .accordion .card .card-header {
    border: 1px solid rgba(75, 75, 70, .1);
    border-radius: 5px;
    margin: 0;
    background: #f7f7fe;
    padding: 0
}

.faq .part-txt .accordion .card .card-header h2 button {
    height: 60px;
    padding: 0 30px;
    -webkit-box-shadow: 0 0;
    box-shadow: 0 0;
    color: #4b4b46;
    font-size: 16px;
    font-weight: 500
}

.faq .part-txt .accordion .card .card-header h2 button i {
    color: #5446db;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: .3s;
    transition: .3s
}

.faq .part-txt .accordion .card .card-header h2 button.collapsed i {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
}

.faq .part-txt .accordion .card .card-body {
    padding: 30px 30px 22px;
    border: 1px solid rgba(75, 75, 70, .1);
    border-radius: 5px;
    margin-top: 20px
}

.faq .part-txt .accordion .card .card-body p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 16px
}

.faq .part-txt .accordion .card .card-body p:first-child {
    margin-top: -6px
}

.faq .part-txt .accordion .card .card-body p:last-child {
    margin-bottom: 0
}

.pricing-2 .single-box {
    border: 1px solid rgba(51, 51, 51, .1);
    border-radius: 10px;
    -webkit-transition: .3s;
    transition: .3s
}

.pricing-2 .single-box .top {
    padding-top: 30px;
    text-align: center;
    margin-bottom: 30px
}

.pricing-2 .single-box .top h3 {
    font-size: 25px;
    line-height: 100%;
    font-weight: 500;
    color: #4b4b46;
    margin-top: -2px;
    margin-bottom: 26px
}

.pricing-2 .single-box .top .price {
    width: 200px;
    height: 200px;
    background: -webkit-gradient(linear, right top, left top, from(#5446DB), to(#3E3768));
    background: linear-gradient(-90deg, #5446DB, #3E3768);
    border-radius: 50%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: 0 0 20px 0 rgba(51, 51, 51, .3);
    box-shadow: 0 0 20px 0 rgba(51, 51, 51, .3);
    padding-top: 24px;
    padding-bottom: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    position: relative;
    -webkit-transition: .3s;
    transition: .3s;
    z-index: 2
}

.pricing-2 .single-box .top .price:before {
    content: "";
    position: absolute;
    top: -.5px;
    right: -.5px;
    bottom: -.5px;
    left: -.5px;
    background: -webkit-gradient(linear, right top, left top, from(#ff4d49), to(#EBC95F));
    background: linear-gradient(-90deg, #ff4d49, #EBC95F);
    border-radius: 50%;
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s;
    z-index: -1
}

.pricing-2 .single-box .top .price:after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    bottom: 5px;
    right: 5px;
    background: #fff;
    border-radius: 50%;
    z-index: -1
}

.pricing-2 .single-box .top .price h4 {
    display: inline-block;
    font-size: 40px;
    line-height: 45px;
    font-weight: 500;
    color: #4b4b46;
    margin-top: -1px;
    margin-bottom: 0
}

.pricing-2 .single-box .top .price h4 span {
    display: block;
    font-size: 25px;
    line-height: 30px;
    font-weight: 400
}

.pricing-2 .single-box .middle ul {
    padding: 0;
    margin-top: -1px;
    margin-bottom: 27px;
    list-style: none;
    text-align: center
}

.pricing-2 .single-box .middle ul li {
    font-size: 16px;
    line-height: 100%;
    color: #4b4b46;
    margin-bottom: 16px
}

.pricing-2 .single-box .bottom {
    text-align: center;
    padding-bottom: 30px
}

.pricing-2 .single-box .bottom .def-btn {
    height: 50px;
    line-height: 50px;
    padding: 0 30px;
    font-size: 18px
}

.pricing-2 .single-box:hover {
    border-color: transparent;
    -webkit-box-shadow: 0 0 30px 0 rgba(51, 51, 51, .1);
    box-shadow: 0 0 30px 0 rgba(51, 51, 51, .1)
}

.pricing-2 .single-box:hover .top .price:before {
    opacity: 1
}

.pricing-3 .single-box {
    background: -webkit-gradient(linear, right top, left top, from(#ff4d49), to(#EBC95F));
    background: linear-gradient(-90deg, #ff4d49, #EBC95F);
    padding: 35px 30px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 2
}

.pricing-3 .single-box:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(#ff4d49), to(#EBC95F));
    background: linear-gradient(90deg, #ff4d49, #EBC95F);
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s;
    z-index: -1
}

.pricing-3 .single-box.single-box-2 {
    background: -webkit-gradient(linear, right top, left top, from(#5446DB), to(#3E3768));
    background: linear-gradient(-90deg, #5446DB, #3E3768)
}

.pricing-3 .single-box.single-box-2:after {
    background: -webkit-gradient(linear, left top, right top, from(#5446DB), to(#3E3768));
    background: linear-gradient(90deg, #5446DB, #3E3768)
}

.pricing-3 .single-box.single-box-2 .top .price h4 {
    background: -webkit-gradient(linear, right top, left top, from(#5446DB), to(#3E3768));
    background: linear-gradient(-90deg, #5446DB, #3E3768);
    -webkit-background-clip: text;
    background-clip: text
}

.pricing-3 .single-box .top {
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 2
}

.pricing-3 .single-box .top h3 {
    font-size: 25px;
    line-height: 100%;
    font-weight: 500;
    margin-top: -2px;
    margin-bottom: 31px
}

.pricing-3 .single-box .top .price {
    padding: 35px 0;
    border-radius: 10px;
    background: #d7deff;
    -webkit-box-shadow: 0 0 20px 0 rgba(51, 51, 51, .3);
    box-shadow: 0 0 20px 0 rgba(51, 51, 51, .3);
    color: #4b4b46
}

.pricing-3 .single-box .top .price h4 {
    font-size: 35px;
    line-height: 100%;
    font-weight: 500;
    color: transparent;
    background: -webkit-gradient(linear, right top, left top, from(#ff4d49), to(#EBC95F));
    background: linear-gradient(-90deg, #ff4d49, #EBC95F);
    -webkit-background-clip: text;
    background-clip: text;
    margin-top: -4px;
    margin-bottom: -5px
}

.pricing-3 .single-box .top .price h4 span {
    font-size: 20px;
    line-height: 100%
}

.pricing-3 .single-box .middle {
    padding: 35px 0
}

.pricing-3 .single-box .middle ul {
    padding-left: 0;
    margin-top: -1px;
    margin-bottom: -3px;
    text-align: center;
    list-style: none
}

.pricing-3 .single-box .middle ul li {
    font-size: 16px;
    line-height: 100%;
    margin-bottom: 26px;
    color: #fff
}

.pricing-3 .single-box .middle ul li:last-child {
    margin-bottom: 0
}

.pricing-3 .single-box .bottom {
    text-align: center
}

.pricing-3 .single-box .bottom .def-btn {
    background: #d7deff;
    color: #4b4b46;
    font-size: 18px;
    font-weight: 500;
    height: 50px;
    line-height: 50px;
    padding: 0 30px
}

.pricing-3 .single-box:hover:after {
    opacity: 1
}

.portfolio-page .single-box {
    -webkit-box-shadow: 0 5px 30px -5px rgba(51, 51, 51, .15);
    box-shadow: 0 5px 30px -5px rgba(51, 51, 51, .15);
    border-radius: 10px;
    min-height: 350px;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative
}

.portfolio-page .single-box .part-img {
    overflow: hidden;
    position: relative
}

.portfolio-page .single-box .part-img img {
    -webkit-transition: all .4s ease-in;
    transition: all .4s ease-in
}

.portfolio-page .single-box .part-txt {
    position: absolute;
    left: 0;
    top: 100%;
    right: 0;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: -webkit-gradient(linear, left bottom, left top, from(#5446DB), to(transparent));
    background: linear-gradient(to top, #5446DB, transparent);
    background: -webkit-gradient(linear, right top, left top, from(#5446DB), to(#3E3768));
    background: linear-gradient(-90deg, #5446DB, #3E3768);
    color: #fff;
    padding: 40px;
    -webkit-transition: all .4s ease-in;
    transition: all .4s ease-in
}

.portfolio-page .single-box .part-txt span {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: 25px;
    line-height: 25px;
    font-size: 14px;
    padding: 0 20px;
    border-radius: 5px;
    background: -webkit-gradient(linear, left top, right top, from(#ff4d49), to(#EBC95F));
    background: linear-gradient(90deg, #ff4d49, #EBC95F);
    margin-bottom: 25px
}

.portfolio-page .single-box .part-txt h3 {
    font-size: 30px;
    line-height: 100%;
    font-weight: 500;
    margin-top: -2px;
    margin-bottom: 14px
}

.portfolio-page .single-box .part-txt p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 10px
}

.portfolio-page .single-box .part-txt a {
    font-size: 16px;
    line-height: 100%;
    color: #fff;
    text-decoration: underline
}

.portfolio-page .single-box:hover .part-img img {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%)
}

.portfolio-page .single-box:hover .part-txt {
    top: 0
}

.portfolio-single {
    padding-top: 120px
}

.portfolio-single .main-img {
    border-radius: 10px;
    overflow: hidden
}

.portfolio-single .main-img img {
    width: 100%
}

.portfolio-single .project-information {
    color: #4b4b46
}

.portfolio-single .project-information h2 {
    font-size: 45px;
    line-height: 100%;
    font-weight: 600;
    margin-top: -3px;
    margin-bottom: 33px
}

.portfolio-single .project-information ul {
    padding: 0;
    margin: 0;
    list-style: none
}

.portfolio-single .project-information ul li {
    font-size: 18px;
    line-height: 80px;
    color: #4b4b46;
    background: 0 0;
    border-radius: 7px;
    padding: 0 35px
}

.portfolio-single .project-information ul li:nth-child(odd) {
    background: #f3f3f9;
    border: 1px solid rgba(75, 75, 70, .07)
}

.portfolio-single .project-information ul li span {
    font-size: 20px;
    font-weight: 600;
    width: 40%
}

.portfolio-single .project-information ul li a {
    font-size: 15px;
    color: #5446db;
    margin: 0 6px
}

.portfolio-single .project-information ul li a:hover,
.portfolio-single .project-information ul li a:focus {
    color: #ff792d
}

.portfolio-single .main-txt {
    color: #4b4b46
}

.portfolio-single .main-txt h3 {
    font-size: 45px;
    line-height: 100%;
    font-weight: 600;
    margin-top: -3px;
    margin-bottom: 33px
}

.portfolio-single .main-txt p {
    font-size: 16px;
    line-height: 26px;
    color: #4b4b46;
    margin-bottom: 32px
}

.portfolio-single .main-txt .part-img {
    margin-bottom: 33px
}

.portfolio-single .main-txt .part-img .single-img {
    border-radius: 10px;
    overflow: hidden
}

.portfolio-single .main-txt ul {
    padding: 0;
    margin-top: -1px;
    margin-bottom: -19px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none
}

.portfolio-single .main-txt ul li {
    width: 50%;
    font-style: italic;
    font-size: 15px;
    line-height: 100%;
    font-weight: 500;
    color: #4b4b46;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px
}

.portfolio-single .main-txt ul li i {
    font-size: 16px;
    color: #ff792d;
    margin-right: 10px
}

.portfolio-single .process-inner .heading-txt {
    padding-bottom: 37px
}

.portfolio-single .process-inner .heading-txt h2 {
    font-size: 35px;
    line-height: 100%;
    font-weight: 700;
    color: #4b4b46;
    margin-top: -4px;
    margin-bottom: 27px
}

.portfolio-single .process-inner .heading-txt p {
    font-size: 16px;
    line-height: 26px;
    color: #4b4b46;
    margin-bottom: 15px
}

.portfolio-single .chart figure {
    margin-bottom: 0
}

.portfolio-single .chart figure .highcharts-background {
    fill: #f7f7fe
}

.portfolio-single .chart figure .highcharts-root {
    background: #f7f7fe
}

.portfolio-single .chart figure .highcharts-grid-line {
    display: none
}

.portfolio-single .chart figure .highcharts-credits {
    display: none
}

.portfolio-single .boxes .part-img {
    border: 1px solid rgba(75, 75, 70, .2);
    border-radius: 10px;
    padding: 30px
}

.portfolio-single .boxes .part-img img {
    border-radius: 10px
}

.portfolio-single .part-txt p {
    font-size: 16px;
    line-height: 26px;
    color: #4b4b46;
    margin-top: -6px;
    margin-bottom: -8px
}

.shop .sidebar .search-box {
    background: #f7f7fe;
    border: 1px solid rgba(75, 75, 70, .07);
    border-radius: 10px;
    margin-bottom: 40px;
    overflow: hidden
}

.shop .sidebar .search-box form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.shop .sidebar .search-box form input {
    width: 100%;
    height: 60px;
    padding: 0 20px
}

.shop .sidebar .search-box form button {
    width: 70px;
    height: 60px;
    line-height: 70px;
    font-size: 30px;
    color: #fff;
    background: #ff792d;
    padding: 0
}

.shop .sidebar h3 {
    font-size: 24px;
    line-height: 100%;
    font-weight: 600;
    color: #4b4b46;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(84, 70, 219, .3);
    margin-top: -2px;
    margin-bottom: 25px;
    position: relative
}

.shop .sidebar h3:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 2px;
    background: #5446db
}

.shop .sidebar .category {
    margin-bottom: 40px
}

.shop .sidebar .category ul {
    padding: 0;
    margin-top: -11px;
    margin-bottom: -14px;
    list-style: none
}

.shop .sidebar .category ul li a {
    display: block;
    font-size: 16px;
    line-height: 36px;
    color: #4b4b46
}

.shop .sidebar .category ul li a span {
    float: right
}

.shop .sidebar .category ul li a:hover,
.shop .sidebar .category ul li a:focus {
    color: #ff792d
}

.shop .sidebar .filter-by-price {
    margin-bottom: 40px
}

.shop .sidebar .filter-by-price .range {
    padding-top: 4px
}

.shop .sidebar .filter-by-price .range .slider-range {
    height: 4px;
    border: 0;
    border-radius: 2px;
    background: #dbdbdb;
    margin-bottom: 13px
}

.shop .sidebar .filter-by-price .range .slider-range .ui-slider-range {
    background: #ff792d;
    border-radius: 0
}

.shop .sidebar .filter-by-price .range .slider-range .ui-slider-handle {
    border: 0;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    background: #ff792d;
    top: -4px;
    cursor: pointer;
    margin: 0 -6px;
    outline: none
}

.shop .sidebar .filter-by-price .range .price-txt {
    margin-bottom: -9px
}

.shop .sidebar .filter-by-price .range .price-txt span,
.shop .sidebar .filter-by-price .range .price-txt input {
    font-size: 16px;
    line-height: 100%;
    text-transform: capitalize;
    color: #4b4b46;
    padding: 0
}

.shop .sidebar .feat-products {
    margin-bottom: 40px
}

.shop .sidebar .feat-products ul {
    padding: 0;
    margin: 0;
    list-style: none
}

.shop .sidebar .feat-products ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid rgba(75, 75, 70, .2);
    padding: 15px 0
}

.shop .sidebar .feat-products ul li:first-child {
    padding-top: 0
}

.shop .sidebar .feat-products ul li:last-child {
    border-bottom: 0;
    padding-bottom: 0
}

.shop .sidebar .feat-products ul li .img {
    width: 85px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    border-radius: 7px;
    overflow: hidden;
    margin-right: 15px
}

.shop .sidebar .feat-products ul li .txt {
    width: 290px
}

.shop .sidebar .feat-products ul li .txt a {
    display: block;
    font-size: 16px;
    line-height: 100%;
    color: #4b4b46;
    margin-top: -1px;
    margin-bottom: 15px
}

.shop .sidebar .feat-products ul li .txt a:hover,
.shop .sidebar .feat-products ul li .txt a:focus {
    color: #ff792d
}

.shop .sidebar .feat-products ul li .txt p {
    font-size: 14px;
    line-height: 100%;
    font-weight: 600;
    color: #4b4b46;
    margin-bottom: 8px
}

.shop .sidebar .feat-products ul li .txt p span {
    font-weight: 400;
    position: relative
}

.shop .sidebar .feat-products ul li .txt p span:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #4b4b46
}

.shop .sidebar .feat-products ul li .txt .star {
    font-size: 10px;
    line-height: 100%;
    color: #ff792d
}

.shop .sidebar .filter-by-color .form-group {
    margin-bottom: 0
}

.shop .sidebar .filter-by-color .form-group .form-check {
    height: 20px;
    line-height: 22px;
    padding-left: 35px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2
}

.shop .sidebar .filter-by-color .form-group .form-check.orange .circle {
    background: #ff792d
}

.shop .sidebar .filter-by-color .form-group .form-check.black .circle {
    background: #4b4b46
}

.shop .sidebar .filter-by-color .form-group .form-check.brown .circle {
    background: brown
}

.shop .sidebar .filter-by-color .form-group .form-check.blue .circle {
    background: blue
}

.shop .sidebar .filter-by-color .form-group .form-check.gray .circle {
    background: gray
}

.shop .sidebar .filter-by-color .form-group .form-check.olive .circle {
    background: olive
}

.shop .sidebar .filter-by-color .form-group .form-check:last-child {
    margin-bottom: 0
}

.shop .sidebar .filter-by-color .form-group .form-check input {
    border: 0;
    background: 0 0;
    margin-left: -35px;
    opacity: 0
}

.shop .sidebar .filter-by-color .form-group .form-check .circle {
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 20px;
    line-height: 22px;
    text-align: center;
    font-size: 10px;
    color: transparent;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    -webkit-transition: .4s;
    transition: .4s;
    z-index: -1
}

.shop .sidebar .filter-by-color .form-group .form-check input:checked+.circle {
    color: #fff
}

.shop .sidebar .filter-by-color .form-group .form-check label {
    font-size: 16px;
    color: #4b4b46;
    text-transform: capitalize
}

.shop .main-content .top-bar {
    border-bottom: 1px solid rgba(75, 75, 70, .2);
    padding-bottom: 20px;
    margin-bottom: 60px
}

.shop .main-content .top-bar p {
    font-size: 16px;
    line-height: 100%;
    color: #4b4b46;
    margin-bottom: 0
}

.shop .main-content .top-bar form {
    border: 1px solid rgba(75, 75, 70, .2);
    border-radius: 5px;
    overflow: hidden;
    padding: 0 20px
}

.shop .main-content .top-bar form label {
    font-size: 16px;
    color: #4b4b46;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-bottom: 0
}

.shop .main-content .top-bar form select {
    outline: none;
    border: 0;
    height: 50px;
    color: rgba(75, 75, 70, .7)
}

.shop .main-content .top-bar form select option {
    color: #4b4b46
}

.shop .main-content .single-box {
    padding: 30px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 20px 0 rgba(75, 75, 70, .1);
    box-shadow: 0 0 20px 0 rgba(75, 75, 70, .1);
    margin-bottom: 30px
}

.shop .main-content .single-box .part-img {
    border-radius: 10px;
    overflow: hidden;
    position: relative
}

.shop .main-content .single-box .part-img img {
    width: 100%
}

.shop .main-content .single-box .part-img .tag {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #ff792d;
    border-radius: 50%;
    color: #fff;
    font-size: 14px
}

.shop .main-content .single-box .part-img .cart-option {
    position: absolute;
    top: 20px;
    right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.shop .main-content .single-box .part-img .cart-option a {
    text-align: center;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border: 1px solid #ff792d;
    border-radius: 50%;
    color: #4b4b46;
    font-size: 16px;
    margin: 5px 0
}

.shop .main-content .single-box .part-img .cart-option a:first-child {
    margin-top: 0
}

.shop .main-content .single-box .part-img .cart-option a:last-child {
    margin-bottom: 0
}

.shop .main-content .single-box .part-img .cart-option a:hover,
.shop .main-content .single-box .part-img .cart-option a:focus {
    background: #ff792d;
    color: #fff
}

.shop .main-content .single-box .part-txt {
    text-align: center;
    padding-top: 30px;
    margin-top: -2px
}

.shop .main-content .single-box .part-txt a {
    font-size: 20px;
    line-height: 100%;
    font-weight: 500;
    color: #4b4b46;
    margin-bottom: 15px
}

.shop .main-content .single-box .part-txt a:hover,
.shop .main-content .single-box .part-txt a:focus {
    color: #ff792d
}

.shop .main-content .single-box .part-txt p {
    font-size: 14px;
    line-height: 100%;
    font-weight: 600;
    color: #4b4b46;
    margin-bottom: 18px
}

.shop .main-content .single-box .part-txt p span {
    font-weight: 400;
    position: relative
}

.shop .main-content .single-box .part-txt p span:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #4b4b46
}

.shop .main-content .single-box .part-txt .star {
    font-size: 10px;
    line-height: 100%;
    color: #ff792d;
    margin-bottom: -1px
}

.shop .main-content .shopnu-pagination {
    padding-top: 30px
}

.shop .main-content .shopnu-pagination ul {
    padding: 0;
    margin: 0;
    list-style: none
}

.shop .main-content .shopnu-pagination ul li {
    margin: 0 5px
}

.shop .main-content .shopnu-pagination ul li a {
    text-align: center;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border: 1px solid #ff792d;
    border-radius: 50%;
    color: #4b4b46
}

.shop .main-content .shopnu-pagination ul li a:hover,
.shop .main-content .shopnu-pagination ul li a:focus {
    background: #ff792d;
    color: #fff
}

.shop-details .item-section .part-img .product-slider {
    margin-bottom: 30px;
    -webkit-box-shadow: 0 0 20px 0 rgba(75, 75, 70, .1);
    box-shadow: 0 0 20px 0 rgba(75, 75, 70, .1);
    border-radius: 15px
}

.shop-details .item-section .part-img .product-slider .owl-item {
    padding: 30px
}

.shop-details .item-section .part-img .product-slider .owl-item .single-slider {
    border-radius: 10px;
    overflow: hidden
}

.shop-details .item-section .part-img .owl-thumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px
}

.shop-details .item-section .part-img .owl-thumbs .owl-thumb-item {
    border: 1px solid rgba(75, 75, 70, .07);
    border-radius: 10px;
    overflow: hidden
}

.shop-details .item-section .part-txt h3 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 600;
    color: #3e3768;
    margin-top: -8px;
    margin-bottom: 39px
}

.shop-details .item-section .part-txt .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 29px
}

.shop-details .item-section .part-txt .info .price {
    height: 30px;
    line-height: 30px;
    padding: 0 25px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    background: #3e3768;
    margin-bottom: 0
}

.shop-details .item-section .part-txt .info .price span {
    font-weight: 400;
    position: relative
}

.shop-details .item-section .part-txt .info .price span:after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff
}

.shop-details .item-section .part-txt .info h5 {
    height: 30px;
    line-height: 30px;
    padding: 0 25px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    background: #3e3768;
    margin-bottom: 0;
    margin-left: 15px
}

.shop-details .item-section .part-txt .item-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 41px
}

.shop-details .item-section .part-txt .item-rating .star {
    font-size: 12px;
    line-height: 100%;
    color: #ff792d;
    margin-right: 30px
}

.shop-details .item-section .part-txt .item-rating a {
    font-size: 16px;
    line-height: 100%;
    font-weight: 500;
    color: #3e3768
}

.shop-details .item-section .part-txt .item-rating a:hover {
    text-decoration: underline
}

.shop-details .item-section .part-txt p {
    font-size: 16px;
    line-height: 26px;
    color: #4b4b46;
    margin-bottom: 30px
}

.shop-details .item-section .part-txt .cart-option {
    padding-top: 1px;
    margin-bottom: -10px
}

.shop-details .item-section .part-txt .cart-option ul {
    padding: 10px 0;
    margin: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.shop-details .item-section .part-txt .cart-option ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    line-height: 100%;
    text-transform: capitalize
}

.shop-details .item-section .part-txt .cart-option ul li:first-child {
    min-width: 100px;
    font-weight: 600
}

.shop-details .item-section .part-txt .cart-option ul li span {
    width: 15px;
    height: 15px;
    border: 1px solid rgba(75, 75, 70, .07);
    border-radius: 3px;
    margin: 0 5px
}

.shop-details .item-section .part-txt .cart-option ul li span:first-child {
    margin-left: 0
}

.shop-details .item-section .part-txt .cart-option ul li span:last-child {
    margin-right: 0
}

.shop-details .item-section .part-txt .cart-option ul li span:nth-child(1) {
    background: #ededec
}

.shop-details .item-section .part-txt .cart-option ul li span:nth-child(2) {
    background: #5446db
}

.shop-details .item-section .part-txt .cart-option ul li span:nth-child(3) {
    background: #ff792d
}

.shop-details .item-section .part-txt .cart-option ul li span:nth-child(4) {
    background: #9acd32
}

.shop-details .item-section .part-txt .cart-option ul li .product-count {
    margin-right: 15px
}

.shop-details .item-section .part-txt .cart-option ul li .product-count .quantity {
    position: relative;
    display: inline-block;
    padding: 0 29px;
    border: 1px solid #ff792d;
    border-radius: 3px;
    overflow: hidden
}

.shop-details .item-section .part-txt .cart-option ul li .product-count .quantity input {
    width: 75px;
    padding-left: 0;
    margin-left: -2px;
    margin-right: -20px;
    height: 35px;
    text-align: center;
    font-size: 16px;
    color: #4b4b46
}

.shop-details .item-section .part-txt .cart-option ul li .product-count .quantity .quantity-nav {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    cursor: pointer;
    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
}

.shop-details .item-section .part-txt .cart-option ul li .product-count .quantity .quantity-nav .quantity-button {
    height: 35px;
    line-height: 35px;
    width: 35px;
    text-align: center;
    font-size: 18px;
    color: #4b4b46;
    background: #fff;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.shop-details .item-section .part-txt .cart-option ul li .product-count .quantity .quantity-nav .quantity-button.quantity-down {
    left: 0;
    border-right: 1px solid #ff792d
}

.shop-details .item-section .part-txt .cart-option ul li .product-count .quantity .quantity-nav .quantity-button.quantity-up {
    right: 0;
    border-left: 1px solid #ff792d
}

.shop-details .item-section .part-txt .cart-option ul li .rel-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.shop-details .item-section .part-txt .cart-option ul li .rel-btns a {
    height: 37px;
    line-height: 35px;
    padding: 0 10px;
    border: 1px solid #ff792d;
    border-radius: 4px;
    font-size: 14px;
    color: #ff792d;
    margin-left: 15px
}

.shop-details .item-section .part-txt .cart-option ul li .rel-btns a.add-to-cart {
    background: #ff792d;
    color: #fff;
    margin-right: 15px
}

.shop-details .item-section .part-txt .cart-option ul li .rel-btns a.add-to-cart:hover,
.shop-details .item-section .part-txt .cart-option ul li .rel-btns a.add-to-cart:focus {
    background: 0 0;
    color: #ff792d
}

.shop-details .item-section .part-txt .cart-option ul li .rel-btns a:hover,
.shop-details .item-section .part-txt .cart-option ul li .rel-btns a:focus {
    background: #ff792d;
    color: #fff
}

.shop-details .item-section .part-txt .cart-option ul li .social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.shop-details .item-section .part-txt .cart-option ul li .social a {
    text-align: center;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 4px;
    font-size: 12px;
    margin: 0 5px
}

.shop-details .item-section .part-txt .cart-option ul li .social a:first-child {
    margin-left: 0
}

.shop-details .item-section .part-txt .cart-option ul li .social a:last-child {
    margin-right: 0
}

.shop-details .item-section .part-txt .cart-option ul li .social a:hover,
.shop-details .item-section .part-txt .cart-option ul li .social a:focus {
    color: #fff;
    -webkit-transform: translateY(-1.5px);
    transform: translateY(-1.5px)
}

.shop-details .dscr-section {
    border: 1px solid rgba(75, 75, 70, .1);
    border-radius: 10px;
    padding: 40px 30px
}

.shop-details .dscr-section .box .nav {
    margin-bottom: 40px;
    border: 0
}

.shop-details .dscr-section .box .nav .nav-link {
    border: 0;
    border-radius: 5px;
    background: #5446db;
    margin: 0 10px;
    color: #fff;
    height: 60px;
    line-height: 60px;
    padding: 0 30px;
    font-size: 16px;
    font-weight: 500
}

.shop-details .dscr-section .box .nav .nav-link:first-child {
    margin-left: 0
}

.shop-details .dscr-section .box .nav .nav-link:last-child {
    margin-right: 0
}

.shop-details .dscr-section .box .nav .nav-link.active {
    background: #ff792d
}

.shop-details .dscr-section .box .tab-pane .dscr p {
    font-size: 16px;
    line-height: 26px;
    color: #4b4b46;
    margin-top: -6px;
    margin-bottom: 30px
}

.shop-details .dscr-section .box .tab-pane .dscr ul {
    padding: 0;
    margin-top: -6px;
    margin-bottom: -10px;
    list-style: none
}

.shop-details .dscr-section .box .tab-pane .dscr ul li {
    font-size: 16px;
    line-height: 30px;
    color: #4b4b46;
    padding-left: 20px;
    position: relative
}

.shop-details .dscr-section .box .tab-pane .dscr ul li:after {
    content: "";
    position: absolute;
    top: calc(50% - 3px);
    left: 0;
    width: 6px;
    height: 6px;
    background: #5446db;
    border-radius: 50%
}

.shop-details .dscr-section .box .tab-pane .product-data ul {
    padding: 0;
    margin: 0;
    list-style: none
}

.shop-details .dscr-section .box .tab-pane .product-data ul li {
    height: 50px;
    line-height: 50px;
    padding: 0 30px;
    border-radius: 7px;
    font-size: 16px;
    color: #4b4b46
}

.shop-details .dscr-section .box .tab-pane .product-data ul li:nth-child(odd) {
    background: #d7deff
}

.shop-details .dscr-section .box .tab-pane .product-data ul li span {
    min-width: 185px
}

.shop-details .dscr-section .box .tab-pane .reviews .single-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px
}

.shop-details .dscr-section .box .tab-pane .reviews .single-box .part-img {
    width: 125px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 30px
}

.shop-details .dscr-section .box .tab-pane .reviews .single-box .part-txt {
    width: calc(100% - 155px);
    border: 1px solid rgba(75, 75, 70, .1);
    border-radius: 10px;
    padding: 30px
}

.shop-details .dscr-section .box .tab-pane .reviews .single-box .part-txt .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 11px
}

.shop-details .dscr-section .box .tab-pane .reviews .single-box .part-txt .title h3 {
    font-size: 20px;
    line-height: 100%;
    font-weight: 600;
    color: #4b4b46;
    margin-top: -2px;
    margin-bottom: 0
}

.shop-details .dscr-section .box .tab-pane .reviews .single-box .part-txt .title .star {
    font-size: 10px;
    line-height: 100%;
    color: #ff792d
}

.shop-details .dscr-section .box .tab-pane .reviews .single-box .part-txt p {
    font-size: 16px;
    line-height: 26px;
    color: #4b4b46;
    margin-bottom: 10px
}

.shop-details .dscr-section .box .tab-pane .reviews .single-box .part-txt span {
    display: block;
    font-size: 14px;
    line-height: 100%;
    font-style: italic;
    color: rgba(75, 75, 70, .7);
    margin-bottom: -2px
}

.shop-details .dscr-section .box .tab-pane .post-a-review {
    padding-top: 10px
}

.shop-details .dscr-section .box .tab-pane .post-a-review h3 {
    font-size: 25px;
    line-height: 100%;
    font-weight: 600;
    color: #4b4b46;
    margin-top: -2px;
    margin-bottom: 15px
}

.shop-details .dscr-section .box .tab-pane .post-a-review p {
    font-size: 14px;
    line-height: 100%;
    color: #4b4b46;
    margin-bottom: 18px
}

.shop-details .dscr-section .box .tab-pane .post-a-review form .simple-rating {
    margin-bottom: 29px;
    color: #ff792d;
    font-size: 10px;
    line-height: 100%
}

.shop-details .dscr-section .box .tab-pane .post-a-review form .simple-rating i {
    padding-right: 7px;
    cursor: pointer
}

.shop-details .dscr-section .box .tab-pane .post-a-review form input {
    width: 100%;
    height: 60px;
    border: 1px solid rgba(75, 75, 70, .07);
    border-radius: 5px;
    padding: 0 25px;
    color: #4b4b46;
    margin-bottom: 30px;
    background: #f7f7fe;
    -webkit-transition: .4s;
    transition: .4s
}

.shop-details .dscr-section .box .tab-pane .post-a-review form input:focus {
    background: 0 0;
    border-color: #ff792d
}

.shop-details .dscr-section .box .tab-pane .post-a-review form textarea {
    width: 100%;
    height: 180px;
    border: 1px solid rgba(75, 75, 70, .07);
    border-radius: 5px;
    padding: 20px 25px;
    color: #4b4b46;
    margin-bottom: 30px;
    background: #f7f7fe;
    -webkit-transition: .4s;
    transition: .4s
}

.shop-details .dscr-section .box .tab-pane .post-a-review form textarea:focus {
    background: 0 0;
    border-color: #ff792d
}

.shop-details .related-products .main-content .slick-list {
    padding: 15px 0;
    margin: -15px
}

.shop-details .related-products .main-content .single-box {
    margin: 0 15px
}

.shop-details .related-products .main-content .slick-arrow {
    display: none !important
}

.cart .table-responsive {
    border-radius: 10px
}

.cart .table {
    margin-bottom: 0;
    overflow: hidden
}

.cart .table thead tr {
    background: #5446db
}

.cart .table thead tr th {
    border: 0;
    text-align: center;
    font-size: 20px;
    line-height: 100%;
    font-weight: 500;
    color: #fff;
    padding: 30px
}

.cart .table thead tr th:first-child {
    text-align: left
}

.cart .table tbody tr:first-child td {
    border: 0
}

.cart .table tbody tr td {
    border-top: 1px solid rgba(75, 75, 70, .2);
    background: #f7f7fe;
    padding: 30px;
    vertical-align: middle;
    text-align: center
}

.cart .table tbody tr td:first-child {
    width: 350px;
    text-align: left
}

.cart .table tbody tr td .product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.cart .table tbody tr td .product .part-img {
    width: 85px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 20px
}

.cart .table tbody tr td .product .part-txt {
    width: calc(100% - 105px)
}

.cart .table tbody tr td .product .part-txt p {
    font-size: 16px;
    line-height: 26px;
    color: #4b4b46;
    margin-bottom: 0
}

.cart .table tbody tr td .price p {
    font-size: 16px;
    line-height: 100%;
    font-weight: 500;
    color: #4b4b46;
    margin-bottom: 0
}

.cart .table tbody tr td .product-quantity .product-count {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.cart .table tbody tr td .product-quantity .product-count .quantity {
    position: relative;
    display: inline-block;
    padding: 0 29px;
    background: #ffe2e2;
    border: 1px solid #fff;
    border-radius: 20px;
    overflow: hidden
}

.cart .table tbody tr td .product-quantity .product-count .quantity input {
    width: 75px;
    padding-left: 0;
    margin-left: -2px;
    margin-right: -20px;
    height: 35px;
    text-align: center;
    font-size: 16px;
    color: #4b4b46
}

.cart .table tbody tr td .product-quantity .product-count .quantity .quantity-nav {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    cursor: pointer;
    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
}

.cart .table tbody tr td .product-quantity .product-count .quantity .quantity-nav .quantity-button {
    height: 35px;
    line-height: 35px;
    width: 35px;
    text-align: center;
    font-size: 18px;
    color: #4b4b46;
    background: #ffe2e2;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.cart .table tbody tr td .product-quantity .product-count .quantity .quantity-nav .quantity-button.quantity-down {
    left: 0;
    border-right: 1px solid #fff
}

.cart .table tbody tr td .product-quantity .product-count .quantity .quantity-nav .quantity-button.quantity-up {
    right: 0;
    border-left: 1px solid #fff
}

.cart .table tbody tr td .delete button {
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 28px;
    padding: 0;
    background: rgba(75, 75, 70, .1);
    color: #4b4b46;
    border: 1px solid rgba(75, 75, 70, .2);
    border-radius: 50%;
    font-size: 18px
}

.cart .table tbody tr td .delete button:hover,
.cart .table tbody tr td .delete button:focus {
    background: #ff4d49;
    color: #fff
}

.cart .cart-totals .coupon {
    background: #f7f7fe;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px
}

.cart .cart-totals .coupon .coupon-title {
    background: #5446db;
    padding: 30px
}

.cart .cart-totals .coupon .coupon-title h3 {
    font-size: 20px;
    line-height: 100%;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0
}

.cart .cart-totals .coupon .part-txt {
    padding: 30px
}

.cart .cart-totals .coupon .part-txt p {
    font-size: 14px;
    line-height: 100%;
    color: #4b4b46;
    margin-top: -1px;
    margin-bottom: 28px
}

.cart .cart-totals .coupon .part-txt form input {
    width: 100%;
    height: 60px;
    padding: 0 30px;
    background: #fff;
    border: 1px solid rgba(75, 75, 70, .1);
    border-radius: 7px;
    font-size: 16px;
    color: #4b4b46;
    margin-bottom: 30px
}

.cart .cart-totals .coupon .part-txt form button {
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    font-weight: 500;
    padding: 0 30px
}

.cart .cart-totals .proceed-to-checkout {
    background: #f7f7fe;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px
}

.cart .cart-totals .proceed-to-checkout .checkout-title {
    background: #5446db;
    padding: 30px
}

.cart .cart-totals .proceed-to-checkout .checkout-title h3 {
    font-size: 20px;
    line-height: 100%;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0
}

.cart .cart-totals .proceed-to-checkout .part-txt {
    padding: 30px 30px 23px;
    border-bottom: 1px solid rgba(75, 75, 70, .2)
}

.cart .cart-totals .proceed-to-checkout .part-txt ul {
    margin-top: -2px;
    margin-bottom: 0;
    padding-bottom: 2px;
    padding-left: 0;
    list-style: none
}

.cart .cart-totals .proceed-to-checkout .part-txt ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 18px;
    line-height: 100%;
    font-weight: 500;
    color: #4b4b46;
    margin-bottom: 20px
}

.cart .cart-totals .proceed-to-checkout .part-txt button {
    padding: 0;
    font-size: 16px;
    line-height: 100%;
    color: #4b4b46
}

.cart .cart-totals .proceed-to-checkout .part-txt button:hover,
.cart .cart-totals .proceed-to-checkout .part-txt button:focus {
    color: #ff792d
}

.cart .cart-totals .proceed-to-checkout .bottom-box {
    padding: 30px
}

.cart .cart-totals .proceed-to-checkout .bottom-box ul {
    margin-top: -2px;
    margin-bottom: 0;
    padding-bottom: 7px;
    padding-left: 0;
    list-style: none
}

.cart .cart-totals .proceed-to-checkout .bottom-box ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 18px;
    line-height: 100%;
    font-weight: 500;
    color: #4b4b46;
    margin-bottom: 20px
}

.cart .cart-totals .proceed-to-checkout .bottom-box .def-btn {
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    font-weight: 500;
    padding: 0 30px
}

.checkout .notification {
    height: 95px;
    line-height: 93px;
    padding: 0 50px;
    background: #f7f7fe;
    border-top: 3px solid #ff792d;
    border-radius: 0 0 10px 10px;
    margin-bottom: 60px
}

.checkout .notification p {
    font-size: 16px;
    color: #4b4b46;
    margin-bottom: 0
}

.checkout .notification p span {
    font-size: 18px;
    color: #ff792d
}

.checkout form .title h2 {
    font-size: 40px;
    line-height: 100%;
    font-weight: 700;
    color: #4b4b46;
    margin-top: -2px;
    margin-bottom: 34px
}

.checkout form input:not([type=radio]),
.checkout form select {
    width: 100%;
    height: 70px;
    padding: 0 30px;
    border: 1px solid rgba(51, 51, 51, .2);
    border-radius: 7px;
    margin-bottom: 30px;
    color: #4b4b46
}

.checkout form input:not([type=radio])::-webkit-input-placeholder,
.checkout form select::-webkit-input-placeholder {
    color: rgba(51, 51, 51, .7)
}

.checkout form input:not([type=radio])::-moz-placeholder,
.checkout form select::-moz-placeholder {
    color: rgba(51, 51, 51, .7)
}

.checkout form input:not([type=radio]):-ms-input-placeholder,
.checkout form select:-ms-input-placeholder {
    color: rgba(51, 51, 51, .7)
}

.checkout form input:not([type=radio])::-ms-input-placeholder,
.checkout form select::-ms-input-placeholder {
    color: rgba(51, 51, 51, .7)
}

.checkout form input:not([type=radio])::placeholder,
.checkout form select::placeholder {
    color: rgba(51, 51, 51, .7)
}

.checkout form input:not([type=radio]):focus,
.checkout form select:focus {
    border-color: #ff792d
}

.checkout form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    background-image: url(../images/chevron-down.svg);
    background-position: right 30px center;
    background-repeat: no-repeat;
    cursor: pointer
}

.checkout form select:invalid {
    color: rgba(51, 51, 51, .7)
}

.checkout form select option {
    color: #4b4b46
}

.checkout form textarea {
    width: 100%;
    height: 170px;
    padding: 15px 30px;
    border: 1px solid rgba(51, 51, 51, .2);
    border-radius: 7px;
    color: #4b4b46
}

.checkout form textarea::-webkit-input-placeholder {
    color: rgba(51, 51, 51, .7)
}

.checkout form textarea::-moz-placeholder {
    color: rgba(51, 51, 51, .7)
}

.checkout form textarea:-ms-input-placeholder {
    color: rgba(51, 51, 51, .7)
}

.checkout form textarea::-ms-input-placeholder {
    color: rgba(51, 51, 51, .7)
}

.checkout form textarea::placeholder {
    color: rgba(51, 51, 51, .7)
}

.checkout form textarea:focus {
    border-color: #ff792d
}

.checkout form .payment-method {
    margin-top: 50px;
    background: #f7f7fe;
    border-radius: 10px
}

.checkout form .payment-method .options {
    padding: 40px 30px;
    border-bottom: 1px solid rgba(75, 75, 70, .2)
}

.checkout form .payment-method .options .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 20px;
    padding-left: 29px;
    margin-bottom: 50px
}

.checkout form .payment-method .options .form-check:first-child {
    margin-top: -2px
}

.checkout form .payment-method .options .form-check:last-child {
    margin-bottom: -3px
}

.checkout form .payment-method .options .form-check:before {
    content: "";
    position: absolute;
    top: calc(50% - 8px);
    left: 0;
    width: 16px;
    height: 16px;
    border: 1px solid #ff792d;
    border-radius: 50%
}

.checkout form .payment-method .options .form-check .my-check {
    position: absolute;
    top: calc(50% - 5px);
    left: 3px;
    width: 10px;
    height: 10px;
    background: #ff792d;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    -webkit-transition: .4s;
    transition: .4s
}

.checkout form .payment-method .options .form-check input {
    opacity: 0;
    margin-left: -29px;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    cursor: pointer;
    z-index: 2
}

.checkout form .payment-method .options .form-check input:checked+span {
    opacity: 1
}

.checkout form .payment-method .options .form-check label {
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    color: #4b4b46;
    cursor: pointer
}

.checkout form .payment-method .options .form-check label:hover+.note {
    opacity: 1;
    visibility: visible
}

.checkout form .payment-method .options .form-check img {
    margin-left: 30px
}

.checkout form .payment-method .options .form-check a {
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    margin-left: 30px
}

.checkout form .payment-method .options .form-check .note {
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    width: 100%;
    height: 70px;
    border-radius: 5px;
    background: #ff792d;
    padding: 0 30px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .6s;
    transition: .6s;
    z-index: 3
}

.checkout form .payment-method .options .form-check .note:after {
    content: "";
    position: absolute;
    left: 30px;
    bottom: calc(100% - 30px);
    width: 40px;
    height: 40px;
    background: #ff792d;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-radius: 3px;
    z-index: -1
}

.checkout form .payment-method .options .form-check .note p {
    font-size: 16px;
    line-height: 70px;
    color: #fff;
    margin-bottom: 0
}

.checkout form .payment-method .bottom-section {
    padding: 40px 30px
}

.checkout form .payment-method .bottom-section p {
    font-size: 16px;
    line-height: 26px;
    color: #4b4b46;
    margin-top: -6px;
    margin-bottom: 22px
}

.blog-grid .main-content .all-blogs {
    display: -ms-grid;
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(calc(100%/3 - 30px), 1fr));
    grid-auto-flow: dense;
    grid-column: span
}

.blog-grid .main-content .all-blogs .wrap {
    background: rgba(215, 222, 255, .4);
    border-radius: 10px;
    overflow: hidden
}

.blog-grid .main-content .all-blogs .wrap.wrap-1 {
    -ms-grid-column-span: 2;
    grid-column: span 2
}

.blog-grid .main-content .all-blogs .wrap.wrap-1 .single-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.blog-grid .main-content .all-blogs .wrap.wrap-1 .single-box .part-img {
    width: calc(50% - 15px)
}

.blog-grid .main-content .all-blogs .wrap.wrap-1 .single-box .part-txt {
    width: calc(50% - 15px);
    margin: 0 15px
}

.blog-grid .main-content .all-blogs .wrap.wrap-2 {
    -ms-grid-row-span: 2;
    grid-row: span 2
}

.blog-grid .main-content .all-blogs .wrap.wrap-2 .single-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.blog-grid .main-content .all-blogs .wrap.wrap-2 .single-box .part-txt {
    margin-top: 30px;
    height: calc(50% - 30px)
}

.blog-grid .main-content .all-blogs .wrap .part-txt {
    padding: 40px 30px;
    color: #4b4b46;
    position: relative;
    z-index: 2
}

.blog-grid .main-content .all-blogs .wrap .part-txt:after {
    content: "";
    position: absolute;
    top: 30px;
    left: 20px;
    border-top: 60px solid rgba(215, 222, 255, .7);
    border-bottom: 60px solid transparent;
    border-left: 100px solid rgba(215, 222, 255, .7);
    border-right: 100px solid transparent;
    z-index: -1
}

.blog-grid .main-content .all-blogs .wrap .part-txt h3 {
    font-size: 25px;
    line-height: 35px;
    font-weight: 600;
    margin-top: -7px;
    margin-bottom: 32px
}

.blog-grid .main-content .all-blogs .wrap .part-txt .blog-info {
    padding-left: 0;
    padding-bottom: 17px;
    margin-bottom: 29px;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid rgba(75, 75, 70, .1);
    border-color: #4169e1
}

.blog-grid .main-content .all-blogs .wrap .part-txt .blog-info li {
    font-size: 14px;
    line-height: 100%
}

.blog-grid .main-content .all-blogs .wrap .part-txt .blog-info li span {
    font-size: 12px;
    margin-right: 5px
}

.blog-grid .main-content .all-blogs .wrap .part-txt p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 27px
}

.blog-grid .main-content .my-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 50px
}

.blog-grid .main-content .my-pagination a {
    text-align: center;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border: 1px solid rgba(75, 75, 70, .15);
    border-radius: 5px;
    color: #4b4b46;
    margin: 0 5px
}

.blog-grid .main-content .my-pagination a:first-child {
    margin-left: 0
}

.blog-grid .main-content .my-pagination a:hover,
.blog-grid .main-content .my-pagination a:focus {
    background: #5446db;
    border-color: #5446db;
    color: #fff
}

.blog-grid .blog-details .main-img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 60px
}

.blog-grid .blog-details .blog-info ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 0;
    padding-bottom: 57px;
    margin-top: -1px;
    margin-bottom: 0;
    border-bottom: 1px solid #5446db;
    list-style: none;
    overflow: hidden
}

.blog-grid .blog-details .blog-info ul li {
    margin: 0 -10px;
    font-size: 16px;
    line-height: 100%;
    color: #4b4b46
}

.blog-grid .blog-details .blog-info ul li span {
    margin: 0 10px
}

.blog-grid .blog-details .blog-info ul li span i {
    font-size: 14px;
    margin-right: 5px;
    color: #5446db
}

.blog-grid .blog-details .part-txt.part-txt-2 {
    padding-top: 30px
}

.blog-grid .blog-details .part-txt h2 {
    font-size: 30px;
    line-height: 100%;
    font-weight: 600;
    color: #4b4b46;
    margin-top: -2px;
    margin-bottom: 29px
}

.blog-grid .blog-details .part-txt p {
    font-size: 16px;
    line-height: 26px;
    color: #4b4b46;
    margin-bottom: 22px
}

.blog-grid .blog-details .part-txt .quoted {
    background: rgba(215, 222, 255, .4);
    padding: 45px;
    border-bottom: 5px solid #5446db;
    border-radius: 10px 10px 0 0;
    margin-bottom: 24px
}

.blog-grid .blog-details .part-txt .quoted p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-style: italic;
    font-size: 18px;
    line-height: 28px;
    margin-top: -11px;
    margin-bottom: -13px
}

.blog-grid .blog-details .part-txt .quoted p .icon {
    text-align: center;
    width: 60px;
    height: 60px;
    line-height: 55px;
    border: 4px solid #5446db;
    border-radius: 50%;
    background: #fff;
    color: #5446db;
    font-size: 25px;
    margin-right: 20px
}

.blog-grid .blog-details .part-txt .quoted p .text {
    width: calc(100% - 80px)
}

.blog-grid .blog-details .part-txt .images {
    display: -ms-grid;
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(calc(100%/2 - 30px), 1fr));
    margin-bottom: 24px
}

.blog-grid .blog-details .part-txt .images .single-image {
    border-radius: 10px;
    overflow: hidden
}

.blog-grid .blog-details .part-txt ul {
    padding: 0;
    margin-top: -1px;
    margin-bottom: 11px;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.blog-grid .blog-details .part-txt ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
    font-size: 16px;
    line-height: 100%;
    color: #4b4b46;
    margin-bottom: 13px
}

.blog-grid .blog-details .part-txt ul li span {
    color: #5446db;
    margin-right: 10px
}

.blog-grid .blog-details .part-txt .other-option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 59px;
    border-bottom: 1px solid #5446db
}

.blog-grid .blog-details .part-txt .other-option .tag {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content
}

.blog-grid .blog-details .part-txt .other-option .tag p {
    display: inline-block;
    font-size: 25px;
    line-height: 100%;
    font-weight: 600;
    color: #4b4b46;
    margin-bottom: 0
}

.blog-grid .blog-details .part-txt .other-option .tag a {
    font-size: 16px;
    line-height: 100%;
    font-weight: 600;
    color: #4b4b46;
    margin: 0 11px
}

.blog-grid .blog-details .part-txt .other-option .tag a:hover {
    color: #5446db
}

.blog-grid .blog-details .part-txt .other-option .share {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content
}

.blog-grid .blog-details .part-txt .other-option .share p {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 25px;
    line-height: 100%;
    font-weight: 600;
    color: #4b4b46;
    margin-bottom: 0
}

.blog-grid .blog-details .part-txt .other-option .share p a {
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    border-radius: 50%;
    margin-left: 10px;
    -webkit-box-shadow: 0 5px 5px 0 rgba(75, 75, 70, .3);
    box-shadow: 0 5px 5px 0 rgba(75, 75, 70, .3)
}

.blog-grid .blog-details .part-txt .other-option .share p a:hover {
    background: 0 0;
    color: #5446db
}

.blog-grid .blog-details .blog-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.blog-grid .blog-details .blog-nav .single-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.blog-grid .blog-details .blog-nav .single-nav.prev-blog {
    padding-right: 100px
}

.blog-grid .blog-details .blog-nav .single-nav.next-blog {
    padding-left: 100px
}

.blog-grid .blog-details .blog-nav .single-nav.next-blog .txt {
    text-align: right
}

.blog-grid .blog-details .blog-nav .single-nav.next-blog .img {
    margin-right: 0;
    margin-left: 20px
}

.blog-grid .blog-details .blog-nav .single-nav .img {
    width: 125px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    border-radius: 7px;
    overflow: hidden;
    margin-right: 20px
}

.blog-grid .blog-details .blog-nav .single-nav .txt {
    width: calc(100% - 145px)
}

.blog-grid .blog-details .blog-nav .single-nav .txt a {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    color: #4b4b46
}

.blog-grid .blog-details .blog-nav .single-nav .txt a span {
    margin-top: 11px;
    display: block;
    font-size: 18px;
    -webkit-transition: .4s;
    transition: .4s
}

.blog-grid .blog-details .blog-nav .single-nav .txt a:hover span {
    color: #ff792d
}

.blog-grid .blog-details .blog-comments .comments h3 {
    font-size: 25px;
    line-height: 100%;
    font-weight: 600;
    color: #4b4b46;
    margin-top: -2px;
    margin-bottom: 26px
}

.blog-grid .blog-details .blog-comments .comments .single-comment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px
}

.blog-grid .blog-details .blog-comments .comments .single-comment:last-child {
    margin-bottom: 0
}

.blog-grid .blog-details .blog-comments .comments .single-comment.replied {
    margin-left: 130px
}

.blog-grid .blog-details .blog-comments .comments .single-comment .part-img {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    margin-right: 25px;
    overflow: hidden
}

.blog-grid .blog-details .blog-comments .comments .single-comment .part-txt {
    width: calc(100% - 150px);
    border: 1px solid rgba(75, 75, 70, .15);
    border-radius: 10px;
    padding: 30px
}

.blog-grid .blog-details .blog-comments .comments .single-comment .part-txt h4 {
    font-size: 20px;
    line-height: 100%;
    font-weight: 600;
    color: #4b4b46;
    margin-top: -2px;
    margin-bottom: 16px
}

.blog-grid .blog-details .blog-comments .comments .single-comment .part-txt p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 15px
}

.blog-grid .blog-details .blog-comments .comments .single-comment .part-txt .bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: -2px
}

.blog-grid .blog-details .blog-comments .comments .single-comment .part-txt .bottom span {
    font-style: italic;
    font-size: 14px;
    line-height: 100%;
    color: rgba(75, 75, 70, .8)
}

.blog-grid .blog-details .blog-comments .comments .single-comment .part-txt .bottom a {
    font-size: 14px;
    line-height: 100%;
    color: #5446db
}

.blog-grid .blog-details .blog-comments .post-a-comment h3 {
    font-size: 25px;
    line-height: 100%;
    font-weight: 600;
    color: #4b4b46;
    margin-top: -2px;
    margin-bottom: 26px
}

.blog-grid .blog-details .blog-comments .post-a-comment form input {
    width: 100%;
    height: 70px;
    background: #f7f7fe;
    border: 1px solid rgba(75, 75, 70, .07);
    border-radius: 5px;
    margin-bottom: 30px;
    padding: 0 30px;
    -webkit-transition: .4s;
    transition: .4s
}

.blog-grid .blog-details .blog-comments .post-a-comment form input:focus {
    border-color: #5446db
}

.blog-grid .blog-details .blog-comments .post-a-comment form textarea {
    width: 100%;
    height: 250px;
    background: #f7f7fe;
    border: 1px solid rgba(75, 75, 70, .07);
    border-radius: 5px;
    margin-bottom: 30px;
    padding: 15px 30px;
    -webkit-transition: .4s;
    transition: .4s
}

.blog-grid .blog-details .blog-comments .post-a-comment form textarea:focus {
    border-color: #5446db
}

.blog-grid .sidebar .search-box {
    background: #f7f7fe;
    border: 1px solid rgba(75, 75, 70, .07);
    border-radius: 10px;
    margin-bottom: 40px;
    overflow: hidden
}

.blog-grid .sidebar .search-box form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.blog-grid .sidebar .search-box form input {
    width: 100%;
    height: 60px;
    padding: 0 20px
}

.blog-grid .sidebar .search-box form button {
    width: 70px;
    height: 60px;
    line-height: 70px;
    font-size: 30px;
    color: #fff;
    background: #ff792d;
    padding: 0
}

.blog-grid .sidebar h3 {
    font-size: 24px;
    line-height: 100%;
    font-weight: 600;
    color: #4b4b46;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(84, 70, 219, .3);
    margin-top: -2px;
    margin-bottom: 25px;
    position: relative
}

.blog-grid .sidebar h3:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 2px;
    background: #5446db
}

.blog-grid .sidebar .links {
    margin-bottom: 40px
}

.blog-grid .sidebar .links ul {
    padding: 0;
    margin-top: -11px;
    margin-bottom: -14px;
    list-style: none
}

.blog-grid .sidebar .links ul li a {
    display: block;
    font-size: 16px;
    line-height: 36px;
    color: #4b4b46;
    position: relative
}

.blog-grid .sidebar .links ul li a:after {
    content: "";
    position: absolute;
    top: calc(50% - 5px);
    left: 0;
    width: 10px;
    height: 10px;
    background: -webkit-gradient(linear, left top, right top, from(#ff4d49), to(#EBC95F));
    background: linear-gradient(90deg, #ff4d49, #EBC95F);
    border-radius: 50%;
    opacity: 0;
    -webkit-transition: .4s;
    transition: .4s
}

.blog-grid .sidebar .links ul li a:hover,
.blog-grid .sidebar .links ul li a:focus {
    color: #ff792d;
    padding-left: 20px
}

.blog-grid .sidebar .links ul li a:hover:after,
.blog-grid .sidebar .links ul li a:focus:after {
    opacity: 1
}

.blog-grid .sidebar .recent-post {
    margin-bottom: 40px
}

.blog-grid .sidebar .recent-post ul {
    padding: 0;
    margin: 0;
    list-style: none
}

.blog-grid .sidebar .recent-post ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px
}

.blog-grid .sidebar .recent-post ul li:last-child {
    margin-bottom: 0
}

.blog-grid .sidebar .recent-post ul li .img {
    width: 105px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 15px
}

.blog-grid .sidebar .recent-post ul li .txt {
    width: calc(100% - 120px)
}

.blog-grid .sidebar .recent-post ul li .txt a {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: #4b4b46;
    margin-top: -6px;
    margin-bottom: 15px
}

.blog-grid .sidebar .recent-post ul li .txt a:hover,
.blog-grid .sidebar .recent-post ul li .txt a:focus {
    color: #ff792d
}

.blog-grid .sidebar .recent-post ul li .txt p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 14px;
    line-height: 100%;
    color: #4b4b46;
    margin-bottom: -2px
}

.blog-grid .sidebar .recent-post ul li .txt p span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.blog-grid .sidebar .recent-post ul li .txt p span i {
    color: #5446db;
    margin-right: 7px
}

.blog-grid .sidebar .tags {
    overflow: hidden
}

.blog-grid .sidebar .tags .all-tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -5px
}

.blog-grid .sidebar .tags .all-tag a {
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    border: 1px solid rgba(75, 75, 70, .15);
    border-radius: 5px;
    font-size: 14px;
    color: #4b4b46;
    margin: 5px
}

.blog-grid .sidebar .tags .all-tag a:hover,
.blog-grid .sidebar .tags .all-tag a:focus {
    background: #5446db;
    border-color: #5446db;
    color: #fff
}

.contact .heading h4 {
    font-size: 24px;
    line-height: 100%;
    font-weight: 600;
    color: #4b4b46;
    margin-top: -3px;
    margin-bottom: 36px
}

.contact .boxes .single-box {
    padding: 60px 40px;
    -webkit-box-shadow: 0 0 30px 0 rgba(51, 51, 51, .15);
    box-shadow: 0 0 30px 0 rgba(51, 51, 51, .15);
    border-radius: 10px
}

.contact .boxes .single-box .part-icon {
    width: 110px;
    height: 110px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #5446db;
    border-radius: 8px;
    margin: 0 auto 40px;
    -webkit-transition: .4s;
    transition: .4s
}

.contact .boxes .single-box .part-txt {
    text-align: center
}

.contact .boxes .single-box .part-txt h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 25px;
    line-height: 100%;
    font-weight: 600;
    color: #4b4b46;
    margin-top: -2px;
    margin-bottom: 30px
}

.contact .boxes .single-box .part-txt h3 i {
    font-size: 22px;
    margin-right: 10px
}

.contact .boxes .single-box .part-txt span {
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: #4b4b46;
    margin-bottom: -8px
}

.contact .boxes .single-box:hover .part-icon {
    background: #ff792d
}

.contact .contact-form .title {
    color: #4b4b46;
    margin-bottom: 50px
}

.contact .contact-form .title h2 {
    font-size: 40px;
    line-height: 100%;
    font-weight: 700;
    margin-top: -2px;
    margin-bottom: 32px
}

.contact .contact-form .title p {
    font-style: italic;
    font-size: 18px;
    line-height: 100%;
    margin-bottom: -3px
}

.contact .contact-form form input {
    width: 100%;
    height: 70px;
    padding: 0 30px;
    border: 1px solid rgba(51, 51, 51, .15);
    border-radius: 5px;
    margin-bottom: 30px;
    -webkit-transition: .4s;
    transition: .4s
}

.contact .contact-form form input:focus {
    border-color: #5446db
}

.contact .contact-form form textarea {
    width: 100%;
    height: 250px;
    padding: 15px 30px;
    border: 1px solid rgba(51, 51, 51, .15);
    border-radius: 5px;
    margin-bottom: 30px;
    -webkit-transition: .4s;
    transition: .4s
}

.contact .contact-form form textarea:focus {
    border-color: #5446db
}

.contact .contact-info .title {
    color: #4b4b46;
    margin-bottom: 50px
}

.contact .contact-info .title h2 {
    font-size: 40px;
    line-height: 100%;
    font-weight: 700;
    margin-top: -2px;
    margin-bottom: 32px
}

.contact .contact-info .title p {
    font-style: italic;
    font-size: 18px;
    line-height: 100%;
    margin-bottom: -3px
}

.contact .contact-info .single-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 30px 40px;
    -webkit-box-shadow: 0 0 20px 0 rgba(51, 51, 51, .1);
    box-shadow: 0 0 20px 0 rgba(51, 51, 51, .1);
    border-radius: 10px;
    margin-bottom: 30px
}

.contact .contact-info .single-box:last-child {
    margin-bottom: 0
}

.contact .contact-info .single-box .icon {
    text-align: center;
    width: 35px;
    height: 35px;
    line-height: 40px;
    background: #5446db;
    color: #fff;
    border-radius: 50%;
    margin-right: 20px;
    font-size: 14px;
    -webkit-transition: .4s;
    transition: .4s
}

.contact .contact-info .single-box .txt {
    width: 255px
}

.contact .contact-info .single-box .txt h3 {
    font-size: 20px;
    line-height: 100%;
    font-weight: 600;
    color: #4b4b46;
    margin-top: -2px;
    margin-bottom: 11px;
    -webkit-transition: .4s;
    transition: .4s
}

.contact .contact-info .single-box .txt p {
    font-size: 16px;
    line-height: 26px;
    color: #4b4b46;
    margin-bottom: -8px
}

.contact .contact-info .single-box .txt p span {
    display: block
}

.contact .contact-info .single-box:hover .icon {
    background: #ff792d
}

.contact .contact-info .single-box:hover .txt h3 {
    color: #ff792d
}

.map iframe {
    width: 100%;
    margin-bottom: -8px
}

.error .part-txt {
    color: #4b4b46
}

.error .part-txt h2 {
    font-size: 55px;
    line-height: 100%;
    font-weight: 700;
    margin-top: -6px;
    margin-bottom: 30px
}

.error .part-txt h3 {
    font-size: 25px;
    line-height: 100%;
    font-weight: 600;
    margin-bottom: 30px
}

.error .part-txt p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 32px
}

.error .part-txt .def-btn span {
    font-size: 25px;
    margin-right: 10px
}

@media screen and (min-width:1200px) and (max-width:1699px) {
    .heading {
        margin-bottom: 60px
    }

    .heading h2 {
        font-size: 40px;
        line-height: 50px;
        margin-top: -7px;
        margin-bottom: 22px
    }

    .header .middle-header .logo {
        width: 150px
    }

    .header .middle-header .mid-right .info li {
        margin-right: 30px
    }

    .header .middle-header .mid-right .info li .icon {
        width: 45px;
        height: 45px;
        line-height: 49px
    }

    .header .middle-header .mid-right .info li p span {
        font-size: 16px
    }

    .header .middle-header .mid-right .language .select-lang .flagstrap-icon.flagstrap-us,
    .header .middle-header .mid-right .language .select-lang .flagstrap-icon.flagstrap-sp,
    .header .middle-header .mid-right .language .select-lang .flagstrap-icon.flagstrap-bd {
        width: 45px;
        height: 28px;
        border-width: 2px
    }

    .header .middle-header .mid-right .language .select-lang .dropdown-toggle {
        font-size: 16px
    }

    .header .bottom-header .navbar .navbar-nav .nav-item .nav-link {
        font-size: 16px
    }

    .banner .banner-txt {
        padding: 150px 0
    }

    .banner .banner-txt h4 {
        margin-bottom: 17px
    }

    .banner .banner-txt h1 {
        font-size: 45px;
        line-height: 55px;
        margin-bottom: 32px
    }

    .banner .banner-txt p {
        font-size: 16px;
        line-height: 26px
    }

    .banner .part-img .vector-1 {
        width: 150px;
        left: 0
    }

    .banner .part-img .vector-2 {
        width: 100px;
        top: -30px
    }

    .feature .bg {
        margin: -80px -15px 0
    }

    .feature .bg .single-box {
        padding: 30px 20px
    }

    .feature .bg .single-box .part-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 30px
    }

    .feature .bg .single-box .part-icon span {
        font-size: 35px;
        line-height: 84px
    }

    .feature .bg .single-box .part-txt h3 {
        font-size: 16px;
        margin-top: -1px;
        margin-bottom: 21px
    }

    .feature .bg .single-box .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: -7px
    }

    .about .part-txt {
        margin-right: -100px
    }

    .about .part-txt h2 {
        font-size: 40px;
        line-height: 50px;
        margin-top: -8px;
        margin-bottom: 23px
    }

    .about .part-txt .boxes {
        padding-top: 3px;
        margin-bottom: 40px
    }

    .about .part-txt .boxes ul li {
        font-size: 12px;
        line-height: 29px
    }

    .about .part-txt .boxes ul li span {
        font-size: 10px;
        margin-right: 5px
    }

    .about .part-img .counter {
        right: 15%;
        width: 200px;
        height: 200px
    }

    .about .part-img .counter h2 {
        font-size: 40px
    }

    .about .part-img .counter p {
        font-size: 16px
    }

    .cta .part-txt h2 {
        font-size: 40px;
        line-height: 50px;
        margin-top: -8px;
        margin-bottom: 23px
    }

    .cta .part-txt p {
        margin-bottom: 32px
    }

    .service .single-box {
        padding: 25px
    }

    .service .single-box .part-icon {
        margin-bottom: 27px
    }

    .service .single-box .part-txt a {
        font-size: 18px;
        margin-bottom: 21px
    }

    .pricing .title {
        text-align: center;
        margin-bottom: 60px
    }

    .pricing .title h2 {
        font-size: 40px;
        line-height: 50px;
        margin-top: -7px;
        margin-bottom: 22px
    }

    .pricing .title p {
        margin-bottom: 32px
    }

    .pricing .title .controls nav .nav {
        margin: 0 auto
    }

    .pricing .title .controls nav .nav .nav-item {
        height: 50px;
        line-height: 50px;
        padding: 0 30px
    }

    .pricing .tab-pane .single-box .top .price {
        margin: -30px 20px 0
    }

    .pricing .tab-pane .single-box .top .price h4 {
        font-size: 40px
    }

    .pricing .tab-pane .single-box .middle {
        padding: 30px 20px 0
    }

    .pricing .tab-pane .single-box .middle ul li {
        font-size: 14px
    }

    .pricing .tab-pane .single-box .bottom {
        padding: 0 20px 30px
    }

    .testimonial .comment-slider .single-comment {
        padding: 43px 15px
    }

    .testimonial .comment-slider .single-comment.slick-current:before {
        width: 300px
    }

    .testimonial .comment-slider .single-comment .part-txt p {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 31px
    }

    .blog .blog-slider .slick-list .single-blog .part-txt {
        left: 30px;
        bottom: 30px;
        right: 30px
    }

    .blog .blog-static .single-blog .part-txt {
        left: 15px;
        bottom: 15px;
        right: 15px
    }

    .blog .blog-static .single-blog .part-txt .blog-info {
        padding-bottom: 15px;
        margin-bottom: 9px
    }

    .blog .blog-static .single-blog .part-txt .blog-info li {
        font-size: 12px
    }

    .blog .blog-static .single-blog .part-txt .blog-info li:first-child {
        padding: 0 10px
    }

    .blog .blog-static .single-blog .part-txt .blog-info li span {
        padding: 0 10px
    }

    .blog .blog-static .single-blog .part-txt a {
        font-size: 18px;
        line-height: 28px
    }

    .partner .all-brand {
        -webkit-column-gap: 40px;
        -moz-column-gap: 40px;
        column-gap: 40px
    }

    .footer .main-footer .instagram-post .all-post {
        margin: -5px
    }

    .footer .main-footer .instagram-post .all-post .single-post {
        width: calc(100%/3 - 10px);
        margin: 5px
    }

    .banner.banner-2 .banner-txt h4 {
        letter-spacing: 3px
    }

    .banner.banner-2 .part-img .vector-3 {
        top: 115px;
        left: 45px;
        width: 80px
    }

    .cta-2 .bg .title {
        margin-bottom: 50px
    }

    .cta-2 .bg .title p {
        font-size: 20px;
        margin-bottom: 19px
    }

    .cta-2 .bg .title h2 {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: -11px
    }

    .cta-2 .bg .form {
        margin: 0 -100px
    }

    .cta-2 .bg .form input {
        margin: 20px 0
    }

    .cta-2 .bg .form button {
        height: 75px;
        line-height: 75px
    }

    .about.about-2 .part-txt {
        margin-right: 0
    }

    .about.about-2 .part-img .vector-1 {
        width: 70px
    }

    .about.about-2 .part-img .vector-2 {
        bottom: 8%;
        width: 60px;
        height: 60px
    }

    .about.about-2 .part-img .vector-3 {
        bottom: -4.5%;
        left: 15%;
        width: 95px;
        height: 95px
    }

    .fun-fact .single-box {
        padding-bottom: 40px
    }

    .fun-fact .single-box .part-icon {
        width: 80px;
        padding: 0 15px 15px;
        margin-bottom: 30px
    }

    .fun-fact .single-box .part-txt h2 {
        font-size: 35px;
        margin-top: -6px;
        margin-bottom: 19px
    }

    .fun-fact .single-box .part-txt p {
        font-size: 14px;
        margin-bottom: -2px
    }

    .fun-fact .single-box:after {
        top: 40px;
        left: 10px;
        bottom: 10px;
        right: 10px
    }

    .success .part-txt {
        padding: 0
    }

    .success .part-txt h2 {
        font-size: 40px;
        line-height: 50px;
        margin-top: -8px;
        margin-bottom: 23px
    }

    .success .part-txt .progress-area {
        padding-top: 12px;
        margin: -10px
    }

    .success .part-txt .progress-area .single-skill {
        padding: 10px
    }

    .portfolio .portfolio-slider .slick-list {
        margin: 0 -9px
    }

    .portfolio .portfolio-slider .slick-list .single-box {
        margin: 0 10px
    }

    .portfolio .portfolio-slider .slick-list .single-box .part-txt h3 {
        font-size: 20px
    }

    .team {
        margin-bottom: -30px
    }

    .team .col-xl-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .team .single-box {
        min-height: 320px;
        margin-bottom: 30px
    }

    .team .single-box .part-txt {
        left: 15px;
        bottom: 15px;
        right: 15px;
        padding: 24px 0
    }

    .team .single-box .part-txt a {
        font-size: 20px
    }

    .team .single-box .part-txt p {
        font-size: 14px
    }

    .team .single-box .social ul li {
        padding: 5px 0
    }

    .app-download .part-txt h2 {
        font-size: 40px;
        line-height: 50px;
        margin-top: -8px;
        margin-bottom: 23px
    }

    .app-download .part-txt .btn-box {
        padding-top: 17px
    }

    .blog-2 .single-blog .part-txt {
        padding: 20px;
        padding-left: 40px
    }

    .blog-2 .single-blog .part-txt:before {
        left: 19px
    }

    .blog-2 .single-blog .part-txt:after {
        left: 12px;
        width: 16px;
        height: 16px
    }

    .blog-2 .single-blog .part-txt a {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 12px
    }

    .blog-2 .single-blog .part-txt ul {
        padding-top: 20px
    }

    .def-breadcrumb .part-txt {
        padding: 100px 0
    }

    .def-breadcrumb .part-txt h1 {
        font-size: 55px;
        margin-top: -8px;
        margin-bottom: 30px
    }

    .fun-fact-2 .single-box .part-txt h2 {
        font-size: 35px;
        margin-top: -1px;
        margin-bottom: 14px
    }

    .fun-fact-2 .single-box .part-txt p {
        font-size: 16px
    }

    .timeline .single-box .title {
        height: 60px
    }

    .timeline .single-box .title h3 {
        height: 60px;
        line-height: 60px;
        font-size: 30px;
        font-weight: 600
    }

    .timeline .line-shape {
        -webkit-transform: translateY(28px);
        transform: translateY(28px)
    }

    .choosing-reason .part-txt h2 {
        font-size: 40px;
        line-height: 50px;
        margin-top: -7px;
        margin-bottom: 23px
    }

    .choosing-reason .part-txt ul {
        padding-top: 2px
    }

    .service-txt .part-txt h2 {
        font-size: 40px;
        line-height: 50px;
        margin-top: -7px;
        margin-bottom: 23px
    }

    .pricing.pricing-inner {
        background-position-x: left
    }

    .free-analysis .part-txt h2 {
        font-size: 40px;
        line-height: 50px;
        margin-top: -7px;
        margin-bottom: 23px
    }

    .free-analysis .part-txt .part-form input {
        height: 60px;
        padding: 0 20px
    }

    .service-details .main-content .main-img {
        margin-bottom: 40px
    }

    .service-details .main-content .part-txt h2 {
        font-size: 40px;
        line-height: 50px;
        margin-top: -7px;
        margin-bottom: 23px
    }

    .service-details .main-content .part-txt ul li {
        font-size: 14px
    }

    .service-details .main-content .part-txt p.marked-txt {
        padding: 24px 30px 22px
    }

    .service-details .main-content .part-tab nav .nav .nav-link {
        height: 80px;
        line-height: 80px;
        font-size: 18px
    }

    .service-details .sidebar .nav {
        padding: 10px
    }

    .service-details .sidebar .nav .nav-link {
        height: 60px;
        font-size: 16px;
        margin-bottom: 10px
    }

    .service-details .sidebar .nav .nav-link span {
        width: 40px;
        height: 40px;
        line-height: 46px;
        font-size: 20px;
        margin-right: 10px
    }

    .team-details .biography h2 {
        font-size: 40px;
        margin-top: -3px;
        margin-bottom: 34px
    }

    .team-details .biography ul li {
        width: calc(100%/2 - 5px);
        line-height: 24px;
        padding: 0 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .team-details .biography ul li span {
        display: block
    }

    .pricing-2 .single-box .top .price {
        width: 165px;
        height: 165px
    }

    .pricing-2 .single-box .top .price h4 {
        font-size: 35px;
        line-height: 40px
    }

    .pricing-2 .single-box .top .price h4 span {
        font-size: 20px
    }

    .pricing-3 .single-box {
        padding: 30px 20px
    }

    .cart .table-responsive {
        margin-bottom: 40px
    }

    .cart .table {
        min-width: 100%
    }

    .cart .table thead tr th {
        font-size: 16px;
        padding: 20px
    }

    .cart .table tbody tr td {
        padding: 20px
    }

    .cart .table tbody tr td:first-child {
        width: 300px
    }

    .cart .table tbody tr td .product .part-img {
        width: 70px;
        margin-right: 15px
    }

    .cart .table tbody tr td .product .part-txt {
        width: calc(100% - 85px)
    }

    .cart .table tbody tr td .product .part-txt p {
        font-size: 14px;
        line-height: 24px
    }

    .cart .table tbody tr td .price p {
        font-size: 14px
    }

    .cart .table tbody tr td .product-quantity .product-count .quantity input {
        width: 65px;
        font-size: 14px;
        margin: 0
    }

    .cart .cart-totals .coupon .coupon-title {
        padding: 20px
    }

    .cart .cart-totals .coupon .coupon-title h3 {
        font-size: 16px
    }

    .cart .cart-totals .coupon .part-txt {
        padding: 20px
    }

    .cart .cart-totals .coupon .part-txt p {
        font-size: 12px;
        margin-bottom: 18px
    }

    .cart .cart-totals .coupon .part-txt form input {
        height: 50px;
        padding: 0 20px;
        font-size: 14px;
        margin-bottom: 20px
    }

    .cart .cart-totals .coupon .part-txt form button {
        font-size: 14px;
        padding: 0 20px
    }

    .cart .cart-totals .proceed-to-checkout .checkout-title {
        padding: 20px
    }

    .cart .cart-totals .proceed-to-checkout .checkout-title h3 {
        font-size: 16px
    }

    .cart .cart-totals .proceed-to-checkout .part-txt {
        padding: 20px 20px 13px
    }

    .cart .cart-totals .proceed-to-checkout .part-txt ul {
        margin-top: -1px;
        padding-bottom: 0
    }

    .cart .cart-totals .proceed-to-checkout .part-txt ul li {
        font-size: 16px;
        margin-bottom: 16px
    }

    .cart .cart-totals .proceed-to-checkout .part-txt button {
        font-size: 14px
    }

    .cart .cart-totals .proceed-to-checkout .bottom-box {
        padding: 20px
    }

    .cart .cart-totals .proceed-to-checkout .bottom-box ul {
        margin-top: -1px;
        padding-bottom: 2px
    }

    .cart .cart-totals .proceed-to-checkout .bottom-box ul li {
        font-size: 16px
    }

    .cart .cart-totals .proceed-to-checkout .bottom-box .def-btn {
        font-size: 14px;
        padding: 0 20px
    }

    .checkout form .payment-method .options .form-check .note {
        display: none
    }

    .faq .part-txt .top-txt h2 {
        font-size: 40px;
        margin-top: -4px;
        margin-bottom: 28px
    }

    .error .part-txt h2 {
        font-size: 40px;
        margin-top: -3px;
        margin-bottom: 32px
    }

    .portfolio-page .single-box {
        min-height: 250px
    }

    .portfolio-page .single-box .part-txt {
        padding: 25px
    }

    .portfolio-page .single-box .part-txt h3 {
        font-size: 25px;
        margin-bottom: 15px
    }

    .portfolio-page .single-box .part-txt p {
        font-size: 14px;
        line-height: 24px
    }

    .portfolio-single .project-information h2 {
        font-size: 35px;
        margin-bottom: 35px
    }

    .portfolio-single .project-information ul li {
        font-size: 16px;
        line-height: 50px;
        padding: 0 25px
    }

    .portfolio-single .project-information ul li span {
        width: 30%;
        font-size: 16px
    }

    .portfolio-single .main-txt h3 {
        font-size: 35px;
        margin-bottom: 29px
    }

    .portfolio-single .main-txt p {
        margin-bottom: 21px
    }

    .portfolio-single .main-txt ul {
        padding-top: 7px;
        margin-top: 0;
        margin-bottom: -15px
    }

    .portfolio-single .boxes .part-img {
        padding: 20px
    }

    .shop .sidebar .search-box {
        border-radius: 5px
    }

    .shop .sidebar .search-box form input {
        width: calc(100% - 45px);
        height: 45px;
        font-size: 14px
    }

    .shop .sidebar .search-box form button {
        width: 45px;
        height: 45px;
        line-height: 55px;
        font-size: 25px
    }

    .shop .sidebar h3 {
        font-size: 20px;
        padding-bottom: 12px
    }

    .shop .sidebar .category ul {
        margin-top: -12px
    }

    .shop .sidebar .category ul li a {
        font-size: 14px;
        line-height: 35px
    }

    .shop .sidebar .filter-by-price .range .slider-range {
        margin-bottom: 12px
    }

    .shop .sidebar .filter-by-price .range .price-txt span,
    .shop .sidebar .filter-by-price .range .price-txt input {
        font-size: 14px
    }

    .shop .sidebar .feat-products ul li .txt a {
        font-size: 14px
    }

    .shop .sidebar .feat-products ul li .txt p {
        font-size: 12px
    }

    .shop .sidebar .feat-products ul li .txt .star {
        font-size: 8px
    }

    .shop .sidebar .filter-by-color .form-group {
        margin: -2px 0
    }

    .shop .sidebar .filter-by-color .form-group .form-check {
        padding-left: 30px
    }

    .shop .sidebar .filter-by-color .form-group .form-check input {
        margin-left: -30px
    }

    .shop .sidebar .filter-by-color .form-group .form-check .circle {
        width: 15px;
        height: 15px;
        line-height: 16px;
        font-size: 8px
    }

    .shop .sidebar .filter-by-color .form-group .form-check label {
        font-size: 14px
    }

    .shop .main-content .single-box {
        padding: 20px
    }

    .shop .main-content .single-box .part-txt {
        padding-bottom: 10px
    }

    .shop-details .item-section .part-img .product-slider .owl-item {
        padding: 20px
    }

    .shop-details .item-section .part-img .owl-thumbs {
        -webkit-column-gap: 15px;
        -moz-column-gap: 15px;
        column-gap: 15px
    }

    .shop-details .item-section .part-txt h3 {
        font-size: 30px;
        line-height: 40px;
        margin-top: -7px;
        margin-bottom: 30px
    }

    .shop-details .item-section .part-txt .info .price {
        font-size: 16px
    }

    .shop-details .item-section .part-txt .info h5 {
        font-size: 16px
    }

    .shop-details .item-section .part-txt .item-rating {
        margin-bottom: 31px
    }

    .shop-details .item-section .part-txt p {
        margin-bottom: 20px
    }

    .shop-details .dscr-section .box .tab-pane .product-data ul li {
        padding: 0 20px
    }

    .shop-details .dscr-section .box .tab-pane .product-data ul li span {
        min-width: 190px
    }

    .shop-details .dscr-section .box .tab-pane .reviews .single-box .part-img {
        width: 100px
    }

    .shop-details .dscr-section .box .tab-pane .reviews .single-box .part-txt {
        width: calc(100% - 130px)
    }

    .blog-grid .sidebar {
        max-width: 320px;
        margin: 0 auto 60px
    }

    .blog-grid .sidebar .search-box {
        border-radius: 5px
    }

    .blog-grid .sidebar .search-box form input {
        width: calc(100% - 45px);
        height: 45px;
        font-size: 14px
    }

    .blog-grid .sidebar .search-box form button {
        width: 45px;
        height: 45px;
        line-height: 55px;
        font-size: 25px
    }

    .blog-grid .sidebar h3 {
        font-size: 20px;
        padding-bottom: 12px
    }

    .blog-grid .sidebar .links ul li a {
        font-size: 14px;
        line-height: 31px
    }

    .blog-grid .sidebar .links ul {
        margin-top: -10px
    }

    .blog-grid .sidebar .recent-post ul li .img {
        width: 70px;
        border-radius: 5px;
        margin-right: 10px
    }

    .blog-grid .sidebar .recent-post ul li .txt {
        width: calc(100% - 80px)
    }

    .blog-grid .sidebar .recent-post ul li .txt a {
        font-size: 14px;
        line-height: 24px;
        margin-top: -7px
    }

    .blog-grid .sidebar .recent-post ul li .txt p {
        font-size: 12px
    }

    .blog-grid .sidebar .tags .all-tag a {
        height: 40px;
        line-height: 40px;
        font-size: 12px;
        padding: 0 10px
    }

    .blog-grid .main-content .all-blogs {
        grid-template-columns: repeat(auto-fit, minmax(calc(100%/2 - 30px), 1fr))
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-1 {
        -ms-grid-column-span: 2;
        grid-column: span 2
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-2 {
        -ms-grid-column-span: 2;
        grid-column: span 2;
        -ms-grid-row-span: 1;
        grid-row: span 1
    }

    .blog-grid .main-content .all-blogs .wrap .single-box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-2 .single-box .part-img {
        width: calc(50% - 15px)
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-2 .single-box .part-txt {
        width: calc(50% - 15px);
        margin: 0 15px;
        height: auto
    }

    .blog-grid .main-content .all-blogs .wrap .part-img img {
        width: 100%
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt {
        padding: 30px
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt h3 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 21px
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt .blog-info {
        padding-bottom: 7px;
        margin-bottom: 24px
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt .blog-info li {
        font-size: 12px
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt .blog-info li span {
        font-size: 10px;
        margin-right: 2px
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 23px
    }

    .blog-grid .main-content .my-pagination {
        padding-top: 40px
    }

    .blog-grid .main-content .my-pagination a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 14px
    }

    .blog-grid .main-content .my-pagination a:last-child {
        margin-right: 0
    }

    .blog-grid .blog-details .main-img {
        margin-bottom: 40px
    }

    .blog-grid .blog-details .blog-info ul {
        margin-top: -2px;
        padding-bottom: 38px
    }

    .blog-grid .blog-details .blog-info ul li {
        font-size: 14px
    }

    .blog-grid .blog-details .blog-info ul li span i {
        font-size: 12px
    }

    .blog-grid .blog-details .part-txt h2 {
        font-size: 25px;
        margin-bottom: 20px
    }

    .blog-grid .blog-details .part-txt .quoted {
        padding: 40px 30px
    }

    .blog-grid .blog-details .part-txt .quoted p .icon {
        width: 50px;
        height: 50px;
        line-height: 45px;
        border-width: 3px;
        font-size: 20px
    }

    .blog-grid .blog-details .part-txt ul li {
        width: 100%
    }

    .blog-grid .blog-details .part-txt .other-option {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding-top: 7px;
        padding-bottom: 40px
    }

    .blog-grid .blog-details .part-txt .other-option .tag {
        margin-bottom: 13px
    }

    .blog-grid .blog-details .part-txt .other-option .tag p {
        font-size: 20px
    }

    .blog-grid .blog-details .part-txt .other-option .share p {
        font-size: 20px
    }

    .blog-grid .blog-details .blog-nav .single-nav.prev-blog {
        padding-right: 25px
    }

    .blog-grid .blog-details .blog-nav .single-nav.next-blog {
        padding-left: 25px
    }

    .blog-grid .blog-details .blog-nav .single-nav .img {
        width: 80px;
        margin-right: 15px
    }

    .blog-grid .blog-details .blog-nav .single-nav.next-blog .img {
        margin-left: 15px
    }

    .blog-grid .blog-details .blog-nav .single-nav .txt {
        width: calc(100% - 95px)
    }

    .blog-grid .blog-details .blog-nav .single-nav .txt a {
        font-size: 15px;
        line-height: 25px
    }

    .blog-grid .blog-details .blog-nav .single-nav .txt a span {
        font-size: 14px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment .part-img {
        width: 80px;
        height: 80px;
        margin-right: 20px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment .part-txt {
        width: calc(100% - 100px)
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment.replied {
        margin-left: 50px
    }

    .blog-grid .blog-details .blog-comments .post-a-comment form input {
        height: 55px
    }

    .blog-grid .blog-details .blog-comments .post-a-comment form textarea {
        height: 150px
    }

    .contact .heading h4 {
        font-size: 18px;
        margin-top: -2px;
        margin-bottom: 17px
    }

    .contact .boxes .single-box {
        padding: 30px
    }

    .contact .boxes .single-box .part-icon {
        width: 80px;
        height: 80px;
        padding: 0 10px;
        margin-bottom: 30px
    }

    .contact .boxes .single-box .part-txt h3 {
        font-size: 20px;
        margin-bottom: 21px
    }

    .contact .boxes .single-box .part-txt h3 i {
        font-size: 16px
    }

    .contact .contact-form {
        padding-bottom: 60px
    }

    .contact .contact-form .title {
        margin-bottom: 30px
    }

    .contact .contact-form .title h2 {
        font-size: 25px;
        margin-top: -1px;
        margin-bottom: 22px
    }

    .contact .contact-form .title p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: -5px
    }

    .contact .contact-form form input {
        height: 45px;
        padding: 0 20px;
        font-size: 14px;
        margin-bottom: 20px
    }

    .contact .contact-form form textarea {
        height: 150px;
        padding: 10px 20px;
        font-size: 14px;
        margin-bottom: 20px
    }

    .contact .contact-info .title {
        margin-bottom: 30px
    }

    .contact .contact-info .title h2 {
        font-size: 25px;
        margin-top: -1px;
        margin-bottom: 22px
    }

    .contact .contact-info .title p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: -5px
    }

    .contact .contact-info .single-box {
        width: 290px;
        margin: 0 auto 30px;
        padding: 25px
    }

    .contact .contact-info .single-box .icon {
        width: 30px;
        height: 30px;
        line-height: 35px;
        font-size: 12px
    }

    .contact .contact-info .single-box .txt {
        width: calc(100% - 50px)
    }

    .contact .contact-info .single-box .txt h3 {
        font-size: 16px;
        margin-top: 0
    }

    .contact .contact-info .single-box .txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: -7px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .heading {
        margin-bottom: 60px
    }

    .heading h2 {
        font-size: 40px;
        line-height: 50px;
        margin-top: -7px;
        margin-bottom: 22px
    }

    .header .middle-header .logo {
        width: 150px
    }

    .header .middle-header .mid-right .info li {
        margin-right: 30px
    }

    .header .middle-header .mid-right .info li .icon {
        width: 45px;
        height: 45px;
        line-height: 49px
    }

    .header .middle-header .mid-right .info li p span {
        font-size: 16px
    }

    .header .middle-header .mid-right .language .select-lang .flagstrap-icon.flagstrap-us,
    .header .middle-header .mid-right .language .select-lang .flagstrap-icon.flagstrap-sp,
    .header .middle-header .mid-right .language .select-lang .flagstrap-icon.flagstrap-bd {
        width: 45px;
        height: 28px;
        border-width: 2px
    }

    .header .middle-header .mid-right .language .select-lang .dropdown-toggle {
        font-size: 16px
    }

    .header .bottom-header .navbar .navbar-nav .nav-item .nav-link {
        font-size: 16px
    }

    .banner .banner-txt {
        padding: 150px 0
    }

    .banner .banner-txt h4 {
        margin-bottom: 17px
    }

    .banner .banner-txt h1 {
        font-size: 45px;
        line-height: 55px;
        margin-bottom: 32px
    }

    .banner .banner-txt p {
        font-size: 16px;
        line-height: 26px
    }

    .banner .part-img .vector-1 {
        width: 150px;
        left: 0
    }

    .banner .part-img .vector-2 {
        width: 100px;
        top: -30px
    }

    .feature .bg {
        margin: -80px -15px 0
    }

    .feature .bg .single-box {
        padding: 30px 20px
    }

    .feature .bg .single-box .part-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 30px
    }

    .feature .bg .single-box .part-icon span {
        font-size: 35px;
        line-height: 84px
    }

    .feature .bg .single-box .part-txt h3 {
        font-size: 16px;
        margin-top: -1px;
        margin-bottom: 21px
    }

    .feature .bg .single-box .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: -7px
    }

    .about .part-txt h2 {
        font-size: 40px;
        line-height: 50px;
        margin-top: -8px;
        margin-bottom: 23px
    }

    .about .part-txt .boxes {
        padding-top: 3px;
        margin-bottom: 40px
    }

    .about .part-txt .boxes ul li {
        font-size: 12px;
        line-height: 29px
    }

    .about .part-txt .boxes ul li span {
        font-size: 10px;
        margin-right: 5px
    }

    .about .part-img .counter {
        right: 15%;
        width: 200px;
        height: 200px
    }

    .about .part-img .counter h2 {
        font-size: 40px
    }

    .about .part-img .counter p {
        font-size: 16px
    }

    .cta .part-txt h2 {
        font-size: 40px;
        line-height: 50px;
        margin-top: -8px;
        margin-bottom: 23px
    }

    .cta .part-txt p {
        margin-bottom: 32px
    }

    .service .single-box {
        padding: 30px
    }

    .service .single-box .part-icon {
        margin-bottom: 28px
    }

    .service .single-box .part-txt a {
        font-size: 20px;
        margin-bottom: 21px
    }

    .pricing .title {
        text-align: center;
        margin-bottom: 60px
    }

    .pricing .title h2 {
        font-size: 40px;
        line-height: 50px;
        margin-top: -7px;
        margin-bottom: 22px
    }

    .pricing .title p {
        margin-bottom: 32px
    }

    .pricing .title .controls nav .nav {
        margin: 0 auto
    }

    .pricing .title .controls nav .nav .nav-item {
        height: 50px;
        line-height: 50px;
        padding: 0 30px
    }

    .pricing .tab-pane .single-box .top .price {
        margin: -30px 30px 0
    }

    .pricing .tab-pane .single-box .top .price h4 {
        font-size: 40px
    }

    .blog .blog-slider {
        margin-bottom: 30px
    }

    .partner .all-brand {
        -webkit-column-gap: 40px;
        -moz-column-gap: 40px;
        column-gap: 40px
    }

    .footer .main-footer .instagram-post .all-post {
        margin: -5px
    }

    .footer .main-footer .instagram-post .all-post .single-post {
        width: calc(100%/3 - 10px);
        margin: 5px
    }

    .header.header-2 .bottom-header .navbar .navbar-nav {
        margin: auto
    }

    .header.header-2 .bottom-header .bottom-right .nav-form {
        padding: 0;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-left: 0;
        border-radius: 0 5px 5px 0;
        position: relative;
        overflow: visible
    }

    .header.header-2 .bottom-header .bottom-right .nav-form input {
        position: absolute;
        top: -1px;
        right: calc(100% - 1px);
        width: 4px;
        height: 52px;
        background: #ffe2e2;
        border: 1px solid rgba(51, 51, 51, .1);
        border-right: transparent;
        border-radius: 5px 0 0 5px;
        padding: 0
    }

    .header.header-2 .bottom-header .bottom-right .nav-form.active input {
        width: 300px;
        padding: 0 15px
    }

    .header.header-2 .bottom-header .bottom-right .nav-form button {
        width: auto;
        height: 50px;
        line-height: 56px
    }

    .banner.banner-2 .banner-txt h4 {
        letter-spacing: 3px
    }

    .banner.banner-2 .part-img .vector-3 {
        top: 90px;
        left: 30px;
        width: 80px
    }

    .cta-2 .bg .title {
        margin-bottom: 50px
    }

    .cta-2 .bg .title p {
        font-size: 20px;
        margin-bottom: 19px
    }

    .cta-2 .bg .title h2 {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: -11px
    }

    .cta-2 .bg .form input {
        margin: 20px 0
    }

    .cta-2 .bg .form button {
        height: 75px;
        line-height: 75px
    }

    .about.about-2 .part-img .vector-1 {
        width: 70px
    }

    .about.about-2 .part-img .vector-2 {
        bottom: 8%;
        width: 60px;
        height: 60px
    }

    .about.about-2 .part-img .vector-3 {
        bottom: -4.5%;
        left: 15%;
        width: 95px;
        height: 95px
    }

    .fun-fact .single-box {
        padding-bottom: 40px
    }

    .fun-fact .single-box .part-icon {
        width: 80px;
        padding: 0 15px 15px;
        margin-bottom: 30px
    }

    .fun-fact .single-box .part-txt h2 {
        font-size: 35px;
        margin-top: -6px;
        margin-bottom: 19px
    }

    .fun-fact .single-box .part-txt p {
        font-size: 14px;
        margin-bottom: -2px
    }

    .fun-fact .single-box:after {
        top: 40px;
        left: 10px;
        bottom: 10px;
        right: 10px
    }

    .success .part-txt {
        padding: 0
    }

    .success .part-txt h2 {
        font-size: 40px;
        line-height: 50px;
        margin-top: -8px;
        margin-bottom: 23px
    }

    .success .part-txt .progress-area {
        padding-top: 12px;
        margin: -10px
    }

    .success .part-txt .progress-area .single-skill {
        padding: 10px
    }

    .portfolio .portfolio-slider .slick-list {
        margin: 0 -9px
    }

    .portfolio .portfolio-slider .slick-list .single-box {
        margin: 0 10px
    }

    .portfolio .portfolio-slider .slick-list .single-box .part-txt h3 {
        font-size: 20px
    }

    .team {
        margin-bottom: -30px
    }

    .team .single-box {
        min-height: 320px;
        margin-bottom: 30px
    }

    .team .single-box .part-txt {
        left: 10px;
        bottom: 10px;
        right: 10px;
        padding: 19px 0
    }

    .team .single-box .part-txt a {
        font-size: 20px
    }

    .team .single-box .part-txt p {
        font-size: 14px
    }

    .team .single-box .social ul li {
        padding: 5px 0
    }

    .app-download .part-txt h2 {
        font-size: 40px;
        line-height: 50px;
        margin-top: -8px;
        margin-bottom: 23px
    }

    .app-download .part-txt .btn-box {
        padding-top: 17px
    }

    .blog-2 .single-blog .part-txt {
        padding: 20px;
        padding-left: 40px
    }

    .blog-2 .single-blog .part-txt:before {
        left: 19px
    }

    .blog-2 .single-blog .part-txt:after {
        left: 12px;
        width: 16px;
        height: 16px
    }

    .blog-2 .single-blog .part-txt a {
        font-size: 20px;
        line-height: 30px;
        margin-top: -7px;
        margin-bottom: 12px
    }

    .blog-2 .single-blog .part-txt ul {
        padding-top: 20px
    }

    .def-breadcrumb .part-txt {
        padding: 100px 0
    }

    .def-breadcrumb .part-txt h1 {
        font-size: 55px;
        margin-top: -8px;
        margin-bottom: 30px
    }

    .fun-fact-2 .single-box .part-txt h2 {
        font-size: 35px;
        margin-top: -1px;
        margin-bottom: 14px
    }

    .fun-fact-2 .single-box .part-txt p {
        font-size: 16px
    }

    .timeline .single-box .title {
        height: 60px
    }

    .timeline .single-box .title h3 {
        height: 60px;
        line-height: 60px;
        font-size: 30px;
        font-weight: 600
    }

    .timeline .line-shape {
        -webkit-transform: translateY(28px);
        transform: translateY(28px)
    }

    .choosing-reason .part-txt h2 {
        font-size: 40px;
        line-height: 50px;
        margin-top: -7px;
        margin-bottom: 23px
    }

    .choosing-reason .part-txt ul {
        padding-top: 2px
    }

    .service-txt .part-txt h2 {
        font-size: 40px;
        line-height: 50px;
        margin-top: -7px;
        margin-bottom: 23px
    }

    .pricing.pricing-inner {
        background-position-x: left
    }

    .free-analysis .part-txt h2 {
        font-size: 40px;
        line-height: 50px;
        margin-top: -7px;
        margin-bottom: 23px
    }

    .free-analysis .part-txt .part-form input {
        height: 60px;
        padding: 0 20px
    }

    .service-details .main-content .main-img {
        margin-bottom: 40px
    }

    .service-details .main-content .part-txt h2 {
        font-size: 40px;
        line-height: 50px;
        margin-top: -7px;
        margin-bottom: 23px
    }

    .service-details .main-content .part-txt ul li {
        font-size: 14px
    }

    .service-details .main-content .part-txt p.marked-txt {
        padding: 24px 30px 22px
    }

    .service-details .main-content .part-tab nav .nav .nav-link {
        height: 80px;
        line-height: 80px;
        font-size: 18px
    }

    .service-details .sidebar .nav {
        padding: 10px
    }

    .service-details .sidebar .nav .nav-link {
        height: 60px;
        font-size: 16px;
        margin-bottom: 10px
    }

    .service-details .sidebar .nav .nav-link span {
        width: 40px;
        height: 40px;
        line-height: 46px;
        font-size: 20px;
        margin-right: 10px
    }

    .team-details .biography h2 {
        font-size: 40px;
        margin-top: -3px;
        margin-bottom: 34px
    }

    .team-details .biography ul li {
        width: calc(100%/2 - 5px);
        line-height: 24px;
        padding: 0 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .team-details .biography ul li span {
        display: block
    }

    .team-details .education ul li {
        font-size: 16px
    }

    .pricing-2,
    .pricing-3 {
        padding-bottom: 90px
    }

    .pricing-2 .single-box,
    .pricing-3 .single-box {
        width: 320px;
        margin: 0 auto 30px
    }

    .cart .table-responsive {
        margin-bottom: 40px
    }

    .cart .table {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content
    }

    .cart .table thead tr th {
        font-size: 16px;
        padding: 20px
    }

    .cart .table tbody tr td {
        padding: 20px
    }

    .cart .table tbody tr td:first-child {
        width: 300px
    }

    .cart .table tbody tr td .product .part-img {
        width: 70px;
        margin-right: 15px
    }

    .cart .table tbody tr td .product .part-txt {
        width: calc(100% - 85px)
    }

    .cart .table tbody tr td .product .part-txt p {
        font-size: 14px;
        line-height: 24px
    }

    .cart .table tbody tr td .price p {
        font-size: 14px
    }

    .cart .table tbody tr td .product-quantity .product-count .quantity input {
        width: 65px;
        font-size: 14px;
        margin: 0
    }

    .cart .cart-totals .coupon .coupon-title {
        padding: 20px
    }

    .cart .cart-totals .coupon .coupon-title h3 {
        font-size: 16px
    }

    .cart .cart-totals .coupon .part-txt {
        padding: 20px
    }

    .cart .cart-totals .coupon .part-txt p {
        font-size: 12px;
        margin-bottom: 18px
    }

    .cart .cart-totals .coupon .part-txt form input {
        height: 50px;
        padding: 0 20px;
        font-size: 14px;
        margin-bottom: 20px
    }

    .cart .cart-totals .coupon .part-txt form button {
        font-size: 14px;
        padding: 0 20px
    }

    .cart .cart-totals .proceed-to-checkout .checkout-title {
        padding: 20px
    }

    .cart .cart-totals .proceed-to-checkout .checkout-title h3 {
        font-size: 16px
    }

    .cart .cart-totals .proceed-to-checkout .part-txt {
        padding: 20px 20px 13px
    }

    .cart .cart-totals .proceed-to-checkout .part-txt ul {
        margin-top: -1px;
        padding-bottom: 0
    }

    .cart .cart-totals .proceed-to-checkout .part-txt ul li {
        font-size: 16px;
        margin-bottom: 16px
    }

    .cart .cart-totals .proceed-to-checkout .part-txt button {
        font-size: 14px
    }

    .cart .cart-totals .proceed-to-checkout .bottom-box {
        padding: 20px
    }

    .cart .cart-totals .proceed-to-checkout .bottom-box ul {
        margin-top: -1px;
        padding-bottom: 2px
    }

    .cart .cart-totals .proceed-to-checkout .bottom-box ul li {
        font-size: 16px
    }

    .cart .cart-totals .proceed-to-checkout .bottom-box .def-btn {
        font-size: 14px;
        padding: 0 20px
    }

    .checkout form .payment-method .options .form-check .note {
        display: none
    }

    .faq .part-txt .top-txt h2 {
        font-size: 40px;
        margin-top: -4px;
        margin-bottom: 28px
    }

    .faq .part-txt .accordion .card .card-header h2 button {
        padding: 0 20px
    }

    .faq .part-txt .accordion .card .card-body {
        padding: 30px 20px 22px
    }

    .error .part-txt h2 {
        font-size: 40px;
        margin-top: -3px;
        margin-bottom: 32px
    }

    .portfolio-page .single-box {
        min-height: 280px
    }

    .portfolio-page .single-box .part-txt {
        padding: 25px
    }

    .portfolio-page .single-box .part-txt h3 {
        font-size: 25px;
        margin-bottom: 15px
    }

    .portfolio-single .project-information h2 {
        font-size: 35px;
        margin-bottom: 35px
    }

    .portfolio-single .project-information ul li {
        font-size: 16px;
        line-height: 50px;
        padding: 0 25px
    }

    .portfolio-single .project-information ul li span {
        width: 30%;
        font-size: 16px
    }

    .portfolio-single .main-txt h3 {
        font-size: 35px;
        margin-bottom: 29px
    }

    .portfolio-single .main-txt p {
        margin-bottom: 21px
    }

    .portfolio-single .main-txt ul {
        padding-top: 7px;
        margin-top: 0;
        margin-bottom: -15px
    }

    .portfolio-single .main-txt ul li {
        width: 100%
    }

    .portfolio-single .boxes .part-img {
        padding: 20px
    }

    .shop .sidebar .search-box {
        border-radius: 5px
    }

    .shop .sidebar .search-box form input {
        width: calc(100% - 45px);
        height: 45px;
        font-size: 14px
    }

    .shop .sidebar .search-box form button {
        width: 45px;
        height: 45px;
        line-height: 55px;
        font-size: 25px
    }

    .shop .sidebar h3 {
        font-size: 20px;
        padding-bottom: 12px
    }

    .shop .sidebar .category ul {
        margin-top: -12px
    }

    .shop .sidebar .category ul li a {
        font-size: 14px;
        line-height: 35px
    }

    .shop .sidebar .filter-by-price .range .slider-range {
        margin-bottom: 12px
    }

    .shop .sidebar .filter-by-price .range .price-txt span,
    .shop .sidebar .filter-by-price .range .price-txt input {
        font-size: 14px
    }

    .shop .sidebar .feat-products ul li .txt a {
        font-size: 14px
    }

    .shop .sidebar .feat-products ul li .txt p {
        font-size: 12px
    }

    .shop .sidebar .feat-products ul li .txt .star {
        font-size: 8px
    }

    .shop .sidebar .filter-by-color .form-group {
        margin: -2px 0
    }

    .shop .sidebar .filter-by-color .form-group .form-check {
        padding-left: 30px
    }

    .shop .sidebar .filter-by-color .form-group .form-check input {
        margin-left: -30px
    }

    .shop .sidebar .filter-by-color .form-group .form-check .circle {
        width: 15px;
        height: 15px;
        line-height: 16px;
        font-size: 8px
    }

    .shop .sidebar .filter-by-color .form-group .form-check label {
        font-size: 14px
    }

    .shop .main-content .single-box {
        padding: 20px
    }

    .shop .main-content .single-box .part-txt {
        padding-bottom: 10px
    }

    .shop-details .item-section .part-img .product-slider .owl-item {
        padding: 20px
    }

    .shop-details .item-section .part-img .owl-thumbs {
        -webkit-column-gap: 15px;
        -moz-column-gap: 15px;
        column-gap: 15px
    }

    .shop-details .item-section .part-txt h3 {
        font-size: 30px;
        line-height: 40px;
        margin-top: -7px;
        margin-bottom: 30px
    }

    .shop-details .item-section .part-txt .info .price {
        font-size: 16px
    }

    .shop-details .item-section .part-txt .info h5 {
        font-size: 16px
    }

    .shop-details .item-section .part-txt .item-rating {
        margin-bottom: 31px
    }

    .shop-details .item-section .part-txt p {
        margin-bottom: 20px
    }

    .shop-details .dscr-section .box .tab-pane .product-data ul li {
        padding: 0 20px
    }

    .shop-details .dscr-section .box .tab-pane .product-data ul li span {
        min-width: 190px
    }

    .shop-details .dscr-section .box .tab-pane .reviews .single-box .part-img {
        width: 100px
    }

    .shop-details .dscr-section .box .tab-pane .reviews .single-box .part-txt {
        width: calc(100% - 130px)
    }

    .blog-grid .sidebar {
        max-width: 320px;
        margin: 0 auto 60px
    }

    .blog-grid .sidebar .search-box {
        border-radius: 5px
    }

    .blog-grid .sidebar .search-box form input {
        width: calc(100% - 45px);
        height: 45px;
        font-size: 14px
    }

    .blog-grid .sidebar .search-box form button {
        width: 45px;
        height: 45px;
        line-height: 55px;
        font-size: 25px
    }

    .blog-grid .sidebar h3 {
        font-size: 20px;
        padding-bottom: 12px
    }

    .blog-grid .sidebar .links ul li a {
        font-size: 14px;
        line-height: 31px
    }

    .blog-grid .sidebar .links ul {
        margin-top: -10px
    }

    .blog-grid .sidebar .recent-post ul li .img {
        width: 70px;
        border-radius: 5px;
        margin-right: 10px
    }

    .blog-grid .sidebar .recent-post ul li .txt {
        width: calc(100% - 80px)
    }

    .blog-grid .sidebar .recent-post ul li .txt a {
        font-size: 14px;
        line-height: 24px;
        margin-top: -7px
    }

    .blog-grid .sidebar .recent-post ul li .txt p {
        font-size: 12px
    }

    .blog-grid .sidebar .tags .all-tag a {
        height: 40px;
        line-height: 40px;
        font-size: 12px;
        padding: 0 10px
    }

    .blog-grid .main-content .all-blogs {
        grid-template-columns: repeat(auto-fit, minmax(calc(100%/2 - 30px), 1fr))
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-1 {
        -ms-grid-column-span: 1;
        grid-column: span 1
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-2 {
        -ms-grid-row-span: 1;
        grid-row: span 1
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-1 .single-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-1 .single-box .part-img {
        width: 100%
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-1 .single-box .part-txt {
        width: 100%;
        margin: 0
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-2 .single-box .part-txt {
        margin: 0;
        height: auto
    }

    .blog-grid .main-content .all-blogs .wrap .part-img {
        height: 250px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        overflow: hidden
    }

    .blog-grid .main-content .all-blogs .wrap .part-img img {
        width: 100%
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt {
        padding: 30px 20px
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt h3 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 21px
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt .blog-info {
        padding-bottom: 7px;
        margin-bottom: 24px
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt .blog-info li {
        font-size: 12px
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt .blog-info li span {
        font-size: 10px;
        margin-right: 2px
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 23px
    }

    .blog-grid .main-content .my-pagination {
        padding-top: 40px
    }

    .blog-grid .main-content .my-pagination a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 14px
    }

    .blog-grid .main-content .my-pagination a:last-child {
        margin-right: 0
    }

    .blog-grid .blog-details .main-img {
        margin-bottom: 40px
    }

    .blog-grid .blog-details .blog-info ul {
        margin-top: -2px;
        padding-bottom: 38px
    }

    .blog-grid .blog-details .blog-info ul li {
        font-size: 14px
    }

    .blog-grid .blog-details .blog-info ul li span i {
        font-size: 12px
    }

    .blog-grid .blog-details .part-txt h2 {
        font-size: 25px;
        margin-bottom: 20px
    }

    .blog-grid .blog-details .part-txt .quoted {
        padding: 40px 30px
    }

    .blog-grid .blog-details .part-txt .quoted p .icon {
        width: 50px;
        height: 50px;
        line-height: 45px;
        border-width: 3px;
        font-size: 20px
    }

    .blog-grid .blog-details .part-txt ul li {
        width: 100%
    }

    .blog-grid .blog-details .part-txt .other-option {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding-top: 7px;
        padding-bottom: 40px
    }

    .blog-grid .blog-details .part-txt .other-option .tag {
        margin-bottom: 13px
    }

    .blog-grid .blog-details .part-txt .other-option .tag p {
        font-size: 20px
    }

    .blog-grid .blog-details .part-txt .other-option .share p {
        font-size: 20px
    }

    .blog-grid .blog-details .blog-nav .single-nav.prev-blog {
        padding-right: 25px
    }

    .blog-grid .blog-details .blog-nav .single-nav.next-blog {
        padding-left: 25px
    }

    .blog-grid .blog-details .blog-nav .single-nav .img {
        width: 80px;
        margin-right: 15px
    }

    .blog-grid .blog-details .blog-nav .single-nav.next-blog .img {
        margin-left: 15px
    }

    .blog-grid .blog-details .blog-nav .single-nav .txt {
        width: calc(100% - 95px)
    }

    .blog-grid .blog-details .blog-nav .single-nav .txt a {
        font-size: 15px;
        line-height: 25px
    }

    .blog-grid .blog-details .blog-nav .single-nav .txt a span {
        font-size: 14px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment .part-img {
        width: 80px;
        height: 80px;
        margin-right: 20px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment .part-txt {
        width: calc(100% - 100px)
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment.replied {
        margin-left: 50px
    }

    .blog-grid .blog-details .blog-comments .post-a-comment form input {
        height: 55px
    }

    .blog-grid .blog-details .blog-comments .post-a-comment form textarea {
        height: 150px
    }

    .contact .heading h4 {
        font-size: 18px;
        margin-top: -2px;
        margin-bottom: 17px
    }

    .contact .boxes .single-box {
        margin: 0 -5px;
        padding: 30px 15px
    }

    .contact .boxes .single-box .part-icon {
        width: 80px;
        height: 80px;
        padding: 0 10px;
        margin-bottom: 30px
    }

    .contact .boxes .single-box .part-txt h3 {
        font-size: 20px;
        margin-bottom: 21px
    }

    .contact .boxes .single-box .part-txt h3 i {
        font-size: 16px
    }

    .contact .contact-form {
        padding-bottom: 60px
    }

    .contact .contact-form .title {
        margin-bottom: 30px
    }

    .contact .contact-form .title h2 {
        font-size: 25px;
        margin-top: -1px;
        margin-bottom: 22px
    }

    .contact .contact-form .title p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: -5px
    }

    .contact .contact-form form input {
        height: 45px;
        padding: 0 20px;
        font-size: 14px;
        margin-bottom: 20px
    }

    .contact .contact-form form textarea {
        height: 150px;
        padding: 10px 20px;
        font-size: 14px;
        margin-bottom: 20px
    }

    .contact .contact-info .title {
        margin-bottom: 30px
    }

    .contact .contact-info .title h2 {
        font-size: 25px;
        margin-top: -1px;
        margin-bottom: 22px
    }

    .contact .contact-info .title p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: -5px
    }

    .contact .contact-info .single-box {
        width: 290px;
        margin: 0 auto 30px;
        padding: 25px
    }

    .contact .contact-info .single-box .icon {
        width: 30px;
        height: 30px;
        line-height: 35px;
        font-size: 12px
    }

    .contact .contact-info .single-box .txt {
        width: calc(100% - 50px)
    }

    .contact .contact-info .single-box .txt h3 {
        font-size: 16px;
        margin-top: 0
    }

    .contact .contact-info .single-box .txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: -7px
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .def-btn {
        height: 50px;
        line-height: 48px;
        padding: 0 30px;
        font-size: 14px
    }

    .heading {
        margin-bottom: 50px
    }

    .heading h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -6px
    }

    .heading p {
        font-size: 14px;
        line-height: 24px
    }

    .p-120 {
        padding: 60px 0
    }

    .p-60 {
        padding: 30px 0
    }

    .pt-120 {
        padding-top: 60px
    }

    .pt-60 {
        padding-top: 30px
    }

    .pb-120 {
        padding-bottom: 60px
    }

    .pb-60 {
        padding-bottom: 30px
    }

    .pb-90 {
        padding-bottom: 30px
    }

    .pb-30 {
        padding-bottom: 0
    }

    .pt-360 {
        padding-top: 200px
    }

    .header .top-header .top-left ul li:first-child {
        padding-right: 30px
    }

    .header .middle-header .logo {
        width: 120px;
        padding: 20px 0
    }

    .header .middle-header .mid-right {
        padding: 20px 0
    }

    .header .middle-header .mid-right .info li {
        margin-right: 30px
    }

    .header .middle-header .mid-right .info li .icon {
        width: 35px;
        height: 35px;
        line-height: 39px;
        font-size: 16px;
        margin-right: 10px
    }

    .header .middle-header .mid-right .info li p {
        font-size: 14px;
        line-height: 24px
    }

    .header .middle-header .mid-right .info li p span {
        font-size: 14px
    }

    .header .middle-header .mid-right .language {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        width: 100px
    }

    .header .middle-header .mid-right .language .select-lang .flagstrap-icon.flagstrap-us,
    .header .middle-header .mid-right .language .select-lang .flagstrap-icon.flagstrap-bd,
    .header .middle-header .mid-right .language .select-lang .flagstrap-icon.flagstrap-sp {
        width: 35px;
        height: 22px;
        border-width: 2px;
        border-radius: 0
    }

    .header .middle-header .mid-right .language .select-lang ul {
        left: auto !important;
        right: 0;
        width: 120px;
        min-width: auto
    }

    .header .middle-header .mid-right .language .select-lang ul li a {
        padding: 0 5px;
        font-size: 12px
    }

    .header .middle-header .mid-right .language .select-lang ul li a .flagstrap-icon {
        width: 25px !important;
        height: 16px !important
    }

    .header .middle-header .mid-right .language .select-lang .dropdown-toggle {
        font-size: 14px;
        font-weight: 500
    }

    .navbar-toggler {
        background: #fff;
        color: #5446db;
        padding: 0;
        width: 40px;
        height: 40px;
        border-color: rgba(75, 75, 70, .3);
        line-height: 38px;
        font-size: 30px;
        margin: 5px 0
    }

    .header .bottom-header .next {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .header .bottom-header .bottom-right {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .header .bottom-header .bottom-right .nav-form {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        padding: 0 10px;
        overflow: visible
    }

    .header .bottom-header .bottom-right .nav-form input {
        width: 200px;
        height: 40px;
        font-size: 14px
    }

    .header .bottom-header .bottom-right .nav-form button {
        height: 40px;
        line-height: 46px;
        font-size: 20px
    }

    .header .bottom-header .navbar .navbar-nav .nav-item {
        padding: 0
    }

    .header .bottom-header .navbar .navbar-nav .nav-item .nav-link {
        font-size: 16px;
        padding: 10px 0
    }

    .header .bottom-header .navbar .navbar-nav .nav-item .nav-link:after {
        display: none
    }

    .header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
        padding: 5px 0;
        margin-top: 0;
        display: none;
        opacity: 1;
        visibility: visible;
        -webkit-box-shadow: 0 0;
        box-shadow: 0 0;
        border: 1px solid rgba(75, 75, 70, .25);
        border-radius: 5px
    }

    .header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
        font-size: 14px;
        padding: 13px 15px 12px
    }

    .header .bottom-header .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu .dropdown-item {
        padding: 13px 15px 12px
    }

    .header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show {
        display: block
    }

    .banner .banner-txt {
        padding: 60px 0
    }

    .banner .banner-txt h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 19px
    }

    .banner .banner-txt h1 {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 14px
    }

    .banner .banner-txt p {
        font-size: 14px;
        line-height: 24px
    }

    .banner .banner-txt .btn-box {
        padding-top: 8px
    }

    .banner .banner-txt .btn-box a {
        height: 50px;
        line-height: 48px;
        padding: 0 25px;
        font-size: 14px
    }

    .banner .banner-txt .btn-box a.right-btn {
        margin-left: 10px
    }

    .banner .part-img .vector-1 {
        left: 10px;
        width: 110px
    }

    .banner .part-img .vector-2 {
        width: 70px
    }

    .feature .bg .single-box {
        padding: 30px 25px;
        border: 1px solid rgba(75, 75, 70, .05);
        margin: -.5px
    }

    .feature .bg .single-box .part-txt h3 {
        font-size: 20px;
        margin-bottom: 21px
    }

    .feature .bg .single-box .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: -7px
    }

    .feature .bg .single-box .part-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 30px
    }

    .feature .bg .single-box .part-icon span {
        font-size: 35px;
        line-height: 83px
    }

    .about .part-txt {
        margin-bottom: 40px
    }

    .about .part-txt h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -6px;
        margin-bottom: 15px
    }

    .about .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 14px
    }

    .about .part-txt .boxes {
        padding-top: 0;
        margin-bottom: 19px
    }

    .about .part-txt .boxes ul {
        width: 100%;
        margin-bottom: 0
    }

    .about .part-txt .boxes ul li {
        font-size: 12px;
        line-height: 31px
    }

    .about .part-img .counter {
        width: 200px;
        height: 200px;
        border-width: 6px
    }

    .about .part-img .counter:after {
        top: -4px;
        right: -4px;
        bottom: -4px;
        left: -4px;
        border-width: 2px
    }

    .about .part-img .counter h2 {
        font-size: 30px;
        margin-bottom: 6px
    }

    .about .part-img .counter p {
        font-size: 16px;
        font-weight: 400
    }

    .cta {
        background: #d7deff
    }

    .cta .part-txt {
        margin-bottom: 40px
    }

    .cta .part-txt h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -6px;
        margin-bottom: 15px
    }

    .cta .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 23px
    }

    .cta .part-txt .part-form {
        padding: 30px
    }

    .cta .part-txt .part-form input {
        height: 50px;
        margin-bottom: 20px;
        font-size: 14px
    }

    .cta .part-img {
        width: 180px;
        margin: 0 auto
    }

    .cta .part-img:after {
        right: -50px;
        border-width: 125px 150px
    }

    .service .single-box {
        padding: 30px;
        margin-bottom: 30px
    }

    .service .single-box .part-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 29px
    }

    .service .single-box .part-icon span {
        font-size: 40px;
        line-height: 80px
    }

    .service .single-box .part-txt a {
        font-size: 20px;
        margin-bottom: 21px
    }

    .service .single-box .part-txt p {
        font-size: 14px;
        line-height: 24px
    }

    .pricing .title {
        text-align: center;
        margin-bottom: 50px
    }

    .pricing .title h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -6px;
        margin-bottom: 15px
    }

    .pricing .title p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 23px
    }

    .pricing .title .controls nav .nav {
        margin: 0 auto
    }

    .pricing .title .controls nav .nav .nav-item {
        height: 45px;
        line-height: 45px;
        padding: 0 25px;
        font-size: 14px
    }

    .pricing .tab-pane {
        margin-bottom: -30px
    }

    .pricing .tab-pane .single-box {
        margin-bottom: 30px
    }

    .pricing .tab-pane .single-box.center .top h3 {
        padding-top: 29px;
        padding-bottom: 57px
    }

    .pricing .tab-pane .single-box .top h3 {
        font-size: 20px;
        font-weight: 500;
        padding-top: 29px;
        padding-bottom: 57px
    }

    .pricing .tab-pane .single-box .top .price {
        padding-top: 23px;
        padding-bottom: 18px;
        margin: -30px 30px 0
    }

    .pricing .tab-pane .single-box .top .price h4 {
        font-size: 25px
    }

    .pricing .tab-pane .single-box .top .price h4 span:first-child {
        font-size: 16px;
        font-weight: 500;
        top: 1px;
        left: -12px
    }

    .pricing .tab-pane .single-box .top .price h4 span:last-child {
        font-size: 14px
    }

    .pricing .tab-pane .single-box .middle ul li {
        height: 40px;
        line-height: 40px;
        font-size: 14px
    }

    .pricing .tab-pane .single-box.center .bottom {
        padding-bottom: 30px
    }

    .pricing .tab-pane .single-box .bottom .def-btn {
        height: 40px;
        line-height: 40px;
        font-size: 14px
    }

    .testimonial .comment-slider .single-comment {
        padding: 33px 25px
    }

    .testimonial .comment-slider .single-comment .part-img {
        width: 100px;
        height: 100px;
        margin-bottom: 30px
    }

    .testimonial .comment-slider .single-comment .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 22px
    }

    .testimonial .comment-slider .single-comment .part-txt h3 {
        font-size: 20px;
        margin-bottom: 16px
    }

    .testimonial .comment-slider .single-comment .part-txt h5 {
        font-size: 14px;
        margin-bottom: -2px
    }

    .testimonial .comment-slider .single-comment.slick-current:before {
        width: 300px
    }

    .testimonial .comment-slider .slick-arrow {
        display: none
    }

    .blog .blog-slider {
        margin-bottom: 30px
    }

    .blog .blog-slider .slick-list .single-blog .part-txt {
        left: 25px;
        bottom: 25px;
        right: 25px
    }

    .blog .blog-slider .slick-list .single-blog .part-txt .blog-info {
        margin-bottom: 24px;
        padding-bottom: 30px
    }

    .blog .blog-slider .slick-list .single-blog .part-txt .blog-info li {
        font-size: 12px
    }

    .blog .blog-slider .slick-list .single-blog .part-txt a {
        font-size: 18px;
        line-height: 28px
    }

    .blog .blog-static .single-blog .part-txt {
        left: 25px;
        bottom: 25px;
        right: 25px
    }

    .blog .blog-static .single-blog .part-txt .blog-info {
        padding-bottom: 20px;
        margin-bottom: 14px
    }

    .blog .blog-static .single-blog .part-txt .blog-info li {
        font-size: 12px
    }

    .blog .blog-static .single-blog .part-txt .blog-info li:first-child {
        padding: 0 10px
    }

    .blog .blog-static .single-blog .part-txt .blog-info li span {
        padding: 0 10px
    }

    .blog .blog-static .single-blog .part-txt a {
        font-size: 18px;
        line-height: 28px
    }

    .partner .all-brand {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        row-gap: 15px;
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .partner .all-brand .single-box {
        width: calc(100%/5 - 25px)
    }

    .footer {
        background: #5446db
    }

    .footer .main-footer h3 {
        font-size: 20px;
        font-weight: 500;
        padding-bottom: 9px;
        margin-bottom: 25px
    }

    .footer .main-footer .footer-about {
        margin-bottom: 40px
    }

    .footer .main-footer .footer-about p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 19px
    }

    .footer .main-footer .footer-about ul li {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 9px
    }

    .footer .main-footer .footer-about ul li span {
        font-size: 12px
    }

    .footer .main-footer .links {
        margin-bottom: 40px
    }

    .footer .main-footer .links ul li a {
        font-size: 14px
    }

    .footer .main-footer .newsletter p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 18px
    }

    .footer .main-footer .newsletter form {
        margin-bottom: 25px
    }

    .footer .main-footer .newsletter form input {
        height: 50px;
        font-size: 14px
    }

    .footer .main-footer .newsletter form button {
        height: 50px;
        line-height: 56px;
        font-size: 20px
    }

    .footer .main-footer .instagram-post .all-post {
        margin: -5px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .footer .main-footer .instagram-post .all-post .single-post {
        width: calc(100%/4 - 10px);
        margin: 5px;
        border-radius: 5px
    }

    .footer .main-footer .instagram-post .all-post .single-post img {
        width: 100%
    }

    .footer .copyright {
        background: #402bc1
    }

    .footer .copyright p {
        text-align: center;
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 10px
    }

    .footer .copyright .link {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .footer .copyright .link a {
        font-size: 14px;
        font-weight: 400;
        padding: 0 5px
    }

    .header-2 .navbar-toggler {
        color: #ff4d49
    }

    .banner.banner-2 {
        padding-bottom: 60px
    }

    .banner.banner-2 .banner-txt h4 {
        letter-spacing: 1px
    }

    .banner.banner-2 .part-img .vector-3 {
        top: 60px;
        left: 25px;
        width: 60px
    }

    .about.about-2 .part-txt {
        margin-bottom: 0
    }

    .about.about-2 .part-img .vector-1 {
        top: 52%;
        left: 47.5%;
        width: 50px
    }

    .about.about-2 .part-img .vector-2 {
        bottom: 8%;
        left: 32%;
        width: 40px;
        height: 40px
    }

    .about.about-2 .part-img .vector-3 {
        bottom: 0;
        left: 17%;
        width: 55px;
        height: 55px
    }

    .about.about-2 .part-txt .progress-area {
        padding: 7px 0
    }

    .about.about-2 .part-txt .progress-area .group {
        margin-bottom: 23px
    }

    .cta-2 .bg {
        padding-left: 20px;
        padding-right: 20px
    }

    .cta-2 .bg .title {
        margin-bottom: 50px
    }

    .cta-2 .bg .title p {
        font-size: 18px;
        margin-top: -2px;
        margin-bottom: 23px
    }

    .cta-2 .bg .title h2 {
        font-size: 30px;
        line-height: 35px;
        margin-bottom: -7px
    }

    .cta-2 .bg .form input {
        width: calc(100%/3);
        font-size: 14px;
        margin: 15px 0
    }

    .cta-2 .bg .form button {
        width: calc(100%/3);
        height: 65px;
        line-height: 65px;
        font-size: 16px
    }

    .fun-fact {
        margin-bottom: -30px
    }

    .fun-fact .single-box {
        padding-bottom: 45px;
        margin: 0 auto 30px
    }

    .fun-fact .single-box .part-icon {
        width: 80px;
        margin-bottom: 30px
    }

    .fun-fact .single-box .part-txt h2 {
        font-size: 30px;
        margin-top: -7px;
        margin-bottom: 15px
    }

    .fun-fact .single-box .part-txt p {
        font-size: 14px;
        margin-bottom: -2px
    }

    .success .part-txt {
        padding: 0
    }

    .success .part-txt h2 {
        font-size: 30px;
        line-height: 40px;
        margin-top: -7px;
        margin-bottom: 14px
    }

    .success .part-txt p {
        font-size: 14px;
        line-height: 24px
    }

    .success .part-txt .progress-area {
        padding-top: 8px;
        margin: -10px
    }

    .success .part-txt .progress-area .single-skill {
        padding: 10px
    }

    .success .part-txt .progress-area .single-skill .circle-chart .circle-chart__info .circle-chart__percent {
        font-size: 7px;
        font-weight: 500
    }

    .success .part-txt .progress-area .single-skill .circle-chart .circle-chart__info .circle-chart__subline {
        font-size: 4px;
        font-weight: 400
    }

    .portfolio .portfolio-slider .slick-list .single-box {
        padding: 20px
    }

    .portfolio .portfolio-slider .slick-list .single-box:after {
        top: 10px;
        right: 10px;
        bottom: 10px;
        left: 10px
    }

    .portfolio .portfolio-slider .slick-list .single-box .part-txt h3 {
        height: 50px;
        line-height: 50px;
        font-size: 20px;
        font-weight: 500
    }

    .portfolio .portfolio-slider .slick-list .single-box .view-btn {
        top: 10px;
        right: 10px;
        bottom: 10px;
        left: 10px
    }

    .portfolio .portfolio-slider .slick-list .single-box .view-btn a {
        width: 50px;
        height: 50px;
        line-height: 60px;
        font-size: 25px
    }

    .team {
        margin-bottom: -30px
    }

    .team .single-box {
        margin-bottom: 30px
    }

    .team .single-box .part-txt {
        padding: 23px 0
    }

    .team .single-box .part-txt a {
        font-size: 20px;
        margin-bottom: 11px
    }

    .team .single-box .part-txt p {
        font-size: 14px;
        margin-bottom: 0
    }

    .team .single-box .social ul li {
        padding: 5px 0
    }

    .app-download .part-txt h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -7px;
        margin-bottom: 15px
    }

    .app-download .part-txt p {
        font-size: 14px;
        line-height: 24px
    }

    .app-download .part-txt .btn-box {
        padding-top: 8px
    }

    .blog-2 .single-blog {
        margin-bottom: 30px
    }

    .blog-2 .single-blog .part-txt {
        padding: 20px;
        padding-left: 40px
    }

    .blog-2 .single-blog .part-txt:before {
        left: 19px
    }

    .blog-2 .single-blog .part-txt:after {
        left: 12px;
        width: 16px;
        height: 16px
    }

    .blog-2 .single-blog .part-txt a {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 17px
    }

    .blog-2 .single-blog .part-txt ul {
        padding-top: 25px
    }

    .blog-2 .single-blog .part-txt ul li {
        font-size: 12px
    }

    .def-breadcrumb .part-txt {
        padding: 60px 0
    }

    .def-breadcrumb .part-txt h1 {
        font-size: 30px;
        margin-top: -4px;
        margin-bottom: 23px
    }

    .def-breadcrumb .part-txt ul {
        margin-bottom: -2px
    }

    .def-breadcrumb .part-txt ul li {
        font-size: 14px;
        margin-right: 10px
    }

    .def-breadcrumb .part-txt ul li i {
        font-size: 12px
    }

    .video {
        margin-bottom: -140px
    }

    .video .video-area {
        padding: 100px 0
    }

    .video .video-area a {
        width: 80px;
        height: 80px;
        line-height: 85px;
        font-size: 30px
    }

    .fun-fact-2 {
        padding-bottom: 30px
    }

    .fun-fact-2 .single-box {
        margin-bottom: 30px
    }

    .fun-fact-2 .single-box {
        margin-bottom: 30px
    }

    .fun-fact-2 .single-box:before,
    .fun-fact-2 .single-box:after {
        width: 60px
    }

    .fun-fact-2 .single-box .part-icon {
        width: 70px;
        margin-bottom: 19px
    }

    .fun-fact-2 .single-box .part-txt h2 {
        font-size: 35px;
        margin-bottom: 15px
    }

    .fun-fact-2 .single-box .part-txt p {
        font-size: 14px;
        margin-bottom: -2px
    }

    .timeline .single-box {
        margin-bottom: 30px
    }

    .timeline .single-box .title {
        height: 50px;
        border-radius: 10px;
        margin-bottom: 25px
    }

    .timeline .single-box .title:after {
        border-radius: 9px
    }

    .timeline .single-box .title h3 {
        height: 50px;
        line-height: 50px;
        font-weight: 600;
        font-size: 25px
    }

    .timeline .single-box .title h3:before,
    .timeline .single-box .title h3:after {
        width: 20px;
        height: 2px
    }

    .timeline .single-box .part-txt {
        padding: 0 20px
    }

    .timeline .single-box .part-txt h3 {
        font-size: 20px;
        margin-top: -1px;
        margin-bottom: 16px
    }

    .timeline .single-box .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: -7px
    }

    .choosing-reason .part-txt h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -6px;
        margin-bottom: 15px
    }

    .choosing-reason .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 10px
    }

    .choosing-reason .part-txt ul li {
        font-size: 14px
    }

    .choosing-reason .part-txt ul li i {
        font-size: 12px;
        margin-right: 5px
    }

    .service-txt {
        margin-bottom: -50px
    }

    .service-txt .part-img {
        max-width: 320px;
        margin: 0 auto 40px
    }

    .service-txt .part-txt h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -6px;
        margin-bottom: 15px
    }

    .service-txt .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 22px
    }

    .service-txt .part-txt .boxes {
        margin-bottom: 30px
    }

    .service-txt .part-txt .boxes .single-box h3 {
        font-size: 18px;
        margin-bottom: 11px
    }

    .service-txt .part-txt .boxes .single-box span {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: -7px
    }

    .pricing.pricing-inner {
        padding-top: 110px;
        background-position-x: left
    }

    .free-analysis .part-txt {
        margin-bottom: 40px
    }

    .free-analysis .part-txt h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -6px;
        margin-bottom: 15px
    }

    .free-analysis .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 11px
    }

    .free-analysis .part-txt .part-form input {
        height: 50px;
        padding: 0 25px;
        font-size: 14px;
        border-radius: 5px;
        margin-bottom: 20px
    }

    .free-analysis .part-img {
        max-width: 320px;
        margin: 0 auto
    }

    .service-details .next {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .service-details .sidebar .nav {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 10px
    }

    .service-details .sidebar .nav .nav-link {
        width: calc(50% - 5px);
        height: 50px;
        font-size: 16px;
        margin-bottom: 10px
    }

    .service-details .sidebar .nav .nav-link span {
        width: 30px;
        height: 30px;
        line-height: 36px;
        font-size: 18px;
        margin-right: 10px
    }

    .service-details .main-content .main-img {
        padding: 5px;
        border-radius: 10px;
        margin-bottom: 30px
    }

    .service-details .main-content .main-img img {
        border-radius: 7px
    }

    .service-details .main-content .part-txt {
        margin-bottom: 40px
    }

    .service-details .main-content .part-txt h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -6px;
        margin-bottom: 15px
    }

    .service-details .main-content .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 12px
    }

    .service-details .main-content .part-txt h3 {
        font-size: 20px;
        line-height: 30px;
        padding-top: 4px;
        margin-bottom: 11px
    }

    .service-details .main-content .part-txt ul li {
        font-size: 14px
    }

    .service-details .main-content .part-txt ul li i {
        font-size: 12px;
        margin-right: 5px
    }

    .service-details .main-content .part-txt p.marked-txt {
        padding: 24px 25px 23px
    }

    .service-details .main-content .part-tab nav .nav {
        padding: 0 5px
    }

    .service-details .main-content .part-tab nav .nav .nav-link {
        height: 60px;
        line-height: 16px;
        font-size: 14px;
        font-weight: 400;
        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
    }

    .service-details .main-content .part-tab .tab-content {
        padding-top: 30px
    }

    .service-details .main-content .part-tab .tab-content .txt {
        padding-right: 0;
        margin-bottom: 23px
    }

    .service-details .main-content .part-tab .tab-content .img {
        max-width: 320px;
        margin: 0 auto
    }

    .team.team-page {
        margin-bottom: 0
    }

    .team-details .profile {
        max-width: 320px;
        margin: 0 auto 30px
    }

    .team-details .profile .part-img {
        max-height: 350px
    }

    .team-details .profile .txt {
        padding: 25px 0
    }

    .team-details .profile .txt h3 {
        font-size: 20px;
        margin-top: -1px;
        margin-bottom: 16px
    }

    .team-details .profile .txt span {
        font-size: 14px;
        margin-bottom: -2px
    }

    .team-details .profile .social ul li a {
        width: 35px;
        height: 35px;
        line-height: 40px;
        font-size: 14px
    }

    .team-details .biography h2 {
        font-size: 25px;
        margin-top: -2px;
        margin-bottom: 26px
    }

    .team-details .biography ul:nth-last-of-type(1) {
        margin-bottom: 6px
    }

    .team-details .biography ul li {
        height: 70px;
        padding: 0 25px;
        font-size: 14px;
        line-height: 24px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-radius: 5px
    }

    .team-details .biography ul li span {
        display: block
    }

    .team-details .biography p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 17px
    }

    .team-details .skill {
        padding-top: 5px
    }

    .team-details .skill .single-box {
        margin-bottom: 20px
    }

    .team-details .skill .single-box p {
        font-size: 14px;
        margin-bottom: 8px
    }

    .team-details .education {
        padding-top: 30px
    }

    .team-details .education h3 {
        font-size: 20px;
        margin-top: -1px;
        margin-bottom: 16px
    }

    .team-details .education ul {
        margin-bottom: -8px
    }

    .team-details .education ul li {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 11px
    }

    .team-details .education ul li span {
        font-size: 14px
    }

    .pricing-2 {
        padding-bottom: 30px
    }

    .pricing-2 .single-box {
        margin-bottom: 30px
    }

    .pricing-2 .single-box .top {
        margin-bottom: 25px
    }

    .pricing-2 .single-box .top h3 {
        font-size: 20px;
        margin-bottom: 22px
    }

    .pricing-2 .single-box .top .price {
        width: 150px;
        height: 150px
    }

    .pricing-2 .single-box .top .price h4 {
        font-size: 30px
    }

    .pricing-2 .single-box .top .price h4 span {
        font-size: 20px
    }

    .pricing-2 .single-box .middle ul {
        margin-bottom: 23px
    }

    .pricing-2 .single-box .middle ul li {
        font-size: 14px
    }

    .pricing-3 {
        padding-bottom: 30px
    }

    .pricing-3 .single-box {
        margin-bottom: 30px
    }

    .pricing-3 .single-box .top h3 {
        font-size: 20px;
        margin-bottom: 22px
    }

    .pricing-3 .single-box .top .price h4 {
        font-size: 30px
    }

    .pricing-3 .single-box .top .price h4 span {
        font-size: 20px
    }

    .pricing-3 .single-box .middle ul li {
        font-size: 14px
    }

    .cart .table-responsive {
        margin-bottom: 40px
    }

    .cart .table {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content
    }

    .cart .table thead tr th {
        font-size: 16px;
        padding: 25px 30px
    }

    .cart .table tbody tr td {
        padding: 20px
    }

    .cart .table tbody tr td:first-child {
        width: 300px
    }

    .cart .table tbody tr td .product .part-img {
        width: 70px;
        margin-right: 15px
    }

    .cart .table tbody tr td .product .part-txt {
        width: calc(100% - 85px)
    }

    .cart .table tbody tr td .product .part-txt p {
        font-size: 14px;
        line-height: 24px
    }

    .cart .table tbody tr td .price p {
        font-size: 14px
    }

    .cart .table tbody tr td .product-quantity .product-count .quantity input {
        width: 65px;
        font-size: 14px;
        margin: 0
    }

    .cart .cart-totals {
        width: 450px;
        margin: 0 auto
    }

    .cart .cart-totals .coupon .coupon-title {
        padding: 20px
    }

    .cart .cart-totals .coupon .coupon-title h3 {
        font-size: 16px
    }

    .cart .cart-totals .coupon .part-txt {
        padding: 20px
    }

    .cart .cart-totals .coupon .part-txt p {
        font-size: 12px;
        margin-bottom: 18px
    }

    .cart .cart-totals .coupon .part-txt form input {
        height: 50px;
        padding: 0 20px;
        font-size: 14px;
        margin-bottom: 20px
    }

    .cart .cart-totals .coupon .part-txt form button {
        font-size: 14px;
        padding: 0 20px
    }

    .cart .cart-totals .proceed-to-checkout .checkout-title {
        padding: 20px
    }

    .cart .cart-totals .proceed-to-checkout .checkout-title h3 {
        font-size: 16px
    }

    .cart .cart-totals .proceed-to-checkout .part-txt {
        padding: 20px 20px 13px
    }

    .cart .cart-totals .proceed-to-checkout .part-txt ul {
        margin-top: -1px;
        padding-bottom: 0
    }

    .cart .cart-totals .proceed-to-checkout .part-txt ul li {
        font-size: 16px;
        margin-bottom: 16px
    }

    .cart .cart-totals .proceed-to-checkout .part-txt button {
        font-size: 14px
    }

    .cart .cart-totals .proceed-to-checkout .bottom-box {
        padding: 20px
    }

    .cart .cart-totals .proceed-to-checkout .bottom-box ul {
        margin-top: -1px;
        padding-bottom: 2px
    }

    .cart .cart-totals .proceed-to-checkout .bottom-box ul li {
        font-size: 16px
    }

    .cart .cart-totals .proceed-to-checkout .bottom-box .def-btn {
        font-size: 14px;
        padding: 0 20px
    }

    .checkout .notification {
        height: 75px;
        line-height: 73px;
        padding: 0 20px;
        margin-bottom: 30px
    }

    .checkout .notification p {
        font-size: 14px
    }

    .checkout .notification p span {
        font-size: 14px
    }

    .checkout form .title h2 {
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 21px
    }

    .checkout form input:not([type=radio]),
    .checkout form select {
        height: 50px;
        margin-bottom: 20px;
        padding: 0 20px;
        font-size: 14px
    }

    .checkout form textarea {
        height: 130px;
        padding: 10px 20px;
        font-size: 14px
    }

    .checkout form .payment-method {
        margin-top: 23px
    }

    .checkout form .payment-method .options {
        padding: 25px
    }

    .checkout form .payment-method .options .form-check:last-child {
        margin-bottom: 8px
    }

    .checkout form .payment-method .options .form-check label {
        font-size: 14px
    }

    .checkout form .payment-method .options .form-check .note {
        display: none
    }

    .checkout form .payment-method .options .form-check img {
        width: 120px;
        margin-left: 20px
    }

    .checkout form .payment-method .options .form-check a {
        font-size: 14px;
        margin-left: 20px
    }

    .checkout form .payment-method .bottom-section {
        padding: 25px
    }

    .checkout form .payment-method .bottom-section p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 18px
    }

    .faq .next {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .faq .part-img {
        margin-bottom: 40px
    }

    .faq .part-img:last-child {
        margin-top: -20px
    }

    .faq .part-txt .top-txt {
        padding-bottom: 7px
    }

    .faq .part-txt .top-txt h2 {
        font-size: 25px;
        margin-top: -2px;
        margin-bottom: 20px
    }

    .faq .part-txt .top-txt p {
        font-size: 14px;
        line-height: 24px
    }

    .faq .part-txt .accordion .card {
        margin-bottom: 25px
    }

    .faq .part-txt .accordion .card .card-header h2 button {
        padding: 0 20px;
        font-size: 14px
    }

    .faq .part-txt .accordion .card .card-body {
        padding: 20px 20px 13px;
        margin-top: 10px
    }

    .faq .part-txt .accordion .card .card-body p {
        font-size: 14px;
        line-height: 24px
    }

    .error .part-img {
        margin-bottom: 30px
    }

    .error .part-txt h2 {
        font-size: 25px;
        margin-top: -3px;
        margin-bottom: 19px
    }

    .error .part-txt h3 {
        font-size: 20px;
        margin-bottom: 16px
    }

    .error .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 23px
    }

    .portfolio-page .single-box {
        min-height: 300px;
        margin: 0 auto 30px
    }

    .portfolio-page .single-box .part-txt {
        padding: 30px
    }

    .portfolio-page .single-box .part-txt span {
        height: 20px;
        line-height: 20px;
        font-size: 12px;
        padding: 0 15px;
        margin-bottom: 20px
    }

    .portfolio-page .single-box .part-txt h3 {
        font-size: 20px;
        margin-bottom: 16px
    }

    .portfolio-page .single-box .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 16px
    }

    .portfolio-page .single-box .part-txt a {
        font-size: 14px
    }

    .portfolio-single .main-img {
        margin-bottom: 40px
    }

    .portfolio-single .project-information h2 {
        font-size: 25px;
        margin-top: -2px;
        margin-bottom: 26px
    }

    .portfolio-single .project-information ul li {
        font-size: 14px;
        line-height: 40px;
        padding: 5px 20px
    }

    .portfolio-single .project-information ul li span {
        width: 30%;
        font-size: 14px
    }

    .portfolio-single .project-information ul li a {
        font-size: 14px;
        margin: 0 2px
    }

    .portfolio-single .main-txt h3 {
        font-size: 25px;
        margin-top: -2px;
        margin-bottom: 20px
    }

    .portfolio-single .main-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 17px
    }

    .portfolio-single .main-txt ul {
        margin-top: 0;
        padding-top: 2px;
        margin-bottom: -14px
    }

    .portfolio-single .main-txt ul li {
        width: 100%;
        font-size: 14px
    }

    .portfolio-single .boxes {
        padding-left: 10px;
        padding-right: 10px
    }

    .portfolio-single .boxes .part-img {
        margin: 0 -10px;
        padding: 10px
    }

    .portfolio-single .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: -7px
    }

    .shop .sidebar {
        max-width: 320px;
        margin: 0 auto 60px
    }

    .shop .sidebar .search-box {
        border-radius: 5px
    }

    .shop .sidebar .search-box form input {
        width: calc(100% - 45px);
        height: 45px;
        font-size: 14px
    }

    .shop .sidebar .search-box form button {
        width: 45px;
        height: 45px;
        line-height: 55px;
        font-size: 25px
    }

    .shop .sidebar h3 {
        font-size: 20px;
        padding-bottom: 12px
    }

    .shop .sidebar .category ul {
        margin-top: -12px
    }

    .shop .sidebar .category ul li a {
        font-size: 14px;
        line-height: 35px
    }

    .shop .sidebar .filter-by-price .range .slider-range {
        margin-bottom: 12px
    }

    .shop .sidebar .filter-by-price .range .price-txt span,
    .shop .sidebar .filter-by-price .range .price-txt input {
        font-size: 14px
    }

    .shop .sidebar .feat-products ul li .txt a {
        font-size: 14px
    }

    .shop .sidebar .feat-products ul li .txt p {
        font-size: 12px
    }

    .shop .sidebar .feat-products ul li .txt .star {
        font-size: 8px
    }

    .shop .sidebar .filter-by-color .form-group {
        margin: -2px 0
    }

    .shop .sidebar .filter-by-color .form-group .form-check {
        padding-left: 30px
    }

    .shop .sidebar .filter-by-color .form-group .form-check input {
        margin-left: -30px
    }

    .shop .sidebar .filter-by-color .form-group .form-check .circle {
        width: 15px;
        height: 15px;
        line-height: 16px;
        font-size: 8px
    }

    .shop .sidebar .filter-by-color .form-group .form-check label {
        font-size: 14px
    }

    .shop .main-content .top-bar {
        margin-bottom: 40px
    }

    .shop .main-content .top-bar p {
        font-size: 14px
    }

    .shop .main-content .top-bar form {
        padding: 0 10px
    }

    .shop .main-content .top-bar form label {
        font-size: 14px
    }

    .shop .main-content .top-bar form select {
        font-size: 14px;
        height: 40px
    }

    .shop .main-content .single-box {
        padding: 20px
    }

    .shop .main-content .single-box .part-img .tag {
        top: 10px;
        left: 10px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 12px
    }

    .shop .main-content .single-box .part-img .cart-option {
        top: 10px;
        right: 10px
    }

    .shop .main-content .single-box .part-txt {
        padding-bottom: 10px;
        margin-top: -4px
    }

    .shop .main-content .single-box .part-txt a {
        font-size: 18px
    }

    .shop .main-content .shopnu-pagination ul li {
        margin: 0 2.5px
    }

    .shop .main-content .shopnu-pagination ul li a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 14px
    }

    .shop-details .item-section .part-img {
        margin-bottom: 40px
    }

    .shop-details .item-section .part-img .product-slider .owl-item {
        padding: 20px
    }

    .shop-details .item-section .part-img .owl-thumbs {
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px
    }

    .shop-details .item-section .part-img .owl-thumbs .owl-thumb-item {
        border-radius: 5px
    }

    .shop-details .item-section .part-txt h3 {
        font-size: 20px;
        line-height: 30px;
        margin-top: -7px;
        margin-bottom: 22px
    }

    .shop-details .item-section .part-txt .info {
        margin-bottom: 19px
    }

    .shop-details .item-section .part-txt .info .price {
        height: 25px;
        line-height: 25px;
        font-size: 14px;
        padding: 0 15px
    }

    .shop-details .item-section .part-txt .info h5 {
        height: 25px;
        line-height: 25px;
        font-size: 14px;
        padding: 0 15px
    }

    .shop-details .item-section .part-txt .item-rating {
        margin-bottom: 22px
    }

    .shop-details .item-section .part-txt .item-rating .star {
        font-size: 10px
    }

    .shop-details .item-section .part-txt .item-rating a {
        font-size: 14px
    }

    .shop-details .item-section .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 10px
    }

    .shop-details .item-section .part-txt .cart-option ul li {
        font-size: 14px
    }

    .shop-details .item-section .part-txt .cart-option ul li span {
        width: 12px;
        height: 12px
    }

    .shop-details .item-section .part-txt .cart-option ul li .product-count .quantity input {
        width: 40px;
        height: 30px;
        margin: 0;
        font-size: 14px
    }

    .shop-details .item-section .part-txt .cart-option ul li .product-count .quantity .quantity-nav .quantity-button {
        height: 30px;
        line-height: 30px;
        width: 30px;
        font-size: 14px
    }

    .shop-details .item-section .part-txt .cart-option ul li .product-count {
        margin-right: 5px
    }

    .shop-details .item-section .part-txt .cart-option ul li .rel-btns a {
        height: 32px;
        line-height: 30px;
        font-size: 12px;
        margin-left: 5px
    }

    .shop-details .item-section .part-txt .cart-option ul li .rel-btns a.add-to-cart {
        margin-right: 5px
    }

    .shop-details .dscr-section {
        padding: 30px 20px
    }

    .shop-details .dscr-section .box .nav {
        margin-bottom: 20px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .shop-details .dscr-section .box .nav .nav-link {
        height: 45px;
        line-height: 45px;
        padding: 0 25px;
        font-size: 14px
    }

    .shop-details .dscr-section .box .tab-pane .dscr p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 20px
    }

    .shop-details .dscr-section .box .tab-pane .dscr ul {
        margin-top: -3px;
        margin-bottom: -7px
    }

    .shop-details .dscr-section .box .tab-pane .dscr ul li {
        font-size: 14px;
        line-height: 24px;
        padding-left: 15px;
        margin-bottom: 7px
    }

    .shop-details .dscr-section .box .tab-pane .dscr ul li:after {
        top: 6px
    }

    .shop-details .dscr-section .box .tab-pane .dscr ul li:last-child {
        margin-bottom: 0
    }

    .shop-details .dscr-section .box .tab-pane .product-data ul li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: auto;
        padding: 0 15px;
        font-size: 14px;
        line-height: 40px
    }

    .shop-details .dscr-section .box .tab-pane .reviews .single-box .part-img {
        width: 80px
    }

    .shop-details .dscr-section .box .tab-pane .reviews .single-box .part-txt {
        width: calc(100% - 110px);
        padding: 20px
    }

    .shop-details .dscr-section .box .tab-pane .reviews .single-box .part-txt .title h3 {
        font-size: 16px;
        margin-top: -1px
    }

    .shop-details .dscr-section .box .tab-pane .reviews .single-box .part-txt .title .star {
        font-size: 8px
    }

    .shop-details .dscr-section .box .tab-pane .reviews .single-box .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 12px
    }

    .shop-details .dscr-section .box .tab-pane .reviews .single-box .part-txt span {
        font-size: 12px
    }

    .shop-details .dscr-section .box .tab-pane .post-a-review h3 {
        font-size: 20px;
        margin-bottom: 16px
    }

    .shop-details .dscr-section .box .tab-pane .post-a-review p {
        font-size: 12px;
        line-height: 22px
    }

    .shop-details .dscr-section .box .tab-pane .post-a-review form input {
        height: 45px;
        padding: 0 20px;
        font-size: 14px;
        margin-bottom: 20px
    }

    .shop-details .dscr-section .box .tab-pane .post-a-review form textarea {
        height: 120px;
        padding: 15px 20px;
        font-size: 14px;
        margin-bottom: 20px
    }

    .blog-grid .next {
        -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
        order: 2 !important
    }

    .blog-grid .sidebar {
        max-width: 320px;
        margin: 0 auto 60px
    }

    .blog-grid .sidebar .search-box {
        border-radius: 5px
    }

    .blog-grid .sidebar .search-box form input {
        width: calc(100% - 45px);
        height: 45px;
        font-size: 14px
    }

    .blog-grid .sidebar .search-box form button {
        width: 45px;
        height: 45px;
        line-height: 55px;
        font-size: 25px
    }

    .blog-grid .sidebar h3 {
        font-size: 20px;
        padding-bottom: 12px
    }

    .blog-grid .sidebar .links ul li a {
        font-size: 14px;
        line-height: 31px
    }

    .blog-grid .sidebar .links ul {
        margin-top: -10px
    }

    .blog-grid .sidebar .recent-post ul li .img {
        width: 70px;
        border-radius: 5px;
        margin-right: 10px
    }

    .blog-grid .sidebar .recent-post ul li .txt {
        width: calc(100% - 80px)
    }

    .blog-grid .sidebar .recent-post ul li .txt a {
        font-size: 14px;
        line-height: 24px;
        margin-top: -7px
    }

    .blog-grid .sidebar .recent-post ul li .txt p {
        font-size: 12px
    }

    .blog-grid .sidebar .tags .all-tag a {
        height: 40px;
        line-height: 40px;
        font-size: 12px;
        padding: 0 10px
    }

    .blog-grid .main-content .all-blogs {
        grid-template-columns: repeat(auto-fit, minmax(calc(100%/2 - 30px), 1fr))
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-1 {
        -ms-grid-column-span: 1;
        grid-column: span 1
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-2 {
        -ms-grid-row-span: 1;
        grid-row: span 1
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-1 .single-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-1 .single-box .part-img {
        width: 100%
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-1 .single-box .part-txt {
        width: 100%;
        margin: 0
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-2 .single-box .part-txt {
        margin: 0;
        height: auto
    }

    .blog-grid .main-content .all-blogs .wrap .part-img {
        height: 250px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        overflow: hidden
    }

    .blog-grid .main-content .all-blogs .wrap .part-img img {
        width: 100%
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt {
        padding: 30px 20px
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt h3 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 21px
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt .blog-info {
        padding-bottom: 7px;
        margin-bottom: 24px
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt .blog-info li {
        font-size: 12px
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt .blog-info li span {
        font-size: 10px;
        margin-right: 2px
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 23px
    }

    .blog-grid .main-content .my-pagination {
        padding-top: 40px
    }

    .blog-grid .main-content .my-pagination a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 14px
    }

    .blog-grid .main-content .my-pagination a:last-child {
        margin-right: 0
    }

    .blog-grid .blog-details {
        padding-bottom: 60px
    }

    .blog-grid .blog-details .main-img {
        border-radius: 5px;
        margin-bottom: 40px
    }

    .blog-grid .blog-details .blog-info ul {
        padding-bottom: 28px
    }

    .blog-grid .blog-details .blog-info ul li {
        font-size: 12px
    }

    .blog-grid .blog-details .blog-info ul li span i {
        font-size: 10px;
        margin-right: 2px
    }

    .blog-grid .blog-details .part-txt h2 {
        font-size: 20px;
        line-height: 30px;
        margin-top: -7px;
        margin-bottom: 11px
    }

    .blog-grid .blog-details .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 23px
    }

    .blog-grid .blog-details .part-txt .quoted {
        padding: 20px;
        margin-bottom: 23px
    }

    .blog-grid .blog-details .part-txt .quoted p {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        font-size: 14px;
        line-height: 24px;
        margin-top: 0;
        margin-bottom: -7px
    }

    .blog-grid .blog-details .part-txt .quoted p .icon {
        width: 40px;
        height: 40px;
        line-height: 35px;
        font-size: 16px;
        border-width: 2px;
        margin-right: 0;
        margin-bottom: 14px
    }

    .blog-grid .blog-details .part-txt .quoted p .text {
        width: 100%
    }

    .blog-grid .blog-details .part-txt .images {
        grid-gap: 10px
    }

    .blog-grid .blog-details .part-txt .images .single-image {
        border-radius: 5px
    }

    .blog-grid .blog-details .part-txt.part-txt-2 {
        padding-top: 10px
    }

    .blog-grid .blog-details .part-txt ul li {
        width: 100%;
        font-size: 14px;
        margin-bottom: 15px
    }

    .blog-grid .blog-details .part-txt .other-option {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding-top: 10px;
        padding-bottom: 30px
    }

    .blog-grid .blog-details .part-txt .other-option .tag {
        width: auto;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: 13px
    }

    .blog-grid .blog-details .part-txt .other-option .tag p {
        font-size: 16px
    }

    .blog-grid .blog-details .part-txt .other-option .tag a {
        font-size: 12px;
        margin: 0 5px 5px
    }

    .blog-grid .blog-details .part-txt .other-option .share p {
        font-size: 16px
    }

    .blog-grid .blog-details .part-txt .other-option .share p a {
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 10px;
        margin: 0 5px
    }

    .blog-grid .blog-details .blog-nav .single-nav.prev-blog {
        padding-right: 0
    }

    .blog-grid .blog-details .blog-nav .single-nav.next-blog {
        padding-left: 0
    }

    .blog-grid .blog-details .blog-nav .single-nav .img {
        width: 80px;
        height: 80px;
        border-radius: 5px
    }

    .blog-grid .blog-details .blog-nav .single-nav .txt {
        width: calc(100% - 100px)
    }

    .blog-grid .blog-details .blog-nav .single-nav .txt a {
        display: block;
        font-size: 14px;
        line-height: 20px;
        margin-top: -4px;
        margin-bottom: -6px
    }

    .blog-grid .blog-details .blog-nav .single-nav .txt a span {
        font-size: 12px;
        margin-top: 9px
    }

    .blog-grid .blog-details .blog-comments {
        padding-top: 10px
    }

    .blog-grid .blog-details .blog-comments .comments h3 {
        font-size: 20px;
        margin-bottom: 21px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment.replied {
        margin-left: 50px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment .part-img {
        width: 70px;
        height: 70px;
        margin-right: 20px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment .part-txt {
        width: calc(100% - 90px);
        padding: 20px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment .part-txt .top {
        margin-bottom: 15px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment .part-txt h4 {
        font-size: 16px;
        margin-top: -1px;
        margin-bottom: 11px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 12px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment .part-txt .bottom span {
        font-size: 12px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment .part-txt .bottom a {
        font-size: 12px
    }

    .blog-grid .blog-details .blog-comments .post-a-comment {
        padding-top: 40px
    }

    .blog-grid .blog-details .blog-comments .post-a-comment h3 {
        font-size: 20px;
        margin-bottom: 22px
    }

    .blog-grid .blog-details .blog-comments .post-a-comment form input {
        height: 50px;
        font-size: 14px;
        margin-bottom: 25px
    }

    .blog-grid .blog-details .blog-comments .post-a-comment form textarea {
        height: 120px;
        font-size: 14px;
        margin-bottom: 25px
    }

    .contact .heading h4 {
        font-size: 18px;
        margin-top: -2px;
        margin-bottom: 17px
    }

    .contact .boxes {
        margin-bottom: -30px
    }

    .contact .boxes .single-box {
        margin-bottom: 30px;
        padding: 30px
    }

    .contact .boxes .single-box .part-icon {
        width: 80px;
        height: 80px;
        padding: 0 10px;
        margin-bottom: 30px
    }

    .contact .boxes .single-box .part-txt h3 {
        font-size: 20px;
        margin-bottom: 21px
    }

    .contact .boxes .single-box .part-txt h3 i {
        font-size: 16px
    }

    .contact .boxes .single-box .part-txt span {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: -7px
    }

    .contact .contact-form {
        padding-bottom: 60px
    }

    .contact .contact-form .title {
        text-align: center;
        margin-bottom: 30px
    }

    .contact .contact-form .title h2 {
        font-size: 25px;
        margin-top: -1px;
        margin-bottom: 22px
    }

    .contact .contact-form .title p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: -5px
    }

    .contact .contact-form form input {
        height: 45px;
        padding: 0 20px;
        font-size: 14px;
        margin-bottom: 20px
    }

    .contact .contact-form form textarea {
        height: 150px;
        padding: 10px 20px;
        font-size: 14px;
        margin-bottom: 20px
    }

    .contact .contact-info .title {
        text-align: center;
        margin-bottom: 30px
    }

    .contact .contact-info .title h2 {
        font-size: 25px;
        margin-top: -1px;
        margin-bottom: 22px
    }

    .contact .contact-info .title p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: -5px
    }

    .contact .contact-info .single-box {
        width: 290px;
        margin: 0 auto 30px;
        padding: 25px
    }

    .contact .contact-info .single-box .icon {
        width: 30px;
        height: 30px;
        line-height: 35px;
        font-size: 12px
    }

    .contact .contact-info .single-box .txt {
        width: calc(100% - 50px)
    }

    .contact .contact-info .single-box .txt h3 {
        font-size: 16px;
        margin-top: 0
    }

    .contact .contact-info .single-box .txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: -7px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .def-btn {
        height: 50px;
        line-height: 48px;
        padding: 0 30px;
        font-size: 14px
    }

    .heading {
        margin-bottom: 50px
    }

    .heading h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -6px
    }

    .heading p {
        font-size: 14px;
        line-height: 24px
    }

    .p-120 {
        padding: 60px 0
    }

    .p-60 {
        padding: 30px 0
    }

    .pt-120 {
        padding-top: 60px
    }

    .pt-60 {
        padding-top: 30px
    }

    .pb-120 {
        padding-bottom: 60px
    }

    .pb-60 {
        padding-bottom: 30px
    }

    .pb-90 {
        padding-bottom: 30px
    }

    .pb-30 {
        padding-bottom: 0
    }

    .pt-360 {
        padding-top: 160px
    }

    .header .top-header .top-left ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .header .top-header .top-left ul li {
        margin: 5px 0
    }

    .header .top-header .top-left ul li:first-child {
        padding-right: 0
    }

    .header .middle-header .logo {
        width: 100px;
        padding: 20px 0
    }

    .header .middle-header .mid-right {
        padding: 20px 0
    }

    .header .middle-header .mid-right .info {
        display: none
    }

    .header .middle-header .mid-right .language {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .header .middle-header .mid-right .language .select-lang .flagstrap-icon.flagstrap-us,
    .header .middle-header .mid-right .language .select-lang .flagstrap-icon.flagstrap-bd,
    .header .middle-header .mid-right .language .select-lang .flagstrap-icon.flagstrap-sp {
        width: 35px;
        height: 22px;
        border-width: 2px;
        border-radius: 0
    }

    .header .middle-header .mid-right .language .select-lang ul {
        left: auto !important;
        right: 0;
        width: 120px;
        min-width: auto
    }

    .header .middle-header .mid-right .language .select-lang ul li a {
        padding: 0 5px;
        font-size: 12px
    }

    .header .middle-header .mid-right .language .select-lang ul li a .flagstrap-icon {
        width: 25px !important;
        height: 16px !important
    }

    .header .middle-header .mid-right .language .select-lang .dropdown-toggle {
        font-size: 14px;
        font-weight: 500
    }

    .navbar-toggler {
        background: #fff;
        color: #5446db;
        padding: 0;
        width: 40px;
        height: 40px;
        border-color: rgba(75, 75, 70, .3);
        line-height: 38px;
        font-size: 30px;
        margin: 5px 0
    }

    .header .bottom-header .next {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .header .bottom-header .bottom-right {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .header .bottom-header .bottom-right .nav-form {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        padding: 0 10px;
        overflow: visible
    }

    .header .bottom-header .bottom-right .nav-form input {
        width: 200px;
        height: 40px;
        font-size: 14px
    }

    .header .bottom-header .bottom-right .nav-form button {
        height: 40px;
        line-height: 46px;
        font-size: 20px
    }

    .header .bottom-header .navbar .navbar-nav .nav-item {
        padding: 0
    }

    .header .bottom-header .navbar .navbar-nav .nav-item .nav-link {
        font-size: 16px;
        padding: 10px 0
    }

    .header .bottom-header .navbar .navbar-nav .nav-item .nav-link:after {
        display: none
    }

    .header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
        padding: 5px 0;
        margin-top: 0;
        display: none;
        opacity: 1;
        visibility: visible;
        -webkit-box-shadow: 0 0;
        box-shadow: 0 0;
        border: 1px solid rgba(75, 75, 70, .25);
        border-radius: 5px
    }

    .header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
        font-size: 14px;
        padding: 13px 15px 12px
    }

    .header .bottom-header .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu .dropdown-item {
        padding: 13px 15px 12px
    }

    .header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show {
        display: block
    }

    .banner {
        padding-bottom: 140px
    }

    .banner .banner-txt {
        padding: 60px 0
    }

    .banner .banner-txt h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 19px
    }

    .banner .banner-txt h1 {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 14px
    }

    .banner .banner-txt p {
        font-size: 14px;
        line-height: 24px
    }

    .banner .banner-txt .btn-box {
        padding-top: 8px
    }

    .banner .banner-txt .btn-box a {
        height: 50px;
        line-height: 48px;
        padding: 0 25px;
        font-size: 14px
    }

    .banner .banner-txt .btn-box a.right-btn {
        margin-left: 10px
    }

    .feature .bg {
        max-width: 320px;
        margin: -80px auto 0
    }

    .feature .bg .single-box {
        padding: 30px 25px;
        border-top: 1px solid rgba(75, 75, 70, .15)
    }

    .feature .bg .single-box.first {
        border-top: 0
    }

    .feature .bg .single-box .part-txt h3 {
        font-size: 20px;
        margin-bottom: 21px
    }

    .feature .bg .single-box .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: -7px
    }

    .feature .bg .single-box .part-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 30px
    }

    .feature .bg .single-box .part-icon span {
        font-size: 35px;
        line-height: 83px
    }

    .about .part-txt {
        margin-bottom: 40px
    }

    .about .part-txt h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -6px;
        margin-bottom: 15px
    }

    .about .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 14px
    }

    .about .part-txt .boxes {
        padding-top: 0;
        margin-bottom: 19px
    }

    .about .part-txt .boxes ul {
        width: 100%;
        margin-bottom: 0
    }

    .about .part-txt .boxes ul li {
        font-size: 12px;
        line-height: 31px
    }

    .about .part-img .counter {
        width: 180px;
        height: 180px;
        border-width: 6px;
        right: 20%
    }

    .about .part-img .counter:after {
        top: -4px;
        right: -4px;
        bottom: -4px;
        left: -4px;
        border-width: 2px
    }

    .about .part-img .counter h2 {
        font-size: 30px;
        margin-bottom: 6px
    }

    .about .part-img .counter p {
        font-size: 14px;
        font-weight: 400
    }

    .cta {
        background: #d7deff
    }

    .cta .part-txt {
        margin-bottom: 40px
    }

    .cta .part-txt h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -6px;
        margin-bottom: 15px
    }

    .cta .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 23px
    }

    .cta .part-txt .part-form {
        padding: 30px
    }

    .cta .part-txt .part-form input {
        height: 50px;
        margin-bottom: 20px;
        font-size: 14px
    }

    .cta .part-img {
        width: 220px;
        margin: 0 auto
    }

    .cta .part-img:after {
        right: -30px;
        border-width: 125px 250px
    }

    .service .single-box {
        max-width: 320px;
        padding: 30px;
        margin: 0 auto 30px
    }

    .service .single-box .part-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 29px
    }

    .service .single-box .part-icon span {
        font-size: 40px;
        line-height: 80px
    }

    .service .single-box .part-txt a {
        font-size: 20px;
        margin-bottom: 21px
    }

    .service .single-box .part-txt p {
        font-size: 14px;
        line-height: 24px
    }

    .pricing .title {
        text-align: center;
        margin-bottom: 50px
    }

    .pricing .title h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -6px;
        margin-bottom: 15px
    }

    .pricing .title p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 23px
    }

    .pricing .title .controls nav .nav {
        margin: 0 auto
    }

    .pricing .title .controls nav .nav .nav-item {
        height: 45px;
        line-height: 45px;
        padding: 0 25px;
        font-size: 14px
    }

    .pricing .tab-pane {
        margin-bottom: -30px
    }

    .pricing .tab-pane .single-box {
        width: 290px;
        margin: 0 auto 30px
    }

    .pricing .tab-pane .single-box .top h3 {
        font-size: 20px;
        font-weight: 500;
        padding-top: 29px;
        padding-bottom: 57px
    }

    .pricing .tab-pane .single-box .top .price {
        padding-top: 23px;
        padding-bottom: 18px;
        margin: -30px 30px 0
    }

    .pricing .tab-pane .single-box .top .price h4 {
        font-size: 25px
    }

    .pricing .tab-pane .single-box .top .price h4 span:first-child {
        font-size: 16px;
        font-weight: 500;
        top: 1px;
        left: -12px
    }

    .pricing .tab-pane .single-box .top .price h4 span:last-child {
        font-size: 14px
    }

    .pricing .tab-pane .single-box .middle ul li {
        height: 40px;
        line-height: 40px;
        font-size: 14px
    }

    .pricing .tab-pane .single-box .bottom .def-btn {
        height: 40px;
        line-height: 40px;
        font-size: 14px
    }

    .testimonial .comment-slider .single-comment {
        padding: 33px 25px
    }

    .testimonial .comment-slider .single-comment .part-img {
        width: 100px;
        height: 100px;
        margin-bottom: 30px
    }

    .testimonial .comment-slider .single-comment .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 22px
    }

    .testimonial .comment-slider .single-comment .part-txt h3 {
        font-size: 20px;
        margin-bottom: 16px
    }

    .testimonial .comment-slider .single-comment .part-txt h5 {
        font-size: 14px;
        margin-bottom: -2px
    }

    .testimonial .comment-slider .single-comment.slick-current:before {
        width: 300px
    }

    .testimonial .comment-slider .slick-arrow {
        display: none
    }

    .blog .blog-slider {
        margin-bottom: 30px
    }

    .blog .blog-slider .slick-list .single-blog .part-img {
        height: 400px
    }

    .blog .blog-slider .slick-list .single-blog .part-img img {
        max-width: none;
        height: 100%
    }

    .blog .blog-slider .slick-list .single-blog .part-txt {
        left: 25px;
        bottom: 25px;
        right: 25px
    }

    .blog .blog-slider .slick-list .single-blog .part-txt .blog-info {
        margin-bottom: 24px;
        padding-bottom: 30px
    }

    .blog .blog-slider .slick-list .single-blog .part-txt .blog-info li {
        font-size: 12px
    }

    .blog .blog-slider .slick-list .single-blog .part-txt .blog-info li:first-child {
        padding: 0 10px
    }

    .blog .blog-slider .slick-list .single-blog .part-txt .blog-info li span {
        padding: 0 10px
    }

    .blog .blog-slider .slick-list .single-blog .part-txt a {
        font-size: 18px;
        line-height: 28px
    }

    .blog .blog-static .single-blog {
        max-width: 400px;
        margin: 0 auto 30px
    }

    .blog .blog-static .single-blog .part-img img {
        width: 100%
    }

    .blog .blog-static .single-blog .part-txt {
        left: 25px;
        bottom: 25px;
        right: 25px
    }

    .blog .blog-static .single-blog .part-txt .blog-info {
        padding-bottom: 20px;
        margin-bottom: 14px
    }

    .blog .blog-static .single-blog .part-txt .blog-info li {
        font-size: 12px
    }

    .blog .blog-static .single-blog .part-txt .blog-info li:first-child {
        padding: 0 10px
    }

    .blog .blog-static .single-blog .part-txt .blog-info li span {
        padding: 0 10px
    }

    .blog .blog-static .single-blog .part-txt a {
        font-size: 18px;
        line-height: 28px
    }

    .partner .all-brand {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        row-gap: 15px;
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .partner .all-brand .single-box {
        width: calc(100%/3 - 20px)
    }

    .footer {
        background: #5446db
    }

    .footer .main-footer h3 {
        font-size: 20px;
        font-weight: 500;
        padding-bottom: 9px;
        margin-bottom: 25px
    }

    .footer .main-footer .footer-about {
        margin-bottom: 40px
    }

    .footer .main-footer .footer-about p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 19px
    }

    .footer .main-footer .footer-about ul li {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 9px
    }

    .footer .main-footer .footer-about ul li span {
        font-size: 12px
    }

    .footer .main-footer .links {
        margin-bottom: 40px
    }

    .footer .main-footer .links ul li a {
        font-size: 14px
    }

    .footer .main-footer .newsletter p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 18px
    }

    .footer .main-footer .newsletter form {
        margin-bottom: 25px
    }

    .footer .main-footer .newsletter form input {
        height: 50px;
        font-size: 14px
    }

    .footer .main-footer .newsletter form button {
        height: 50px;
        line-height: 56px;
        font-size: 20px
    }

    .footer .main-footer .instagram-post .all-post {
        margin: -5px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .footer .main-footer .instagram-post .all-post .single-post {
        width: calc(100%/3 - 10px);
        margin: 5px;
        border-radius: 5px
    }

    .footer .main-footer .instagram-post .all-post .single-post img {
        width: 100%
    }

    .footer .copyright {
        background: #402bc1
    }

    .footer .copyright p {
        text-align: center;
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 10px
    }

    .footer .copyright .link {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .footer .copyright .link a {
        font-size: 14px;
        font-weight: 400;
        padding: 0 5px
    }

    .header-2 .navbar-toggler {
        color: #ff4d49
    }

    .banner.banner-2 {
        padding-bottom: 60px
    }

    .banner.banner-2 .banner-txt h4 {
        letter-spacing: 1px
    }

    .banner.banner-2 .part-img {
        width: 290px;
        margin: 0 auto
    }

    .banner.banner-2 .part-img .vector-3 {
        top: 50px;
        left: 15px;
        width: 60px
    }

    .about.about-2 .part-txt {
        margin-bottom: 0
    }

    .about.about-2 .part-img {
        width: 290px;
        margin: 0 auto 30px
    }

    .about.about-2 .part-img .vector-1 {
        top: 51%;
        left: 46.5%;
        width: 50px
    }

    .about.about-2 .part-img .vector-2 {
        bottom: 7%;
        left: 30%;
        width: 40px;
        height: 40px
    }

    .about.about-2 .part-img .vector-3 {
        bottom: -2%;
        left: 14%;
        width: 55px;
        height: 55px
    }

    .about.about-2 .part-txt .progress-area {
        padding: 7px 0
    }

    .about.about-2 .part-txt .progress-area .group {
        margin-bottom: 23px
    }

    .cta-2 .bg {
        padding-left: 20px;
        padding-right: 20px
    }

    .cta-2 .bg .title {
        margin-bottom: 50px
    }

    .cta-2 .bg .title p {
        font-size: 18px;
        margin-top: -2px;
        margin-bottom: 23px
    }

    .cta-2 .bg .title h2 {
        font-size: 30px;
        line-height: 35px;
        margin-bottom: -7px
    }

    .cta-2 .bg .form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .cta-2 .bg .form input {
        width: calc(100% - 20px);
        margin: 0 10px;
        height: 60px;
        font-size: 14px;
        padding: 0 20px
    }

    .cta-2 .bg .form input:first-child {
        border-right: 0;
        border-bottom: 1px solid #ff4d49
    }

    .cta-2 .bg .form button {
        width: 100%;
        height: 60px;
        line-height: 60px;
        font-size: 16px
    }

    .fun-fact {
        margin-bottom: -30px
    }

    .fun-fact .single-box {
        padding-bottom: 45px;
        margin: 0 auto 30px
    }

    .fun-fact .single-box .part-icon {
        width: 80px;
        margin-bottom: 30px
    }

    .fun-fact .single-box .part-txt h2 {
        font-size: 30px;
        margin-top: -7px;
        margin-bottom: 15px
    }

    .fun-fact .single-box .part-txt p {
        font-size: 14px;
        margin-bottom: -2px
    }

    .success .part-txt {
        padding: 0;
        margin-bottom: 30px
    }

    .success .part-txt h2 {
        font-size: 30px;
        line-height: 40px;
        margin-top: -6px;
        margin-bottom: 14px
    }

    .success .part-txt p {
        font-size: 14px;
        line-height: 24px
    }

    .success .part-txt .progress-area {
        padding-top: 8px;
        margin: -10px
    }

    .success .part-txt .progress-area .single-skill {
        padding: 10px
    }

    .success .part-txt .progress-area .single-skill .circle-chart .circle-chart__info .circle-chart__percent {
        font-size: 7px;
        font-weight: 500
    }

    .success .part-txt .progress-area .single-skill .circle-chart .circle-chart__info .circle-chart__subline {
        font-size: 4px;
        font-weight: 400
    }

    .circle-chart__info {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    .success .part-img {
        max-width: 320px;
        margin: 0 auto
    }

    .portfolio .portfolio-slider {
        max-width: 320px;
        margin: 0 auto
    }

    .portfolio .portfolio-slider .slick-list .single-box {
        padding: 20px
    }

    .portfolio .portfolio-slider .slick-list .single-box:after {
        top: 10px;
        right: 10px;
        bottom: 10px;
        left: 10px
    }

    .portfolio .portfolio-slider .slick-list .single-box .part-txt h3 {
        height: 50px;
        line-height: 50px;
        font-size: 20px;
        font-weight: 500
    }

    .portfolio .portfolio-slider .slick-list .single-box .view-btn {
        top: 10px;
        right: 10px;
        bottom: 10px;
        left: 10px
    }

    .portfolio .portfolio-slider .slick-list .single-box .view-btn a {
        width: 50px;
        height: 50px;
        line-height: 60px;
        font-size: 25px
    }

    .team {
        margin-bottom: -30px
    }

    .team .single-box {
        width: 290px;
        margin: 0 auto 30px
    }

    .team .single-box .part-txt {
        padding: 23px 0
    }

    .team .single-box .part-txt a {
        font-size: 20px;
        margin-bottom: 11px
    }

    .team .single-box .part-txt p {
        font-size: 14px;
        margin-bottom: 0
    }

    .team .single-box .social ul li {
        padding: 5px 0
    }

    .app-download .part-img {
        max-width: 320px;
        margin: 0 auto 30px
    }

    .app-download .part-txt h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -7px;
        margin-bottom: 15px
    }

    .app-download .part-txt p {
        font-size: 14px;
        line-height: 24px
    }

    .app-download .part-txt .btn-box {
        padding-top: 8px
    }

    .blog-2 .single-blog {
        max-width: 320px;
        margin: 0 auto 30px
    }

    .blog-2 .single-blog .part-txt {
        padding: 20px;
        padding-left: 40px
    }

    .blog-2 .single-blog .part-txt:before {
        left: 19px
    }

    .blog-2 .single-blog .part-txt:after {
        left: 12px;
        width: 16px;
        height: 16px
    }

    .blog-2 .single-blog .part-txt a {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 17px
    }

    .blog-2 .single-blog .part-txt ul {
        padding-top: 25px
    }

    .blog-2 .single-blog .part-txt ul li {
        font-size: 12px
    }

    .def-breadcrumb .part-txt {
        padding: 60px 0
    }

    .def-breadcrumb .part-txt h1 {
        font-size: 30px;
        margin-top: -4px;
        margin-bottom: 23px
    }

    .def-breadcrumb .part-txt ul {
        margin-bottom: -2px
    }

    .def-breadcrumb .part-txt ul li {
        font-size: 14px;
        margin-right: 10px
    }

    .def-breadcrumb .part-txt ul li i {
        font-size: 12px
    }

    .video {
        margin-bottom: -100px
    }

    .video .video-area {
        padding: 80px 0
    }

    .video .video-area a {
        width: 80px;
        height: 80px;
        line-height: 85px;
        font-size: 30px
    }

    .fun-fact-2 {
        padding-bottom: 30px
    }

    .fun-fact-2 .single-box {
        margin-bottom: 30px
    }

    .fun-fact-2 .single-box {
        margin-bottom: 30px
    }

    .fun-fact-2 .single-box:before,
    .fun-fact-2 .single-box:after {
        width: 60px
    }

    .fun-fact-2 .single-box .part-icon {
        width: 70px;
        margin-bottom: 19px
    }

    .fun-fact-2 .single-box .part-txt h2 {
        font-size: 35px;
        margin-bottom: 15px
    }

    .fun-fact-2 .single-box .part-txt p {
        font-size: 14px;
        margin-bottom: -2px
    }

    .timeline .single-box {
        max-width: 320px;
        margin: 0 auto 30px
    }

    .timeline .single-box .title {
        height: 50px;
        border-radius: 10px;
        margin-bottom: 25px
    }

    .timeline .single-box .title:after {
        border-radius: 9px
    }

    .timeline .single-box .title h3 {
        height: 50px;
        line-height: 50px;
        font-weight: 600;
        font-size: 25px
    }

    .timeline .single-box .title h3:before,
    .timeline .single-box .title h3:after {
        width: 20px;
        height: 2px
    }

    .timeline .single-box .part-txt {
        padding: 0 20px
    }

    .timeline .single-box .part-txt h3 {
        font-size: 20px;
        margin-top: -1px;
        margin-bottom: 16px
    }

    .timeline .single-box .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: -7px
    }

    .choosing-reason .part-img {
        max-width: 320px;
        margin: 0 auto 40px
    }

    .choosing-reason .part-txt h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -6px;
        margin-bottom: 15px
    }

    .choosing-reason .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 10px
    }

    .choosing-reason .part-txt ul li {
        font-size: 14px
    }

    .choosing-reason .part-txt ul li i {
        font-size: 12px;
        margin-right: 5px
    }

    .service-txt {
        margin-bottom: -50px
    }

    .service-txt .part-img {
        max-width: 320px;
        margin: 0 auto 40px
    }

    .service-txt .part-txt h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -6px;
        margin-bottom: 15px
    }

    .service-txt .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 22px
    }

    .service-txt .part-txt .boxes {
        margin-bottom: 30px
    }

    .service-txt .part-txt .boxes .single-box h3 {
        font-size: 18px;
        margin-bottom: 11px
    }

    .service-txt .part-txt .boxes .single-box span {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: -7px
    }

    .pricing.pricing-inner {
        padding-top: 110px;
        background-position-x: left
    }

    .free-analysis .part-txt {
        margin-bottom: 40px
    }

    .free-analysis .part-txt h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -6px;
        margin-bottom: 15px
    }

    .free-analysis .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 11px
    }

    .free-analysis .part-txt .part-form input {
        height: 50px;
        padding: 0 25px;
        font-size: 14px;
        border-radius: 5px;
        margin-bottom: 20px
    }

    .free-analysis .part-img {
        max-width: 320px;
        margin: 0 auto
    }

    .service-details .next {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .service-details .sidebar .nav {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 10px
    }

    .service-details .sidebar .nav .nav-link {
        width: calc(50% - 5px);
        height: 50px;
        font-size: 16px;
        margin-bottom: 10px
    }

    .service-details .sidebar .nav .nav-link span {
        width: 30px;
        height: 30px;
        line-height: 36px;
        font-size: 18px;
        margin-right: 10px
    }

    .service-details .main-content .main-img {
        padding: 5px;
        border-radius: 10px;
        margin-bottom: 30px
    }

    .service-details .main-content .main-img img {
        border-radius: 7px
    }

    .service-details .main-content .part-txt {
        margin-bottom: 40px
    }

    .service-details .main-content .part-txt h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -6px;
        margin-bottom: 15px
    }

    .service-details .main-content .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 12px
    }

    .service-details .main-content .part-txt h3 {
        font-size: 20px;
        line-height: 30px;
        padding-top: 4px;
        margin-bottom: 11px
    }

    .service-details .main-content .part-txt ul li {
        width: 100%;
        font-size: 14px
    }

    .service-details .main-content .part-txt ul li i {
        font-size: 12px;
        margin-right: 5px
    }

    .service-details .main-content .part-txt p.marked-txt {
        padding: 24px 25px 23px
    }

    .service-details .main-content .part-tab nav .nav {
        padding: 0 5px
    }

    .service-details .main-content .part-tab nav .nav .nav-link {
        height: 60px;
        line-height: 16px;
        font-size: 14px;
        font-weight: 400;
        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
    }

    .service-details .main-content .part-tab .tab-content {
        padding-top: 30px
    }

    .service-details .main-content .part-tab .tab-content .txt {
        padding-right: 0;
        margin-bottom: 23px
    }

    .service-details .main-content .part-tab .tab-content .img {
        max-width: 320px;
        margin: 0 auto
    }

    .team.team-page {
        margin-bottom: 0
    }

    .team.team-page .single-box {
        min-height: 300px
    }

    .team-details .profile {
        max-width: 320px;
        margin: 0 auto 30px
    }

    .team-details .profile .part-img {
        max-height: 350px
    }

    .team-details .profile .txt {
        padding: 25px 0
    }

    .team-details .profile .txt h3 {
        font-size: 20px;
        margin-top: -1px;
        margin-bottom: 16px
    }

    .team-details .profile .txt span {
        font-size: 14px;
        margin-bottom: -2px
    }

    .team-details .profile .social ul li a {
        width: 35px;
        height: 35px;
        line-height: 40px;
        font-size: 14px
    }

    .team-details .biography h2 {
        font-size: 25px;
        margin-top: -2px;
        margin-bottom: 26px
    }

    .team-details .biography ul:nth-last-of-type(1) {
        margin-bottom: 6px
    }

    .team-details .biography ul li {
        width: 100%;
        height: 50px;
        padding: 0 25px;
        font-size: 14px;
        line-height: 50px;
        border-radius: 5px
    }

    .team-details .biography ul li:nth-child(2) {
        background: 0 0;
        border: 0
    }

    .team-details .biography ul li span {
        min-width: 130px
    }

    .team-details .biography ul:nth-child(2n+1) li {
        background: #f7f7fe;
        border: 1px solid rgba(75, 75, 70, .05)
    }

    .team-details .biography ul:nth-child(2n+1) li:nth-child(2) {
        background: 0 0;
        border: 0
    }

    .team-details .biography p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 17px
    }

    .team-details .skill {
        padding-top: 5px
    }

    .team-details .skill .single-box {
        margin-bottom: 20px
    }

    .team-details .skill .single-box p {
        font-size: 14px;
        margin-bottom: 8px
    }

    .team-details .education {
        padding-top: 30px
    }

    .team-details .education h3 {
        font-size: 20px;
        margin-top: -1px;
        margin-bottom: 16px
    }

    .team-details .education ul {
        margin-bottom: -8px
    }

    .team-details .education ul li {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 11px
    }

    .team-details .education ul li span {
        font-size: 14px
    }

    .pricing-2 {
        padding-bottom: 30px
    }

    .pricing-2 .single-box {
        max-width: 320px;
        margin: 0 auto 30px
    }

    .pricing-2 .single-box .top {
        margin-bottom: 25px
    }

    .pricing-2 .single-box .top h3 {
        font-size: 20px;
        margin-bottom: 22px
    }

    .pricing-2 .single-box .top .price {
        width: 150px;
        height: 150px
    }

    .pricing-2 .single-box .top .price h4 {
        font-size: 30px
    }

    .pricing-2 .single-box .top .price h4 span {
        font-size: 20px
    }

    .pricing-2 .single-box .middle ul {
        margin-bottom: 23px
    }

    .pricing-2 .single-box .middle ul li {
        font-size: 14px
    }

    .pricing-3 {
        padding-bottom: 30px
    }

    .pricing-3 .single-box {
        max-width: 320px;
        margin: 0 auto 30px
    }

    .pricing-3 .single-box .top h3 {
        font-size: 20px;
        margin-bottom: 22px
    }

    .pricing-3 .single-box .top .price h4 {
        font-size: 30px
    }

    .pricing-3 .single-box .top .price h4 span {
        font-size: 20px
    }

    .pricing-3 .single-box .middle ul li {
        font-size: 14px
    }

    .cart .table-responsive {
        margin-bottom: 40px
    }

    .cart .table {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content
    }

    .cart .table thead tr th {
        font-size: 16px;
        padding: 25px 30px
    }

    .cart .table tbody tr td {
        padding: 20px
    }

    .cart .table tbody tr td:first-child {
        width: 300px
    }

    .cart .table tbody tr td .product .part-img {
        width: 70px;
        margin-right: 15px
    }

    .cart .table tbody tr td .product .part-txt {
        width: calc(100% - 85px)
    }

    .cart .table tbody tr td .product .part-txt p {
        font-size: 14px;
        line-height: 24px
    }

    .cart .table tbody tr td .price p {
        font-size: 14px
    }

    .cart .table tbody tr td .product-quantity .product-count .quantity input {
        width: 65px;
        font-size: 14px;
        margin: 0
    }

    .cart .cart-totals {
        width: 450px;
        margin: 0 auto
    }

    .cart .cart-totals .coupon .coupon-title {
        padding: 20px
    }

    .cart .cart-totals .coupon .coupon-title h3 {
        font-size: 16px
    }

    .cart .cart-totals .coupon .part-txt {
        padding: 20px
    }

    .cart .cart-totals .coupon .part-txt p {
        font-size: 12px;
        margin-bottom: 18px
    }

    .cart .cart-totals .coupon .part-txt form input {
        height: 50px;
        padding: 0 20px;
        font-size: 14px;
        margin-bottom: 20px
    }

    .cart .cart-totals .coupon .part-txt form button {
        font-size: 14px;
        padding: 0 20px
    }

    .cart .cart-totals .proceed-to-checkout .checkout-title {
        padding: 20px
    }

    .cart .cart-totals .proceed-to-checkout .checkout-title h3 {
        font-size: 16px
    }

    .cart .cart-totals .proceed-to-checkout .part-txt {
        padding: 20px 20px 13px
    }

    .cart .cart-totals .proceed-to-checkout .part-txt ul {
        margin-top: -1px;
        padding-bottom: 0
    }

    .cart .cart-totals .proceed-to-checkout .part-txt ul li {
        font-size: 16px;
        margin-bottom: 16px
    }

    .cart .cart-totals .proceed-to-checkout .part-txt button {
        font-size: 14px
    }

    .cart .cart-totals .proceed-to-checkout .bottom-box {
        padding: 20px
    }

    .cart .cart-totals .proceed-to-checkout .bottom-box ul {
        margin-top: -1px;
        padding-bottom: 2px
    }

    .cart .cart-totals .proceed-to-checkout .bottom-box ul li {
        font-size: 16px
    }

    .cart .cart-totals .proceed-to-checkout .bottom-box .def-btn {
        font-size: 14px;
        padding: 0 20px
    }

    .checkout .notification {
        height: 75px;
        line-height: 73px;
        padding: 0 20px;
        margin-bottom: 30px
    }

    .checkout .notification p {
        font-size: 14px
    }

    .checkout .notification p span {
        font-size: 14px
    }

    .checkout form .title h2 {
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 21px
    }

    .checkout form input:not([type=radio]),
    .checkout form select {
        height: 50px;
        margin-bottom: 20px;
        padding: 0 20px;
        font-size: 14px
    }

    .checkout form textarea {
        height: 130px;
        padding: 10px 20px;
        font-size: 14px
    }

    .checkout form .payment-method {
        margin-top: 23px
    }

    .checkout form .payment-method .options {
        padding: 25px
    }

    .checkout form .payment-method .options .form-check:last-child {
        margin-bottom: 8px
    }

    .checkout form .payment-method .options .form-check label {
        font-size: 14px
    }

    .checkout form .payment-method .options .form-check .note {
        display: none
    }

    .checkout form .payment-method .options .form-check img {
        width: 120px;
        margin-left: 20px
    }

    .checkout form .payment-method .options .form-check a {
        font-size: 14px;
        margin-left: 20px
    }

    .checkout form .payment-method .bottom-section {
        padding: 25px
    }

    .checkout form .payment-method .bottom-section p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 18px
    }

    .faq .next {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .faq .part-img {
        margin-bottom: 40px
    }

    .faq .part-img:last-child {
        margin-top: -20px
    }

    .faq .part-txt .top-txt {
        padding-bottom: 7px
    }

    .faq .part-txt .top-txt h2 {
        font-size: 25px;
        margin-top: -2px;
        margin-bottom: 20px
    }

    .faq .part-txt .top-txt p {
        font-size: 14px;
        line-height: 24px
    }

    .faq .part-txt .accordion .card {
        margin-bottom: 25px
    }

    .faq .part-txt .accordion .card .card-header h2 button {
        padding: 0 20px;
        font-size: 14px
    }

    .faq .part-txt .accordion .card .card-body {
        padding: 20px 20px 13px;
        margin-top: 10px
    }

    .faq .part-txt .accordion .card .card-body p {
        font-size: 14px;
        line-height: 24px
    }

    .error .part-img {
        max-width: 320px;
        margin: 0 auto 30px
    }

    .error .part-txt h2 {
        font-size: 25px;
        margin-top: -3px;
        margin-bottom: 19px
    }

    .error .part-txt h3 {
        font-size: 20px;
        margin-bottom: 16px
    }

    .error .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 23px
    }

    .portfolio-page .single-box {
        max-width: 320px;
        min-height: 250px;
        margin: 0 auto 30px
    }

    .portfolio-page .single-box .part-txt {
        padding: 30px
    }

    .portfolio-page .single-box .part-txt span {
        height: 20px;
        line-height: 20px;
        font-size: 12px;
        padding: 0 15px;
        margin-bottom: 20px
    }

    .portfolio-page .single-box .part-txt h3 {
        font-size: 20px;
        margin-bottom: 16px
    }

    .portfolio-page .single-box .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 16px
    }

    .portfolio-page .single-box .part-txt a {
        font-size: 14px
    }

    .portfolio-single .main-img {
        margin-bottom: 40px
    }

    .portfolio-single .project-information h2 {
        font-size: 25px;
        margin-top: -2px;
        margin-bottom: 26px
    }

    .portfolio-single .project-information ul li {
        font-size: 14px;
        line-height: 40px;
        padding: 5px 20px
    }

    .portfolio-single .project-information ul li span {
        width: 30%;
        font-size: 14px
    }

    .portfolio-single .project-information ul li a {
        font-size: 14px;
        margin: 0 2px
    }

    .portfolio-single .main-txt h3 {
        font-size: 25px;
        margin-top: -2px;
        margin-bottom: 20px
    }

    .portfolio-single .main-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 17px
    }

    .portfolio-single .main-txt ul {
        margin-top: 0;
        padding-top: 2px;
        margin-bottom: -14px
    }

    .portfolio-single .main-txt ul li {
        width: 100%;
        font-size: 14px
    }

    .portfolio-single .boxes {
        padding-left: 10px;
        padding-right: 10px
    }

    .portfolio-single .boxes .part-img {
        margin: 0 -10px;
        padding: 10px
    }

    .portfolio-single .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: -7px
    }

    .shop .sidebar {
        max-width: 320px;
        margin: 0 auto 60px
    }

    .shop .sidebar .search-box {
        border-radius: 5px
    }

    .shop .sidebar .search-box form input {
        width: calc(100% - 45px);
        height: 45px;
        font-size: 14px
    }

    .shop .sidebar .search-box form button {
        width: 45px;
        height: 45px;
        line-height: 55px;
        font-size: 25px
    }

    .shop .sidebar h3 {
        font-size: 20px;
        padding-bottom: 12px
    }

    .shop .sidebar .category ul {
        margin-top: -12px
    }

    .shop .sidebar .category ul li a {
        font-size: 14px;
        line-height: 35px
    }

    .shop .sidebar .filter-by-price .range .slider-range {
        margin-bottom: 12px
    }

    .shop .sidebar .filter-by-price .range .price-txt span,
    .shop .sidebar .filter-by-price .range .price-txt input {
        font-size: 14px
    }

    .shop .sidebar .feat-products ul li .txt a {
        font-size: 14px
    }

    .shop .sidebar .feat-products ul li .txt p {
        font-size: 12px
    }

    .shop .sidebar .feat-products ul li .txt .star {
        font-size: 8px
    }

    .shop .sidebar .filter-by-color .form-group {
        margin: -2px 0
    }

    .shop .sidebar .filter-by-color .form-group .form-check {
        padding-left: 30px
    }

    .shop .sidebar .filter-by-color .form-group .form-check input {
        margin-left: -30px
    }

    .shop .sidebar .filter-by-color .form-group .form-check .circle {
        width: 15px;
        height: 15px;
        line-height: 16px;
        font-size: 8px
    }

    .shop .sidebar .filter-by-color .form-group .form-check label {
        font-size: 14px
    }

    .shop .main-content .top-bar {
        margin-bottom: 40px
    }

    .shop .main-content .top-bar p {
        font-size: 14px
    }

    .shop .main-content .top-bar form {
        padding: 0 10px
    }

    .shop .main-content .top-bar form label {
        font-size: 14px
    }

    .shop .main-content .top-bar form select {
        font-size: 14px;
        height: 40px
    }

    .shop .main-content .single-box {
        max-width: 320px;
        padding: 20px;
        margin: 0 auto 30px
    }

    .shop .main-content .single-box .part-img .tag {
        top: 10px;
        left: 10px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 12px
    }

    .shop .main-content .single-box .part-img .cart-option {
        top: 10px;
        right: 10px
    }

    .shop .main-content .single-box .part-txt {
        padding-bottom: 10px;
        margin-top: -4px
    }

    .shop .main-content .single-box .part-txt a {
        font-size: 18px
    }

    .shop .main-content .shopnu-pagination ul li {
        margin: 0 2.5px
    }

    .shop .main-content .shopnu-pagination ul li a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 14px
    }

    .shop-details .item-section .part-img {
        margin-bottom: 40px
    }

    .shop-details .item-section .part-img .product-slider .owl-item {
        padding: 20px
    }

    .shop-details .item-section .part-img .owl-thumbs {
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px
    }

    .shop-details .item-section .part-img .owl-thumbs .owl-thumb-item {
        border-radius: 5px
    }

    .shop-details .item-section .part-txt h3 {
        font-size: 20px;
        line-height: 30px;
        margin-top: -7px;
        margin-bottom: 22px
    }

    .shop-details .item-section .part-txt .info {
        margin-bottom: 19px
    }

    .shop-details .item-section .part-txt .info .price {
        height: 25px;
        line-height: 25px;
        font-size: 14px;
        padding: 0 15px
    }

    .shop-details .item-section .part-txt .info h5 {
        height: 25px;
        line-height: 25px;
        font-size: 14px;
        padding: 0 15px
    }

    .shop-details .item-section .part-txt .item-rating {
        margin-bottom: 22px
    }

    .shop-details .item-section .part-txt .item-rating .star {
        font-size: 10px
    }

    .shop-details .item-section .part-txt .item-rating a {
        font-size: 14px
    }

    .shop-details .item-section .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 10px
    }

    .shop-details .item-section .part-txt .cart-option ul li {
        font-size: 14px
    }

    .shop-details .item-section .part-txt .cart-option ul li span {
        width: 12px;
        height: 12px
    }

    .shop-details .item-section .part-txt .cart-option ul li .product-count .quantity input {
        width: 40px;
        height: 30px;
        margin: 0;
        font-size: 14px
    }

    .shop-details .item-section .part-txt .cart-option ul li .product-count .quantity .quantity-nav .quantity-button {
        height: 30px;
        line-height: 30px;
        width: 30px;
        font-size: 14px
    }

    .shop-details .item-section .part-txt .cart-option ul li .product-count {
        margin-right: 5px
    }

    .shop-details .item-section .part-txt .cart-option ul li .rel-btns a {
        height: 32px;
        line-height: 30px;
        font-size: 12px;
        margin-left: 5px
    }

    .shop-details .item-section .part-txt .cart-option ul li .rel-btns a.add-to-cart {
        margin-right: 5px
    }

    .shop-details .dscr-section {
        padding: 30px 20px
    }

    .shop-details .dscr-section .box .nav {
        margin-bottom: 20px
    }

    .shop-details .dscr-section .box .nav .nav-link {
        text-align: center;
        width: 100%;
        height: 40px;
        line-height: 40px;
        padding: 0 20px;
        font-size: 14px;
        margin: 0 0 10px
    }

    .shop-details .dscr-section .box .tab-pane .dscr p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 20px
    }

    .shop-details .dscr-section .box .tab-pane .dscr ul {
        margin-top: -3px;
        margin-bottom: -7px
    }

    .shop-details .dscr-section .box .tab-pane .dscr ul li {
        font-size: 14px;
        line-height: 24px;
        padding-left: 15px;
        margin-bottom: 7px
    }

    .shop-details .dscr-section .box .tab-pane .dscr ul li:after {
        top: 6px
    }

    .shop-details .dscr-section .box .tab-pane .dscr ul li:last-child {
        margin-bottom: 0
    }

    .shop-details .dscr-section .box .tab-pane .product-data ul li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: auto;
        padding: 0 15px;
        font-size: 14px;
        line-height: 40px
    }

    .shop-details .dscr-section .box .tab-pane .reviews .single-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .shop-details .dscr-section .box .tab-pane .reviews .single-box .part-img {
        width: 70px;
        margin-right: 0;
        margin-bottom: 20px
    }

    .shop-details .dscr-section .box .tab-pane .reviews .single-box .part-txt {
        width: 100%;
        padding: 20px
    }

    .shop-details .dscr-section .box .tab-pane .reviews .single-box .part-txt .title h3 {
        font-size: 16px;
        margin-top: -1px
    }

    .shop-details .dscr-section .box .tab-pane .reviews .single-box .part-txt .title .star {
        font-size: 8px
    }

    .shop-details .dscr-section .box .tab-pane .reviews .single-box .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 12px
    }

    .shop-details .dscr-section .box .tab-pane .reviews .single-box .part-txt span {
        font-size: 12px
    }

    .shop-details .dscr-section .box .tab-pane .post-a-review h3 {
        font-size: 20px;
        margin-bottom: 16px
    }

    .shop-details .dscr-section .box .tab-pane .post-a-review p {
        font-size: 12px;
        line-height: 22px
    }

    .shop-details .dscr-section .box .tab-pane .post-a-review form input {
        height: 45px;
        padding: 0 20px;
        font-size: 14px;
        margin-bottom: 20px
    }

    .shop-details .dscr-section .box .tab-pane .post-a-review form textarea {
        height: 120px;
        padding: 15px 20px;
        font-size: 14px;
        margin-bottom: 20px
    }

    .blog-grid .next {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .blog-grid .sidebar {
        max-width: 320px;
        margin: 0 auto 60px
    }

    .blog-grid .sidebar .search-box {
        border-radius: 5px
    }

    .blog-grid .sidebar .search-box form input {
        width: calc(100% - 45px);
        height: 45px;
        font-size: 14px
    }

    .blog-grid .sidebar .search-box form button {
        width: 45px;
        height: 45px;
        line-height: 55px;
        font-size: 25px
    }

    .blog-grid .sidebar h3 {
        font-size: 20px;
        padding-bottom: 12px
    }

    .blog-grid .sidebar .links ul li a {
        font-size: 14px;
        line-height: 31px
    }

    .blog-grid .sidebar .links ul {
        margin-top: -10px
    }

    .blog-grid .sidebar .recent-post ul li .img {
        width: 70px;
        border-radius: 5px;
        margin-right: 10px
    }

    .blog-grid .sidebar .recent-post ul li .txt {
        width: calc(100% - 80px)
    }

    .blog-grid .sidebar .recent-post ul li .txt a {
        font-size: 14px;
        line-height: 24px;
        margin-top: -7px
    }

    .blog-grid .sidebar .recent-post ul li .txt p {
        font-size: 12px
    }

    .blog-grid .sidebar .tags .all-tag a {
        height: 40px;
        line-height: 40px;
        font-size: 12px;
        padding: 0 10px
    }

    .blog-grid .main-content .all-blogs {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%
    }

    .blog-grid .main-content .all-blogs .wrap {
        max-width: 320px;
        margin: 0 auto
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-1 {
        -ms-grid-column-span: 1;
        grid-column: span 1
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-2 {
        -ms-grid-row-span: 1;
        grid-row: span 1
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-1 .single-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-1 .single-box .part-img {
        width: 100%
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-1 .single-box .part-txt {
        width: 100%;
        margin: 0
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-2 .single-box .part-txt {
        margin: 0;
        height: auto
    }

    .blog-grid .main-content .all-blogs .wrap .part-img {
        height: 250px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        overflow: hidden
    }

    .blog-grid .main-content .all-blogs .wrap .part-img img {
        width: 100%
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt {
        padding: 30px 20px
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt h3 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 21px
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt .blog-info {
        padding-bottom: 7px;
        margin-bottom: 24px
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt .blog-info li {
        font-size: 12px
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt .blog-info li span {
        font-size: 10px;
        margin-right: 2px
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 23px
    }

    .blog-grid .main-content .my-pagination {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-top: 40px
    }

    .blog-grid .main-content .my-pagination a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 14px
    }

    .blog-grid .main-content .my-pagination a:last-child {
        margin-right: 0
    }

    .blog-grid .blog-details {
        padding-bottom: 60px
    }

    .blog-grid .blog-details .main-img {
        border-radius: 5px;
        margin-bottom: 40px
    }

    .blog-grid .blog-details .blog-info ul {
        padding-bottom: 28px
    }

    .blog-grid .blog-details .blog-info ul li {
        font-size: 12px
    }

    .blog-grid .blog-details .blog-info ul li span i {
        font-size: 10px;
        margin-right: 2px
    }

    .blog-grid .blog-details .part-txt h2 {
        font-size: 20px;
        line-height: 30px;
        margin-top: -7px;
        margin-bottom: 11px
    }

    .blog-grid .blog-details .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 23px
    }

    .blog-grid .blog-details .part-txt .quoted {
        padding: 20px;
        margin-bottom: 23px
    }

    .blog-grid .blog-details .part-txt .quoted p {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        font-size: 14px;
        line-height: 24px;
        margin-top: 0;
        margin-bottom: -7px
    }

    .blog-grid .blog-details .part-txt .quoted p .icon {
        width: 40px;
        height: 40px;
        line-height: 35px;
        font-size: 16px;
        border-width: 2px;
        margin-right: 0;
        margin-bottom: 14px
    }

    .blog-grid .blog-details .part-txt .quoted p .text {
        width: 100%
    }

    .blog-grid .blog-details .part-txt .images {
        grid-gap: 10px
    }

    .blog-grid .blog-details .part-txt .images .single-image {
        border-radius: 5px
    }

    .blog-grid .blog-details .part-txt.part-txt-2 {
        padding-top: 10px
    }

    .blog-grid .blog-details .part-txt ul li {
        width: 100%;
        font-size: 14px;
        margin-bottom: 15px
    }

    .blog-grid .blog-details .part-txt .other-option {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding-top: 10px;
        padding-bottom: 30px
    }

    .blog-grid .blog-details .part-txt .other-option .tag {
        width: auto;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: 13px
    }

    .blog-grid .blog-details .part-txt .other-option .tag p {
        font-size: 16px
    }

    .blog-grid .blog-details .part-txt .other-option .tag a {
        font-size: 12px;
        margin: 0 5px 5px
    }

    .blog-grid .blog-details .part-txt .other-option .share p {
        font-size: 16px
    }

    .blog-grid .blog-details .part-txt .other-option .share p a {
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 10px;
        margin: 0 5px
    }

    .blog-grid .blog-details .blog-nav .single-nav.prev-blog {
        padding-right: 0
    }

    .blog-grid .blog-details .blog-nav .single-nav.next-blog {
        padding-left: 0
    }

    .blog-grid .blog-details .blog-nav .single-nav .img {
        width: 80px;
        height: 80px;
        border-radius: 5px
    }

    .blog-grid .blog-details .blog-nav .single-nav .txt {
        width: calc(100% - 100px)
    }

    .blog-grid .blog-details .blog-nav .single-nav .txt a {
        display: block;
        font-size: 14px;
        line-height: 20px;
        margin-top: -4px;
        margin-bottom: -6px
    }

    .blog-grid .blog-details .blog-nav .single-nav .txt a span {
        font-size: 12px;
        margin-top: 9px
    }

    .blog-grid .blog-details .blog-comments {
        padding-top: 10px
    }

    .blog-grid .blog-details .blog-comments .comments h3 {
        font-size: 20px;
        margin-bottom: 21px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment.replied {
        margin-left: 30px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment .part-img {
        width: 70px;
        height: 70px;
        margin-right: 0;
        margin-bottom: 20px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment .part-txt {
        width: 100%;
        padding: 20px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment.replied .part-txt {
        width: 100%
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment .part-txt .top {
        margin-bottom: 15px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment .part-txt h4 {
        font-size: 16px;
        margin-top: -1px;
        margin-bottom: 11px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 12px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment .part-txt .bottom span {
        font-size: 12px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment .part-txt .bottom a {
        font-size: 12px
    }

    .blog-grid .blog-details .blog-comments .post-a-comment {
        padding-top: 40px
    }

    .blog-grid .blog-details .blog-comments .post-a-comment h3 {
        font-size: 20px;
        margin-bottom: 22px
    }

    .blog-grid .blog-details .blog-comments .post-a-comment form input {
        height: 50px;
        font-size: 14px;
        margin-bottom: 25px
    }

    .blog-grid .blog-details .blog-comments .post-a-comment form textarea {
        height: 120px;
        font-size: 14px;
        margin-bottom: 25px
    }

    .contact .heading h4 {
        font-size: 18px;
        margin-top: -2px;
        margin-bottom: 17px
    }

    .contact .boxes {
        margin-bottom: -30px
    }

    .contact .boxes .single-box {
        margin-bottom: 30px;
        padding: 30px 35px
    }

    .contact .boxes .single-box .part-icon {
        width: 80px;
        height: 80px;
        padding: 0 10px;
        margin-bottom: 30px
    }

    .contact .boxes .single-box .part-txt h3 {
        font-size: 20px;
        margin-bottom: 21px
    }

    .contact .boxes .single-box .part-txt h3 i {
        font-size: 16px
    }

    .contact .boxes .single-box .part-txt span {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: -7px
    }

    .contact .contact-form {
        padding-bottom: 60px
    }

    .contact .contact-form .title {
        text-align: center;
        margin-bottom: 30px
    }

    .contact .contact-form .title h2 {
        font-size: 25px;
        margin-top: -1px;
        margin-bottom: 22px
    }

    .contact .contact-form .title p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: -5px
    }

    .contact .contact-form form input {
        height: 45px;
        padding: 0 20px;
        font-size: 14px;
        margin-bottom: 20px
    }

    .contact .contact-form form textarea {
        height: 120px;
        padding: 10px 20px;
        font-size: 14px;
        margin-bottom: 20px
    }

    .contact .contact-info .title {
        text-align: center;
        margin-bottom: 30px
    }

    .contact .contact-info .title h2 {
        font-size: 25px;
        margin-top: -1px;
        margin-bottom: 22px
    }

    .contact .contact-info .title p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: -5px
    }

    .contact .contact-info .single-box {
        width: 290px;
        margin: 0 auto 30px;
        padding: 25px
    }

    .contact .contact-info .single-box .icon {
        width: 30px;
        height: 30px;
        line-height: 35px;
        font-size: 12px
    }

    .contact .contact-info .single-box .txt {
        width: calc(100% - 50px)
    }

    .contact .contact-info .single-box .txt h3 {
        font-size: 16px;
        margin-top: 0
    }

    .contact .contact-info .single-box .txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: -7px
    }
}

@media only screen and (min-width:480px) and (max-width:575px) {
    .def-btn {
        height: 50px;
        line-height: 48px;
        padding: 0 30px;
        font-size: 14px
    }

    .heading {
        margin-bottom: 50px
    }

    .heading h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -6px
    }

    .heading p {
        font-size: 14px;
        line-height: 24px
    }

    .p-120 {
        padding: 60px 0
    }

    .p-60 {
        padding: 30px 0
    }

    .pt-120 {
        padding-top: 60px
    }

    .pt-60 {
        padding-top: 30px
    }

    .pb-120 {
        padding-bottom: 60px
    }

    .pb-60 {
        padding-bottom: 30px
    }

    .pb-90 {
        padding-bottom: 30px
    }

    .pb-30 {
        padding-bottom: 0
    }

    .pt-360 {
        padding-top: 160px
    }

    .header .top-header .top-left ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .header .top-header .top-left ul li {
        padding-top: 15px
    }

    .header .top-header .top-left ul li:first-child {
        padding-right: 0
    }

    .header .middle-header .logo {
        width: 100px;
        padding: 20px 0
    }

    .header .middle-header .mid-right {
        padding: 20px 0
    }

    .header .middle-header .mid-right .info {
        display: none
    }

    .header .middle-header .mid-right .language {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .header .middle-header .mid-right .language .select-lang .flagstrap-icon.flagstrap-us,
    .header .middle-header .mid-right .language .select-lang .flagstrap-icon.flagstrap-bd,
    .header .middle-header .mid-right .language .select-lang .flagstrap-icon.flagstrap-sp {
        width: 35px;
        height: 22px;
        border-width: 2px;
        border-radius: 0
    }

    .header .middle-header .mid-right .language .select-lang ul {
        left: auto !important;
        right: 0;
        width: 120px;
        min-width: auto
    }

    .header .middle-header .mid-right .language .select-lang ul li a {
        padding: 0 5px;
        font-size: 12px
    }

    .header .middle-header .mid-right .language .select-lang ul li a .flagstrap-icon {
        width: 25px !important;
        height: 16px !important
    }

    .header .middle-header .mid-right .language .select-lang .dropdown-toggle {
        font-size: 14px;
        font-weight: 500
    }

    .navbar-toggler {
        background: #fff;
        color: #5446db;
        padding: 0;
        width: 40px;
        height: 40px;
        border-color: rgba(75, 75, 70, .3);
        line-height: 38px;
        font-size: 30px;
        margin: 5px 0
    }

    .header .bottom-header .next {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .header .bottom-header .bottom-right {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .header .bottom-header .bottom-right .nav-form {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        padding: 0 10px;
        overflow: visible
    }

    .header .bottom-header .bottom-right .nav-form input {
        width: 200px;
        height: 40px;
        font-size: 14px
    }

    .header .bottom-header .bottom-right .nav-form button {
        height: 40px;
        line-height: 46px;
        font-size: 20px
    }

    .header .bottom-header .navbar .navbar-nav .nav-item {
        padding: 0
    }

    .header .bottom-header .navbar .navbar-nav .nav-item .nav-link {
        font-size: 16px;
        padding: 10px 0
    }

    .header .bottom-header .navbar .navbar-nav .nav-item .nav-link:after {
        display: none
    }

    .header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
        padding: 5px 0;
        margin-top: 0;
        display: none;
        opacity: 1;
        visibility: visible;
        -webkit-box-shadow: 0 0;
        box-shadow: 0 0;
        border: 1px solid rgba(75, 75, 70, .25);
        border-radius: 5px
    }

    .header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
        font-size: 14px;
        padding: 13px 15px 12px
    }

    .header .bottom-header .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu .dropdown-item {
        padding: 13px 15px 12px
    }

    .header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show {
        display: block
    }

    .banner {
        padding-bottom: 140px
    }

    .banner .banner-txt {
        padding: 60px 0
    }

    .banner .banner-txt h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 19px
    }

    .banner .banner-txt h1 {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 14px
    }

    .banner .banner-txt p {
        font-size: 14px;
        line-height: 24px
    }

    .banner .banner-txt .btn-box {
        padding-top: 8px
    }

    .banner .banner-txt .btn-box a {
        height: 50px;
        line-height: 48px;
        padding: 0 25px;
        font-size: 14px
    }

    .banner .banner-txt .btn-box a.right-btn {
        margin-left: 10px
    }

    .feature .bg {
        max-width: 320px;
        margin: -80px auto 0
    }

    .feature .bg .single-box {
        padding: 30px 25px;
        border-top: 1px solid rgba(75, 75, 70, .15)
    }

    .feature .bg .single-box.first {
        border-top: 0
    }

    .feature .bg .single-box .part-txt h3 {
        font-size: 20px;
        margin-bottom: 21px
    }

    .feature .bg .single-box .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: -7px
    }

    .feature .bg .single-box .part-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 30px
    }

    .feature .bg .single-box .part-icon span {
        font-size: 35px;
        line-height: 83px
    }

    .about .part-txt {
        margin-bottom: 40px
    }

    .about .part-txt h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -6px;
        margin-bottom: 15px
    }

    .about .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 14px
    }

    .about .part-txt .boxes {
        padding-top: 0;
        margin-bottom: 19px
    }

    .about .part-txt .boxes ul {
        width: 100%;
        margin-bottom: 0
    }

    .about .part-txt .boxes ul li {
        font-size: 12px;
        line-height: 31px
    }

    .about .part-img .counter {
        width: 160px;
        height: 160px;
        border-width: 6px;
        right: 20%
    }

    .about .part-img .counter:after {
        top: -4px;
        right: -4px;
        bottom: -4px;
        left: -4px;
        border-width: 2px
    }

    .about .part-img .counter h2 {
        font-size: 30px;
        margin-bottom: 6px
    }

    .about .part-img .counter p {
        font-size: 14px;
        font-weight: 400
    }

    .cta {
        background: #d7deff
    }

    .cta .part-txt {
        margin-bottom: 40px
    }

    .cta .part-txt h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -6px;
        margin-bottom: 15px
    }

    .cta .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 23px
    }

    .cta .part-txt .part-form {
        padding: 30px
    }

    .cta .part-txt .part-form input {
        height: 50px;
        margin-bottom: 20px;
        font-size: 14px
    }

    .cta .part-img {
        width: 220px;
        margin: 0 auto
    }

    .cta .part-img:after {
        right: -30px;
        border-width: 125px 250px
    }

    .service .single-box {
        max-width: 320px;
        padding: 30px;
        margin: 0 auto 30px
    }

    .service .single-box .part-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 29px
    }

    .service .single-box .part-icon span {
        font-size: 40px;
        line-height: 80px
    }

    .service .single-box .part-txt a {
        font-size: 20px;
        margin-bottom: 21px
    }

    .service .single-box .part-txt p {
        font-size: 14px;
        line-height: 24px
    }

    .pricing .title {
        text-align: center;
        margin-bottom: 50px
    }

    .pricing .title h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -6px;
        margin-bottom: 15px
    }

    .pricing .title p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 23px
    }

    .pricing .title .controls nav .nav {
        margin: 0 auto
    }

    .pricing .title .controls nav .nav .nav-item {
        height: 45px;
        line-height: 45px;
        padding: 0 25px;
        font-size: 14px
    }

    .pricing .tab-pane {
        margin-bottom: -30px
    }

    .pricing .tab-pane .single-box {
        width: 290px;
        margin: 0 auto 30px
    }

    .pricing .tab-pane .single-box .top h3 {
        font-size: 20px;
        font-weight: 500;
        padding-top: 29px;
        padding-bottom: 57px
    }

    .pricing .tab-pane .single-box .top .price {
        padding-top: 23px;
        padding-bottom: 18px;
        margin: -30px 30px 0
    }

    .pricing .tab-pane .single-box .top .price h4 {
        font-size: 25px
    }

    .pricing .tab-pane .single-box .top .price h4 span:first-child {
        font-size: 16px;
        font-weight: 500;
        top: 1px;
        left: -12px
    }

    .pricing .tab-pane .single-box .top .price h4 span:last-child {
        font-size: 14px
    }

    .pricing .tab-pane .single-box .middle ul li {
        height: 40px;
        line-height: 40px;
        font-size: 14px
    }

    .pricing .tab-pane .single-box .bottom .def-btn {
        height: 40px;
        line-height: 40px;
        font-size: 14px
    }

    .testimonial .comment-slider .single-comment {
        padding: 33px 25px
    }

    .testimonial .comment-slider .single-comment .part-img {
        width: 100px;
        height: 100px;
        margin-bottom: 30px
    }

    .testimonial .comment-slider .single-comment .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 22px
    }

    .testimonial .comment-slider .single-comment .part-txt h3 {
        font-size: 20px;
        margin-bottom: 16px
    }

    .testimonial .comment-slider .single-comment .part-txt h5 {
        font-size: 14px;
        margin-bottom: -2px
    }

    .blog .blog-slider {
        margin-bottom: 30px
    }

    .blog .blog-slider .slick-list .single-blog .part-img {
        height: 400px
    }

    .blog .blog-slider .slick-list .single-blog .part-img img {
        max-width: none;
        height: 100%
    }

    .blog .blog-slider .slick-list .single-blog .part-txt {
        left: 25px;
        bottom: 25px;
        right: 25px
    }

    .blog .blog-slider .slick-list .single-blog .part-txt .blog-info {
        margin-bottom: 24px;
        padding-bottom: 30px
    }

    .blog .blog-slider .slick-list .single-blog .part-txt .blog-info li {
        font-size: 12px
    }

    .blog .blog-slider .slick-list .single-blog .part-txt .blog-info li:first-child {
        padding: 0 10px
    }

    .blog .blog-slider .slick-list .single-blog .part-txt .blog-info li span {
        padding: 0 10px
    }

    .blog .blog-slider .slick-list .single-blog .part-txt a {
        font-size: 18px;
        line-height: 28px
    }

    .blog .blog-static .single-blog {
        max-width: 400px;
        margin: 0 auto 30px
    }

    .blog .blog-static .single-blog .part-img img {
        width: 100%
    }

    .blog .blog-static .single-blog .part-txt {
        left: 25px;
        bottom: 25px;
        right: 25px
    }

    .blog .blog-static .single-blog .part-txt .blog-info {
        padding-bottom: 20px;
        margin-bottom: 14px
    }

    .blog .blog-static .single-blog .part-txt .blog-info li {
        font-size: 12px
    }

    .blog .blog-static .single-blog .part-txt .blog-info li:first-child {
        padding: 0 10px
    }

    .blog .blog-static .single-blog .part-txt .blog-info li span {
        padding: 0 10px
    }

    .blog .blog-static .single-blog .part-txt a {
        font-size: 18px;
        line-height: 28px
    }

    .partner .all-brand {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        row-gap: 15px;
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .partner .all-brand .single-box {
        width: calc(100%/3 - 20px)
    }

    .footer {
        background: #5446db
    }

    .footer .main-footer h3 {
        font-size: 20px;
        font-weight: 500;
        padding-bottom: 9px;
        margin-bottom: 25px
    }

    .footer .main-footer .footer-about {
        margin-bottom: 40px
    }

    .footer .main-footer .footer-about p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 19px
    }

    .footer .main-footer .footer-about ul li {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 9px
    }

    .footer .main-footer .footer-about ul li span {
        font-size: 12px
    }

    .footer .main-footer .links {
        margin-bottom: 40px
    }

    .footer .main-footer .links ul li a {
        font-size: 14px
    }

    .footer .main-footer .newsletter {
        margin-bottom: 40px
    }

    .footer .main-footer .newsletter p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 18px
    }

    .footer .main-footer .newsletter form {
        margin-bottom: 25px
    }

    .footer .main-footer .newsletter form input {
        height: 50px;
        font-size: 14px
    }

    .footer .main-footer .newsletter form button {
        height: 50px;
        line-height: 56px;
        font-size: 20px
    }

    .footer .main-footer .instagram-post .all-post {
        margin: -5px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .footer .main-footer .instagram-post .all-post .single-post {
        width: calc(100%/5 - 10px);
        margin: 5px;
        border-radius: 5px
    }

    .footer .main-footer .instagram-post .all-post .single-post img {
        width: 100%
    }

    .footer .copyright {
        background: #402bc1
    }

    .footer .copyright p {
        text-align: center;
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 10px
    }

    .footer .copyright .link {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .footer .copyright .link a {
        font-size: 14px;
        font-weight: 400;
        padding: 0 5px
    }

    .header-2 .navbar-toggler {
        color: #ff4d49
    }

    .banner.banner-2 {
        padding-bottom: 60px
    }

    .banner.banner-2 .banner-txt h4 {
        letter-spacing: 1px
    }

    .banner.banner-2 .part-img {
        width: 290px;
        margin: 0 auto
    }

    .banner.banner-2 .part-img .vector-3 {
        top: 50px;
        left: 15px;
        width: 60px
    }

    .about.about-2 .part-txt {
        margin-bottom: 0
    }

    .about.about-2 .part-img {
        width: 290px;
        margin: 0 auto 30px
    }

    .about.about-2 .part-img .vector-1 {
        top: 51%;
        left: 46.5%;
        width: 50px
    }

    .about.about-2 .part-img .vector-2 {
        bottom: 7%;
        left: 30%;
        width: 40px;
        height: 40px
    }

    .about.about-2 .part-img .vector-3 {
        bottom: -2%;
        left: 14%;
        width: 55px;
        height: 55px
    }

    .about.about-2 .part-txt .progress-area {
        padding: 7px 0
    }

    .about.about-2 .part-txt .progress-area .group {
        margin-bottom: 23px
    }

    .cta-2 .bg {
        padding-left: 20px;
        padding-right: 20px
    }

    .cta-2 .bg .title {
        margin-bottom: 50px
    }

    .cta-2 .bg .title p {
        font-size: 18px;
        margin-top: -2px;
        margin-bottom: 23px
    }

    .cta-2 .bg .title h2 {
        font-size: 30px;
        line-height: 35px;
        margin-bottom: -7px
    }

    .cta-2 .bg .form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .cta-2 .bg .form input {
        width: calc(100% - 20px);
        margin: 0 10px;
        height: 60px;
        font-size: 14px;
        padding: 0 20px
    }

    .cta-2 .bg .form input:first-child {
        border-right: 0;
        border-bottom: 1px solid #ff4d49
    }

    .cta-2 .bg .form button {
        width: 100%;
        height: 60px;
        line-height: 60px;
        font-size: 16px
    }

    .fun-fact {
        margin-bottom: -30px
    }

    .fun-fact .single-box {
        width: 270px;
        padding-bottom: 45px;
        margin: 0 auto 30px
    }

    .fun-fact .single-box .part-icon {
        width: 80px;
        margin-bottom: 30px
    }

    .fun-fact .single-box .part-txt h2 {
        font-size: 30px;
        margin-top: -7px;
        margin-bottom: 15px
    }

    .fun-fact .single-box .part-txt p {
        font-size: 14px;
        margin-bottom: -2px
    }

    .success .part-txt {
        padding: 0;
        margin-bottom: 30px
    }

    .success .part-txt h2 {
        font-size: 30px;
        line-height: 40px;
        margin-top: -6px;
        margin-bottom: 14px
    }

    .success .part-txt p {
        font-size: 14px;
        line-height: 24px
    }

    .success .part-txt .progress-area {
        padding-top: 8px;
        margin: -10px
    }

    .success .part-txt .progress-area .single-skill {
        padding: 10px
    }

    .success .part-txt .progress-area .single-skill .circle-chart .circle-chart__info .circle-chart__percent {
        font-size: 7px;
        font-weight: 500
    }

    .success .part-txt .progress-area .single-skill .circle-chart .circle-chart__info .circle-chart__subline {
        font-size: 4px;
        font-weight: 400
    }

    .success .part-img {
        max-width: 320px;
        margin: 0 auto
    }

    .portfolio .portfolio-slider {
        max-width: 320px;
        margin: 0 auto
    }

    .portfolio .portfolio-slider .slick-list .single-box {
        padding: 20px
    }

    .portfolio .portfolio-slider .slick-list .single-box:after {
        top: 10px;
        right: 10px;
        bottom: 10px;
        left: 10px
    }

    .portfolio .portfolio-slider .slick-list .single-box .part-txt h3 {
        height: 50px;
        line-height: 50px;
        font-size: 20px;
        font-weight: 500
    }

    .portfolio .portfolio-slider .slick-list .single-box .view-btn {
        top: 10px;
        right: 10px;
        bottom: 10px;
        left: 10px
    }

    .portfolio .portfolio-slider .slick-list .single-box .view-btn a {
        width: 50px;
        height: 50px;
        line-height: 60px;
        font-size: 25px
    }

    .team {
        margin-bottom: -30px
    }

    .team .single-box {
        width: 290px;
        margin: 0 auto 30px
    }

    .team .single-box .part-txt {
        padding: 23px 0
    }

    .team .single-box .part-txt a {
        font-size: 20px;
        margin-bottom: 11px
    }

    .team .single-box .part-txt p {
        font-size: 14px;
        margin-bottom: 0
    }

    .team .single-box .social ul li {
        padding: 5px 0
    }

    .app-download .part-img {
        max-width: 320px;
        margin: 0 auto 30px
    }

    .app-download .part-txt h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -7px;
        margin-bottom: 15px
    }

    .app-download .part-txt p {
        font-size: 14px;
        line-height: 24px
    }

    .app-download .part-txt .btn-box {
        padding-top: 8px
    }

    .blog-2 .single-blog {
        max-width: 320px;
        margin: 0 auto 30px
    }

    .blog-2 .single-blog .part-txt {
        padding: 20px;
        padding-left: 40px
    }

    .blog-2 .single-blog .part-txt:before {
        left: 19px
    }

    .blog-2 .single-blog .part-txt:after {
        left: 12px;
        width: 16px;
        height: 16px
    }

    .blog-2 .single-blog .part-txt a {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 17px
    }

    .blog-2 .single-blog .part-txt ul {
        padding-top: 25px
    }

    .blog-2 .single-blog .part-txt ul li {
        font-size: 12px
    }

    .def-breadcrumb .part-txt {
        padding: 60px 0
    }

    .def-breadcrumb .part-txt h1 {
        font-size: 30px;
        margin-top: -4px;
        margin-bottom: 23px
    }

    .def-breadcrumb .part-txt ul {
        margin-bottom: -2px
    }

    .def-breadcrumb .part-txt ul li {
        font-size: 14px;
        margin-right: 10px
    }

    .def-breadcrumb .part-txt ul li i {
        font-size: 12px
    }

    .video {
        margin-bottom: -100px
    }

    .video .video-area {
        padding: 60px 0
    }

    .video .video-area a {
        width: 80px;
        height: 80px;
        line-height: 85px;
        font-size: 30px
    }

    .fun-fact-2 {
        padding-bottom: 30px
    }

    .fun-fact-2 .single-box {
        width: 270px;
        margin: 0 auto 30px
    }

    .fun-fact-2 .single-box {
        margin-bottom: 30px
    }

    .fun-fact-2 .single-box:before,
    .fun-fact-2 .single-box:after {
        width: 60px
    }

    .fun-fact-2 .single-box .part-icon {
        width: 70px;
        margin-bottom: 19px
    }

    .fun-fact-2 .single-box .part-txt h2 {
        font-size: 35px;
        margin-bottom: 15px
    }

    .fun-fact-2 .single-box .part-txt p {
        font-size: 14px;
        margin-bottom: -2px
    }

    .timeline .single-box {
        max-width: 320px;
        margin: 0 auto 30px
    }

    .timeline .single-box .title {
        height: 50px;
        border-radius: 10px;
        margin-bottom: 25px
    }

    .timeline .single-box .title:after {
        border-radius: 9px
    }

    .timeline .single-box .title h3 {
        height: 50px;
        line-height: 50px;
        font-weight: 600;
        font-size: 25px
    }

    .timeline .single-box .title h3:before,
    .timeline .single-box .title h3:after {
        width: 20px;
        height: 2px
    }

    .timeline .single-box .part-txt {
        padding: 0 20px
    }

    .timeline .single-box .part-txt h3 {
        font-size: 20px;
        margin-top: -1px;
        margin-bottom: 16px
    }

    .timeline .single-box .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: -7px
    }

    .choosing-reason .part-img {
        max-width: 320px;
        margin: 0 auto 40px
    }

    .choosing-reason .part-txt h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -6px;
        margin-bottom: 15px
    }

    .choosing-reason .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 10px
    }

    .choosing-reason .part-txt ul li {
        font-size: 14px
    }

    .choosing-reason .part-txt ul li i {
        font-size: 12px;
        margin-right: 5px
    }

    .service-txt {
        margin-bottom: -50px
    }

    .service-txt .part-img {
        max-width: 320px;
        margin: 0 auto 40px
    }

    .service-txt .part-txt h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -6px;
        margin-bottom: 15px
    }

    .service-txt .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 22px
    }

    .service-txt .part-txt .boxes {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 0
    }

    .service-txt .part-txt .boxes .single-box {
        width: 100%;
        margin: 0 0 30px
    }

    .service-txt .part-txt .boxes .single-box h3 {
        font-size: 18px;
        margin-bottom: 11px
    }

    .service-txt .part-txt .boxes .single-box span {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: -7px
    }

    .pricing.pricing-inner {
        padding-top: 110px;
        background-position-x: left
    }

    .free-analysis .part-txt {
        margin-bottom: 40px
    }

    .free-analysis .part-txt h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -6px;
        margin-bottom: 15px
    }

    .free-analysis .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 11px
    }

    .free-analysis .part-txt .part-form input {
        height: 50px;
        padding: 0 25px;
        font-size: 14px;
        border-radius: 5px;
        margin-bottom: 20px
    }

    .free-analysis .part-img {
        max-width: 320px;
        margin: 0 auto
    }

    .service-details .next {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .service-details .sidebar .nav .nav-link {
        height: 50px;
        font-size: 16px;
        margin-bottom: 10px
    }

    .service-details .sidebar .nav .nav-link span {
        width: 30px;
        height: 30px;
        line-height: 36px;
        font-size: 18px
    }

    .service-details .main-content .main-img {
        padding: 5px;
        border-radius: 10px;
        margin-bottom: 30px
    }

    .service-details .main-content .main-img img {
        border-radius: 7px
    }

    .service-details .main-content .part-txt {
        margin-bottom: 40px
    }

    .service-details .main-content .part-txt h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -6px;
        margin-bottom: 15px
    }

    .service-details .main-content .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 12px
    }

    .service-details .main-content .part-txt h3 {
        font-size: 20px;
        line-height: 30px;
        padding-top: 4px;
        margin-bottom: 11px
    }

    .service-details .main-content .part-txt ul li {
        width: 100%;
        font-size: 14px
    }

    .service-details .main-content .part-txt ul li i {
        font-size: 12px;
        margin-right: 5px
    }

    .service-details .main-content .part-txt p.marked-txt {
        padding: 24px 25px 23px
    }

    .service-details .main-content .part-tab nav .nav {
        padding: 0 5px
    }

    .service-details .main-content .part-tab nav .nav .nav-link {
        height: 60px;
        line-height: 16px;
        font-size: 14px;
        font-weight: 400;
        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
    }

    .service-details .main-content .part-tab .tab-content {
        padding-top: 30px
    }

    .service-details .main-content .part-tab .tab-content .txt {
        padding-right: 0;
        margin-bottom: 23px
    }

    .service-details .main-content .part-tab .tab-content .img {
        max-width: 320px;
        margin: 0 auto
    }

    .team.team-page {
        margin-bottom: 0
    }

    .team.team-page .single-box {
        min-height: 300px
    }

    .team-details .profile {
        max-width: 320px;
        margin: 0 auto 30px
    }

    .team-details .profile .part-img {
        max-height: 350px
    }

    .team-details .profile .txt {
        padding: 25px 0
    }

    .team-details .profile .txt h3 {
        font-size: 20px;
        margin-top: -1px;
        margin-bottom: 16px
    }

    .team-details .profile .txt span {
        font-size: 14px;
        margin-bottom: -2px
    }

    .team-details .profile .social ul li a {
        width: 35px;
        height: 35px;
        line-height: 40px;
        font-size: 14px
    }

    .team-details .biography h2 {
        font-size: 25px;
        margin-top: -2px;
        margin-bottom: 26px
    }

    .team-details .biography ul:nth-last-of-type(1) {
        margin-bottom: 6px
    }

    .team-details .biography ul li {
        width: 100%;
        height: 50px;
        padding: 0 25px;
        font-size: 14px;
        line-height: 50px;
        border-radius: 5px
    }

    .team-details .biography ul li:nth-child(2) {
        background: 0 0;
        border: 0
    }

    .team-details .biography ul li span {
        min-width: 130px
    }

    .team-details .biography ul:nth-child(2n+1) li {
        background: #f7f7fe;
        border: 1px solid rgba(75, 75, 70, .05)
    }

    .team-details .biography ul:nth-child(2n+1) li:nth-child(2) {
        background: 0 0;
        border: 0
    }

    .team-details .biography p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 17px
    }

    .team-details .skill {
        padding-top: 5px
    }

    .team-details .skill .single-box {
        margin-bottom: 20px
    }

    .team-details .skill .single-box p {
        font-size: 14px;
        margin-bottom: 8px
    }

    .team-details .education {
        padding-top: 30px
    }

    .team-details .education h3 {
        font-size: 20px;
        margin-top: -1px;
        margin-bottom: 16px
    }

    .team-details .education ul {
        margin-bottom: -8px
    }

    .team-details .education ul li {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 11px
    }

    .team-details .education ul li span {
        font-size: 14px
    }

    .pricing-2 {
        padding-bottom: 30px
    }

    .pricing-2 .single-box {
        max-width: 320px;
        margin: 0 auto 30px
    }

    .pricing-2 .single-box .top {
        margin-bottom: 25px
    }

    .pricing-2 .single-box .top h3 {
        font-size: 20px;
        margin-bottom: 22px
    }

    .pricing-2 .single-box .top .price {
        width: 150px;
        height: 150px
    }

    .pricing-2 .single-box .top .price h4 {
        font-size: 30px
    }

    .pricing-2 .single-box .top .price h4 span {
        font-size: 20px
    }

    .pricing-2 .single-box .middle ul {
        margin-bottom: 23px
    }

    .pricing-2 .single-box .middle ul li {
        font-size: 14px
    }

    .pricing-3 {
        padding-bottom: 30px
    }

    .pricing-3 .single-box {
        max-width: 320px;
        margin: 0 auto 30px
    }

    .pricing-3 .single-box .top h3 {
        font-size: 20px;
        margin-bottom: 22px
    }

    .pricing-3 .single-box .top .price h4 {
        font-size: 30px
    }

    .pricing-3 .single-box .top .price h4 span {
        font-size: 20px
    }

    .pricing-3 .single-box .middle ul li {
        font-size: 14px
    }

    .cart .table-responsive {
        margin-bottom: 40px
    }

    .cart .table {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content
    }

    .cart .table thead tr th {
        font-size: 16px;
        padding: 25px 30px
    }

    .cart .table tbody tr td {
        padding: 20px
    }

    .cart .table tbody tr td:first-child {
        width: 300px
    }

    .cart .table tbody tr td .product .part-img {
        width: 70px;
        margin-right: 15px
    }

    .cart .table tbody tr td .product .part-txt {
        width: calc(100% - 85px)
    }

    .cart .table tbody tr td .product .part-txt p {
        font-size: 14px;
        line-height: 24px
    }

    .cart .table tbody tr td .price p {
        font-size: 14px
    }

    .cart .table tbody tr td .product-quantity .product-count .quantity input {
        width: 65px;
        font-size: 14px;
        margin: 0
    }

    .cart .cart-totals {
        width: 450px;
        margin: 0 auto
    }

    .cart .cart-totals .coupon .coupon-title {
        padding: 20px
    }

    .cart .cart-totals .coupon .coupon-title h3 {
        font-size: 16px
    }

    .cart .cart-totals .coupon .part-txt {
        padding: 20px
    }

    .cart .cart-totals .coupon .part-txt p {
        font-size: 12px;
        margin-bottom: 18px
    }

    .cart .cart-totals .coupon .part-txt form input {
        height: 50px;
        padding: 0 20px;
        font-size: 14px;
        margin-bottom: 20px
    }

    .cart .cart-totals .coupon .part-txt form button {
        font-size: 14px;
        padding: 0 20px
    }

    .cart .cart-totals .proceed-to-checkout .checkout-title {
        padding: 20px
    }

    .cart .cart-totals .proceed-to-checkout .checkout-title h3 {
        font-size: 16px
    }

    .cart .cart-totals .proceed-to-checkout .part-txt {
        padding: 20px 20px 13px
    }

    .cart .cart-totals .proceed-to-checkout .part-txt ul {
        margin-top: -1px;
        padding-bottom: 0
    }

    .cart .cart-totals .proceed-to-checkout .part-txt ul li {
        font-size: 16px;
        margin-bottom: 16px
    }

    .cart .cart-totals .proceed-to-checkout .part-txt button {
        font-size: 14px
    }

    .cart .cart-totals .proceed-to-checkout .bottom-box {
        padding: 20px
    }

    .cart .cart-totals .proceed-to-checkout .bottom-box ul {
        margin-top: -1px;
        padding-bottom: 2px
    }

    .cart .cart-totals .proceed-to-checkout .bottom-box ul li {
        font-size: 16px
    }

    .cart .cart-totals .proceed-to-checkout .bottom-box .def-btn {
        font-size: 14px;
        padding: 0 20px
    }

    .checkout .notification {
        height: 75px;
        padding: 0 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 30px
    }

    .checkout .notification p {
        font-size: 14px;
        line-height: 24px
    }

    .checkout .notification p span {
        font-size: 14px
    }

    .checkout form .title h2 {
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 21px
    }

    .checkout form input:not([type=radio]),
    .checkout form select {
        height: 50px;
        margin-bottom: 20px;
        padding: 0 20px;
        font-size: 14px
    }

    .checkout form textarea {
        height: 130px;
        padding: 10px 20px;
        font-size: 14px
    }

    .checkout form .payment-method {
        margin-top: 23px
    }

    .checkout form .payment-method .options {
        padding: 25px
    }

    .checkout form .payment-method .options .form-check:last-child {
        margin-bottom: 8px
    }

    .checkout form .payment-method .options .form-check label {
        font-size: 14px
    }

    .checkout form .payment-method .options .form-check .note {
        display: none
    }

    .checkout form .payment-method .options .form-check img {
        width: 120px;
        margin-left: 20px
    }

    .checkout form .payment-method .options .form-check a {
        font-size: 14px;
        margin-left: 20px
    }

    .checkout form .payment-method .bottom-section {
        padding: 25px
    }

    .checkout form .payment-method .bottom-section p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 18px
    }

    .faq .next {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .faq .part-img {
        margin-bottom: 40px
    }

    .faq .part-img:last-child {
        margin-top: -20px
    }

    .faq .part-txt .top-txt {
        padding-bottom: 7px
    }

    .faq .part-txt .top-txt h2 {
        font-size: 25px;
        margin-top: -2px;
        margin-bottom: 20px
    }

    .faq .part-txt .top-txt p {
        font-size: 14px;
        line-height: 24px
    }

    .faq .part-txt .accordion .card {
        margin-bottom: 25px
    }

    .faq .part-txt .accordion .card .card-header h2 button {
        padding: 0 20px;
        font-size: 14px
    }

    .faq .part-txt .accordion .card .card-body {
        padding: 20px 20px 13px;
        margin-top: 10px
    }

    .faq .part-txt .accordion .card .card-body p {
        font-size: 14px;
        line-height: 24px
    }

    .error .part-img {
        max-width: 320px;
        margin: 0 auto 30px
    }

    .error .part-txt h2 {
        font-size: 25px;
        margin-top: -3px;
        margin-bottom: 19px
    }

    .error .part-txt h3 {
        font-size: 20px;
        margin-bottom: 16px
    }

    .error .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 23px
    }

    .portfolio-page .single-box {
        max-width: 320px;
        min-height: 250px;
        margin: 0 auto 30px
    }

    .portfolio-page .single-box .part-txt {
        padding: 30px
    }

    .portfolio-page .single-box .part-txt span {
        height: 20px;
        line-height: 20px;
        font-size: 12px;
        padding: 0 15px;
        margin-bottom: 20px
    }

    .portfolio-page .single-box .part-txt h3 {
        font-size: 20px;
        margin-bottom: 16px
    }

    .portfolio-page .single-box .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 16px
    }

    .portfolio-page .single-box .part-txt a {
        font-size: 14px
    }

    .portfolio-single .main-img {
        margin-bottom: 40px
    }

    .portfolio-single .project-information h2 {
        font-size: 25px;
        margin-top: -2px;
        margin-bottom: 26px
    }

    .portfolio-single .project-information ul li {
        font-size: 14px;
        line-height: 40px;
        padding: 5px 20px
    }

    .portfolio-single .project-information ul li span {
        width: 30%;
        font-size: 14px
    }

    .portfolio-single .project-information ul li a {
        font-size: 14px;
        margin: 0 2px
    }

    .portfolio-single .main-txt h3 {
        font-size: 25px;
        margin-top: -2px;
        margin-bottom: 20px
    }

    .portfolio-single .main-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 17px
    }

    .portfolio-single .main-txt ul {
        margin-top: 0;
        padding-top: 2px;
        margin-bottom: -14px
    }

    .portfolio-single .main-txt ul li {
        width: 100%;
        font-size: 14px
    }

    .portfolio-single .boxes .part-img {
        max-width: 320px;
        margin: 30px auto 0;
        padding: 10px
    }

    .portfolio-single .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: -7px
    }

    .shop .sidebar {
        max-width: 320px;
        margin: 0 auto 60px
    }

    .shop .sidebar .search-box {
        border-radius: 5px
    }

    .shop .sidebar .search-box form input {
        width: calc(100% - 45px);
        height: 45px;
        font-size: 14px
    }

    .shop .sidebar .search-box form button {
        width: 45px;
        height: 45px;
        line-height: 55px;
        font-size: 25px
    }

    .shop .sidebar h3 {
        font-size: 20px;
        padding-bottom: 12px
    }

    .shop .sidebar .category ul {
        margin-top: -12px
    }

    .shop .sidebar .category ul li a {
        font-size: 14px;
        line-height: 35px
    }

    .shop .sidebar .filter-by-price .range .slider-range {
        margin-bottom: 12px
    }

    .shop .sidebar .filter-by-price .range .price-txt span,
    .shop .sidebar .filter-by-price .range .price-txt input {
        font-size: 14px
    }

    .shop .sidebar .feat-products ul li .txt a {
        font-size: 14px
    }

    .shop .sidebar .feat-products ul li .txt p {
        font-size: 12px
    }

    .shop .sidebar .feat-products ul li .txt .star {
        font-size: 8px
    }

    .shop .sidebar .filter-by-color .form-group {
        margin: -2px 0
    }

    .shop .sidebar .filter-by-color .form-group .form-check {
        padding-left: 30px
    }

    .shop .sidebar .filter-by-color .form-group .form-check input {
        margin-left: -30px
    }

    .shop .sidebar .filter-by-color .form-group .form-check .circle {
        width: 15px;
        height: 15px;
        line-height: 16px;
        font-size: 8px
    }

    .shop .sidebar .filter-by-color .form-group .form-check label {
        font-size: 14px
    }

    .shop .main-content .top-bar {
        margin-bottom: 40px
    }

    .shop .main-content .top-bar p {
        font-size: 14px
    }

    .shop .main-content .top-bar form {
        padding: 0 10px
    }

    .shop .main-content .top-bar form label {
        font-size: 14px
    }

    .shop .main-content .top-bar form select {
        font-size: 14px;
        height: 40px
    }

    .shop .main-content .single-box {
        max-width: 320px;
        padding: 20px;
        margin: 0 auto 30px
    }

    .shop .main-content .single-box .part-img .tag {
        top: 10px;
        left: 10px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 12px
    }

    .shop .main-content .single-box .part-img .cart-option {
        top: 10px;
        right: 10px
    }

    .shop .main-content .single-box .part-txt {
        padding-bottom: 10px;
        margin-top: -4px
    }

    .shop .main-content .single-box .part-txt a {
        font-size: 18px
    }

    .shop .main-content .shopnu-pagination ul li {
        margin: 0 2.5px
    }

    .shop .main-content .shopnu-pagination ul li a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 14px
    }

    .shop-details .item-section .part-img {
        margin-bottom: 40px
    }

    .shop-details .item-section .part-img .product-slider .owl-item {
        padding: 20px
    }

    .shop-details .item-section .part-img .owl-thumbs {
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px
    }

    .shop-details .item-section .part-img .owl-thumbs .owl-thumb-item {
        border-radius: 5px
    }

    .shop-details .item-section .part-txt h3 {
        font-size: 20px;
        line-height: 30px;
        margin-top: -7px;
        margin-bottom: 22px
    }

    .shop-details .item-section .part-txt .info {
        margin-bottom: 19px
    }

    .shop-details .item-section .part-txt .info .price {
        height: 25px;
        line-height: 25px;
        font-size: 14px;
        padding: 0 15px
    }

    .shop-details .item-section .part-txt .info h5 {
        height: 25px;
        line-height: 25px;
        font-size: 14px;
        padding: 0 15px
    }

    .shop-details .item-section .part-txt .item-rating {
        margin-bottom: 22px
    }

    .shop-details .item-section .part-txt .item-rating .star {
        font-size: 10px
    }

    .shop-details .item-section .part-txt .item-rating a {
        font-size: 14px
    }

    .shop-details .item-section .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 10px
    }

    .shop-details .item-section .part-txt .cart-option ul li {
        font-size: 14px
    }

    .shop-details .item-section .part-txt .cart-option ul li span {
        width: 12px;
        height: 12px
    }

    .shop-details .item-section .part-txt .cart-option ul li .product-count .quantity input {
        width: 40px;
        height: 30px;
        margin: 0;
        font-size: 14px
    }

    .shop-details .item-section .part-txt .cart-option ul li .product-count .quantity .quantity-nav .quantity-button {
        height: 30px;
        line-height: 30px;
        width: 30px;
        font-size: 14px
    }

    .shop-details .item-section .part-txt .cart-option ul li .product-count {
        margin-right: 5px
    }

    .shop-details .item-section .part-txt .cart-option ul li .rel-btns a {
        height: 32px;
        line-height: 30px;
        font-size: 12px;
        margin-left: 5px
    }

    .shop-details .item-section .part-txt .cart-option ul li .rel-btns a.add-to-cart {
        margin-right: 5px
    }

    .shop-details .dscr-section {
        padding: 30px 20px
    }

    .shop-details .dscr-section .box .nav {
        margin-bottom: 20px
    }

    .shop-details .dscr-section .box .nav .nav-link {
        text-align: center;
        width: 100%;
        height: 40px;
        line-height: 40px;
        padding: 0 20px;
        font-size: 14px;
        margin: 0 0 10px
    }

    .shop-details .dscr-section .box .tab-pane .dscr p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 20px
    }

    .shop-details .dscr-section .box .tab-pane .dscr ul {
        margin-top: -3px;
        margin-bottom: -7px
    }

    .shop-details .dscr-section .box .tab-pane .dscr ul li {
        font-size: 14px;
        line-height: 24px;
        padding-left: 15px;
        margin-bottom: 7px
    }

    .shop-details .dscr-section .box .tab-pane .dscr ul li:after {
        top: 6px
    }

    .shop-details .dscr-section .box .tab-pane .dscr ul li:last-child {
        margin-bottom: 0
    }

    .shop-details .dscr-section .box .tab-pane .product-data ul li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: auto;
        padding: 0 15px;
        font-size: 14px;
        line-height: 40px
    }

    .shop-details .dscr-section .box .tab-pane .reviews .single-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .shop-details .dscr-section .box .tab-pane .reviews .single-box .part-img {
        width: 70px;
        margin-right: 0;
        margin-bottom: 20px
    }

    .shop-details .dscr-section .box .tab-pane .reviews .single-box .part-txt {
        width: 100%;
        padding: 20px
    }

    .shop-details .dscr-section .box .tab-pane .reviews .single-box .part-txt .title h3 {
        font-size: 16px;
        margin-top: -1px
    }

    .shop-details .dscr-section .box .tab-pane .reviews .single-box .part-txt .title .star {
        font-size: 8px
    }

    .shop-details .dscr-section .box .tab-pane .reviews .single-box .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 12px
    }

    .shop-details .dscr-section .box .tab-pane .reviews .single-box .part-txt span {
        font-size: 12px
    }

    .shop-details .dscr-section .box .tab-pane .post-a-review h3 {
        font-size: 20px;
        margin-bottom: 16px
    }

    .shop-details .dscr-section .box .tab-pane .post-a-review p {
        font-size: 12px;
        line-height: 22px
    }

    .shop-details .dscr-section .box .tab-pane .post-a-review form input {
        height: 45px;
        padding: 0 20px;
        font-size: 14px;
        margin-bottom: 20px
    }

    .shop-details .dscr-section .box .tab-pane .post-a-review form textarea {
        height: 120px;
        padding: 15px 20px;
        font-size: 14px;
        margin-bottom: 20px
    }

    .shop-details .related-products .main-content .slick-list {
        max-width: 320px;
        margin: -15px auto
    }

    .blog-grid .next {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .blog-grid .sidebar {
        max-width: 320px;
        margin: 0 auto 60px
    }

    .blog-grid .sidebar .search-box {
        border-radius: 5px
    }

    .blog-grid .sidebar .search-box form input {
        width: calc(100% - 45px);
        height: 45px;
        font-size: 14px
    }

    .blog-grid .sidebar .search-box form button {
        width: 45px;
        height: 45px;
        line-height: 55px;
        font-size: 25px
    }

    .blog-grid .sidebar h3 {
        font-size: 20px;
        padding-bottom: 12px
    }

    .blog-grid .sidebar .links ul li a {
        font-size: 14px;
        line-height: 31px
    }

    .blog-grid .sidebar .links ul {
        margin-top: -10px
    }

    .blog-grid .sidebar .recent-post ul li .img {
        width: 70px;
        border-radius: 5px;
        margin-right: 10px
    }

    .blog-grid .sidebar .recent-post ul li .txt {
        width: calc(100% - 80px)
    }

    .blog-grid .sidebar .recent-post ul li .txt a {
        font-size: 14px;
        line-height: 24px;
        margin-top: -7px
    }

    .blog-grid .sidebar .recent-post ul li .txt p {
        font-size: 12px
    }

    .blog-grid .sidebar .tags .all-tag a {
        height: 40px;
        line-height: 40px;
        font-size: 12px;
        padding: 0 10px
    }

    .blog-grid .main-content .all-blogs {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%
    }

    .blog-grid .main-content .all-blogs .wrap {
        max-width: 320px;
        margin: 0 auto
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-1 {
        -ms-grid-column-span: 1;
        grid-column: span 1
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-2 {
        -ms-grid-row-span: 1;
        grid-row: span 1
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-1 .single-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-1 .single-box .part-img {
        width: 100%
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-1 .single-box .part-txt {
        width: 100%;
        margin: 0
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-2 .single-box .part-txt {
        margin: 0;
        height: auto
    }

    .blog-grid .main-content .all-blogs .wrap .part-img {
        height: 250px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        overflow: hidden
    }

    .blog-grid .main-content .all-blogs .wrap .part-img img {
        width: 100%
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt {
        padding: 30px 20px
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt h3 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 21px
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt .blog-info {
        padding-bottom: 7px;
        margin-bottom: 24px
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt .blog-info li {
        font-size: 12px
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt .blog-info li span {
        font-size: 10px;
        margin-right: 2px
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 23px
    }

    .blog-grid .main-content .my-pagination {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-top: 40px
    }

    .blog-grid .main-content .my-pagination a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 14px
    }

    .blog-grid .main-content .my-pagination a:last-child {
        margin-right: 0
    }

    .blog-grid .blog-details {
        padding-bottom: 60px
    }

    .blog-grid .blog-details .main-img {
        border-radius: 5px;
        margin-bottom: 40px
    }

    .blog-grid .blog-details .blog-info ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-bottom: 28px
    }

    .blog-grid .blog-details .blog-info ul li {
        font-size: 12px
    }

    .blog-grid .blog-details .blog-info ul li:first-child {
        margin-bottom: 13px
    }

    .blog-grid .blog-details .blog-info ul li span i {
        font-size: 10px;
        margin-right: 2px
    }

    .blog-grid .blog-details .part-txt h2 {
        font-size: 20px;
        line-height: 30px;
        margin-top: -7px;
        margin-bottom: 11px
    }

    .blog-grid .blog-details .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 23px
    }

    .blog-grid .blog-details .part-txt .quoted {
        padding: 20px;
        margin-bottom: 23px
    }

    .blog-grid .blog-details .part-txt .quoted p {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        font-size: 14px;
        line-height: 24px;
        margin-top: 0;
        margin-bottom: -7px
    }

    .blog-grid .blog-details .part-txt .quoted p .icon {
        width: 40px;
        height: 40px;
        line-height: 35px;
        font-size: 16px;
        border-width: 2px;
        margin-right: 0;
        margin-bottom: 14px
    }

    .blog-grid .blog-details .part-txt .quoted p .text {
        width: 100%
    }

    .blog-grid .blog-details .part-txt .images {
        grid-gap: 10px
    }

    .blog-grid .blog-details .part-txt .images .single-image {
        border-radius: 5px
    }

    .blog-grid .blog-details .part-txt.part-txt-2 {
        padding-top: 10px
    }

    .blog-grid .blog-details .part-txt ul li {
        width: 100%;
        font-size: 14px;
        margin-bottom: 15px
    }

    .blog-grid .blog-details .part-txt .other-option {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding-top: 10px;
        padding-bottom: 30px
    }

    .blog-grid .blog-details .part-txt .other-option .tag {
        width: auto;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: 13px
    }

    .blog-grid .blog-details .part-txt .other-option .tag p {
        display: block
    }

    .blog-grid .blog-details .part-txt .other-option .tag p {
        width: 100%;
        font-size: 16px;
        margin-bottom: 9px
    }

    .blog-grid .blog-details .part-txt .other-option .tag a {
        font-size: 12px;
        margin: 0 5px 5px
    }

    .blog-grid .blog-details .part-txt .other-option .share p {
        font-size: 16px;
        width: auto
    }

    .blog-grid .blog-details .part-txt .other-option .share p a {
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 10px;
        margin: 0 5px
    }

    .blog-grid .blog-details .blog-nav .single-nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .blog-grid .blog-details .blog-nav .single-nav.prev-blog {
        padding-right: 0
    }

    .blog-grid .blog-details .blog-nav .single-nav.next-blog {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        padding-left: 0
    }

    .blog-grid .blog-details .blog-nav .single-nav .img {
        width: 80px;
        height: 80px;
        border-radius: 5px;
        margin-right: 0;
        margin-bottom: 25px
    }

    .blog-grid .blog-details .blog-nav .single-nav .txt {
        width: 140px
    }

    .blog-grid .blog-details .blog-nav .single-nav .txt a {
        display: block;
        font-size: 14px;
        line-height: 20px;
        margin-top: -4px;
        margin-bottom: -6px
    }

    .blog-grid .blog-details .blog-nav .single-nav .txt a span {
        font-size: 12px;
        margin-top: 9px
    }

    .blog-grid .blog-details .blog-comments {
        padding-top: 10px
    }

    .blog-grid .blog-details .blog-comments .comments h3 {
        font-size: 20px;
        margin-bottom: 21px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment.replied {
        margin-left: 30px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment .part-img {
        width: 70px;
        height: 70px;
        margin-right: 0;
        margin-bottom: 20px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment .part-txt {
        width: 100%;
        padding: 20px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment.replied .part-txt {
        width: 100%
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment .part-txt .top {
        margin-bottom: 15px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment .part-txt h4 {
        font-size: 16px;
        margin-top: -1px;
        margin-bottom: 11px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 12px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment .part-txt .bottom span {
        font-size: 12px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment .part-txt .bottom a {
        font-size: 12px
    }

    .blog-grid .blog-details .blog-comments .post-a-comment {
        padding-top: 40px
    }

    .blog-grid .blog-details .blog-comments .post-a-comment h3 {
        font-size: 20px;
        margin-bottom: 22px
    }

    .blog-grid .blog-details .blog-comments .post-a-comment form input {
        height: 50px;
        font-size: 14px;
        margin-bottom: 25px
    }

    .blog-grid .blog-details .blog-comments .post-a-comment form textarea {
        height: 120px;
        font-size: 14px;
        margin-bottom: 25px
    }

    .contact .heading h4 {
        font-size: 18px;
        margin-top: -2px;
        margin-bottom: 17px
    }

    .contact .boxes {
        margin-bottom: -30px
    }

    .contact .boxes .single-box {
        width: 290px;
        margin: 0 auto 30px;
        padding: 30px
    }

    .contact .boxes .single-box .part-icon {
        width: 80px;
        height: 80px;
        padding: 0 10px;
        margin-bottom: 30px
    }

    .contact .boxes .single-box .part-txt h3 {
        font-size: 20px;
        margin-bottom: 21px
    }

    .contact .boxes .single-box .part-txt h3 i {
        font-size: 16px
    }

    .contact .boxes .single-box .part-txt span {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: -7px
    }

    .contact .contact-form {
        padding-bottom: 60px
    }

    .contact .contact-form .title {
        text-align: center;
        margin-bottom: 30px
    }

    .contact .contact-form .title h2 {
        font-size: 25px;
        margin-top: -1px;
        margin-bottom: 22px
    }

    .contact .contact-form .title p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: -5px
    }

    .contact .contact-form form input {
        height: 45px;
        padding: 0 20px;
        font-size: 14px;
        margin-bottom: 20px
    }

    .contact .contact-form form textarea {
        height: 120px;
        padding: 10px 20px;
        font-size: 14px;
        margin-bottom: 20px
    }

    .contact .contact-info .title {
        text-align: center;
        margin-bottom: 30px
    }

    .contact .contact-info .title h2 {
        font-size: 25px;
        margin-top: -1px;
        margin-bottom: 22px
    }

    .contact .contact-info .title p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: -5px
    }

    .contact .contact-info .single-box {
        width: 290px;
        margin: 0 auto 30px;
        padding: 25px
    }

    .contact .contact-info .single-box .icon {
        width: 30px;
        height: 30px;
        line-height: 35px;
        font-size: 12px
    }

    .contact .contact-info .single-box .txt {
        width: calc(100% - 50px)
    }

    .contact .contact-info .single-box .txt h3 {
        font-size: 16px;
        margin-top: 0
    }

    .contact .contact-info .single-box .txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: -7px
    }
}

@media only screen and (min-width:320px) and (max-width:479px) {
    .def-btn {
        height: 50px;
        line-height: 48px;
        padding: 0 30px;
        font-size: 14px
    }

    .heading {
        margin-bottom: 50px
    }

    .heading h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -6px
    }

    .heading p {
        font-size: 14px;
        line-height: 24px
    }

    .p-120 {
        padding: 60px 0
    }

    .p-60 {
        padding: 30px 0
    }

    .pt-120 {
        padding-top: 60px
    }

    .pt-60 {
        padding-top: 30px
    }

    .pb-120 {
        padding-bottom: 60px
    }

    .pb-60 {
        padding-bottom: 30px
    }

    .pb-90 {
        padding-bottom: 30px
    }

    .pb-30 {
        padding-bottom: 0
    }

    .pt-360 {
        padding-top: 160px
    }

    .header .top-header .top-left ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .header .top-header .top-left ul li {
        padding-top: 15px
    }

    .header .top-header .top-left ul li:first-child {
        padding-right: 0
    }

    .header .middle-header .logo {
        width: 100px;
        padding: 20px 0
    }

    .header .middle-header .mid-right {
        padding: 20px 0
    }

    .header .middle-header .mid-right .info {
        display: none
    }

    .header .middle-header .mid-right .language {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .header .middle-header .mid-right .language .select-lang .flagstrap-icon.flagstrap-us,
    .header .middle-header .mid-right .language .select-lang .flagstrap-icon.flagstrap-bd,
    .header .middle-header .mid-right .language .select-lang .flagstrap-icon.flagstrap-sp {
        width: 35px;
        height: 22px;
        border-width: 2px;
        border-radius: 0
    }

    .header .middle-header .mid-right .language .select-lang ul {
        left: auto !important;
        right: 0;
        width: 120px;
        min-width: auto
    }

    .header .middle-header .mid-right .language .select-lang ul li a {
        padding: 0 5px;
        font-size: 12px
    }

    .header .middle-header .mid-right .language .select-lang ul li a .flagstrap-icon {
        width: 25px !important;
        height: 16px !important
    }

    .header .middle-header .mid-right .language .select-lang .dropdown-toggle {
        font-size: 14px;
        font-weight: 500
    }

    .navbar-toggler {
        background: #fff;
        color: #5446db;
        padding: 0;
        width: 40px;
        height: 40px;
        border-color: rgba(75, 75, 70, .3);
        line-height: 38px;
        font-size: 30px;
        margin: 5px 0
    }

    .header .bottom-header .next {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .header .bottom-header .bottom-right {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .header .bottom-header .bottom-right .nav-form {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        padding: 0 10px;
        overflow: visible
    }

    .header .bottom-header .bottom-right .nav-form input {
        width: 200px;
        height: 40px;
        font-size: 14px
    }

    .header .bottom-header .bottom-right .nav-form button {
        height: 40px;
        line-height: 46px;
        font-size: 20px
    }

    .header .bottom-header .navbar .navbar-nav .nav-item {
        padding: 0
    }

    .header .bottom-header .navbar .navbar-nav .nav-item .nav-link {
        font-size: 16px;
        padding: 10px 0
    }

    .header .bottom-header .navbar .navbar-nav .nav-item .nav-link:after {
        display: none
    }

    .header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
        padding: 5px 0;
        margin-top: 0;
        display: none;
        opacity: 1;
        visibility: visible;
        -webkit-box-shadow: 0 0;
        box-shadow: 0 0;
        border: 1px solid rgba(75, 75, 70, .25);
        border-radius: 5px
    }

    .header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
        font-size: 14px;
        padding: 13px 15px 12px
    }

    .header .bottom-header .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu .dropdown-item {
        padding: 13px 15px 12px
    }

    .header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show {
        display: block
    }

    .banner {
        padding-bottom: 140px
    }

    .banner .banner-txt {
        padding: 60px 0
    }

    .banner .banner-txt h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 19px
    }

    .banner .banner-txt h1 {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 14px
    }

    .banner .banner-txt p {
        font-size: 14px;
        line-height: 24px
    }

    .banner .banner-txt .btn-box {
        padding-top: 8px
    }

    .banner .banner-txt .btn-box a {
        height: 50px;
        line-height: 48px;
        padding: 0 25px;
        font-size: 14px
    }

    .banner .banner-txt .btn-box a.right-btn {
        margin-left: 10px
    }

    .feature .bg {
        max-width: 320px;
        margin: -80px auto 0
    }

    .feature .bg .single-box {
        padding: 30px 25px;
        border-top: 1px solid rgba(75, 75, 70, .15)
    }

    .feature .bg .single-box.first {
        border-top: 0
    }

    .feature .bg .single-box .part-txt h3 {
        font-size: 20px;
        margin-bottom: 21px
    }

    .feature .bg .single-box .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: -7px
    }

    .feature .bg .single-box .part-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 30px
    }

    .feature .bg .single-box .part-icon span {
        font-size: 35px;
        line-height: 83px
    }

    .about .part-txt {
        margin-bottom: 40px
    }

    .about .part-txt h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -6px;
        margin-bottom: 15px
    }

    .about .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 14px
    }

    .about .part-txt .boxes {
        padding-top: 0;
        margin-bottom: 19px
    }

    .about .part-txt .boxes ul {
        width: 100%;
        margin-bottom: 0
    }

    .about .part-txt .boxes ul li {
        font-size: 12px;
        line-height: 31px
    }

    .about .part-img .counter {
        width: 160px;
        height: 160px;
        border-width: 6px;
        right: 20%
    }

    .about .part-img .counter:after {
        top: -4px;
        right: -4px;
        bottom: -4px;
        left: -4px;
        border-width: 2px
    }

    .about .part-img .counter h2 {
        font-size: 30px;
        margin-bottom: 6px
    }

    .about .part-img .counter p {
        font-size: 14px;
        font-weight: 400
    }

    .cta {
        background: #d7deff
    }

    .cta .part-txt {
        margin-bottom: 40px
    }

    .cta .part-txt h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -6px;
        margin-bottom: 15px
    }

    .cta .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 23px
    }

    .cta .part-txt .part-form {
        padding: 30px
    }

    .cta .part-txt .part-form input {
        height: 50px;
        margin-bottom: 20px;
        font-size: 14px
    }

    .cta .part-img {
        width: 220px;
        margin: 0 auto
    }

    .cta .part-img:after {
        right: -30px;
        border-width: 125px 250px
    }

    .service .single-box {
        max-width: 320px;
        padding: 30px;
        margin: 0 auto 30px
    }

    .service .single-box .part-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 29px
    }

    .service .single-box .part-icon span {
        font-size: 40px;
        line-height: 80px
    }

    .service .single-box .part-txt a {
        font-size: 20px;
        margin-bottom: 21px
    }

    .service .single-box .part-txt p {
        font-size: 14px;
        line-height: 24px
    }

    .pricing .title {
        text-align: center;
        margin-bottom: 50px
    }

    .pricing .title h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -6px;
        margin-bottom: 15px
    }

    .pricing .title p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 23px
    }

    .pricing .title .controls nav .nav {
        margin: 0 auto
    }

    .pricing .title .controls nav .nav .nav-item {
        height: 45px;
        line-height: 45px;
        padding: 0 25px;
        font-size: 14px
    }

    .pricing .tab-pane {
        margin-bottom: -30px
    }

    .pricing .tab-pane .single-box {
        width: 290px;
        margin: 0 auto 30px
    }

    .pricing .tab-pane .single-box .top h3 {
        font-size: 20px;
        font-weight: 500;
        padding-top: 29px;
        padding-bottom: 57px
    }

    .pricing .tab-pane .single-box .top .price {
        padding-top: 23px;
        padding-bottom: 18px;
        margin: -30px 30px 0
    }

    .pricing .tab-pane .single-box .top .price h4 {
        font-size: 25px
    }

    .pricing .tab-pane .single-box .top .price h4 span:first-child {
        font-size: 16px;
        font-weight: 500;
        top: 1px;
        left: -12px
    }

    .pricing .tab-pane .single-box .top .price h4 span:last-child {
        font-size: 14px
    }

    .pricing .tab-pane .single-box .middle ul li {
        height: 40px;
        line-height: 40px;
        font-size: 14px
    }

    .pricing .tab-pane .single-box .bottom .def-btn {
        height: 40px;
        line-height: 40px;
        font-size: 14px
    }

    .testimonial .comment-slider .single-comment {
        padding: 33px 25px
    }

    .testimonial .comment-slider .single-comment .part-img {
        width: 100px;
        height: 100px;
        margin-bottom: 30px
    }

    .testimonial .comment-slider .single-comment .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 22px
    }

    .testimonial .comment-slider .single-comment .part-txt h3 {
        font-size: 20px;
        margin-bottom: 16px
    }

    .testimonial .comment-slider .single-comment .part-txt h5 {
        font-size: 14px;
        margin-bottom: -2px
    }

    .blog .blog-slider {
        margin-bottom: 30px
    }

    .blog .blog-slider .slick-list .single-blog .part-img {
        height: 400px
    }

    .blog .blog-slider .slick-list .single-blog .part-img img {
        max-width: none;
        height: 100%
    }

    .blog .blog-slider .slick-list .single-blog .part-txt {
        left: 25px;
        bottom: 25px;
        right: 25px
    }

    .blog .blog-slider .slick-list .single-blog .part-txt .blog-info {
        margin-bottom: 24px;
        padding-bottom: 30px
    }

    .blog .blog-slider .slick-list .single-blog .part-txt .blog-info li {
        font-size: 12px
    }

    .blog .blog-slider .slick-list .single-blog .part-txt .blog-info li:first-child {
        padding: 0 10px
    }

    .blog .blog-slider .slick-list .single-blog .part-txt .blog-info li span {
        padding: 0 10px
    }

    .blog .blog-slider .slick-list .single-blog .part-txt a {
        font-size: 18px;
        line-height: 28px
    }

    .blog .blog-static .single-blog {
        max-width: 400px;
        margin: 0 auto 30px
    }

    .blog .blog-static .single-blog .part-img img {
        width: 100%
    }

    .blog .blog-static .single-blog .part-txt {
        left: 25px;
        bottom: 25px;
        right: 25px
    }

    .blog .blog-static .single-blog .part-txt .blog-info {
        padding-bottom: 20px;
        margin-bottom: 14px
    }

    .blog .blog-static .single-blog .part-txt .blog-info li {
        font-size: 12px
    }

    .blog .blog-static .single-blog .part-txt .blog-info li:first-child {
        padding: 0 10px
    }

    .blog .blog-static .single-blog .part-txt .blog-info li span {
        padding: 0 10px
    }

    .blog .blog-static .single-blog .part-txt a {
        font-size: 18px;
        line-height: 28px
    }

    .partner .all-brand {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        row-gap: 15px;
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .partner .all-brand .single-box {
        width: calc(100%/3 - 20px)
    }

    .footer {
        background: #5446db
    }

    .footer .main-footer h3 {
        font-size: 20px;
        font-weight: 500;
        padding-bottom: 9px;
        margin-bottom: 25px
    }

    .footer .main-footer .footer-about {
        margin-bottom: 40px
    }

    .footer .main-footer .footer-about p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 19px
    }

    .footer .main-footer .footer-about ul li {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 9px
    }

    .footer .main-footer .footer-about ul li span {
        font-size: 12px
    }

    .footer .main-footer .links {
        margin-bottom: 40px
    }

    .footer .main-footer .links ul li a {
        font-size: 14px
    }

    .footer .main-footer .newsletter {
        margin-bottom: 40px
    }

    .footer .main-footer .newsletter p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 18px
    }

    .footer .main-footer .newsletter form {
        margin-bottom: 25px
    }

    .footer .main-footer .newsletter form input {
        height: 50px;
        font-size: 14px
    }

    .footer .main-footer .newsletter form button {
        height: 50px;
        line-height: 56px;
        font-size: 20px
    }

    .footer .main-footer .instagram-post .all-post {
        margin: -5px
    }

    .footer .main-footer .instagram-post .all-post .single-post {
        width: calc(100%/4 - 10px);
        margin: 5px;
        border-radius: 5px
    }

    .footer .main-footer .instagram-post .all-post .single-post img {
        width: 100%
    }

    .footer .copyright {
        background: #402bc1
    }

    .footer .copyright p {
        text-align: center;
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 10px
    }

    .footer .copyright .link {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .footer .copyright .link a {
        font-size: 14px;
        font-weight: 400;
        padding: 0 5px
    }

    .header-2 .navbar-toggler {
        color: #ff4d49
    }

    .banner.banner-2 {
        padding-bottom: 60px
    }

    .banner.banner-2 .banner-txt h4 {
        letter-spacing: 1px
    }

    .banner.banner-2 .part-img {
        width: 290px;
        margin: 0 auto
    }

    .banner.banner-2 .part-img .vector-3 {
        top: 50px;
        left: 15px;
        width: 60px
    }

    .about.about-2 .part-txt {
        margin-bottom: 0
    }

    .about.about-2 .part-img {
        width: 290px;
        margin: 0 auto 30px
    }

    .about.about-2 .part-img .vector-1 {
        top: 51%;
        left: 46.5%;
        width: 50px
    }

    .about.about-2 .part-img .vector-2 {
        bottom: 7%;
        left: 30%;
        width: 40px;
        height: 40px
    }

    .about.about-2 .part-img .vector-3 {
        bottom: -2%;
        left: 14%;
        width: 55px;
        height: 55px
    }

    .about.about-2 .part-txt .progress-area {
        padding: 7px 0
    }

    .about.about-2 .part-txt .progress-area .group {
        margin-bottom: 23px
    }

    .cta-2 .bg {
        padding-left: 20px;
        padding-right: 20px
    }

    .cta-2 .bg .title {
        margin-bottom: 50px
    }

    .cta-2 .bg .title p {
        font-size: 18px;
        margin-top: -2px;
        margin-bottom: 23px
    }

    .cta-2 .bg .title h2 {
        font-size: 30px;
        line-height: 35px;
        margin-bottom: -7px
    }

    .cta-2 .bg .form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .cta-2 .bg .form input {
        width: calc(100% - 20px);
        margin: 0 10px;
        height: 60px;
        font-size: 14px;
        padding: 0 20px
    }

    .cta-2 .bg .form input:first-child {
        border-right: 0;
        border-bottom: 1px solid #ff4d49
    }

    .cta-2 .bg .form button {
        width: 100%;
        height: 60px;
        line-height: 60px;
        font-size: 16px
    }

    .fun-fact {
        margin-bottom: -30px
    }

    .fun-fact .single-box {
        width: 270px;
        padding-bottom: 45px;
        margin: 0 auto 30px
    }

    .fun-fact .single-box .part-icon {
        width: 80px;
        margin-bottom: 30px
    }

    .fun-fact .single-box .part-txt h2 {
        font-size: 30px;
        margin-top: -7px;
        margin-bottom: 15px
    }

    .fun-fact .single-box .part-txt p {
        font-size: 14px;
        margin-bottom: -2px
    }

    .success .part-txt {
        padding: 0;
        margin-bottom: 30px
    }

    .success .part-txt h2 {
        font-size: 30px;
        line-height: 40px;
        margin-top: -6px;
        margin-bottom: 14px
    }

    .success .part-txt p {
        font-size: 14px;
        line-height: 24px
    }

    .success .part-txt .progress-area {
        padding-top: 11px;
        margin: -7.5px
    }

    .success .part-txt .progress-area .single-skill {
        padding: 7.5px
    }

    .success .part-txt .progress-area .single-skill .circle-chart .circle-chart__info .circle-chart__percent {
        font-size: 8px;
        font-weight: 500
    }

    .success .part-txt .progress-area .single-skill .circle-chart .circle-chart__info .circle-chart__subline {
        font-size: 5px;
        font-weight: 400
    }

    .success .part-img {
        max-width: 320px;
        margin: 0 auto
    }

    .portfolio .portfolio-slider {
        max-width: 320px;
        margin: 0 auto
    }

    .portfolio .portfolio-slider .slick-list .single-box {
        padding: 20px
    }

    .portfolio .portfolio-slider .slick-list .single-box:after {
        top: 10px;
        right: 10px;
        bottom: 10px;
        left: 10px
    }

    .portfolio .portfolio-slider .slick-list .single-box .part-txt h3 {
        height: 50px;
        line-height: 50px;
        font-size: 20px;
        font-weight: 500
    }

    .portfolio .portfolio-slider .slick-list .single-box .view-btn {
        top: 10px;
        right: 10px;
        bottom: 10px;
        left: 10px
    }

    .portfolio .portfolio-slider .slick-list .single-box .view-btn a {
        width: 50px;
        height: 50px;
        line-height: 60px;
        font-size: 25px
    }

    .team {
        margin-bottom: -30px
    }

    .team .single-box {
        width: 290px;
        margin: 0 auto 30px
    }

    .team .single-box .part-txt {
        padding: 23px 0
    }

    .team .single-box .part-txt a {
        font-size: 20px;
        margin-bottom: 11px
    }

    .team .single-box .part-txt p {
        font-size: 14px;
        margin-bottom: 0
    }

    .team .single-box .social ul li {
        padding: 5px 0
    }

    .app-download .part-img {
        max-width: 320px;
        margin: 0 auto 30px
    }

    .app-download .part-txt h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -7px;
        margin-bottom: 15px
    }

    .app-download .part-txt p {
        font-size: 14px;
        line-height: 24px
    }

    .app-download .part-txt .btn-box {
        padding-top: 8px
    }

    .blog-2 .single-blog {
        max-width: 320px;
        margin: 0 auto 30px
    }

    .blog-2 .single-blog .part-txt {
        padding: 20px;
        padding-left: 40px
    }

    .blog-2 .single-blog .part-txt:before {
        left: 19px
    }

    .blog-2 .single-blog .part-txt:after {
        left: 12px;
        width: 16px;
        height: 16px
    }

    .blog-2 .single-blog .part-txt a {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 17px
    }

    .blog-2 .single-blog .part-txt ul {
        padding-top: 25px
    }

    .blog-2 .single-blog .part-txt ul li {
        font-size: 12px
    }

    .def-breadcrumb .part-txt {
        padding: 60px 0
    }

    .def-breadcrumb .part-txt h1 {
        font-size: 30px;
        margin-top: -4px;
        margin-bottom: 23px
    }

    .def-breadcrumb .part-txt ul {
        margin-bottom: -2px
    }

    .def-breadcrumb .part-txt ul li {
        font-size: 14px;
        margin-right: 10px
    }

    .def-breadcrumb .part-txt ul li i {
        font-size: 12px
    }

    .video {
        margin-bottom: -100px
    }

    .video .video-area {
        padding: 60px 0
    }

    .video .video-area a {
        width: 80px;
        height: 80px;
        line-height: 85px;
        font-size: 30px
    }

    .fun-fact-2 {
        padding-bottom: 30px
    }

    .fun-fact-2 .single-box {
        width: 270px;
        margin: 0 auto 30px
    }

    .fun-fact-2 .single-box:before,
    .fun-fact-2 .single-box:after {
        width: 60px
    }

    .fun-fact-2 .single-box .part-icon {
        width: 70px;
        margin-bottom: 19px
    }

    .fun-fact-2 .single-box .part-txt h2 {
        font-size: 35px;
        margin-bottom: 15px
    }

    .fun-fact-2 .single-box .part-txt p {
        font-size: 14px;
        margin-bottom: -2px
    }

    .timeline .single-box {
        max-width: 320px;
        margin: 0 auto 30px
    }

    .timeline .single-box .title {
        height: 50px;
        border-radius: 10px;
        margin-bottom: 25px
    }

    .timeline .single-box .title:after {
        border-radius: 9px
    }

    .timeline .single-box .title h3 {
        height: 50px;
        line-height: 50px;
        font-weight: 600;
        font-size: 25px
    }

    .timeline .single-box .title h3:before,
    .timeline .single-box .title h3:after {
        width: 20px;
        height: 2px
    }

    .timeline .single-box .part-txt {
        padding: 0 20px
    }

    .timeline .single-box .part-txt h3 {
        font-size: 20px;
        margin-top: -1px;
        margin-bottom: 16px
    }

    .timeline .single-box .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: -7px
    }

    .choosing-reason .part-img {
        max-width: 320px;
        margin: 0 auto 40px
    }

    .choosing-reason .part-txt h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -6px;
        margin-bottom: 15px
    }

    .choosing-reason .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 10px
    }

    .choosing-reason .part-txt ul li {
        font-size: 14px
    }

    .choosing-reason .part-txt ul li i {
        font-size: 12px;
        margin-right: 5px
    }

    .service-txt {
        margin-bottom: -50px
    }

    .service-txt .part-img {
        max-width: 320px;
        margin: 0 auto 40px
    }

    .service-txt .part-txt h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -6px;
        margin-bottom: 15px
    }

    .service-txt .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 22px
    }

    .service-txt .part-txt .boxes {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 0
    }

    .service-txt .part-txt .boxes .single-box {
        width: 100%;
        margin: 0 0 30px
    }

    .service-txt .part-txt .boxes .single-box h3 {
        font-size: 18px;
        margin-bottom: 11px
    }

    .service-txt .part-txt .boxes .single-box span {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: -7px
    }

    .pricing.pricing-inner {
        padding-top: 110px;
        background-position-x: left
    }

    .free-analysis .part-txt {
        margin-bottom: 40px
    }

    .free-analysis .part-txt h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -6px;
        margin-bottom: 15px
    }

    .free-analysis .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 11px
    }

    .free-analysis .part-txt .part-form input {
        height: 50px;
        padding: 0 25px;
        font-size: 14px;
        border-radius: 5px;
        margin-bottom: 20px
    }

    .free-analysis .part-img {
        max-width: 320px;
        margin: 0 auto
    }

    .service-details .next {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .service-details .sidebar .nav .nav-link {
        height: 50px;
        font-size: 16px;
        margin-bottom: 10px
    }

    .service-details .sidebar .nav .nav-link span {
        width: 30px;
        height: 30px;
        line-height: 36px;
        font-size: 18px
    }

    .service-details .main-content .main-img {
        padding: 5px;
        border-radius: 10px;
        margin-bottom: 30px
    }

    .service-details .main-content .main-img img {
        border-radius: 7px
    }

    .service-details .main-content .part-txt {
        margin-bottom: 40px
    }

    .service-details .main-content .part-txt h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: -6px;
        margin-bottom: 15px
    }

    .service-details .main-content .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 12px
    }

    .service-details .main-content .part-txt h3 {
        font-size: 20px;
        line-height: 30px;
        padding-top: 4px;
        margin-bottom: 11px
    }

    .service-details .main-content .part-txt ul li {
        width: 100%;
        font-size: 14px
    }

    .service-details .main-content .part-txt ul li i {
        font-size: 12px;
        margin-right: 5px
    }

    .service-details .main-content .part-txt p.marked-txt {
        padding: 24px 25px 23px
    }

    .service-details .main-content .part-tab nav .nav {
        padding: 0 5px
    }

    .service-details .main-content .part-tab nav .nav .nav-link {
        height: 60px;
        line-height: 16px;
        font-size: 14px;
        font-weight: 400;
        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
    }

    .service-details .main-content .part-tab .tab-content {
        padding-top: 30px
    }

    .service-details .main-content .part-tab .tab-content .txt {
        padding-right: 0;
        margin-bottom: 23px
    }

    .service-details .main-content .part-tab .tab-content .img {
        max-width: 320px;
        margin: 0 auto
    }

    .team.team-page {
        margin-bottom: 0
    }

    .team.team-page .single-box {
        min-height: 300px
    }

    .team-details .profile {
        max-width: 320px;
        margin: 0 auto 30px
    }

    .team-details .profile .part-img {
        max-height: 350px
    }

    .team-details .profile .txt {
        padding: 25px 0
    }

    .team-details .profile .txt h3 {
        font-size: 20px;
        margin-top: -1px;
        margin-bottom: 16px
    }

    .team-details .profile .txt span {
        font-size: 14px;
        margin-bottom: -2px
    }

    .team-details .profile .social ul li a {
        width: 35px;
        height: 35px;
        line-height: 40px;
        font-size: 14px
    }

    .team-details .biography h2 {
        font-size: 25px;
        margin-top: -2px;
        margin-bottom: 26px
    }

    .team-details .biography ul:nth-last-of-type(1) {
        margin-bottom: 6px
    }

    .team-details .biography ul li {
        width: 100%;
        height: 70px;
        padding: 0 25px;
        font-size: 14px;
        line-height: 24px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-radius: 5px
    }

    .team-details .biography ul li:nth-child(2) {
        background: 0 0;
        border: 0
    }

    .team-details .biography ul li span {
        display: block
    }

    .team-details .biography ul:nth-child(2n+1) li {
        background: #f7f7fe;
        border: 1px solid rgba(75, 75, 70, .05)
    }

    .team-details .biography ul:nth-child(2n+1) li:nth-child(2) {
        background: 0 0;
        border: 0
    }

    .team-details .biography p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 17px
    }

    .team-details .skill {
        padding-top: 5px
    }

    .team-details .skill .single-box {
        margin-bottom: 20px
    }

    .team-details .skill .single-box p {
        font-size: 14px;
        margin-bottom: 8px
    }

    .team-details .education {
        padding-top: 30px
    }

    .team-details .education h3 {
        font-size: 20px;
        margin-top: -1px;
        margin-bottom: 16px
    }

    .team-details .education ul {
        margin-bottom: -8px
    }

    .team-details .education ul li {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 11px
    }

    .team-details .education ul li span {
        font-size: 14px
    }

    .pricing-2 {
        padding-bottom: 30px
    }

    .pricing-2 .single-box {
        max-width: 320px;
        margin: 0 auto 30px
    }

    .pricing-2 .single-box .top {
        margin-bottom: 25px
    }

    .pricing-2 .single-box .top h3 {
        font-size: 20px;
        margin-bottom: 22px
    }

    .pricing-2 .single-box .top .price {
        width: 150px;
        height: 150px
    }

    .pricing-2 .single-box .top .price h4 {
        font-size: 30px
    }

    .pricing-2 .single-box .top .price h4 span {
        font-size: 20px
    }

    .pricing-2 .single-box .middle ul {
        margin-bottom: 23px
    }

    .pricing-2 .single-box .middle ul li {
        font-size: 14px
    }

    .pricing-3 {
        padding-bottom: 30px
    }

    .pricing-3 .single-box {
        max-width: 320px;
        margin: 0 auto 30px
    }

    .pricing-3 .single-box .top h3 {
        font-size: 20px;
        margin-bottom: 22px
    }

    .pricing-3 .single-box .top .price h4 {
        font-size: 30px
    }

    .pricing-3 .single-box .top .price h4 span {
        font-size: 20px
    }

    .pricing-3 .single-box .middle ul li {
        font-size: 14px
    }

    .cart .table-responsive {
        margin-bottom: 40px
    }

    .cart .table {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content
    }

    .cart .table thead tr th {
        font-size: 16px;
        padding: 25px 30px
    }

    .cart .table tbody tr td {
        padding: 20px
    }

    .cart .table tbody tr td:first-child {
        width: 300px
    }

    .cart .table tbody tr td .product .part-img {
        width: 70px;
        margin-right: 15px
    }

    .cart .table tbody tr td .product .part-txt {
        width: calc(100% - 85px)
    }

    .cart .table tbody tr td .product .part-txt p {
        font-size: 14px;
        line-height: 24px
    }

    .cart .table tbody tr td .price p {
        font-size: 14px
    }

    .cart .table tbody tr td .product-quantity .product-count .quantity input {
        width: 65px;
        font-size: 14px;
        margin: 0
    }

    .cart .cart-totals .coupon .coupon-title {
        padding: 20px
    }

    .cart .cart-totals .coupon .coupon-title h3 {
        font-size: 16px
    }

    .cart .cart-totals .coupon .part-txt {
        padding: 20px
    }

    .cart .cart-totals .coupon .part-txt p {
        font-size: 12px;
        margin-bottom: 18px
    }

    .cart .cart-totals .coupon .part-txt form input {
        height: 50px;
        padding: 0 20px;
        font-size: 14px;
        margin-bottom: 20px
    }

    .cart .cart-totals .coupon .part-txt form button {
        font-size: 14px;
        padding: 0 20px
    }

    .cart .cart-totals .proceed-to-checkout .checkout-title {
        padding: 20px
    }

    .cart .cart-totals .proceed-to-checkout .checkout-title h3 {
        font-size: 16px
    }

    .cart .cart-totals .proceed-to-checkout .part-txt {
        padding: 20px 20px 13px
    }

    .cart .cart-totals .proceed-to-checkout .part-txt ul {
        margin-top: -1px;
        padding-bottom: 0
    }

    .cart .cart-totals .proceed-to-checkout .part-txt ul li {
        font-size: 16px;
        margin-bottom: 16px
    }

    .cart .cart-totals .proceed-to-checkout .part-txt button {
        font-size: 14px
    }

    .cart .cart-totals .proceed-to-checkout .bottom-box {
        padding: 20px
    }

    .cart .cart-totals .proceed-to-checkout .bottom-box ul {
        margin-top: -1px;
        padding-bottom: 2px
    }

    .cart .cart-totals .proceed-to-checkout .bottom-box ul li {
        font-size: 16px
    }

    .cart .cart-totals .proceed-to-checkout .bottom-box .def-btn {
        font-size: 14px;
        padding: 0 20px
    }

    .checkout .notification {
        height: 75px;
        padding: 0 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 30px
    }

    .checkout .notification p {
        font-size: 14px;
        line-height: 24px
    }

    .checkout .notification p span {
        font-size: 14px
    }

    .checkout form .title h2 {
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 21px
    }

    .checkout form input:not([type=radio]),
    .checkout form select {
        height: 50px;
        margin-bottom: 20px;
        padding: 0 20px;
        font-size: 14px
    }

    .checkout form textarea {
        height: 130px;
        padding: 10px 20px;
        font-size: 14px
    }

    .checkout form .payment-method {
        margin-top: 23px
    }

    .checkout form .payment-method .options {
        padding: 25px
    }

    .checkout form .payment-method .options .form-check:last-child {
        margin-bottom: 8px
    }

    .checkout form .payment-method .options .form-check label {
        font-size: 14px
    }

    .checkout form .payment-method .options .form-check .note {
        display: none
    }

    .checkout form .payment-method .options .form-check img {
        width: 120px;
        margin-left: 20px
    }

    .checkout form .payment-method .options .form-check a {
        display: none
    }

    .checkout form .payment-method .bottom-section {
        padding: 25px
    }

    .checkout form .payment-method .bottom-section p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 18px
    }

    .faq .next {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .faq .part-img {
        margin-bottom: 40px
    }

    .faq .part-img:last-child {
        margin-top: -20px
    }

    .faq .part-txt .top-txt {
        padding-bottom: 7px
    }

    .faq .part-txt .top-txt h2 {
        font-size: 25px;
        margin-top: -2px;
        margin-bottom: 20px
    }

    .faq .part-txt .top-txt p {
        font-size: 14px;
        line-height: 24px
    }

    .faq .part-txt .accordion .card {
        margin-bottom: 25px
    }

    .faq .part-txt .accordion .card .card-header h2 button {
        padding: 0 20px;
        font-size: 14px
    }

    .faq .part-txt .accordion .card .card-body {
        padding: 20px 20px 13px;
        margin-top: 10px
    }

    .faq .part-txt .accordion .card .card-body p {
        font-size: 14px;
        line-height: 24px
    }

    .error .part-img {
        max-width: 320px;
        margin: 0 auto 30px
    }

    .error .part-txt h2 {
        font-size: 25px;
        margin-top: -3px;
        margin-bottom: 19px
    }

    .error .part-txt h3 {
        font-size: 20px;
        margin-bottom: 16px
    }

    .error .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 23px
    }

    .portfolio-page .single-box {
        max-width: 320px;
        min-height: 250px;
        margin: 0 auto 30px
    }

    .portfolio-page .single-box .part-txt {
        padding: 30px
    }

    .portfolio-page .single-box .part-txt span {
        height: 20px;
        line-height: 20px;
        font-size: 12px;
        padding: 0 15px;
        margin-bottom: 20px
    }

    .portfolio-page .single-box .part-txt h3 {
        font-size: 20px;
        margin-bottom: 16px
    }

    .portfolio-page .single-box .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 16px
    }

    .portfolio-page .single-box .part-txt a {
        font-size: 14px
    }

    .portfolio-single .main-img {
        margin-bottom: 40px
    }

    .portfolio-single .project-information h2 {
        font-size: 25px;
        margin-top: -2px;
        margin-bottom: 26px
    }

    .portfolio-single .project-information ul li {
        font-size: 14px;
        line-height: 24px;
        padding: 5px 20px
    }

    .portfolio-single .project-information ul li span {
        display: block;
        width: 100%;
        font-size: 14px
    }

    .portfolio-single .project-information ul li a {
        font-size: 14px;
        margin: 0 2px
    }

    .portfolio-single .main-txt h3 {
        font-size: 25px;
        margin-top: -2px;
        margin-bottom: 20px
    }

    .portfolio-single .main-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 17px
    }

    .portfolio-single .main-txt ul {
        margin-top: 0;
        padding-top: 2px;
        margin-bottom: -17px
    }

    .portfolio-single .main-txt ul li {
        width: 100%;
        font-size: 13px
    }

    .portfolio-single .main-txt ul li i {
        font-size: 15px
    }

    .portfolio-single .boxes .part-img {
        max-width: 320px;
        margin: 30px auto 0;
        padding: 10px
    }

    .portfolio-single .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: -7px
    }

    .shop .sidebar {
        max-width: 320px;
        margin: 0 auto 60px
    }

    .shop .sidebar .search-box {
        border-radius: 5px
    }

    .shop .sidebar .search-box form input {
        width: calc(100% - 45px);
        height: 45px;
        font-size: 14px
    }

    .shop .sidebar .search-box form button {
        width: 45px;
        height: 45px;
        line-height: 55px;
        font-size: 25px
    }

    .shop .sidebar h3 {
        font-size: 20px;
        padding-bottom: 12px
    }

    .shop .sidebar .category ul {
        margin-top: -12px
    }

    .shop .sidebar .category ul li a {
        font-size: 14px;
        line-height: 35px
    }

    .shop .sidebar .filter-by-price .range .slider-range {
        margin-bottom: 12px
    }

    .shop .sidebar .filter-by-price .range .price-txt span,
    .shop .sidebar .filter-by-price .range .price-txt input {
        font-size: 14px
    }

    .shop .sidebar .feat-products ul li .txt a {
        font-size: 14px
    }

    .shop .sidebar .feat-products ul li .txt p {
        font-size: 12px
    }

    .shop .sidebar .feat-products ul li .txt .star {
        font-size: 8px
    }

    .shop .sidebar .filter-by-color .form-group {
        margin: -2px 0
    }

    .shop .sidebar .filter-by-color .form-group .form-check {
        padding-left: 30px
    }

    .shop .sidebar .filter-by-color .form-group .form-check input {
        margin-left: -30px
    }

    .shop .sidebar .filter-by-color .form-group .form-check .circle {
        width: 15px;
        height: 15px;
        line-height: 16px;
        font-size: 8px
    }

    .shop .sidebar .filter-by-color .form-group .form-check label {
        font-size: 14px
    }

    .shop .main-content .top-bar {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
        margin-bottom: 40px
    }

    .shop .main-content .top-bar p {
        font-size: 14px;
        margin-bottom: 18px
    }

    .shop .main-content .top-bar form {
        padding: 0 10px
    }

    .shop .main-content .top-bar form label {
        font-size: 14px
    }

    .shop .main-content .top-bar form select {
        font-size: 14px;
        height: 40px
    }

    .shop .main-content .single-box {
        max-width: 320px;
        padding: 20px;
        margin: 0 auto 30px
    }

    .shop .main-content .single-box .part-img .tag {
        top: 10px;
        left: 10px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 12px
    }

    .shop .main-content .single-box .part-img .cart-option {
        top: 10px;
        right: 10px
    }

    .shop .main-content .single-box .part-txt {
        padding-bottom: 10px;
        margin-top: -4px
    }

    .shop .main-content .single-box .part-txt a {
        font-size: 18px
    }

    .shop .main-content .shopnu-pagination ul li {
        margin: 0 2.5px
    }

    .shop .main-content .shopnu-pagination ul li a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 14px
    }

    .shop-details .item-section .part-img {
        margin-bottom: 40px
    }

    .shop-details .item-section .part-img .product-slider .owl-item {
        padding: 10px
    }

    .shop-details .item-section .part-img .owl-thumbs {
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px
    }

    .shop-details .item-section .part-img .owl-thumbs .owl-thumb-item {
        border-radius: 5px
    }

    .shop-details .item-section .part-txt h3 {
        font-size: 20px;
        line-height: 30px;
        margin-top: -7px;
        margin-bottom: 22px
    }

    .shop-details .item-section .part-txt .info {
        margin-bottom: 19px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .shop-details .item-section .part-txt .info .price {
        height: 25px;
        line-height: 25px;
        font-size: 14px;
        padding: 0 15px;
        margin-bottom: 10px
    }

    .shop-details .item-section .part-txt .info h5 {
        height: 25px;
        line-height: 25px;
        font-size: 14px;
        padding: 0 15px;
        margin-left: 0
    }

    .shop-details .item-section .part-txt .item-rating {
        margin-bottom: 22px
    }

    .shop-details .item-section .part-txt .item-rating .star {
        font-size: 10px
    }

    .shop-details .item-section .part-txt .item-rating a {
        font-size: 14px
    }

    .shop-details .item-section .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 10px
    }

    .shop-details .item-section .part-txt .cart-option ul {
        display: block
    }

    .shop-details .item-section .part-txt .cart-option ul li {
        font-size: 14px
    }

    .shop-details .item-section .part-txt .cart-option ul li:first-child {
        width: 100%;
        margin-bottom: 10px
    }

    .shop-details .item-section .part-txt .cart-option ul li span {
        width: 12px;
        height: 12px
    }

    .shop-details .item-section .part-txt .cart-option ul li .product-count .quantity input {
        width: 40px;
        height: 30px;
        margin: 0;
        font-size: 14px
    }

    .shop-details .item-section .part-txt .cart-option ul li .product-count .quantity .quantity-nav .quantity-button {
        height: 30px;
        line-height: 30px;
        width: 30px;
        font-size: 14px
    }

    .shop-details .item-section .part-txt .cart-option ul li .product-count {
        margin-right: 5px
    }

    .shop-details .item-section .part-txt .cart-option ul li .rel-btns a {
        height: 32px;
        line-height: 30px;
        font-size: 12px;
        margin-left: 5px
    }

    .shop-details .item-section .part-txt .cart-option ul li .rel-btns a.add-to-cart {
        margin-right: 5px
    }

    .shop-details .dscr-section {
        padding: 30px 20px
    }

    .shop-details .dscr-section .box .nav {
        margin-bottom: 20px
    }

    .shop-details .dscr-section .box .nav .nav-link {
        text-align: center;
        width: 100%;
        height: 40px;
        line-height: 40px;
        padding: 0 20px;
        font-size: 14px;
        margin: 0 0 10px
    }

    .shop-details .dscr-section .box .tab-pane .dscr p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 20px
    }

    .shop-details .dscr-section .box .tab-pane .dscr ul {
        margin-top: -3px;
        margin-bottom: -7px
    }

    .shop-details .dscr-section .box .tab-pane .dscr ul li {
        font-size: 14px;
        line-height: 24px;
        padding-left: 15px;
        margin-bottom: 7px
    }

    .shop-details .dscr-section .box .tab-pane .dscr ul li:after {
        top: 6px
    }

    .shop-details .dscr-section .box .tab-pane .dscr ul li:last-child {
        margin-bottom: 0
    }

    .shop-details .dscr-section .box .tab-pane .product-data ul li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: auto;
        padding: 5px 15px;
        font-size: 14px;
        line-height: 24px
    }

    .shop-details .dscr-section .box .tab-pane .product-data ul li span {
        min-width: 70px
    }

    .shop-details .dscr-section .box .tab-pane .product-data ul li output {
        display: none
    }

    .shop-details .dscr-section .box .tab-pane .reviews .single-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .shop-details .dscr-section .box .tab-pane .reviews .single-box .part-img {
        width: 70px;
        margin-right: 0;
        margin-bottom: 20px
    }

    .shop-details .dscr-section .box .tab-pane .reviews .single-box .part-txt {
        width: 100%;
        padding: 20px
    }

    .shop-details .dscr-section .box .tab-pane .reviews .single-box .part-txt .title {
        margin-bottom: 12px
    }

    .shop-details .dscr-section .box .tab-pane .reviews .single-box .part-txt .title h3 {
        font-size: 14px;
        margin-top: -1px
    }

    .shop-details .dscr-section .box .tab-pane .reviews .single-box .part-txt .title .star {
        font-size: 8px
    }

    .shop-details .dscr-section .box .tab-pane .reviews .single-box .part-txt p {
        font-size: 12px;
        line-height: 22px;
        margin-bottom: 12px
    }

    .shop-details .dscr-section .box .tab-pane .reviews .single-box .part-txt span {
        font-size: 12px
    }

    .shop-details .dscr-section .box .tab-pane .post-a-review h3 {
        font-size: 20px;
        margin-bottom: 16px
    }

    .shop-details .dscr-section .box .tab-pane .post-a-review p {
        font-size: 12px;
        line-height: 22px
    }

    .shop-details .dscr-section .box .tab-pane .post-a-review form input {
        height: 45px;
        padding: 0 20px;
        font-size: 14px;
        margin-bottom: 20px
    }

    .shop-details .dscr-section .box .tab-pane .post-a-review form textarea {
        height: 120px;
        padding: 15px 20px;
        font-size: 14px;
        margin-bottom: 20px
    }

    .shop-details .related-products .main-content .slick-list {
        max-width: 320px;
        margin: -15px auto
    }

    .blog-grid .next {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .blog-grid .sidebar {
        max-width: 320px;
        margin: 0 auto 60px
    }

    .blog-grid .sidebar .search-box {
        border-radius: 5px
    }

    .blog-grid .sidebar .search-box form input {
        width: calc(100% - 45px);
        height: 45px;
        font-size: 14px
    }

    .blog-grid .sidebar .search-box form button {
        width: 45px;
        height: 45px;
        line-height: 55px;
        font-size: 25px
    }

    .blog-grid .sidebar h3 {
        font-size: 20px;
        padding-bottom: 12px
    }

    .blog-grid .sidebar .links ul li a {
        font-size: 14px;
        line-height: 31px
    }

    .blog-grid .sidebar .links ul {
        margin-top: -10px
    }

    .blog-grid .sidebar .recent-post ul li .img {
        width: 70px;
        border-radius: 5px;
        margin-right: 10px
    }

    .blog-grid .sidebar .recent-post ul li .txt {
        width: calc(100% - 80px)
    }

    .blog-grid .sidebar .recent-post ul li .txt a {
        font-size: 14px;
        line-height: 24px;
        margin-top: -7px
    }

    .blog-grid .sidebar .recent-post ul li .txt p {
        font-size: 12px
    }

    .blog-grid .sidebar .tags .all-tag a {
        height: 40px;
        line-height: 40px;
        font-size: 12px;
        padding: 0 10px
    }

    .blog-grid .main-content .all-blogs {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%
    }

    .blog-grid .main-content .all-blogs .wrap {
        max-width: 320px;
        margin: 0 auto
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-1 {
        -ms-grid-column-span: 1;
        grid-column: span 1
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-2 {
        -ms-grid-row-span: 1;
        grid-row: span 1
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-1 .single-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-1 .single-box .part-img {
        width: 100%
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-1 .single-box .part-txt {
        width: 100%;
        margin: 0
    }

    .blog-grid .main-content .all-blogs .wrap.wrap-2 .single-box .part-txt {
        margin: 0;
        height: auto
    }

    .blog-grid .main-content .all-blogs .wrap .part-img {
        height: 250px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        overflow: hidden
    }

    .blog-grid .main-content .all-blogs .wrap .part-img img {
        width: 100%
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt {
        padding: 30px 20px
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt h3 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 21px
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt .blog-info {
        padding-bottom: 7px;
        margin-bottom: 24px
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt .blog-info li {
        font-size: 12px
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt .blog-info li span {
        font-size: 10px;
        margin-right: 2px
    }

    .blog-grid .main-content .all-blogs .wrap .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 23px
    }

    .blog-grid .main-content .my-pagination {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-top: 40px
    }

    .blog-grid .main-content .my-pagination a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 14px
    }

    .blog-grid .main-content .my-pagination a:last-child {
        margin-right: 0
    }

    .blog-grid .blog-details {
        padding-bottom: 60px
    }

    .blog-grid .blog-details .main-img {
        border-radius: 5px;
        margin-bottom: 40px
    }

    .blog-grid .blog-details .blog-info ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-bottom: 28px
    }

    .blog-grid .blog-details .blog-info ul li {
        font-size: 12px
    }

    .blog-grid .blog-details .blog-info ul li:first-child {
        margin-bottom: 13px
    }

    .blog-grid .blog-details .blog-info ul li span i {
        font-size: 10px;
        margin-right: 2px
    }

    .blog-grid .blog-details .part-txt h2 {
        font-size: 20px;
        line-height: 30px;
        margin-top: -7px;
        margin-bottom: 11px
    }

    .blog-grid .blog-details .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 23px
    }

    .blog-grid .blog-details .part-txt .quoted {
        padding: 20px;
        margin-bottom: 23px
    }

    .blog-grid .blog-details .part-txt .quoted p {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        font-size: 14px;
        line-height: 24px;
        margin-top: 0;
        margin-bottom: -7px
    }

    .blog-grid .blog-details .part-txt .quoted p .icon {
        width: 40px;
        height: 40px;
        line-height: 35px;
        font-size: 16px;
        border-width: 2px;
        margin-right: 0;
        margin-bottom: 14px
    }

    .blog-grid .blog-details .part-txt .quoted p .text {
        width: 100%
    }

    .blog-grid .blog-details .part-txt .images {
        grid-gap: 10px
    }

    .blog-grid .blog-details .part-txt .images .single-image {
        border-radius: 5px
    }

    .blog-grid .blog-details .part-txt.part-txt-2 {
        padding-top: 10px
    }

    .blog-grid .blog-details .part-txt ul li {
        width: 100%;
        font-size: 14px;
        margin-bottom: 15px
    }

    .blog-grid .blog-details .part-txt .other-option {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding-top: 10px;
        padding-bottom: 30px
    }

    .blog-grid .blog-details .part-txt .other-option .tag {
        width: auto;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: 13px
    }

    .blog-grid .blog-details .part-txt .other-option .tag p {
        display: block
    }

    .blog-grid .blog-details .part-txt .other-option .tag p {
        width: 100%;
        font-size: 16px;
        margin-bottom: 9px
    }

    .blog-grid .blog-details .part-txt .other-option .tag a {
        font-size: 12px;
        margin: 0 5px 5px
    }

    .blog-grid .blog-details .part-txt .other-option .share p {
        font-size: 16px;
        width: auto
    }

    .blog-grid .blog-details .part-txt .other-option .share p a {
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 10px;
        margin: 0 5px
    }

    .blog-grid .blog-details .blog-nav .single-nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .blog-grid .blog-details .blog-nav .single-nav.prev-blog {
        padding-right: 0
    }

    .blog-grid .blog-details .blog-nav .single-nav.next-blog {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        padding-left: 0
    }

    .blog-grid .blog-details .blog-nav .single-nav .img {
        width: 80px;
        height: 80px;
        border-radius: 5px;
        margin-right: 0;
        margin-bottom: 25px
    }

    .blog-grid .blog-details .blog-nav .single-nav .txt {
        width: 140px
    }

    .blog-grid .blog-details .blog-nav .single-nav .txt a {
        display: block;
        font-size: 14px;
        line-height: 20px;
        margin-top: -4px;
        margin-bottom: -6px
    }

    .blog-grid .blog-details .blog-nav .single-nav .txt a span {
        font-size: 12px;
        margin-top: 9px
    }

    .blog-grid .blog-details .blog-comments {
        padding-top: 10px
    }

    .blog-grid .blog-details .blog-comments .comments h3 {
        font-size: 20px;
        margin-bottom: 21px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment.replied {
        margin-left: 30px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment .part-img {
        width: 70px;
        height: 70px;
        margin-right: 0;
        margin-bottom: 20px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment .part-txt {
        width: 100%;
        padding: 20px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment.replied .part-txt {
        width: 100%
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment .part-txt .top {
        margin-bottom: 15px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment .part-txt h4 {
        font-size: 16px;
        margin-top: -1px;
        margin-bottom: 11px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment .part-txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 12px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment .part-txt .bottom span {
        font-size: 12px
    }

    .blog-grid .blog-details .blog-comments .comments .single-comment .part-txt .bottom a {
        font-size: 12px
    }

    .blog-grid .blog-details .blog-comments .post-a-comment {
        padding-top: 40px
    }

    .blog-grid .blog-details .blog-comments .post-a-comment h3 {
        font-size: 20px;
        margin-bottom: 22px
    }

    .blog-grid .blog-details .blog-comments .post-a-comment form input {
        height: 50px;
        font-size: 14px;
        margin-bottom: 25px
    }

    .blog-grid .blog-details .blog-comments .post-a-comment form textarea {
        height: 120px;
        font-size: 14px;
        margin-bottom: 25px
    }

    .contact .heading h4 {
        font-size: 18px;
        margin-top: -2px;
        margin-bottom: 17px
    }

    .contact .boxes {
        margin-bottom: -30px
    }

    .contact .boxes .single-box {
        width: 290px;
        margin: 0 auto 30px;
        padding: 30px
    }

    .contact .boxes .single-box .part-icon {
        width: 80px;
        height: 80px;
        padding: 0 10px;
        margin-bottom: 30px
    }

    .contact .boxes .single-box .part-txt h3 {
        font-size: 20px;
        margin-bottom: 21px
    }

    .contact .boxes .single-box .part-txt h3 i {
        font-size: 16px
    }

    .contact .boxes .single-box .part-txt span {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: -7px
    }

    .contact .contact-form {
        padding-bottom: 60px
    }

    .contact .contact-form .title {
        text-align: center;
        margin-bottom: 30px
    }

    .contact .contact-form .title h2 {
        font-size: 25px;
        margin-top: -1px;
        margin-bottom: 22px
    }

    .contact .contact-form .title p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: -5px
    }

    .contact .contact-form form input {
        height: 45px;
        padding: 0 20px;
        font-size: 14px;
        margin-bottom: 20px
    }

    .contact .contact-form form textarea {
        height: 120px;
        padding: 10px 20px;
        font-size: 14px;
        margin-bottom: 20px
    }

    .contact .contact-info .title {
        text-align: center;
        margin-bottom: 30px
    }

    .contact .contact-info .title h2 {
        font-size: 25px;
        margin-top: -1px;
        margin-bottom: 22px
    }

    .contact .contact-info .title p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: -5px
    }

    .contact .contact-info .single-box {
        width: 290px;
        margin: 0 auto 30px;
        padding: 25px
    }

    .contact .contact-info .single-box .icon {
        width: 30px;
        height: 30px;
        line-height: 35px;
        font-size: 12px
    }

    .contact .contact-info .single-box .txt {
        width: calc(100% - 50px)
    }

    .contact .contact-info .single-box .txt h3 {
        font-size: 16px;
        margin-top: 0
    }

    .contact .contact-info .single-box .txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: -7px
    }
}