/*=======================================*/
/*  Basic Setup */
/*=======================================*/


/* Default Font Change */

html{
  font-size: 62.5%;
  scroll-behavior: smooth;
}

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

body {
  font-family: 'Titillium Web', sans-serif;
  text-rendering: optimizelegibility;
  line-height: 1.3;
  font-size: 1.6rem;
  background: #344b8e;
  overflow-y: scroll;
}

ul li {
  list-style: none;
}
/* Heading Line */

h1{
  font-size: 4.2rem;
  color: #fff;
}

/* fix floating */

.clearFix::after{
  content: "";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 7px #000000;
  border-radius: 0px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #dfdfdf;
  border-radius: 10px;
}

/*=====================================*/
/* Reusable Components*/
/*=====================================*/

.row {
  max-width: 114rem;
  margin: 0 auto;
}

/* Button */

.btn:link, .btn:visited, .btn {
  color: #fff;
  background: #333;
  border-bottom: #000;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.5rem 6rem;
  border-radius: .3rem;
  display: inline-block;
  margin-top: 4.5rem;
  font-size: 1.6rem;
}

/* Section */

section{
  padding: 23.5rem 0;
}

/* h2 Design */

h2{
  font-size: 4rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .3rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
  font-weight: 600;
  text-align: center;
}

h2::after{
  content:"";
  display: block;
  height: .4rem;
  background: #fff;
  width: 8.5rem;
  margin: auto;
  margin-top: 2rem;
}

h3{
  font-size: 2.4rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}
h4{
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 2.5rem;
}

/* Paragraph */
.little-description{
  font-size: 1.8rem;
  width: 60%;
  margin-left: 20%;
  line-height: 3rem;
  font-weight: 500;
}

.alignright {
  text-align: right;
}

.alignleft {
  text-align: left;
}

.box{
  padding: 1%;
}

.boxborder {
  border: 1px solid white;
}

.box p{
  font-size: 1.6rem;
  font-weight: 300;
  margin-top: 1.5rem;
  color: #fff;
}

.mypool-menu{
  width: 20rem;
  height: 61rem;
}

.mypool-content{
  height: 63.5rem;
  width: 90.5rem;
  overflow: auto;
  color: #fff;
  font-size: 1.6rem;
  background:rgba(0, 0, 0, 0.243);
}

.menu-item {
  background:rgba(255, 255, 255, 0.486);
  color:rgb(255, 255, 255);
  border-radius: 0rem 10rem 10rem 0rem;
  padding: 1rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: left;
  margin: 1rem;
}


.menu-item-active {
  background:rgb(255, 255, 255);
  color:rgb(0, 0, 0);
}
.menu-item:hover {
  background:rgb(255, 255, 255);
  color:rgb(0, 0, 0);
  cursor: pointer;
}

.menu-item-image {
  width: auto;
  height: 2rem;
  position: relative;
  top: 0.3rem;
  margin-right: 1rem;
}

.menu-link {
  text-decoration: none;
  color: inherit;
}
.fixed-length {
  width: 56.5rem;
}
.fixed-length1 {
  width: 65.5rem;
}
.fixed-length2 {
  width: 80rem;
}
.fixed-length3 {
  width: 18rem;
}
.fixed-length4 {
  width: 21rem;
  padding-left: 1rem;
}
.api-button {
  font-size: 1.5rem;
  padding: 0.5rem;
  margin-right: 1rem;
  background:rgba(255, 255, 255, 0.486);
  color:rgb(255, 255, 255);
  border: 0;
  border-radius: 1rem;
}
.api-button-big {
  font-size: 3rem;
  padding: 1rem;
  background:rgba(255, 255, 255, 0.486);
  color:rgb(255, 255, 255);
  border: 0;
  border-radius: 1rem;
}
.api-button:hover {
  background:rgb(255, 255, 255);
  color:rgb(0, 0, 0);
  cursor: pointer;
}

.pool-label {
  font-size: 2rem;
  font-weight: bold;
}

.keepleft {
  position: absolute;
  left: 1.5rem;
}

.keepright {
  position: absolute;
  right: 1.5rem;
}

/*=====================================*/
/* Header Section*/
/*=====================================*/

header {
  background: linear-gradient(rgba(135, 80, 156, 0.9),rgba(135, 80, 156, 0.9)), url(/assets/images/header-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;    
  height: 96vh;
  position: relative;
}

.logo {
  height: 20rem;
  width: auto;
  float: left;
  margin-top: 3.5rem;
}
/* Sticky Navigation */
.sticky{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  background: rgba(135, 80, 156, 0.9);
  box-shadow: 0 .2rem .5rem rgba(255,255,251,.9);
  z-index: 9999;
}

.sticky .logo{
  margin-top: 0;
  height: 10rem;
}

.sticky .main-nav{
  margin-top: 3rem;
}

.main-nav {
  float: right;
  margin-top: 4rem;
}

.main-nav li {
  display: inline-block;
  margin-left: 1rem;
}

.main-nav li:first-child {
  margin-left: 0rem;
}

.main-nav li a:visited, .main-nav li a:link {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none; 
  padding: .6rem 1.6rem;
  border-radius: .3rem;
  display:inline-block;
  background: #643a7900;
  transition: .3s;
  font-size: 1.6rem;
}

.main-nav li:hover a:visited, .main-nav li:hover a:link {
  background: #643a79;
}

.main-nav li.active a{
  background: #643a70;
}

.hero-text-box{
  position:absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  width: 114rem;
}

.mypool-text-box {
  position: absolute;
  top: 25rem;
  left: 50%;
  height: 66rem;
  transform: translate(-50%);
  text-align: center;
  width: 114rem;
  background-color:rgba(60, 71, 97, 0.6);
}

.mypool-name {
  position: relative;
  top: -6.5rem;
  padding-right: 1rem;
  text-align: right;
}

.btn-hero:link, 
.btn-hero:visited {
  background: #eb7d4b;
  border-bottom: #c86a40;
}

/*=====================================*/
/* Services Section*/
/*=====================================*/

.service-section{
  text-align: center;
  background: linear-gradient(rgba(23, 194, 163, 0.9),rgba(23, 194, 163, 0.9)), url(/assets/images/services-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
  color: #fff;
}

.service-section h2::after{
  background: #14a58c;
}

.services-icon{
  height: 12rem;
  margin-top: 4.5rem;
  margin-bottom: 3.5rem;
}

/*=====================================*/
/* Team Section*/
/*=====================================*/

.team-section{
  text-align: center;
  background: linear-gradient(rgba(231, 241, 248, 0.9),rgba(231, 241, 248, 0.9)), url(/assets/images/team-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

.team-section h2{
  color: #3c4761;
}

.team-section h2::after{
  background: #9dbacf;
}

.team-member{
  margin-top: 4.5rem;
  margin-bottom: 3.5rem;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
}

.team-section h3{
  color: #27283d;
}

.role{
  color: #30bae7;
  text-transform: capitalize;
  margin-top: .5rem;
  font-size: 1.6rem;
  font-weight: 600;
  display: inline-block;
}

.team-section .box p{
  color: #3c4761;
  font-weight: 500;
}

.social-link{
  margin-top: 4.5rem;
}

.social-link ul li{
  display: inline-block;
  margin: 0 .5rem;
}

.social-link ul li a i{
  color: #fff;
  font-size: 2rem;
}

.social-link ul li a:link i::before{
  background: #bdd1df;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-block;
  padding: 1rem;
  transition: .5s;
}

.social-link ul li a:hover i::before{
  background: #393939;
  transform: rotate(360deg);
}


/*=====================================*/
/* Skill Section*/
/*=====================================*/

.skill-section{
  color: #3c4761;
  text-align: center;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(/assets/images/skill-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.skill-section h2,
.skill-section h3{
  color: #3c4761;
}

.skill-section h2:after{
  background: #dfe8ed;
}

.skill-section .box{
  margin-top: 4.5rem;
}

svg.radial-progress circle{
  stroke-width: 5;
}

svg.radial-progress text{
  fill: #393939;
  font-size: 1.5rem;
}

svg.web-design circle{
  stroke: #30bae7;
}

svg.html-css circle{
  stroke: #d74680;
}

svg.graphics-design circle{
  stroke: #15c7a8;
}

svg.ui-ux circle{
  stroke: #eb7d4b;
}

/*=====================================*/
/* Portfolio Section*/
/*=====================================*/

.portfolio-section{
  background: linear-gradient(rgba(255, 221, 153, 0.9),rgba(255, 221, 153, 0.9)), url(/assets/images/portfolio-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  text-align: center;
}

.portfolio-section h2{
  color: #3c4761;
}

.portfolio-section h2:after{
  background: #e5c37f;
}

.portfolio-filter{
  margin: 4.5rem 0;
}

.portfolio-filter button{
  background: #ebc985;
  font-size: 1.8rem;
  padding: 1rem 2rem;
  border: 0;
  border-radius: .3rem;
  text-transform: uppercase;
  color: #3c4761;
  margin: 0 .5rem;
  transition: .5s;
  outline: 0;
}

.portfolio-filter button:hover{
  cursor: pointer;
  box-shadow: inset 0 .3rem .5rem rgba(60, 71, 97, 0.5);
}

.portfolio-image{
  height: auto;
  width: 100%;
}

.portfolio-section .col:nth-child(3){
  margin-left: 0;
}

.portfolio-section .btn-load-more{
  background: #17c2a4;
  border-color: #14a58c;
}

.portfolio-section .mixitup-control-active{
  background: #fff;
}

/*=====================================*/
/* Testimonial Section*/
/*=====================================*/

.testimonial-section{
  background: linear-gradient(rgba(215, 70, 128, 0.9),rgba(215, 70, 128, 0.9)), url(/assets/images/testimonial-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
}

.testimonial-section .little-description{
  color: #fff;
  text-align: center;
}

.testimonial-section h2:after{
  background: #b73c6d;
}

.testimonial-section .col:nth-child(3){
  margin-left: 0;
}

.testimonial-section .col:nth-child(1),
.testimonial-section .col:nth-child(2){
  margin-top: 4rem;
}

.testimonial-section .col:nth-child(3),
.testimonial-section .col:nth-child(4){
  margin-top: 4rem;
}

.client-photo{
  width: 10rem;
  float: left;
}

.client-photo img{
  height: 8rem;
  border-radius: 50%;
  margin-bottom: 2rem;
}

.client-review{
  width: 30rem;
  height: 12rem;
  float: left;
}

.client-review p{
  margin-top: 0;
  margin-bottom: 2rem;
  font-style: italic;
  color: #fff;
}

.testimonial-section .role{
  color: #ffdd99;
}


/*=====================================*/
/* Contact Section*/
/*=====================================*/

.contact-section{
  background: linear-gradient(rgba(60, 83, 153, 0.9),rgba(60, 83, 153, 0.9)), url('/assets/images/contact-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  text-align: center;
}

.contact-section h2:after{
  background: #273a71;
}

.inputinfo {
  display: inline-block;
  color: #fff;
  opacity: 0.5;
  padding-left: 1rem;
}

form {
  margin-top: 5rem;
  width: 70%;
  margin-left: 15%;
}

.formtext {
  margin-top: 2rem;
  font-size: 2.8rem;
  font-weight: bold;
  color: #fff;
}

input[type="text"],
input[type="username"],
input[type="password"],
input[type="email"],
textarea{
  background: #273a71;
  border: .1rem solid #273a71;
  color: #fff;
  padding: 1.5rem;
  width: 100%;
  outline: 0;
  border-radius: .5rem;
  font-size: 1.8rem;
  margin: .5rem 0;

}

.fixed-length input,
.fixed-length1 input {
  font-size: 1.5rem;
  cursor: pointer;
}

.contact-section textarea{
  height: 20rem;
  font-family: 'Titillium Web', sans-serif;
}

form ::placeholder{
  color: #fff;
  opacity: 0.5;
}

.btn-submit{
  border: 0;
  border-bottom: .3rem solid #299ec5;
  background: #30bae7;
} 
.btn-submit:hover{
  cursor: pointer;
}


/*=====================================*/
/* Footer Section*/
/*=====================================*/

.footer-section{
  background: #344b8e;
  height: 1rem;
  padding: 1rem 0;
  text-align: center;
  border-top: .1rem solid rgba(255, 255, 255, 0.4);
}

.footer-section li{
  display: inline-block;
  margin: 0 2rem;
}

.footer-section li a {
  text-decoration: none;
  text-transform: capitalize;
  font-size: 1.5rem;
  color: #fff;
}

.footer-section li:hover a{
  color: #30bae7;
}

.mycode {
  font-family:'Courier New', Courier, monospace;
  color: #fff;
}
