/* Website Fonts */
@font-face {
  font-family: SK-Bold;
  src: url(../fonts/SK-Bold.ttf);
}
@font-face {
  font-family: SK-BoldItalic;
  src: url(../fonts/SK-BoldItalic.ttf);
}
@font-face {
  font-family: SK-ExtraLight;
  src: url(../fonts/SK-ExtraLight.ttf);
}
@font-face {
  font-family: SK-ExtraLightItalic;
  src: url(../fonts/SK-ExtraLightItalic.ttf);
}
@font-face {
  font-family: SK-Italic;
  src: url(../fonts/SK-Italic.ttf);
}
@font-face {
  font-family: SK-Light;
  src: url(../fonts/SK-Light.ttf);
}
@font-face {
  font-family: SK-LightItalic;
  src: url(../fonts/SK-LightItalic.ttf);
}
@font-face {
  font-family: SK-Medium;
  src: url(../fonts/SK-Medium.ttf);
}
@font-face {
  font-family: SK-MediumItalic;
  src: url(../fonts/SK-MediumItalic.ttf);
}
@font-face {
  font-family: SK-Regular;
  src: url(../fonts/SK-Regular.ttf);
}
@font-face {
  font-family: SK-SemiBold;
  src: url(../fonts/SK-SemiBold.ttf);
}
@font-face {
  font-family: SK-SemiBoldItalic;
  src: url(../fonts/SK-SemiBoldItalic.ttf);
}
@font-face {
  font-family: SK-Thin;
  src: url(../fonts/SK-Thin.ttf);
}
@font-face {
  font-family: SK-ThinItalic;
  src: url(../fonts/SK-ThinItalic.ttf);
}
/* / Website Fonts */

/* Html Contents */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html{
  padding:0;
  margin:0
}
.bg-html{
  /*background: radial-gradient(circle, rgb(41 208 202 / 30%) 0%, rgb(64 229 155) 50%, rgb(92 168 86) 100%);*/
  background-color: #ffffff;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
body{
  padding:0;
  font-family:  'SK-Thin','Serif','Helvetica';
  font-size: 20px;
  color:#333;
  margin:0 auto;
}
section{
  margin:0 auto;
}
.white{
  color:#fff;
}
.black{
  color:#000;
}
.sc{
  color:#0f965f;
}
p{
  font-size: 20px;
}
h1{
  font-size: 48px;
  font-weight:bold;
}
h2{
  font-size:40px;
}
h3{
  font-size:32px;
}
h4{
  font-size:24px;
}
h5{
  font-size:16px;
}
h6{
  font-size:12px;
}
a{
  color:#333;
  text-decoration: none;
}
a:hover{
  color:#333;
  text-decoration: underline;
}
/* / Html Contents */
/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 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;
  background: #ffffff;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
}
.preloader .loder {
  position: relative;
  font-size: 24px;
  letter-spacing: 0.3rem;
  color: #000000;
  line-height: 1;
}
.preloader .loder:after {
  position: absolute;
  content: "SubodhKant.com";
  color: #0f965f;
  left: 0;
  top: 0;
  width: 0;
  overflow: hidden;
  text-shadow: 1px 0px 1px #0f965f;
  border-right: 0px solid #0f965f;
  line-height: 1;
  -webkit-animation: textanimation 3s linear infinite;
  animation: textanimation 3s linear infinite;
}

@-webkit-keyframes textanimation {
  0% {
    width: 0; }
  50% {
    width: 100%; }
  100% {
    width: 0; } }

@keyframes textanimation {
  0% {
    width: 0; }
  50% {
    width: 100%; }
  100% {
    width: 0; } }
/* / Preloader */
/* Navigation BAR Header */
.hidden {
  display: none;
}

.header {
  width: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  border-bottom: 1px solid #eee5;
  background: #FFFFFF;
  position: relative;
  z-index: 999;
}
.header .navbar {
  display: flex;
  flex-direction: row;
  flex: 1;
  flex-basis: auto;
  justify-content: space-between;
  align-items: center;
  max-width: 90rem;
  width: 100%;
  padding: 5px 30px;
  margin: 0 auto;
}
.header .navbar .brand {
  font-family: inherit;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: inherit;
  text-transform: uppercase;
  color: #333;
  text-decoration: none;
  display: flex;
}
.header .navbar .brand img{
  max-width:160px;
}
.header .navbar .menu {
  display: flex;
  flex-direction: row;
  flex: 1;
  flex-basis: auto;
  justify-content: center;
  align-items: center;
  list-style:none;
}
.header .navbar .menu-item:not(:first-child) {
  margin-left: 2rem;
}
.header .navbar .menu-item a {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: inherit;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}
.header .navbar .menu-item a:hover,.header .navbar .menu-item a.active{
  text-decoration-line: overline;
  text-decoration-color: #0f965f;
  color: #0f965f;
}
@media only screen and (max-width: 768px) {
  .header .navbar {
    padding: 1rem 2rem;
    margin: 0 auto;
  }
  .header .navbar .wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    background: #ffffff;
    transition: all 0.3s ease;
  }
  .header .navbar .wrapper .menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 25%;
    width: 100%;
    transform: translateY(-50%);
  }
  .header .navbar .wrapper .menu-item {
    padding-bottom: 1rem;
    width: 100%;
    text-align: left;
  }
  .header .navbar .wrapper .menu-item:nth-child(1) a {
    transition-delay: 0.2s;
  }
  .header .navbar .wrapper .menu-item:nth-child(2) a {
    transition-delay: 0.3s;
  }
  .header .navbar .wrapper .menu-item:nth-child(3) a {
    transition-delay: 0.4s;
  }
  .header .navbar .wrapper .menu-item:nth-child(4) a {
    transition-delay: 0.5s;
  }
  .header .navbar .wrapper .menu-item:not(:first-child) {
    margin-left: 0;
  }
  .header .navbar .wrapper .menu-item a {
    padding: 1rem 2rem;
    opacity: 0;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    transform: translateX(-20px);
    transition: all 0.3s ease-in-out;
  }
  .header .navbar .nav-toggle {
    display: block;
    position: fixed;
    right: 1rem;
    top: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer;
    z-index: 999;
  }
  .header .navbar .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    margin-left: 14px;
  }
  .header .navbar .nav-toggle span:nth-child(1) {
    margin-top: 16px;
  }
  .header .navbar .nav-toggle span:nth-child(2) {
    margin-top: 4px;
    opacity: 1;
  }
  .header .navbar .nav-toggle span:nth-child(3) {
    margin-top: 4px;
  }
  .header .navbar #nav:checked + .nav-toggle {
    transform: rotate(45deg);
  }
  .header .navbar #nav:checked + .nav-toggle span {
    background: #333;
    transition: transform 0.5s ease;
  }
  .header .navbar #nav:checked + .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(180deg);
  }
  .header .navbar #nav:checked + .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .header .navbar #nav:checked + .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(90deg);
  }
  .header .navbar #nav:checked ~ .wrapper {
    z-index: 99;
    opacity: 1;
  }
  .header .navbar #nav:checked ~ .wrapper .menu-item a {
    opacity: 1;
    transform: translateX(0);
  }
}
/* / Navigation BAR Header */
#canvas{
  width:100%;
  height:100vh;
}
/* Misc */
.hide{
  display: none !important;
}
/* / Misc */


/* Copyright BAR Footer */
footer {
    min-height: 60px;
    height:auto;
    display: block;
    padding: 15px 30px;
    border-top: 1px solid #eee5;
}
/* / Copyright BAR Footer */

/* Section Middle Content */
#section-table{
    display:table;
    margin:0 auto;
    letter-spacing: 0.2rem;
    position: relative;
    z-index: 1000;
}
#section-cell{
    display:table-cell;
    vertical-align:middle;
    text-align:center;
}
#section-cell .img-circle{
  border: 5px solid #323232;
  border-radius: 50%;
}
.mb-0{
    margin-bottom:0;
}
.mt-0{
    margin-top:0;
}
/* / Section Middle Content */
/* About Us */
.about-bg{
  background: #3399ff;
}
.ripple-background{
  background: #3399ff;
  position: relative;
  z-index: 9;
}
#section-about-table{
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.circle{
  position: absolute;
  border-radius: 50%;
  background: white;
  animation: ripple 15s infinite;
  box-shadow: 0px 0px 1px 0px #508fb9;
}

.small{
  width: 200px;
  height: 200px;
  left: -100px;
  bottom: -100px;
}

.medium{
  width: 400px;
  height: 400px;
  left: -200px;
  bottom: -200px;
}

.large{
  width: 600px;
  height: 600px;
  left: -300px;
  bottom: -300px;
}

.xlarge{
  width: 800px;
  height: 800px;
  left: -400px;
  bottom: -400px;
}

.xxlarge{
  width: 1000px;
  height: 1000px;
  left: -500px;
  bottom: -500px;
}

.shade1{
  opacity: 0.2;
}
.shade2{
  opacity: 0.5;
}

.shade3{
  opacity: 0.7;
}

.shade4{
  opacity: 0.8;
}

.shade5{
  opacity: 0.9;
}

@keyframes ripple{
  0%{
    transform: scale(0.8);
  }
  
  50%{
    transform: scale(1.2);
  }
  
  100%{
    transform: scale(0.8);
  }
}
/* / About Us*/
/* Buttons */
.btn {
  background-color: #333;
  border: none;
  color: #fff;
  padding: 5px 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 2px 4px;
  cursor: pointer;
}
.btn:focus{
  outline: none;
}
/* / Buttons */
canvas#mycanvas{
  position: absolute;
  height:calc(100% - 100px);
  width: 100%;
}
/* Social Icons */
.social_container {
  width:50%;
  float:left;
}
.social_item {
  display:inline-block;
}
[class^="social_icon"] {
  font-size: 14px;
  color: white;
  text-decoration: none;
  border-radius:100%;
  width: 2.2em;
  height: 2.2em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social_container a:hover{
  text-decoration: none;
}
/* // Extend icon to all other icons */
[class^="icon-"] {
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-facebook::before {
  content: "\f09a";
}
.social_icon-facebook {
  background-color: #333;
}
.social_icon-facebook:hover {
  background-color: #77a8f1;
}

.icon-linkedin::before {
  content: "\f0e1";
}
.social_icon-linkedin {
  background-color: #333;
}
.social_icon-linkedin:hover {
  background-color: #0087be;
}

.icon-twitter::before {
  content: "\f099";
}
.social_icon-twitter {
  background-color: #333;
}
.social_icon-twitter:hover {
  background-color: #0f6785;
}


.icon-github::before {
  content: "\f113";
}
.social_icon-github {
  background-color: #333;
}
.social_icon-github:hover {
  background-color: #00AF22;
}

.icon-instagram::before {
  content: "\f16d";
}
.social_icon-instagram {
  background-color: #333;
}
.social_icon-instagram:hover {
  background-color: #af006c;
}

.icon-skype::before {
  content: "\f17e";
}
.social_icon-skype {
  background-color: #333;
}
.social_icon-skype:hover {
  background-color: #00AFF0;
}

/* / Social Icons */

/* Copyright */

.copyright_container {
  width:50%;
  float:left;
  text-align: right;
  letter-spacing: 0.2rem;
  line-height: 150%;
}

/* / Copyright */

/* Media Queries */
@media only screen and (max-width: 768px) {
  .copyright_container {
    width:100% !important;
    text-align: center !important;
    padding:10px 0;
  }

  .social_container {
    width:100% !important;
    text-align: center !important;
    padding:10px 0;
  }
  footer{
    height:110px;
  }
}
/* / Media Queries */
