/**
Designed by - Dahyalan 
Org : DTNETDESIGN
Unauthorized use of this code is prohibited unless permitted by dtnetdesign


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Lato", sans-serif;
  color: #444444;
}

a {
  color: #770606;
  text-decoration: none;
}

a:hover {
  color: #03700e;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Lato", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: rgb(255, 255, 255);
}

#preloader:before {
  content:"";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 10px solid #770606;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# hero3 Section
--------------------------------------------------------------*/
#hero3 {
  width: 100%;
  background: url("");
  position: relative;
  padding: 120px 0 0 0;
}

#hero3:before {
  content: "";
  background: rgba(90, 1, 6, 0.91);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero3 h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: rgba(255, 255, 255, 0.8);
}

#hero3 h1 span {
  color: #fff;
  border-bottom: 4px solid #1acc8d;
}

#hero3 h2 {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-size: 24px;
}

#hero3 .btn-get-started {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  color: #f5f0f0;
  background-color: #005416;
  border: 2px solid var(--color-primary);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  font-family: var(--font-primary);
}

#hero3 .btn-watch-video {
  font-size: 13px;
  transition: 0.5s;
  margin-left: 25px;
  color: #04681e;
  font-weight: 600;
  display: flex;
  align-items: center;

}

#hero3 .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
  #hero3 {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero3 {
    padding-top: 80px;
  }

  #hero3 .animated {
    animation: none;
  }

  #hero3 .hero3-img {
    text-align: center;
  }

  #hero3 .hero3-img img {
    max-width: 50%;
  }

  #hero3 h1 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;
  }

  #hero3 h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  #hero3 .hero3-img img {
    width: 80%;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.hero3-waves {
  display: block;
  margin-top: 60px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: relative;
}

.wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
}

.wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
}

.wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}








/*--------------------------------------------------------------
# dtnetdesign-our-workflow
--------------------------------------------------------------*/
.dtnetdesign-our-workflow .content h3 {
  font-weight: 400;
  font-size: 24px;
  color: #0f0f0f;
  font-family: "Poppins", sans-serif;
}

.dtnetdesign-our-workflow .content ul {
  list-style: none;
  padding: 0;
}

.dtnetdesign-our-workflow .content ul li {
  padding-bottom: 10px;
}

.dtnetdesign-our-workflow .content ul i {
  font-size: 15px;
  padding-right: 4px;
  color: #056e0f;
}

.dtnetdesign-our-workflow .content p:last-child {
  margin-bottom: 0;
}

.dtnetdesign-our-workflow .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.dtnetdesign-our-workflow .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #0f0e0e;
}

.dtnetdesign-our-workflow .progress .skill .val {
  float: right;
  font-style: normal;
}

.dtnetdesign-our-workflow .progress-bar-wrap {
  background: #e8edf5;
  height: 10px;
}

.dtnetdesign-our-workflow .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #530303;;
}




/*--------------------------------------------------------------
# Floaters
--------------------------------------------------------------*/

.btn-floating {
  position: fixed;
  right: 25px;
  overflow: hidden;
  width: 65px;
  height: 65px;
  border-radius: 100px;
  border: 0;
  z-index: 9999;
  color: white;
  transition: .2s;
}

.btn-floating:hover {
  width: auto;
  padding: 0 20px;
  cursor: pointer;
}

.btn-floating span {
  font-size: 16px;
  margin-left: 5px;
  transition: .2s;
  line-height: 0px;
  display: none;
}

.btn-floating:hover span {
  display: inline-block;
}

.btn-floating:hover img {
  margin-bottom: -3px;
}

.btn-floating.whatsapp {
  bottom: 400px;
  background-color: #34af23;
  border: 2px solid #ffffff;
}

.btn-floating.whatsapp:hover {
  background-color: #1f7a12;
}

.btn-floating.facebook {
  bottom: 85px;
  background-color: #1876f3;
  border: 2px solid #fff;
}

.btn-floating.facebook:hover {
  background-color: #1876f3;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #770606;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #044e04;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}


/*--------------------------------------------------------------
# dtnetdesign-faq-section
--------------------------------------------------------------*/
.dtnetdesign-faq-section .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.dtnetdesign-faq-section .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.dtnetdesign-faq-section .content p {
  font-size: 15px;
  color: #6c757d;
}

.dtnetdesign-faq-section .accordion-item {
  border: 0;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
}

.dtnetdesign-faq-section .accordion-item:last-child {
  margin-bottom: 0;
}

.dtnetdesign-faq-section .accordion-collapse {
  border: 0;
}

.dtnetdesign-faq-section .accordion-button {
  padding: 20px 50px 20px 20px;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-default);
  text-align: left;
  background: #fff;
  box-shadow: none;
  border-radius: 10px;
}

.dtnetdesign-faq-section .accordion-button .num {
  padding-right: 10px;
  font-size: 20px;
  line-height: 0;
  color:#770606; ;
}

.dtnetdesign-faq-section .accordion-button:not(.collapsed) {
  color: #770606;
  border-bottom: 0;
  box-shadow: none;
}

.dtnetdesign-faq-section .accordion-button:after {
  position: absolute;
  right: 20px;
  top: 20px;
}

.dtnetdesign-faq-section .accordion-body {
  padding: 0 40px 30px 45px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #770606;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #a10d0d;
  padding: 0;
}
#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}
#topbar .contact-info i a, #topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}
#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}
#topbar .contact-info i a:hover {
  color: #2bf070;
  text-decoration: underline;
}
#topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}
#topbar .social-links a:hover {
  color: #06772e;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #f8f8f8;
  transition: all 0.5s;
  z-index: 997;
  height: 86px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header.fixed-top {
  height: 70px;
}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}
#header .logo a {
  color: #222222;
}
#header .logo a span {
  color: #770606;
}
#header .logo img {
  max-height: 40px;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 600;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #770606;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #770606;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #770606;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}
.navbar-mobile > ul > li {
  padding: 0;
}
.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #770606;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #770606;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}




/*--------------------------------------------------------------
# dtnetdesign-quick-reads-web-design-development
--------------------------------------------------------------*/
.dtnetdesign-quick-reads-web-design-development {
  overflow: hidden;
}

.dtnetdesign-quick-reads-web-design-development .nav-tabs {
  border: 0;
}

.dtnetdesign-quick-reads-web-design-development .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #066120;
  border-radius: 0;
  border-right: 2px solid #ebf1f6;
  letter-spacing: 1px;
  font-weight: 400;
}

.dtnetdesign-quick-reads-web-design-development .nav-link:hover {
  color: #770606;
}

.dtnetdesign-quick-reads-web-design-development .nav-link.active {
  color: #770606;
  border-color: #770606;
}

.dtnetdesign-quick-reads-web-design-development .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.dtnetdesign-quick-reads-web-design-development .details h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
  color: #560202;
}

.dtnetdesign-quick-reads-web-design-development .details p {
  color: #545151;
}

.dtnetdesign-quick-reads-web-design-development .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .dtnetdesign-quick-reads-web-design-development .nav-link {
    border: 0;
    padding: 15px;
  }

  .dtnetdesign-quick-reads-web-design-development .nav-link.active {
    color: #fff;
    background: #770606;
  }
}

/*--------------------------------------------------------------

/*--------------------------------------------------------------
# Horizontal Pricing Section
--------------------------------------------------------------*/
.dtnetdesign-packages .pricing-item {
  box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
  padding-bottom: 30px;
  background: #d0d0d0ba;
  height: 100%;
  position: relative;
}

.dtnetdesign-packages h3 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 24px;
  color: var(--color-secondary);
}

.dtnetdesign-packages h4 {
  font-size: 48px;
  color: var(--color-primary);
  font-weight: 400;
  font-family: var(--font-primary);
  margin-bottom: 25px;
  text-align: center;
}

.dtnetdesign-packages h4 sup {
  font-size: 28px;
}

.dtnetdesign-packages h4 span {
  color: rgba(108, 117, 125, 0.8);
  font-size: 18px;
}

.dtnetdesign-packages ul {
  padding: 20px 0;
  list-style: none;
  color: #035c0c;
  text-align: left;
  line-height: 20px;
}

.dtnetdesign-packages ul li {
  padding-top: 15px;
  display: flex;
  align-items: center;
}

.dtnetdesign-packages ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.dtnetdesign-packages ul .na {
  color: rgba(108, 117, 125, 0.5);
}

.dtnetdesign-packages ul .na i {
  color: rgba(108, 117, 125, 0.5);
}

.dtnetdesign-packages ul .na span {
  text-decoration: line-through;
}

.dtnetdesign-packages .buy-btn {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  color: #f5f0f0;
  background-color: #770606;
  border: 2px solid var(--color-primary);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  font-family: var(--font-primary);
}

.dtnetdesign-packages .buy-btn:hover {
  background: #036b1b;
  border-color: #026202;
}

.dtnetdesign-packages .featured {
  background: #025712;
}

.dtnetdesign-packages .featured h3,
.dtnetdesign-packages .featured h4,
.dtnetdesign-packages .featured h4 span,
.dtnetdesign-packages .featured ul,
.dtnetdesign-packages .featured ul .na,
.dtnetdesign-packages .featured ul i,
.dtnetdesign-packages .featured ul .na i {
  color: #fff;
}

.dtnetdesign-packages .featured .buy-btn {
  background: #530000;
  color: #ffffff;
  border-color: #fff;
}

.dtnetdesign-packages .featured .buy-btn:hover {
  background: #06a56d;
  color: #530000;
}


/*--------------------------------------------------------------
# Hero2 Section
--------------------------------------------------------------*/
#hero2 {
  width: 100%;
  height: 100vh;
  background: url("../imgs/backgrounds/hero-bg.png");
  position: relative;
}

#hero2 .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}

#hero2 .hero-logo {
  margin-bottom: 30px;
}

#hero2 h1 {
  margin: 10px;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
}

#hero2 h2 {
  margin: 10px;
  color: #aeaeae;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

#hero2 .btn-get-started {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 30px;
  border-radius: 3px;
  margin: 10px;
  color: #fff;
  background: #0a6701;
}

#hero2 .btn-get-started:hover {
  transition: 0.5s;
  background: #fff;
  color: #790410;
}

@media (min-width: 1024px) {
  #hero2 {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero2 h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero2 h2 {
    line-height: 22px;
  }
}






/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #d0d0d0ba;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #026312;
  color: #ffffff;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}
.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}
.section-title h3 span {
  color: #770606;
}
.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f1f6fe;
  min-height: 40px;
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}





/*--------------------------------------------------------------
# dtnetdesign-why-us
--------------------------------------------------------------*/
.dtnetdesign-why-us .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #ebebeb;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.dtnetdesign-why-us .icon-box .icon {
  margin-bottom: 10px;
}

.dtnetdesign-why-us .icon-box .icon i {
  color: #5c0404;
  font-size: 36px;
  transition: 0.3s;
}

.dtnetdesign-why-us .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}

.dtnetdesign-why-us .icon-box h4 a {
  color: #4e4e4e;
  transition: ease-in-out 0.3s;
}

.dtnetdesign-why-us .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.dtnetdesign-why-us .icon-box:hover {
  transform: translateY(-10px);
}

.dtnetdesign-why-us .icon-box:hover h4 a {
  color: #530202;
}



/*--------------------------------------------------------------
# dtnetdesign-services
--------------------------------------------------------------*/
.dtnetdesign-services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #ebebeb;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}
.dtnetdesign-services .icon-box::before {
  content: "";
  position: absolute;
  background: #cbe0fb;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}
.dtnetdesign-services .icon-box:hover::before {
  background: #a71212;
  top: 0;
  border-radius: 0px;
}
.dtnetdesign-services .icon {
  margin-bottom: 15px;
}
.dtnetdesign-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #770606;
  transition: all 0.3s ease-in-out;
}
.dtnetdesign-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  
  
}
.dtnetdesign-services .title a {
  color: rgb(0, 0, 0);
}
.dtnetdesign-services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}
.dtnetdesign-services .icon-box:hover .title a, .dtnetdesign-services .icon-box:hover .description {
  color: #fff;
}
.dtnetdesign-services .icon-box:hover .icon i {
  color: #fff;
}




/*--------------------------------------------------------------
# dtnetdesign-get-to-know-us
--------------------------------------------------------------*/
.dtnetdesign-get-to-know-us .content h3 {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 26px;
}
.dtnetdesign-get-to-know-us .content ul {
  list-style: none;
  padding: 0;
}
.dtnetdesign-get-to-know-us .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}
.dtnetdesign-get-to-know-us .content ul li:first-child {
  margin-top: 35px;
}

.dtnetdesign-get-to-know-us .content ul i {
  background: #580909;
  box-shadow: 0px 10px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 12px;
  margin-right: 12px;
  color: #ffffff;
  border-radius: 12px;

}

.dtnetdesign-get-to-know-us .content ul h5 {
  font-size: 18px;
  color: #656565;
}
.dtnetdesign-get-to-know-us .content ul p {
  font-size: 15px;
}
.dtnetdesign-get-to-know-us .content p:last-child {
  margin-bottom: 0;
}




/*--------------------------------------------------------------
# dtnetdesign-about-us
--------------------------------------------------------------*/
.dtnetdesign-about-us .content h3 {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 26px;
}
.dtnetdesign-about-us .content ul {
  list-style: none;
  padding: 0;
}
.dtnetdesign-about-us .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}
.dtnetdesign-about-us .content ul li:first-child {
  margin-top: 35px;
}

.dtnetdesign-about-us .content ul i {
  background: #580909;
  box-shadow: 0px 12px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px ;
  color: #ffffff;
  border-radius: 12px;
  
}

.dtnetdesign-about-us .content ul h5 {
  font-size: 18px;
  color: #656565;
}
.dtnetdesign-about-us .content ul p {
  font-size: 15px;
}
.dtnetdesign-about-us .content p:last-child {
  margin-bottom: 0;
}




/*--------------------------------------------------------------
# history
--------------------------------------------------------------*/



body{margin-top:0px;}
.history-wrapper {
    position: relative;
    padding: 50px 0 50px;
}
.history-wrapper:after {
    content: "";
    width: 3px;
    height: 100%;
    background: #ededed;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}
.history-wrapper .title-wrap {
    opacity: 0.2;
    padding: 100px 0 0 45px;
}
.history-wrapper .timeline-box {
    position: relative;
}
.one-of-two {
    width: 50%;
    float: left;
}
.history-wrapper .timeline-box:not(:last-child) {
    margin-bottom: 140px;
}
.timeline-box:nth-child(2n) {
    padding: 0 0 0 140px;
}
.history-wrapper .timeline-box:nth-child(2n) {
    margin-bottom: 140px;
}
.history-wrapper .timeline-box:nth-child(2n + 1) {
    margin-top: -24%;
    text-align: right;
}
.timeline-box:nth-child(2n + 1) {
    padding: 0 140px 0 0;
}
.year {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    background: #580909;
    top: 30%;
    color: #fafafa;
    transform: translateY(-50%);
    border: 1px solid #dbdbdb; 
    line-height: 100px;
    text-align: center;
    font-size: 24px;
    letter-spacing: 0.8px;
    font-weight: 400;
}
.timeline-box:nth-child(2n) .year {
    left: 25px;
}
.timeline-box:nth-child(2n + 1) .year {
    right: 32px;
}
.year:before {
    content: "";
    width: 15px;
    height: 15px;
    border-left: 1px solid #dbdbdb;
    border-bottom: 1px solid #dbdbdb;
    background: #ffffff;
    position: absolute;
    top: 50%;
    margin-top: -7.5px;
}
.timeline-box:nth-child(2n) .year:before {
    left: -8px;
    transform: rotate(45deg);
}
.timeline-box:nth-child(2n + 1) .year:before {
    right: -8px;
    transform: rotate(-135deg);
}
.timeline-box:after {
    content: "";
    width: 3px;
    height: 0;
    background: #8a0515;
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    z-index: 1;
    transition: all 0.3s ease-in-out;
}
.timeline-box:nth-child(2n):after {
    left: -1.5px;
}
.timeline-box:nth-child(2n + 1):after {
    right: -1.5px;
}
.timeline-box:hover:after {
    height: 97px;
}
.timeline-box:before {
    content: "";
    width: 21px;
    height: 21px;
    border-radius: 50%;
    border: 5px solid #ededed;
    position: absolute;
    background: #fff;
    z-index: 2;
    top: 30%;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
}
.timeline-box:nth-child(2n):before {
    left: -10.5px;
}
.timeline-box:nth-child(2n + 1):before {
    right: -10.5px;
}
.timeline-box:hover:before {
    border: 5px solid #851205;
}
@media screen and (max-width: 1199px) {
    .year {
        width: 90px;
        height: 90px;
        line-height: 90px;
        font-size: 22px;
    }
}
@media screen and (max-width: 991px) {
    .history-wrapper {
        padding: 30px 0 30px;
    }
    .history-wrapper .title-wrap {
        padding: 0;
        margin-bottom: 30px;
    }
    .title-wrap.one-of-two {
        width: 100%;
    }
    .history-wrapper:after {
        left: 0;
    }
    .history-wrapper .timeline-box:nth-child(2n) {
        padding: 0 0 0 140px;
    }
    .history-wrapper .timeline-box:not(:last-child) {
        margin-bottom: 40px;
    }
    .timeline-box.one-of-two,
    .timeline-box .img img {
        width: 100%;
    }
    .history-wrapper .timeline-box:nth-child(2n + 1) {
        margin-top: 0;
        text-align: left;
    }
    .timeline-box:nth-child(2n + 1) .year {
        left: 32px;
    }
    .timeline-box:nth-child(2n + 1):before {
        left: -10.5px;
    }
    .timeline-box:nth-child(2n + 1) .year:before {
        left: -8px;
        transform: rotate(45deg);
    }
    .timeline-box:nth-child(2n + 1):after {
        left: -1.5px;
    }
    .history-wrapper .timeline-box:nth-child(2n + 1) {
        margin-top: 0;
        text-align: left;
    }
    .timeline-box:nth-child(2n + 1) {
        padding: 0 0 0 140px;
    }
}
@media screen and (max-width: 767px) {
    .history-wrapper:after,
    .year,
    .timeline-box:before {
        display: none;
    }
    .history-wrapper {
        padding: 0;
    }
    .history-wrapper .timeline-box:nth-child(2n),
    .history-wrapper .timeline-box:nth-child(2n + 1) {
        padding: 0 15px;
    }
    .history-wrapper .timeline-box:not(:last-child) {
        margin-bottom: 30px;
    }
    .timeline-box .content {
        text-align: center;
    }
    .timeline-box:nth-child(2n):after,
    .timeline-box:nth-child(2n + 1):after {
        display: none;
    }
}

.mb-1-6, .my-1-6 {
    margin-bottom: 1.6rem;
}

/*--------------------------------------------------------------
# dtnetdesign-contact-us-now
--------------------------------------------------------------*/
.dtnetdesign-contact-us-now .php-email-form {
  width: 100%;
}

.dtnetdesign-contact-us-now .php-email-form .form-group {
  padding-bottom: 8px;
}

.dtnetdesign-contact-us-now .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.dtnetdesign-contact-us-now .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.dtnetdesign-contact-us-now .php-email-form .error-message br+br {
  margin-top: 25px;
}

.dtnetdesign-contact-us-now .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.dtnetdesign-contact-us-now .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.dtnetdesign-contact-us-now .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.dtnetdesign-contact-us-now .php-email-form input,
.dtnetdesign-contact-us-now .php-email-form textarea,
.dtnetdesign-contact-us-now .php-email-form select {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px !important;
}

.dtnetdesign-contact-us-now .php-email-form input:focus,
.dtnetdesign-contact-us-now .php-email-form textarea:focus,
.dtnetdesign-contact-us-now .php-email-form select:focus {
  border-color: #540202;
}

.dtnetdesign-contact-us-now .php-email-form input,
.dtnetdesign-contact-us-now .php-email-form select {
  height: 44px;
}

.dtnetdesign-contact-us-now .php-email-form textarea {
  padding: 10px 12px;
}

.dtnetdesign-contact-us-now .php-email-form button[type=submit] {
  background: #560202;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.dtnetdesign-contact-us-now .php-email-form button[type=submit]:hover {
  background: #116a03;
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
}
.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #d0d0d0ba;
}
.counts .count-box i {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #770606;
  color: #fff;
  width: 56px;
  height: 56px;
  line-height: 0;
  border-radius: 50px;
  border: 5px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #770606;
}
.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Lato", sans-serif;
  font-size: 14px;
}


/*--------------------------------------------------------------
# dtnetdesign-terms-of-service 
--------------------------------------------------------------*/
.dtnetdesign-terms-of-service .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.dtnetdesign-terms-of-service .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.dtnetdesign-terms-of-service .content p {
  font-size: 15px;
  color: #6c757d;
}

.dtnetdesign-terms-of-service .accordion-item {
  border: 0;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
}

.dtnetdesign-terms-of-service .accordion-item:last-child {
  margin-bottom: 0;
}

.dtnetdesign-terms-of-service .accordion-collapse {
  border: 0;
}

.dtnetdesign-terms-of-service .accordion-button {
  padding: 20px 50px 20px 20px;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-default);
  text-align: left;
  background: #fff;
  box-shadow: none;
  border-radius: 10px;
}

.dtnetdesign-terms-of-service .accordion-button .num {
  padding-right: 10px;
  font-size: 20px;
  line-height: 0;
  color:#770606; ;
}

.dtnetdesign-terms-of-service .accordion-button:not(.collapsed) {
  color: #770606;
  border-bottom: 0;
  box-shadow: none;
}

.dtnetdesign-terms-of-service .accordion-button:after {
  position: absolute;
  right: 20px;
  top: 20px;
}

.dtnetdesign-terms-of-service .accordion-body {
  padding: 0 40px 30px 45px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  background: #770606;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #c7c7c7;
  box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
  color: #030303;
  font-family: "Lato", sans-serif;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #000000;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #680202;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #000000;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #5a0000;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #bfdcf7;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 9px 10px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #770606;;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #025712;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #ffffff;;
  color: #000000;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #770606;;
  color: #fff;
  text-decoration: none;
}