

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");

:root {
  --body: #f5f5f5;
  --text: #555555;
  --dark: #020314;
  --white: #ffffff;
  --border: #e8e8e8;
  --heading: #232d3b;
  --primary: #d8532b;
  --navbar-bg: #fff9f6;
  --banner-bg: #fcfcfd;
  --envato: #82b541;
  --envato-hover: #49a010;
}

/*=====================================
            ALL COMMON STYLE
======================================*/
* {
    margin: 0px;
    padding: 0px;
    outline: 0px;
}

img {
    vertical-align: middle;
}

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

a:hover {
    text-decoration: none;
}

ul,
ol {
    list-style: none;
    margin-bottom: 0px;
    display: inline-block;
}

button:focus {
    outline: none;
    border: none;
}

html,
body {
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--text);
    background: var(--body);
    font-family: 'Roboto', sans-serif;
}

p {
    margin-bottom: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 0px;
    color: var(--heading);
}

h1 {
    font-size: 45px;
    line-height: 53px;
}

h2 {
    font-size: 55px;
    line-height: 63px;
}

h3 {
    font-size: 22px;
    line-height: 30px;
}

h4 {
    font-size: 18px;
    line-height: 26px;
}

h5 {
    font-size: 16px;
    line-height: 26px;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .section-heading {
        margin-bottom: 30px;
    }
}

/*=====================================
            ALL BUTTON STYLE
======================================*/
.btn {
    border: none;
    font-size: 14px;
    font-weight: 500;
    padding: 16px 35px;
    border-radius: 50px;
    border: 1px solid;
    text-transform: uppercase;
    text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 8px 25px 0px rgba(72, 69, 90, 0.1);
            box-shadow: 0px 8px 25px 0px rgba(72, 69, 90, 0.1);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.btn:focus {
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
}

.btn i {
    margin-right: 8px;
    margin-top: -1px;
}

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

.btn-inline:hover {
    color: var(--white);
    background: var(--heading);
    border-color: var(--heading);
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
    -webkit-box-shadow: 0px 25px 60px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 25px 60px 0px rgba(0, 0, 0, 0.1);
}

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

.btn-outline:hover {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
    -webkit-box-shadow: 0px 25px 60px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 25px 60px 0px rgba(0, 0, 0, 0.1);
}

.duel-btn .btn {
    margin-right: 15px;
}

.duel-btn .btn:nth-child(1) {
    background: var(--heading);
    border-color: var(--heading);
}

.duel-btn .btn:nth-child(2):hover {
    background: var(--primary);
    border-color: var(--primary);
}

@media (max-width: 450px) {
    .duel-btn {
        width: 210px;
        margin: 0 auto;
        text-align: center;
    }

    .duel-btn .btn {
        margin: 8px 0px;
    }
}

@media (min-width: 451px) and (max-width: 575px) {
    .duel-btn .btn {
        margin: 0px 8px;
    }
}

/*=====================================
            SLIDER ARROW STYLE
======================================*/
.dandik,
.bamdik {
    position: absolute;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 16px;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--primary);
    -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 1;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.dandik:hover,
.bamdik:hover {
    color: var(--white);
    background: var(--heading);
}

.dandik {
    top: 50%;
    right: -15px;
}

.bamdik {
    top: 50%;
    left: -15px;
}

@media (min-width: 576px) and (max-width: 1199px) {
    .dandik {
        right: 0px;
    }

    .bamdik {
        left: 0px;
    }
}

/*=====================================
            NAVBAR PART STYLE
======================================*/
.navbar {
    padding: 18px 15px;
    background: var(--navbar-bg);     
}

.navbar-fixed {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 3;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    width: 200px;
    height: auto;
}

.nav-item {
    margin: 0px 15px;
}

.nav-link {
    font-size: 18px;
    font-weight: 500;
    color: var(--heading);
    text-transform: capitalize;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.nav-link:hover {
    color: var(--primary);
}

.navbar-nav .active .nav-link {
    color: var(--primary);
}

.navbar-btn a {
    background: var(--envato);
    padding: 14px 30px 14px 70px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.navbar-btn a:hover {
    background: var(--envato-hover);
}

.navbar-btn a::before {
    position: absolute;
    content: "";
    top: 5px;
    left: 5px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    z-index: -1;
}

.navbar-btn a img {
    position: absolute;
    top: 15px;
    left: 15px;
}

.navbar-btn a span {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .navbar {
        padding: 15px 15px;
    }

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

    .navbar-toggler {
        border: none;
        padding: 6px 10px;
        border-radius: 3px;
        background: var(--primary);
    }

    .navbar-toggler:focus {
        outline: none;
    }

    .navbar-toggler i {
        color: var(--white);
    }

    .navbar-collapse {
        text-align: center;
        padding: 30px 0px;
        background: var(--whitecolor);
    }

    .navbar-nav {
        padding-bottom: 15px;
    }

    .nav-item {
        margin: 0px;
    }

    .nav-link {
        display: inline-block;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .navbar-nav {
        -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;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .nav-item {
        margin: 0px 18px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .nav-item {
        margin: 0px 12px;
    }
}

/*=====================================
            BANNER PART STYLE
======================================*/
#banner-part {
    padding: 100px 0px 0px;
    background: var(--white);
    position: relative;
    z-index: 1;
}

#banner-part::before {
    position: absolute;
    content: "";
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url(../demo/images/banner-bg.jpg);
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
}

.banner-content {
    text-align: center;
}

.banner-content h1 {
    margin: 0 auto 30px;
    color: var(--heading);
}

.banner-content h3 {
    margin-bottom: 30px;
    color: var(--primary);
}

.banner-content ul {
    margin-bottom: 40px;
}

.banner-content ul li {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    margin: 0px 15px;
    display: inline-block;
    background: var(--white);
    -webkit-box-shadow: 0px 25px 35px 0px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 25px 35px 0px rgba(0, 0, 0, 0.15);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.banner-content ul li:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
}

.banner-content ul li img {
    width: auto;
    height: 40px;
}

.banner-content img {
    width: 800px;
}

@media (max-width: 767px) {
    #banner-part {
        padding: 60px 0px 0px;
    }

    .banner-content h1 {
        font-size: 35px;
        line-height: 43px;
    }

    .banner-content h3 {
        margin-bottom: 20px;
    }

    .banner-content ul {
        margin-bottom: 30px;
    }

    .banner-content ul li {
        width: 75px;
        height: 75px;
        line-height: 75px;
        margin: 8px;
    }

    .banner-content img {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #banner-part {
        padding: 80px 0px 0px;
    }

    .banner-content img {
        width: 100%;
    }
}

/*=====================================
            DEMO PART STYLE
======================================*/
#demo-part {
    padding: 108px 0px 0px;
}

.demo-card {
    text-align: center;
    border-radius: 3px;
    margin: 0px 10px 50px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05), 0 5px 20px rgba(0, 0, 0, 0.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05), 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.demo-card:hover {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.demo-card:hover .demo-overlay {
  visibility: visible;
  opacity: 1;
}

.demo-card:hover .demo-cover {
  top: 50%;
}

.demo-highlight {
    position: absolute;
    top: -25px;
    z-index: 1;
}

.right {
    right: -25px
}

.left {
    left: -25px
}

.demo-highlight h3 {
    width: 100px;
    height: 100px;
    line-height: 85px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 50%;
    color: var(--white);
    background: var(--primary);
    border: 8px solid var(--white);
    box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.2);
}

.demo-img {
  position: relative;
}

.demo-img img {
  width: 100%;
  height: auto;
  border-radius: 3px 3px 0px 0px;
}

.demo-overlay {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 3px 3px 0px 0px;
  background: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  opacity: 0;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.demo-cover {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 200px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.demo-name {
  padding: 18px 0px;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.demo-name h4 span {
    margin-left: 8px;
    color: var(--primary);
    text-transform: uppercase;
}

.demo-coming img {
  opacity: 0.3;
}

.demo-coming .demo-overlay {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 3px 3px 0px 0px;
  background: rgba(0, 0, 0, 0.7);
  visibility: visible;
  opacity: 1;
}

.demo-coming .demo-cover {
  width: 220px;
  top: 50%;
}

.demo-coming .demo-cover h4 {
  font-size: 30px;
  color: var(--primary);
}

@media (max-width: 767px) {
    #demo-part {
        padding: 60px 0px 0px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .demo-card {
        margin: 0px 0px 30px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #demo-part {
        padding: 80px 0px 0px;
    }
}

/*=====================================
            FEATURE PART STYLE
======================================*/
#feature-part {
  padding: 60px 0px 0px;
}

.feature-card {
  border-radius: 3px;
  margin-bottom: 30px;
  padding: 50px 18px 45px;
  background: var(--white);
  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;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.feature-card:hover {
  background: var(--white);
  -webkit-box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.15);
}

.feature-img {
  margin-right: 15px;
}

.feature-img img {
  width: 50px;
  height: auto;
}

.feature-text h5 span {
  display: block;
}

@media (max-width: 767px) {
    #feature-part {
        padding: 20px 0px 0px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #feature-part {
        padding: 40px 0px 0px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .feature-card {
        padding: 40px 12px 35px;
    }
}

/*=====================================
            THEME PART STYLE
======================================*/
#theme-part {
  padding: 82px 0px 70px;
}

.theme-slider .dandik,
.theme-slider .bamdik {
  background: var(--primary);
  top: 40%;
}

#theme-part .row:nth-child(2) {
  justify-content: center;
}

.theme-card {
  border-radius: 3px;
  margin-bottom: 30px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05), 0 5px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05), 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.theme-card:hover {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.theme-card:hover .theme-overlay {
  visibility: visible;
  opacity: 1;
}

.theme-card:hover .theme-overlay .btn {
  top: 50%;
}

.theme-prev {
  position: relative;
}

.theme-prev img {
  width: 100%;
  height: auto;
  border-radius: 3px 3px 0px 0px;
}

.theme-overlay {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 3px 3px 0px 0px;
  background: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  opacity: 0;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.theme-overlay .btn {
  position: absolute;
  top: 30%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.theme-thumb {
  width: 80px;
  height: 80px;
  line-height: 130px;
  text-align: center;
  border-radius: 3px 0px 0px 0px;
  background: var(--white);
  position: absolute;
  bottom: 0px;
  right: 0px;
}

.theme-thumb a img {
  width: auto;
  height: 60px;
}

.theme-name {
  padding: 18px 25px;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.theme-name h4 {
  font-weight: 500;
}

.theme-name h4 a {
  color: var(--text);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.theme-name h4 a:hover {
  color: var(--primary);
}

.theme-name h4 a span {
  font-weight: 700;
  color: var(--heading);
}

@media (max-width: 767px) {
    #theme-part {
        padding: 30px 0px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #theme-part {
        padding: 50px 0px;
    }
}

/*=====================================
            FOOTER PART STYLE
======================================*/
.footer-part {
  background: var(--dark);
  padding: 18px 0px;
  border: none;
}

.footer-part ul {
  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;
}

.footer-part ul li {
  padding: 0px 30px;
  border-right: 1px solid var(--text);
}

.footer-part ul li:last-child {
  border-right: none;
}

.footer-part ul li h5 {
  color: var(--body);
  font-weight: 400;
}

.footer-part ul li h5 span,
.footer-part ul li h5 a {
  color: var(--primary);
}

.footer-part ul li h5 a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .footer-part ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-part ul li {
    padding: 0px;
    margin: 5px 0px;
    border: none;
  }
}
