/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */


   @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200..1000&display=swap');

   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  } 

  :root{
    --primary-color: #F1A61C
  }

  html {
    scroll-behavior: smooth;
    overflow: auto;
  }
  body{
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: rgb(0, 0, 0);
    background-color: #FFFFFF;
  }

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

ul, ol{
  margin: 0;
  padding: 0;
}
h1, li, h2, h3, h4{
  margin: 0;
  padding: 0;
  font-weight: inherit;
  line-height: inherit;
}
p{
  margin-bottom: 20px;
}
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}


fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}


textarea {
  resize: vertical;
}


.hidden,
[hidden] {
  display: none !important;
}

.subheading-three {
	font-size: 22px;
	line-height: 30px;
	font-weight: bold;
}

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}
img{
  max-width: 100%;
}
ul{
  list-style: none;
}
a{
  text-decoration: none;
  color: rgb(66, 134, 240);
}
a:hover{
  text-decoration: solid;
  color: #F1A61C;
}

.sec-p{
  padding: 60px 0;
}

.title{
  font-size: 55px;
  line-height: 63px;
  color: rgb(9, 10, 11);
  font-weight: 600;
}
.menu-container {
  margin-top: 50px; 
  Display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  border: 1px solid #36383F;
  border-radius: 20px;
  width: 94%;
  height: 91%;
  background-color: #F5F6FA;
  overflow: hidden;
}
nav {
  background-color: #1E1E23;
  height: 65px;
}


#menuToggle {
  display: flex;
  flex-direction: column;
  position: relative;
  top: 25px;
  left: 25px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: flex;
  width: 40px;
  height: 32px;
  position: absolute;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
}

#menuToggle span
{
  display: flex;
  width: 29px;
  height: 2px;
  margin-bottom: 5px;
  position: relative;
  background: #ffffff;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 5px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-3px, -1px);
  background: #36383F;
}
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

#menu
{
  position: absolute;
  width: 180px;
  height: 400px;
  box-shadow: 0 0 10px #85888C;
  margin: -50px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  background-color: #F5F6FA;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  transition-delay: 2s;
}

#menuToggle input:checked ~ ul
{
  transform: none;
}

/* Homepage Css */

header.header-section {
  background-color: #000;
  padding: 10px 0px;
}

.left-menu-bar {
  display: flex;
  align-items: center;
}
.logo {
  margin-right: 30px;
}
.logo a {
  color: #fff;
  font-size: 17px;
  line-height: 18px;
  font-weight: 700;
}
ul.menu li {
  display: inline-block;
}
ul.menu li a {
  position: relative;
  color: #fff;
  font-size: 13px;
  line-height: 21px;
  font-weight: 500;
  padding: 12px;
  opacity: .7;
  transition: opacity .35s ease-in-out;
  text-transform: uppercase;
}

ul.menu li a:before {
  content: "";
  position: absolute;
  bottom: 8px;
  height: 1px;
  background: #fff;
  opacity: .25;
  transition: all .35s ease-in-out;
}
ul.menu li a:hover:before {
  width: 70%;
  opacity: .5;
}

ul.social-menu {
  text-align: right;
}
ul.social-menu li {
  display: inline-block;
  padding: 12px;
}
ul.social-menu li a {
  color: #fff;
  opacity: .8;
  font-size: 13px;
  line-height: 21px;
}
ul.social-menu li a:hover{
  opacity: .9;
}

.hero-area {

}
.hero-bg {
  background-color: #EDEDED;
  padding: 20px;
}
.hero-left h1 {
  font-size: 42px;
  line-height: 48px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-left p {
  font-size: 22px;
  line-height: 31px;
  color: rgb(102, 102, 102);
}

.hero-img img{
  width: 100%;
}

.button-div a {
  background-color: #333;
  color: #fff;
  font-size: 24px;
  line-height: 26px;
  font-weight: 500;
  padding: 10px 30px;
  border-radius: 30px;
  display: inline-block;
}
.button-div a:hover{
  background-color: var(--primary-color);
}
.worked-area {
  padding-bottom: 60px;
}
.worked-area h2 {
  font-size: 38px;
  line-height: 44px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}
.worked-area p {
  font-size: 18px;
  line-height: 25px;
  text-align: center;
}
.worked-logo {
  text-align: center;
}
.worked-logo a img {
  width: 200px;
  height: 160px;
}

.testimonial-area {
  padding-bottom: 60px;
}
.testimonial-area h2{
  font-size: 38px;
  line-height: 44px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

.testimonial {
  background-color: #f5f5f5;
  padding: 25px;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.author-img img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.author-img {
  flex: 0 0 auto;
  width: 90px;
  margin-right: 20px;
}
.testimonial-text {
  flex: 0 0 auto;
  width: calc(100% - 115px);
}
.testimonial-text p {
  font-size: 20px;
  line-height: 28px;
  font-style: italic;
}
.testimonial-text h5 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}
.testimonial-text h5 span {
  font-weight: 400;
}

.cta-area {
  padding-bottom: 60px;
}

.cta-area h2 {
  font-size: 38px;
  line-height: 44px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}
.cta-area p{
  font-size: 18px;
  line-height: 25px;
  text-align: center;
}

.cta-button {
  display: flex;
  justify-content: center;
}
.cta-button .button-div{
  padding: 0 20px;
}

.footer {
  background-color: #000;
  padding: 20px 0;
}

.footer p {
  font-size: 13px;
  line-height: 18px;
  color: #fff;
  margin-bottom: 0;
}
ul.footer-menu {
  text-align: right;
}
.footer ul li{
  display: inline-block;
  padding: 0 10px;
}
.footer ul li a {
  color: #fff;
  opacity: .6;
  font-size: 13px;
  line-height: 18px;
}
.footer ul li a:hover{
  opacity: .9;
}

/* Blog Page  */

.blog-wrapper {
  
}
.blog-post {
  margin-bottom: 20px;
}
.blog-post img {
  width: 100%;
  object-fit: fill;
  height: 230px;
  border-radius: 5px;
}
.blog-content {
  margin-top: 20px;
}
.category-list {
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}
.blog-content h2 a {
  font-size: 22px;
  line-height: 25px;
  font-weight: 600;
  color: rgb(21, 23, 26);
  margin-bottom: 10px;
  display: block;
}
.archives-title {
  text-align: center;
  margin-bottom: 30px;
}

.blog-content p a{
  color: rgb(115, 138, 148);
}
.blog-author {
  margin-top: 20px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.blog-author img {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}
.post-info {
  flex: 0 0 auto;
}
.post-info p {
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  color: rgb(66, 72, 82);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0;
}
.post-info a:hover{
  text-decoration: solid;
  text-decoration-color: #333;
}
.post-info span {
  color: rgb(146, 163, 171);
  font-size: 12px;
  line-height: 17px;
  font-weight: 400;
  display: block;
}

/* Single Page  */

.single-wrapper {
  
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #ddd;
  margin: 20px 0;
}
.para {
  margin-top: 30px;
}
.para h3 {
  font-size: 22px;
  line-height: 30px;
  font-weight: bold;
}
.para p {
  font-size: 20px;
  line-height: 32px;
  color: rgb(49, 59, 63);
}
.para ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    margin-top: 15px;
}

.para ul li {
    font-size: 20px;
    line-height: 32px;
    color: #15171a;
}

/* About Page  */

.about-wrapper {
  
}
.about-content h1 {
  margin-bottom: 30px;
}
.about-content p {
  font-size: 20px;
  line-height: 32px;
  color: rgb(49, 59, 63);
}
.about-content p a {
  color: #15171a;
  text-decoration: underline;
  text-decoration-color:#15171a6e ;
}

ul.work-with-me {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
  margin-top: 15px;	
}

ul.work-with-me li {
  font-size: 20px;
  line-height: 32px;
  color: #15171a;
}

/* Resume Page  */

.resume-wrapper h1 {
  margin-bottom: 30px;
}
.resume-wrapper p {
  font-size: 20px;
  line-height: 32px;
  color: rgb(49, 59, 63);
}
.resume-wrapper p a {
    color: #15171a;
    text-decoration: underline;
    text-decoration-color: #15171a6e;
}
ul.resume-list {
  list-style: disc;
  padding-left: 20px;
  margin-top: 15px;	
  margin-bottom: 20px;
}
ul.resume-list li a {
  font-size: 20px;
  line-height: 32px;
  color: #15171a;
  text-decoration: underline;
}
ul.resume-list li a:hover{
  color: rgb(66, 133, 244);
}
.resume-wrapper span {
  font-size: 20px;
  line-height: 32px;
  color: rgb(49, 59, 63);
}
.resume-wrapper span a{
  color: #15171a;
  text-decoration: underline;
}
.resume-wrapper span a:hover{
  color: rgb(66, 134, 240);
}


.error-page {
  text-align: center;
  height: 80vh;
}
.error-page h1{
  margin-bottom: 30px;
}