/* Fonts */
@font-face {
  font-family: 'Calisto-MT';
  src: url(../fonts/Calisto-MT.ttf);
}

@font-face {
  font-family: 'Calisto-MT-Italic';
  src: url(../fonts/Calisto-MT-Italic.ttf);
}

@font-face {
  font-family: 'Calisto-MT-Bold';
  src: url(../fonts/Calisto-MT-Bold.ttf);
}

/* Colors */
/* Universal style */
* {
  margin: 0;
  padding: 0;
  font-family: 'Calisto-MT';
}

.site-container {
  max-width: 1980px;
  margin: 0 auto;
}
@media (max-width: 1250px) {
  .site-container {
    width: 90%;
  }
}

.universal-h2 {
  font-size: 60px;
  text-align: center;
  color: #222;
}
@media (max-width: 1250px) {
  .universal-h2 {
    font-size: 38px;
  }
}
@media (max-width: 668px) {
  .universal-h2 {
    font-size: 30px;
  }
}

.universal-h2-bckg {
  background-image: url('../images/double-line.svg');
  background-repeat: no-repeat;
  background-position: center bottom;
}

a {
  text-decoration: none;
}

ul {
  text-decoration: none;
  list-style-type: none;
}

nav {
  position: fixed;
  background-color: #111013;
  z-index: 10;
  left: 0;
  right: 0;
  top: 0;
  padding: 0 2%;
  height: 80px;
  opacity: 0.9;
}

nav .shankytech {
  float: left;
  width: 40%;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 50px;
  color: rgb(85, 163, 124);
}
nav .links {
  float: right;
  padding: 0;
  margin: 0;
  width: 60%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
nav .links li {
  list-style: none;
}
nav .links a {
  display: block;
  padding: 1em;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
}
nav ul li a:hover {
  border-bottom: 4px outset #fff;
}
#nav-toggle {
  position: absolute;
  top: -100px;
}
nav .icon-burger {
  display: none;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}
nav .icon-burger .line {
  width: 30px;
  height: 5px;
  background-color: #fff;
  margin: 5px;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  nav .shankytech {
    float: none;
    width: auto;
    justify-content: center;
  }
  nav .links {
    float: none;
    position: fixed;
    z-index: 9;
    left: 0;
    right: 0;
    top: 100px;
    bottom: 100%;
    width: auto;
    height: auto;
    flex-direction: column;
    justify-content: space-evenly;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: hidden;
    box-sizing: border-box;
    transition: all 0.5s ease-in-out;
  }
  nav .links a {
    font-size: 20px;
  }
  nav :checked ~ .links {
    bottom: 0;
  }
  nav .icon-burger {
    display: block;
  }
  nav :checked ~ .icon-burger .line:nth-child(1) {
    transform: translateY(10px) rotate(225deg);
  }
  nav :checked ~ .icon-burger .line:nth-child(3) {
    transform: translateY(-10px) rotate(-225deg);
  }
  nav :checked ~ .icon-burger .line:nth-child(2) {
    opacity: 0;
  }
}

.shanky-top-banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  background-image: url('../images/top-banner-bckg.jpg');
  background-position: center;
  background-size: cover;
}
.shanky-top-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.8;
}
.shanky-top-banner .site-container {
  position: relative;
  z-index: 1;
}
@media (max-width: 1600px) {
  .shanky-top-banner {
    padding-top: 180px;
  }
}
@media (max-width: 1250px) {
  .shanky-top-banner {
    padding-top: 130px;
  }
}
@media (max-width: 520px) {
  .shanky-top-banner {
    padding-top: 105px;
  }
}
@media (min-width: 1600px) {
  .shanky-top-banner {
    min-height: 100vh;
  }
}

.top-banner__inner {
  display: flex;
  align-items: center;
}
.top-banner__inner .top-banner__text {
  margin-left: 25px;
}
.top-banner__image {
  border-radius: 20px;
}
@media (max-width: 1250px) {
  .top-banner__inner .top-banner__text {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .top-banner__inner .top-banner__text {
    width: 50%;
    margin-left: 20px;
  }
}
@media (max-width: 520px) {
  .top-banner__inner .top-banner__text {
    width: 70%;
    margin-bottom: 20px;
    margin-left: 0;
  }
}
.top-banner__inner .top-banner__text p {
  font-size: 20px;
  margin-bottom: 42px;
  color: rgb(187, 178, 178);
}
@media (max-width: 768px) {
  .top-banner__inner .top-banner__text p {
    margin-bottom: 25px;
    font-size: 14px;
  }
}
.top-banner__inner .top-banner__h2 {
  font-size: 74px;
  letter-spacing: 3px;
  color: #fff;
  font-family: 'Calisto-MT-Bold';
}
@media (max-width: 1250px) {
  .top-banner__inner .top-banner__h2 {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  .top-banner__inner .top-banner__h2 {
    font-size: 35px;
  }
}
.top-banner__inner .top-banner__text-up .top-banner__h2 {
  margin-top: 15px;
}
@media (max-width: 768px) {
  .top-banner__inner .top-banner__text-up .top-banner__h2 {
    margin-top: 0;
  }
}
.top-banner__inner .top-banner__text-down {
  margin-bottom: 20px;
  padding-left: 20%;
}
.top-banner__inner .top-banner__text-down .top-banner__h2 {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .top-banner__inner .top-banner__text-down .top-banner__h2 {
    margin-bottom: 0;
  }
}
.top-banner__inner .top-banner__image {
  font-size: 0;
}
@media (max-width: 1250px) {
  .top-banner__inner .top-banner__image {
    width: 50%;
  }
  .top-banner__inner .top-banner__image img {
    width: 100%;
    margin-top: 0;
  }
}
@media (max-width: 520px) {
  .top-banner__inner .top-banner__image {
    width: 70%;
    margin-bottom: 20px;
  }
}
@media (max-width: 520px) {
  .top-banner__inner {
    flex-direction: column;
  }
}

.brand-span {
  font-size: 25px;
  color: #c18f59;
}
.branding {
  font-size: 20px;
  color: #c18f59;
}

.brand-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 11px;
  text-transform: uppercase;
  text-decoration: none;
  color: #c18f59;
  border: 1px solid #fff;
  transition: 0.3s ease;
}
.brand-button:hover,
.brand-button:focus {
  color: #777;
}

/* About me */
.shanky-about-me {
  display: flex;
  position: relative;
  margin: 150px auto 120px;
}

.shanky-about-me .site-container{
  width: 90vw;
}
@media (max-width: 1250px) {
  .shanky-about-me {
    margin: 150px auto;
  }
}
@media (max-width: 992px) {
  .shanky-about-me {
    margin: 100px 0;
  }
}

.about-me-bckg {
  position: absolute;
  background-image: url('../images/about-me-bckg.png');
  background-position: center;
  background-size: cover;
  height: 500px;
  top: -75px;
  right: 0;
  height: calc(100% + 80px);
  width: 70%;
  z-index: -1;
}
.about-me-bckg:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.7;
}
@media (max-width: 992px) {
  .about-me-bckg {
    width: 100%;
    padding-bottom: 15px;
  }
}

.about-me-inner {
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .about-me-inner {
    flex-direction: column;
    align-items: center;
  }
}

.about-me-slider {
  position: relative;
}

.span-arrow {
  padding: 10px 15px;
  cursor: pointer;
  color: #c18f59;
  border: 1px solid #c18f59;
  border-radius: 50%;
  transition: 0.3s ease;
}
.span-arrow:hover {
  color: #fff;
  border-color: #fff;
}

.portfolio__name .universal-h2 {
  padding-left: 5px;
  text-align: start;
}
.portfolio-wrapper {
  width: 400px;
  max-height: 510px;
  text-align: center;
  background-color: #fff;
}
.portfolio-wrapper .portfolio__img {
  font-size: 0;
}
.portfolio-wrapper .portfolio__img img {
  width: 100%;
}
.portfolio-wrapper .portfolio__bottom {
  padding: 25px 0 0px;
  background-color: #f5f5f5;
}
@media (max-width: 992px) {
  .portfolio-wrapper .portfolio__bottom {
    padding: 25px 10px;
  }
}
.portfolio-wrapper .portfolio__name {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 0px;
}
@media (max-width: 992px) {
  .portfolio-wrapper .portfolio__name {
    margin-bottom: 10px;
  }
}
.portfolio-wrapper .portfolio__name span {
  font-size: 90px;
  line-height: 75px;
  color: #c18f59;
  font-family: 'Calisto-MT-Bold';
}
@media (max-width: 992px) {
  .portfolio-wrapper .portfolio__name span {
    font-size: 65px;
    line-height: 62px;
  }
}
.portfolio-wrapper p {
  padding: 0 10%;
  line-height: 25px;
  font-style: italic;
  color: #777;
}
@media (max-width: 620px) {
  .portfolio-wrapper p {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (max-width: 992px) {
  .portfolio-wrapper {
    margin-bottom: 20px;
  }
}
@media (max-width: 620px) {
  .portfolio-wrapper {
    width: 70%;
  }
}

.about-me__text {
  width: 50%;
  margin:0 80px;
  text-align: center;
}
.about-me__text .universal-h2 {
  color: #fff;
  padding-bottom: 20px;
  margin-bottom: 25px;
}
.about-me__text p {
  margin-bottom: 10px;
  line-height: 24px;
  color: #c18f59;
}
.about-me__text p span {
  font-size: 48px;
  color: #fff;
}
.about-me__text p a {
  font-size: 25px;
}
@media (max-width: 620px) {
  .about-me__text p {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 20px;
  }
}
.about-me__text h4 {
  display:inline-block;
  padding:0 10px;
  margin-bottom: 40px;
  font-size: 25px;
  color: #c18f59;
  border: 1px solid;
}

@media (max-width: 1250px) {
  .about-me__text {
    width: 48%;
    margin: 0 40px;
  }
}
@media (max-width: 992px) {
  .shanky-about-me{
    margin-bottom: 20px;
  }
  .about-me__text {
    width: 70%;
    margin: 0 10px;
  }
}

/* Opinions */
.opinions {
  margin: 50px;
}

.opinions-list {
  position: relative;
  margin: 90px 50px 50px;
}

.opinion-heading {
  padding: 50px 0 16px 0;
  font-size: 50px;
  text-align: center;
  margin-bottom: 50px;
}

.blogs-brand-button {
  text-align: center;
  margin: 50px 0;
}
.brand-button {
  border: 1px solid;
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  margin: 0 auto 40px;
  max-width: 1980px;
}

.blog-cards img {
  width: 100%;
  margin-bottom: 20px;
}

.blog-cards h3 {
  margin-bottom: 5px;
}

.blog-cards a {
  display: inline-block;
  padding-top: 10px;
  color: #0067b8;
  text-transform: uppercase;
  font-weight: bold;
}

.blog-cards a:hover i {
  margin-left: 10px;
}

@media (max-width: 700px) {
  .opinion-heading {
    padding-top: 50px;
  }
  .blog-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .opinions{
    margin-top: 30px;
  }
  .opinions-list{
    margin-top: 70px;
  }
  .opinion-heading {
    padding-top: 60px;
  }
  .blog-cards {
    grid-template-columns: 1fr;
  }
}

/* skills */
.shanky-skills {
  display: flex;
  align-items: center;
  position: relative;
  padding: 80px 0 19px;
  text-align: center;
  background-image: url('../images/skills-bckg.jpeg');
  background-position: center;
  background-size: cover;
}
.shanky-skills::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.8;
}
.shanky-skills .site-container {
  position: relative;
  z-index: 1;
}

.shanky-skills h2 {
  display: inline-block;
  color: #f2f2f2;
  font-size: 40px;
  padding-bottom: 10px;
  border-bottom: 3px outset #f5f5f5;
}
.shanky-skills ul {
  margin: 0 auto 20px;
  color: #fff;
  line-height: 25px;
}
.blog-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin-bottom: 40px;
  padding: 60px 10px 0;
}


.blog-card img {
  width: 60%;
  margin-bottom: 10px;
}

.blog-card p{
  font-size: 20px;
  color:rgb(55, 121, 165);
  text-transform: uppercase;
  margin-bottom: 10px;
}


@media (max-width: 1150px) {  
  .shanky-skills {
    padding: 50px 0 65px;
  }
  .shanky-skills p {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .opinion-heading {
    padding-top: 50px;
  }
  .blog-card {
    grid-template-columns: repeat(2, 1fr);    
  }
}

@media (max-width: 500px) {  
  .shanky-skills{
    padding-bottom: 0;
  }
  .about-me-slider{
    margin: 0;
  }
  .opinion-heading {
    padding-top: 60px;
  }
  .blog-card {
    margin-bottom: 0;
    grid-template-columns: 1fr;
  }
  .blog-card .item{
    margin: 20px;
    border-bottom: 1px dotted #f5f5f5;
  }
  .blog-card .item:last-child{
    border-bottom: none;
  }
  .blog-card img {
    width: 30%
  }
}







/* Social */
.shanky-social { 
  display: flex; 
  position: relative;
  padding: 40px 0;
  background-image: url('../images/socials-bckg.jpg');
  background-size: cover;
  background-position: cover;
}
.shanky-social::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #7a4207;
  opacity: 0.8;
}
.shanky-social .site-container {
  width: 80vw; 
  position: relative;
  z-index: 1;
}

@media (max-width: 620px) {
  .shanky-social {
    padding: 20px 0;
  }
}

.social {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.social h5 {
  font-size: 24px;
  color: #f5f5f5;
}
@media (max-width: 620px) {
  .social {
    flex-direction: column;
  }
}

.social-icons a {
  position: relative;
  border: 1px solid white;
  border-radius: 50%;
  padding: 13px 23px;
  margin-right: 10px;
  transition: 0.3s ease;
}
.social-icons a:hover {
  background-color: #777;
  border-color: transparent;
}

.social-icons img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 620px) {
  .social-icons {
    margin: 35px 0;
  }
}


/* Footer */
.site-footer {
  padding-top: 120px;
  background-color: #343434;
}
@media (max-width: 1250px) {
  .site-footer {
    padding-top: 60px;
  }
}

.footer-inner {
  display: flex;
  justify-content: space-around;
  margin: 0 40px;
  padding-bottom: 95px;
}
.footer-inner h5 {
  margin-bottom: 30px;
  font-size: 20px;
  letter-spacing: 2px;
  color: rgb(255, 255, 255);
}
@media (max-width: 1250px) {
  .footer-inner {
    padding-bottom: 50px;
    flex-direction: column;
    align-items: center;
  }
}

.footer-info {
  width: 50%;
  display: flex;
}
.footer-info .footer-info__left {
  margin-right: 45px;
}
.footer-info .footer-info__left img {
  margin-bottom: 10px;
}
.footer-info .footer-info__left p {
  color: #c18f59;
}
@media (max-width: 620px) {
  .footer-info .footer-info__left {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.footer-info .footer-info__right p {
  margin-bottom: 10px;
  color: rgb(103, 144, 206);
}


.footer-info .footer-info__right .social-icons {
  margin-top: 27px;
}
.footer-info .footer-info__right .social-icons a {
  padding: 9px 19px;
}
@media (max-width: 1250px) {
  .footer-info {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 620px) {
  
  .footer-inner h5 {
    margin-bottom: 20px;
  }
  .footer-info {
    flex-direction: column;
    align-items: center;
  }
}

.footer-contact-form {
  width: 50%;
}

.footer-contact-form .alert{
  text-align: center;
  padding: 10px;
  background: #79c879;
  color: #fff;
  margin-bottom: 10px;
  display: none;
}

.footer-contact-form .contact-form__input {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.footer-contact-form .contact-form__input input {
  width: 40%;
  padding: 20px;
  border: 1px solid #404040;
  background-color: #282828;
  color: #c18f59;
}
.footer-contact-form .contact-form__input input::placeholder {
  color: #aaa;
}
@media (max-width: 1250px) {
  .footer-contact-form .contact-form__input input {
    width: 45%;
  }
}
@media (max-width: 520px) {
  .footer-contact-form .contact-form__input input {
    width: 100%;
  }
}
.footer-contact-form textarea {
  box-sizing: border-box;
  height: 90px;
  width: 100%;
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #404040;
  background-color: #282828;
  resize: none;
  color: #aaa;
}
.footer-contact-form .submit-button {
  padding: 19px 50px;
  text-transform: uppercase;
  font-size: 12px;
  color: #fff;
  background-color: #c18f59;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.3s ease;
}
.footer-contact-form .submit-button:hover {
  background-color: #777;
}
@media (max-width: 1250px) {
  .footer-contact-form {
    width: 100%;
  }
}

.footer-bottom {
  padding: 25px 0;
  background-color: #2d2d2d;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
}
.footer-bottom-inner p {
  color: #777;
}
.footer-bottom-inner a {
  color: #c18f59;
  text-decoration: none;
  transition: 0.3s ease;
}
.footer-bottom-inner a:hover {
  color: #777;
}

@media (max-width: 992px) {
  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
  }
  .footer-bottom-inner p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
