@charset "utf-8";
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Preloader:START */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}
#status {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #0091b4;
  width: 80px;
  height: 80px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Preloader:END */
/* fadeInUp Animation : START */
@-webkit-keyframes fadeInUpCustom {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpCustom {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpCustom {
  -webkit-animation-name: fadeInUpCustom;
  animation-name: fadeInUpCustom;
}
/* fadeIn Animation : END */
/* blurFadeIn Animation : START */
@-webkit-keyframes blurFadeIn {
  from {
    opacity: 0;
    -webkit-transform: scale(7);
    transform: scale(7);
    -webkit-filter: blur(5px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes blurFadeIn {
  from {
    opacity: 0;
    -webkit-transform: scale(7);
    transform: scale(7);
    -webkit-filter: blur(5px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
.blurFadeIn {
  -webkit-animation-name: blurFadeIn;
  animation-name: blurFadeIn;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
/* blurFadeIn Animation : END */
/* Ripple Animation : START */
/*
.ripples {
    position: relative;
    width: 60px;
    height: 60px;
}

.ripple {
    display: block;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.6);
    margin-left: -12px;
    margin-top: -12px;
    width: 60px;
    height: 60px;
    content: "";
    border-radius: 50%;
    -webkit-backface-visibility: hidden;
}

.ripples:before {
    &:extend(.ripple);
    animation: ripple-animate 3.2s infinite ease-out;
}

.ripples:after {
    &:extend(.ripple);
    opacity: 0;
    animation: ripple-animate 3.2s 1.6s infinite ease-out;
}

@keyframes ripple-animate {
    0% {
        transform: scale(0);
        opacity: 1;
        transform-origin: center;
    }
    100% {
        transform: scale(3);
        opacity: 0;
        transform-origin: center;
    }
}

.ripples-2 {
    position: relative;
    width: 60px;
    height: 60px;
}

.ripples-2:before {
    &:extend(.ripple);
    animation: ripple-animate 3.5s infinite ease-out;
}

.ripples-2:after {
    &:extend(.ripple);
    opacity: 0;
    animation: ripple-animate 3.5s 1.9s infinite ease-out;
}
*/
/* Ripple Animation : END */
/* banner flicker animation : START */
/*
@keyframes flickerAnimation {
    0% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.7;
    }
}

.el-left-bg {
    animation: flickerAnimation 3s linear infinite;
}

.el-right-bg {
    animation: flickerAnimation 4s linear infinite;
}
*/
/* banner flicker animation : END */
body {
  /*----------------Kenny CSS set THE BEGINNING------------------*/
  background-color: white;
  /*ALL FONT STYLE*/
  /* responsive utilities  */
  /*OTHER STYLE*/
  /*----------------Kenny CSS set THE END-------------------------*/
  /*--------------------- Mobile : 1-767-----------------------------*/
  /*all section style*/
  /*individual section style*/
}
body a,
body a:link,
body a:active,
body a:hover,
body a:visited {
  text-decoration: none;
  outline: none;
}
body button,
body button:link,
body button:active,
body button:hover,
body button:visited {
  text-decoration: none;
  outline: none;
}
body section h1 {
  font-size: 2.3em;
  font-weight: bold;
  color: #3a3a3a;
  text-align: center;
  margin-top: 0.5em;
  margin-bottom: 0.6em;
}
body section h1 span {
  font-size: 1.5em;
  color: #0091b4;
}
body section h1.white {
  color: #ffffff;
}
body section h2 {
  font-size: 1.5em;
  line-height: 150%;
  letter-spacing: 0;
  color: #3a3a3a;
  font-weight: 300;
  margin-top: 12px;
  margin-bottom: 12px;
  text-align: center;
}
body section h2.white {
  color: #ffffff;
}
body section h3 {
  font-size: 1.2em;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: 0;
  color: #3a3a3a;
}
body section h3.white {
  color: #ffffff;
}
body section p {
  color: #3a3a3a;
  line-height: 170%;
  font-size: 1em;
}
body section p.white {
  color: #ffffff;
}
body section ul li {
  font-size: 1em;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body p {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
body .hidden-sm-down {
  display: none;
}
body .hidden-md-up {
  display: block;
}
@media only screen and (min-width: 768px) {
  body .hidden-sm-up {
    display: none;
  }
  body .hidden-sm-down {
    display: block;
  }
}
body section img {
  image-rendering: -webkit-optimize-contrast;
  width: 100%;
}
body figure {
  margin-bottom: 0;
}
body .no-padding {
  padding-left: 0;
  padding-right: 0;
}
body .no-margin {
  margin-left: 0;
  margin-right: 0;
}
body .mb-0 {
  margin-bottom: 0 !important;
}
body a button {
  background-color: #ffffff;
  -moz-transition: all 200ms;
  -o-transition: all 200ms;
  -webkit-transition: all 200ms;
  transition: all 200ms;
  outline: none !important;
}
body a button:hover {
  outline: none !important;
}
body a button:active {
  outline: none !important;
}
body a button:focus {
  outline: none !important;
}
body a button h2 {
  margin-top: 0.2em;
  margin-bottom: 0.2em;
  position: relative;
  padding-right: 0.5em;
}
body a button h2 span.arrow-right {
  position: absolute;
  top: 0.3em;
  margin-left: 0.43em;
  width: 0px;
  height: 0px;
  border-top: 0.4em solid transparent;
  border-bottom: 0.4em solid transparent;
  border-left: 0.8em solid #0091b4;
}
body a:hover button {
  background-color: #0091b4;
}
body a:hover button h2 {
  color: #ffffff;
}
body a:hover button h2 span.arrow-right {
  border-left: 0.8em solid #ffffff;
}
body section.all-sec {
  display: block;
  font-size: 16px;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  position: relative;
  overflow: hidden;
}
body section.all-sec div.container div.row.sec-title-row div.title-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
body section.all-sec div.container div.row.sec-title-row div.title-box img {
  width: 1.2em;
  height: 1.2em;
  min-width: 1.2em;
  min-height: 1.2em;
  margin-top: 0.4em;
  margin-right: 0.2em;
}
body section.all-sec div.container div.row.sec-title-row div.title-box h2 {
  text-align: left;
  margin-top: 0;
  font-size: 1.3em;
  font-weight: 600;
  color: #0092A2;
}
body section.all-sec div.container div.row.sec-title-row div.title-box h2.light {
  color: #2ebaca;
}
body section.all-sec div.container div.row figure {
  margin-bottom: 1em;
}
body section.all-sec div.container div.row ul.list {
  list-style-type: disc;
  padding-left: 1.2em;
}
body section.all-sec div.container div.row ul.list li {
  line-height: 170%;
  margin-top: 0;
  margin-bottom: 0;
}
body section.all-sec div.container div.row ul.list li p {
  margin-top: 0;
  margin-bottom: 0;
}
body section.all-sec div.container div.row ul.list.white {
  color: #ffffff;
}
body section.top-sec {
  background-image: url(../_img/banner-mobile.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
body section.top-sec div.container div.row figure {
  text-align: center;
}
body section.top-sec div.container div.row figure img {
  max-width: 800px;
}
body section.top-sec div.container div.row article div.title-box h1 {
  margin-bottom: 0.2em;
}
body section.top-sec div.container div.row article div.subtitle-box h2 {
  color: #3dfeff;
  font-weight: 600;
}
body section.top-sec div.container div.row article div.list-box ul.list {
  color: #ffffff;
}
body section.top-sec div.container div.row article div.list-box ul.list li p {
  margin-bottom: 0;
}
body section.hyper-sec {
  background-image: url(../_img/hyper_sec_BG.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
body section.computing-sec {
  background-color: #333333;
}
body section.computing-sec div.container div.row figure {
  text-align: center;
}
body section.computing-sec div.container div.row figure img {
  max-width: 20em;
  border-radius: 7px;
}
body section.computing-sec div.container div.row figure img.b-pc-pic {
  box-shadow: 0 0 29px rgba(128, 128, 128, 0.4);
  border-radius: 10px;
  max-width: 650px;
}
body section.training-sec div.container div.img-group img {
  height: 3.3em;
  width: auto;
  padding-left: 0.2em;
  padding-right: 0.2em;
}
body section.needs-sec {
  background-color: #333333;
}
body section.needs-sec div.container div.row figure img {
  max-width: 700px;
  border-radius: 10px;
}
body section.ssd-sec {
  background-image: url(../_img/ssd_sec_BG_pc.png);
  background-attachment: initial;
  background-position: center center;
  background-size: cover;
  opacity: 0.9;
}
body section.ssd-sec div.container div.row figure {
  text-align: center;
}
body section.ssd-sec div.container div.row figure img {
  max-width: 600px;
}
body section.storage-sec {
  background-color: #333333;
}
body section.storage-sec div.container div.row figure img {
  max-width: 700px;
  border-radius: 10px;
}
body section.cpu-sec {
  background-color: #e7e7e7;
}
body section.cpu-sec div.container table.table-1 {
  width: 100%;
  background-color: #ffffff;
}
body section.cpu-sec div.container table.table-1 thead th {
  background-color: #0092A2;
  padding: 0.4em;
}
body section.cpu-sec div.container table.table-1 thead th p {
  margin-bottom: 0;
  font-size: 0.9rem;
  text-align: center;
}
body section.cpu-sec div.container table.table-1 thead th:nth-child(2) {
  min-width: 7em;
}
body section.cpu-sec div.container table.table-1 thead th:last-child {
  min-width: 7em;
  border-right: none;
}
body section.cpu-sec div.container table.table-1 tbody tr td {
  border: 1px solid #ffffff;
  padding: 0.4em;
  text-align: center;
}
body section.cpu-sec div.container table.table-1 tbody tr td p {
  font-size: 0.9rem;
  margin-bottom: 0;
  display: inline-block;
}
body section.cpu-sec div.container table.table-1 tbody tr td img {
  max-width: 10em;
}
body section.cpu-sec div.container table.table-1 tbody tr td img.medal {
  width: 1.3em;
  height: 1.3em;
  display: inline-block;
}
body section.cpu-sec div.container table.table-1 tbody tr td.t-heading {
  background-color: #BDE8EA;
}
body section.cpu-sec div.container table.table-1 tbody tr:nth-child(even) {
  background-color: #c9f0f1;
}
body section.cpu-sec div.container table.table-1 tbody tr td.pic-td {
  text-align: center;
}
body section.btn-sec {
  background-color: #666666;
}
body section.btn-sec div.container {
  display: block;
  text-align: center;
}
body section.btn-sec div.container:before {
  display: table;
  content: " ";
}
body section.btn-sec div.container:after {
  display: table;
  content: " ";
}
body section.btn-sec div.container div.btn-row {
  display: flex;
  flex-direction: column;
  margin-top: 2.3em;
  margin-bottom: 2em;
}
body section.btn-sec div.container div.btn-row div.btn-box {
  display: block;
  margin-left: 3em;
  margin-right: 3em;
  margin-bottom: 1em;
}
body section.btn-sec div.container div.btn-row div.btn-box a button {
  min-width: 12em;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  border-radius: 40px;
}
body section.btn-sec div.container div.btn-row div.btn-box a button h2 {
  font-size: 1.2em;
  font-weight: 600;
  margin-top: 0.2em;
  margin-bottom: 0.2em;
}
body section.btn-sec div.container div.btn-row div.btn-box a:hover button {
  background-color: #666666;
  border: 1px solid #ffffff;
}
body section.btn-sec div.container div.btn-row div.btn-box a:hover button h2 {
  color: #ffffff;
}
/* -----------------Pad : 768-991 --------------------------------------*/
@media only screen and (min-width: 768px) {
  body {
    /*all section style*/
    /*individual section style*/
  }
  body section.all-sec div.container div.row.sec-title-row div.title-box img {
    margin-top: 0.7em;
    margin-right: 0.4em;
  }
  body section.all-sec div.container div.row.sec-title-row div.title-box h2 {
    font-size: 1.7em;
  }
  body section.all-sec div.container div.row article {
    padding-left: 2px;
  }
  body section.all-sec div.container table.table-1 tbody tr td {
    text-align: center;
  }
  body section.cpu-sec div.container table.table-1 tbody tr td img.medal {
    width: 1.6em;
    height: 1.6em;
    display: inline-block;
    position: relative;
    top: -0.2em;
    margin-left: 0.2em;
  }
  body section.btn-sec div.container div.btn-row {
    flex-direction: row;
    justify-content: center;
  }
}
/*---------------Desktops and laptops w992-------------------------*/
@media only screen and (min-width: 992px) {
  body {
    /*all section style*/
    /*individual section style*/
  }
  body section.all-sec:not(.top-sec) .container {
    max-width: 1000px;
  }
  body section.all-sec {
    padding-top: 2em;
    padding-bottom: 2em;
  }
  body section.all-sec div.container div.row.sec-title-row div.title-box img {
    margin-top: 0.4em;
    margin-right: 0.4em;
    width: 2em;
    height: 2em;
  }
  body section.top-sec {
    min-height: 420px;
    background-image: url(../_img/banner-4.jpg);
    padding-top: 1em;
  }
  body section.top-sec div.container div.row div.banner-right-block {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  body section.top-sec div.container div.row article {
    padding-left: 8em;
    padding-right: 8em;
  }
  body section.top-sec div.container div.row article div.title-box {
    margin-top: -2em;
  }
  body section.top-sec div.container div.row article div.title-box h1 {
    font-size: 3em;
    margin-bottom: 0;
  }
  body section.top-sec div.container div.row article div.subtitle-box {
    margin-bottom: 1em;
  }
  body section.top-sec div.container div.row article div.subtitle-box h2 {
    font-size: 2.1em;
    letter-spacing: 1px;
    margin-top: 0;
  }
  body section.top-sec div.container div.row article div.content-box p {
    text-align: center;
  }
  body section.top-sec div.container div.row article div.list-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
  }
  body section.top-sec div.container div.row article div.list-box ul.list {
    display: inline-block;
  }
  body section.top-sec div.container div.row article div.list-box ul.list li p {
    font-size: 0.9em;
    color: #f0f0f0;
  }
  body section.hyper-sec div.container div.row figure {
    text-align: center;
  }
  body section.hyper-sec div.container div.row figure img {
    max-width: 700px;
  }
  body section.computing-sec div.container div.narrow-row {
    max-width: 800px;
    margin: 0 auto;
  }
  body section.training-sec {
    background-image: url(../_img/training_sec_BG.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  body section.training-sec div.container div.row figure {
    text-align: center;
  }
  body section.training-sec div.container div.row figure img {
    max-width: 900px;
  }
  body section.training-sec div.container div.img-group img {
    height: 4em;
  }
  body section.needs-sec div.container div.row figure {
    text-align: center;
  }
  body section.storage-sec div.container div.row figure {
    text-align: center;
  }
  body section.storage-sec div.container div.row figure img {
    max-width: 700px;
  }
  body section.cpu-sec div.container table.table-1 {
    max-width: 80%;
    margin: 0 auto;
    background-color: #ffffff;
  }
  body section.cpu-sec div.container table.table-1 thead th p {
    font-size: 1rem;
  }
  body section.cpu-sec div.container table.table-1 tbody tr td p {
    font-size: 1rem;
  }
}
/*---------------Desktops-1200--------------------------------*/
/*---------------Desktops-1920--------------------------------*/
@media only screen and (min-width: 1920px) {
  body {
    /*individual section style*/
  }
  body section.all-sec {
    font-size: 17px;
  }
}
