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

body, html {
  margin: 0;
  padding: 0;
  height: 100%; }

img {
  width: 100%; 
}

.container {
  margin: auto;
  padding-top: 15px;
  padding-bottom: 50px; }

/***********************************UNIVERSAL STYLES***********************************/
body {
  font-family: "Roboto", sans-serif;
  color: #454545; }

@media screen and (max-width: 760px) {
  .container {
    padding-right: 25px;
    padding-left: 25px; } }

.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px; }

.accent-text {
  font-family: "Dancing Script", cursive;
  color: #E52E2D; }

.active {
  color: #E52E2D; }

.is-checked {
  color: #E52E2D; }

h2 {
  margin-bottom: 20px; }

h3 {
  margin-top: 20px;
  margin-bottom: 10px; }

p {
  font-size: 16px;
  line-height: 1.6;
  color: #a3a3a3; }

ul {
  list-style: none; }

li {
  display: inline-block; }

a {
  text-decoration: none; }

/***********************************SCROLL BAR STYLES***********************************/
/* width */
::-webkit-scrollbar {
  width: 5px; }

/* Track */
::-webkit-scrollbar-track {
  background: #a3a3a3;
  border-radius: 10px; }

/* Handle */
::-webkit-scrollbar-thumb {
  background: #E52E2D; }

/***********************************PRELOAD PAGE***********************************/
#preload-overlay {
  width: 100%;
  height: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9000; }

.loader-frame {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: relative; }

.loader1, .loader2 {
  position: absolute;
  border: 5px solid transparent;
  border-radius: 50%; }

.loader1 {
  width: 100px;
  height: 100px;
  border-top: 5px solid #E52E2D;
  border-bottom: 5px solid #E52E2D;
  -webkit-animation: clockwisespin 2s linear infinite;
  animation: clockwisespin 2s linear infinite; }

.loader2 {
  width: 90px;
  height: 90px;
  border-left: 5px dotted #454545;
  border-right: 5px dotted #454545;
  top: 5px;
  left: 5px;
  -webkit-animation: anticlockwisespin 2.5s linear infinite;
  animation: anticlockwisespin 2.5s linear infinite; }

@-webkit-keyframes clockwisespin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes clockwisespin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-webkit-keyframes anticlockwisespin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg); } }

@keyframes anticlockwisespin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg); } }

@-webkit-keyframes fadeout {
  from {
    opactity: 1; }
  to {
    opacity: 0; } }

@keyframes fadeout {
  from {
    opactity: 1; }
  to {
    opacity: 0; } }

/***********************************HEADER STYLES***********************************/
#main-header {
  position: fixed;
  max-height: 70px;
  width: 100%;
  padding: 20px 0 10px 0;
  z-index: 900;
  background: #fff;
  border-bottom: 1px #E52E2D solid;
  overflow: hidden; }
  @media screen and (max-width: 760px) {
    #main-header {
      padding-top: 25px; } }

.open-nav {
  max-height: 400px !important; }
  .open-nav .mobile-toggle {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg); }

.logo {
  float: left;
  display: block;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1;
  font-size: 27pt;
  font-weight: bold;
  color: #E52E2D;
  font-family: "Dancing Script", cursive; }
  @media screen and (max-width: 760px) {
    .logo {
      float: none; } }

#main-header nav {
  width: 80%;
  float: right; }
  @media screen and (max-width: 760px) {
    #main-header nav {
      width: 100%; } }
  #main-header nav ul {
    float: right;
    overflow: hidden;
    list-style: none;
    text-align: right; }
    @media screen and (max-width: 760px) {
      #main-header nav ul {
        width: 100%;
        float: left;
        padding-top: 10px;
        margin-bottom: 20px;
        text-align: center; } }
    #main-header nav ul li {
      display: inline-block;
      margin-left: 20px;
      line-height: 1.5; }
      @media screen and (max-width: 760px) {
        #main-header nav ul li {
          width: 100%;
          padding: 10px 0;
          margin: 0; } }
    #main-header nav ul a {
      color: #000;
      text-transform: uppercase;
      font-size: 14px;
      -webkit-transition: color 0.3s ease;
      -o-transition: color 0.3s ease;
      transition: color 0.3s ease; }
    #main-header nav ul .active {
      color: #E52E2D; }
    #main-header nav ul a:hover {
      color: #E52E2D; }

      [data-theme="dark"] #main-header nav ul a {
        color: #ffffff;
      }

      [data-theme="dark"] #main-header nav ul .active {
        color: #E52E2D; }

      [data-theme="dark"] #main-header nav ul a:hover {
        color: #E52E2D; }
      

.mobile-toggle {
  display: none;
  cursor: pointer;
  font-size: 20px;
  position: absolute;
  right: 22px;
  top: 0;
  width: 30px;
  -webkit-transition: all 200ms ease-in;
  -moz-transition: all 200ms ease-in;
  -o-transition: all 200ms ease-in;
  transition: all 200ms ease-in; }
  @media screen and (max-width: 924px) {
    .mobile-toggle {
      display: block; } }
  .mobile-toggle span {
    width: 30px;
    height: 4px;
    margin-bottom: 6px;
    border-radius: 1000px;
    background: #454545;
    display: block; }

.header-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 25px; }

/***********************************HERO STYLES***********************************/
#hero {
  background: url("http://www.bricho.com/demo/brian/with-particles/img/hero8.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  height: 100%;
  position: relative;
top: 50px; }

#particles-js {
  width: 100%;
  height: 100%; }

.hero-content {
  position: absolute;
  top: 51%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }
  .hero-content h1 {
    font-size: 50px;
    color: #ae8c42;
    margin-top: 30px;
    margin-bottom: 10px; }
  .hero-content h2 {
    font-size: 30px;
    color: #b89c9c; }
  .hero-content /* From Uiverse.io by Madflows */ 
  .download {
    position: relative;
    overflow: hidden;
    height: 3rem;
    padding: 0 2rem;
    border-radius: 1.5rem;
    background: #d3dcdc;
    background-size: 400%;
    color: #fff;
    border: none;
    cursor: pointer;
  }
  
  .download:hover::before {
    transform: scaleX(1);
  }
  
  .button-content {
    position: relative;
    z-index: 1;
  }
  
  .download::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: 0 50%;
    width: 100%;
    height: inherit;
    border-radius: inherit;
    background: linear-gradient(
      82.3deg,
      rgba(150, 93, 233, 1) 10.8%,
      rgba(99, 88, 238, 1) 94.3%
    );
    transition: all 0.475s;
  }
  

.hero-content img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 3px #dc3737 solid; }
  @media screen and (max-width: 888px) {
    .hero-content img {
      margin-top: 3rem;
      width: 200px;
      height: 200px; } }

      @media screen and (max-height: 400px) {
        .hero-content img {
          width: 200px;
          height: 200px; } }
  @media screen and (max-height: 550px){
    .section{
    margin-top: 20rem;}
    
  }


/***********************************ARCHIVMENT BOTTON STYLES***********************************/
/* .btn-shine {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  background: linear-gradient(to right, #235281 0, #9b8f95 10%, #5a4197 20%);
  background-position: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s infinite linear;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  font-family: "Poppins", sans-serif;
}
@-moz-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}
@-webkit-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}
@-o-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}
@keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}

h5{
  color: #b89c9c;
} */

/***********************************ABOUT STYLES***********************************/
#about{
  margin-top: 100px;
}

.about-text {
  opacity: 0;
  -webkit-transform: translateX(25px);
  -ms-transform: translateX(25px);
  transform: translateX(25px);
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out; }

.about-text-animate {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0); }

.about-social {
  margin-top: 20px;
  margin-bottom: 20px; }
  .about-social li {
    padding-right: 20px; }
  .about-social .fab, .about-social .far {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    border: 1px #a3a3a3 solid;
    border-radius: 50%;
    color: #454545;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
    cursor: pointer; }
    .about-social .fab:hover, .about-social .far:hover {
      color: #E52E2D; }

.skill-progress-container p {
  color: #454545; }

.skill-progress-container, .eduction-block {
  margin-bottom: 15px;
  padding-left: 16px;
  width: 80%; }

.skill-bar {
  position: relative;
  width: 100%;
  height: 5px;
  margin-top: 5px;
  background: #a3a3a3; }

.bar-percent {
  position: absolute;
  top: 0;
  left: 0;
  height: inherit; }

.inner-percent {
  height: inherit;
  width: 0;
  background: #E52E2D;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear; }

.inner-percent-animate {
  width: 100%; }

.development {
  width: 95%; }

.design {
  width: 92%; }

.marketing {
  width: 89%; }

/***********************************SERVICES STYLES***********************************/

.service-block {
  padding: 20px;}
  .service-block .icon {
    color: #E52E2D;
    font-size: 40px;
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out; }
  .service-block .service-icon-animate {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }

.hb:nth-child(1), .hb:nth-child(2), .hb:nth-child(3) {
  border-bottom: 1px #a3a3a3 solid; }

@media screen and (max-width: 991px) {
  .hb:nth-child(-n+4) {
    border-bottom: 1px #a3a3a3 solid; } }

@media screen and (max-width: 768px) {
  .hb:nth-child(5) {
    border-bottom: 1px #a3a3a3 solid; } }

.vb:nth-child(1), .vb:nth-child(2), .vb:nth-child(4), .vb:nth-child(5) {
  border-right: 1px #a3a3a3 solid; }

@media screen and (max-width: 991px) {
  .vb:nth-child(1), .vb:nth-child(2), .vb:nth-child(4), .vb:nth-child(5) {
    border-right: none; }
  .vb:nth-child(2n+1) {
    border-right: 1px #a3a3a3 solid; } }

@media screen and (max-width: 768px) {
  .vb:nth-child(-n+6) {
    border-right: none; } }

/***********************************PORTFOLIO STYLES***********************************/
#filter-btn {
  margin-bottom: 40px; }
  #filter-btn ul {
    text-align: center; }
  #filter-btn li {
    padding-right: 20px; }
    @media screen and (max-width: 760px) {
      #filter-btn li {
        display: block;
        margin-top: 10px; } }
  #filter-btn .button {
    border: 1px #a3a3a3 solid;
    padding: 10px 30px 10px 30px;
    border-radius: 500px;
    background: none;
    cursor: pointer;
    outline: none;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out; }
    #filter-btn .button:hover {
      color: #E52E2D; }

.img-container {
  position: relative;
  width: 30%;
  margin: 10px;
  height: auto; }
  .img-container img {
    border-radius: 10px; }
  @media screen and (max-width: 760px) {
    .img-container {
      width: 100%; } }

.img-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(229, 46, 45, 0.3);
  border-radius: 10px;
  outline: 1px solid #fff;
  outline-offset: -15px;
  cursor: pointer;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
  opacity: 0; }
  .img-overlay:hover {
    opacity: 1; }

.img-overlay-text {
  position: inherit;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center; }
  .img-overlay-text h3 {
    margin: 0; }
  .img-overlay-text p {
    color: #fff; }

    [data-theme="dark"] .button {
      color: #ffffff;
    }
    
    /* [data-theme="dark"] .dribbble {
      color: #ffffff;
    } */

/***********************************CLIENT STYLES***********************************/
br {
  display: block;
  line-height: 2.2em;
}
hr {
  width: 75%;
  border: 1px solid #ccc;
  margin-bottom: 15px;
}

#topbar {
  background: #4f4a41;
  padding: 10px 0 10px 0;
  text-align: center;
  height: 36px;
  overflow: hidden;
}
#topbar a {
  color: #fff;
  font-size: 1.3em;
  line-height: 1.25em;
  text-decoration: none;
  opacity: 0.5;
  font-weight: bold;
}
#topbar a:hover {
  opacity: 1;
}

#client-content {
  display: block;
  width: 100%;
  padding-top: 35px;
  padding-bottom: 35px;
}

/** client logos **/
#clients {
  display: block;
  margin-bottom: 15px;
}

#clients .clients-wrap {
  display: block;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

#clients .clients-wrap ul {
  display: block;
  list-style: none;
  position: relative;
}

#clients .clients-wrap ul li {
  display: block;
  float: left;
  position: relative;
  width: 140px;
  height: 100px;
  line-height: 55px;
  text-align: center;
}
#clients .clients-wrap ul li img {
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
  filter: alpha(opacity=65);
  opacity: 0.65;
}
#clients .clients-wrap ul li img:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
}

/** clearfix **/
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}
* html .clearfix {
  height: 1%;
}

#clients-list li {
  transition: margin-left 0.6s ease;
}

/***********************************CONTACT STYLES***********************************/
button, input, textarea {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 1.4px;
}

.background {
  display: flex;
  /* min-height: 100vh; */
}

.container-form {
  flex: 0 1 700px;
  margin: auto;
}

.screen {
  position: relative;
  background: #3e3e3e;
  border-radius: 15px;
}

.screen:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  bottom: 0;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
  z-index: -1;
}

.screen-header {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background: #4d4d4f;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.screen-header-left {
  margin-right: auto;
}

.screen-header-button {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 3px;
  border-radius: 8px;
  background: white;
}

.screen-header-button.close {
  background: #ed1c6f;
}

.screen-header-button.maximize {
  background: #e8e925;
}

.screen-header-button.minimize {
  background: #74c54f;
}

.screen-header-right {
  display: flex;
}

.screen-header-ellipsis {
  width: 3px;
  height: 3px;
  margin-left: 2px;
  border-radius: 8px;
  background: #999;
}

.screen-body {
  display: flex;
}

.screen-body-item {
  flex: 1;
  padding: 50px;
}

.screen-body-item.left {
  display: flex;
  flex-direction: column;
}

.app-title {
  display: flex;
  flex-direction: column;
  position: relative;
  color: #ea1d6f;
  font-size: 26px;
}

.app-title:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 25px;
  height: 4px;
  background: #ea1d6f;
}

.app-contact {
  margin-top: auto;
  font-size: 8px;
  color: #888;
}

.app-form-group {
  margin-bottom: 15px;
}

.app-form-group.message {
  margin-top: 40px;
}

.app-form-group.buttons {
  margin-bottom: 0;
  text-align: right;
}

.app-form-control {
  width: 100%;
  padding: 10px 0;
  background: none;
  border: none;
  border-bottom: 1px solid #666;
  color: #ddd;
  font-size: 14px;
  text-transform: none;
  /* outline: none; */
  transition: border-color .2s;
}

.app-form-control::placeholder {
  color: #666;
}

.app-form-control:focus {
  border-bottom-color: #ddd;
}

.app-form-button {
  background: none;
  border: none;
  color: #ea1d6f;
  font-size: 14px;
  cursor: pointer;
  outline: none;
}

.app-form-button:hover {
  color: #b9134f;
}

.credits {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
  font-weight: normal;
}

.credits-link {
  display: flex;
  align-items: center;
  color: #240505;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dribbble {
  width: 20px;
  height: 20px;
  margin: 0 5px;
  color: #002B33;
  transition: all 0.3s ease;
}

/* Dark theme styles */
[data-theme="dark"] .credits-link {
  color: #ffffff;
}

[data-theme="dark"] .dribbble {
  color: #ffffff;
}

/* Hover effects */
.credits-link:hover {
  color: var(--primary-color);
}

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

@media screen and (max-width: 520px) {
  .screen-body {
    flex-direction: column;
  }

  .screen-body-item.left {
    margin-bottom: 30px;
  }

  .app-title {
    flex-direction: row;
  }

  .app-title span {
    margin-right: 12px;
  }

  .app-title:after {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .screen-body {
    padding: 40px;
  }

  .screen-body-item {
    padding: 0;
  }
}


/* --------------------------------------ARCHIVMENT SECTION-------------------------------------- */

/***********************************FOOTER STYLES***********************************/
footer {
  background: #111;
  padding: 12px 0 12px 0;
  text-align: center; }

footer p a{
  color: #5b77b4;
}

.link-header{
  position: fixed;
  text-align: center;
  height: 50px;
  width: 100%;
  background: #454545;  
  z-index: 9999;
  line-height: 50px;
  overflow: auto;
}

.link-header a{
  color: #fff;
  
}


/************************************** Theme Switcher Styles ****************************************/
:root {
    --primary-color: #E52E2D;
    --text-color: #454545;
    --bg-color: #fff;
    --card-bg: #fff;
    --border-color: #a3a3a3;
}

[data-theme="dark"] {
    --primary-color: #ff4444;
    --text-color: #fff;
    --bg-color: #121212;
    --card-bg: #1e1e1e;
    --border-color: #333;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.theme-switcher {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.theme-toggle-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.theme-toggle-btn:hover {
    transform: scale(1.1);
}

/* Dark theme specific styles */
[data-theme="dark"] {
    .service-block {
        background: var(--card-bg);
    }
    
    .portfolio-item {
        background: var(--card-bg);
    }
    
    .screen {
        background: var(--card-bg);
    }
    
    #main-header {
        background: var(--bg-color);
        border-bottom-color: var(--primary-color);
    }
    
    nav ul a {
        color: var(--text-color);
    }
    
    .mobile-toggle span {
        background: var(--text-color);
    }
}

/* Responsive styles for theme switcher */
@media screen and (max-width: 768px) {
    .theme-switcher {
        bottom: 20px;
        right: 20px;
    }
    
    .theme-toggle-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}
