.info {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9999999;
    margin: 1.5rem;
  }
  
  /*@import url(https://fonts.googleapis.com/css?family=Montserrat:700);*/

  *, *::before, *::after {
      box-sizing:border-box;
      padding: 0;
      margin: 0;
      border: 0;
  }
  html {
      /*font-size: 6px;
      font-size: calc(5px + 0.4vw);*/
  }

  blockquote{
    color: rgb(255, 255, 255);
  }


  body {
      /*font-family: 'Montserrat', sans-serif;
    font-weight: 700;
     font-size: 1rem;
      color: rgb(253, 253, 253);
  
      /*background:linear-gradient(90deg,#fff,#aaa);*/
  }
  
  
/*   a {
    text-decoration: none;
    color: rgba(225, 255, 255, .8);
  } */
  /* Slider style */
  .cd-slider {
      position: relative;
      width: 100%;
      height: 300px; /*100vh;*/
      overflow: hidden;
      display: flex;
      
  }
  .cd-slider.ie9 nav div span {
      display: none;
  }
  .cd-slider ul li {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      visibility: hidden;
      -webkit-transition: visibility 0s .6s;
      transition: visibility 0s .6s;
  }
  .cd-slider ul li::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      border-radius: 100%;
      width: 135vh;
      height: 135vh;
      border: solid rgba(0,0,0,0.2);
      border-width: 0;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      pointer-events: none;
      -webkit-transition: border-width .4s .6s;
      transition: border-width .4s .6s;
  }
  .content {

      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-position: 50% 100%;
      background-size: auto 100%;
      background-repeat: no-repeat;
      mix-blend-mode: lighten;
      opacity: 0;
      -webkit-transform: scale(1.2);
              transform: scale(1.2);
      -webkit-transition: opacity .4s .6s, -webkit-transform .4s .6s;
      transition: opacity .4s .6s, -webkit-transform .4s .6s;
      transition: opacity .4s .6s, transform .4s .6s;
      transition: opacity .4s .6s, transform .4s .6s, -webkit-transform .4s .6s;
  }
  .content blockquote {
      position: absolute;
      bottom: 5%;
      left: 10%;/*4%;*/
      z-index: 2;
      max-width: 45%;
  }
  blockquote p {
      font-size: 1.75rem;
      margin-bottom: 1rem;
  }
  blockquote span {
      font-size: 1rem;
  }
  /* current slide
  ---------------------------------*/
  .cd-slider li.current_slide {
      visibility: visible;
  }
  .cd-slider li.current_slide::before {
      border-width: 16rem;
  }
  .cd-slider li.current_slide .content {
      opacity: 1;
      -webkit-transform: scale(1);
              transform: scale(1);
  }
  /* nav
  ---------------------------------*/
  nav div {
      position: absolute;
      top: 50%;
      left: 4%;
      width: 5rem;
      height: 5rem;
      margin-top: -2.5rem;
      list-style: none;
  }
  nav div:last-of-type {
      left: auto;
      right: 4%;
  }
  .prev, .next {
      position: relative;
      z-index: 100;
      width: 40%;
      height: 40%;
      display: block;
      border-radius: 100%;
      -webkit-transition: box-shadow .3s;
      transition: box-shadow .3s;
  }
  .prev::before, .prev::after, .next::before, .next::after {
      content: '';
      position: absolute;
      left: 43%;
      background: #fff;
      width: .4rem;
      min-width: 3px;
      border-radius: 3px;
      height: 34%;
  }
  .prev::before {
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg);
      top: 24%;
  }
  .prev::after {
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg);
      bottom: 24%;
  }
  .next::before, .next::after {
      left: auto;
      right: 43%;
  }
  .next::before {
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg);
      top: 24%;
  }
  .next::after {
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg);
      bottom: 24%;
  }
  .prev:hover, .next:hover {
      box-shadow: 0 0 0 1rem rgba(0, 0, 0, 0.15);
  }
  nav > div > span {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 100%;
      z-index: 5;
      pointer-events: none;
      will-change: width, height;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      -webkit-transition: width .6s, height .6s;
      transition: width .6s, height .6s;
  }
  
  




/*   @import url(https://fonts.googleapis.com/css?family=Open+Sans); */
  #circle-shape-example { 
/*     font-family: Open Sans, sans-serif;  */
    margin: 2rem; 
    font-size: 1.3rem;
  }
  #circle-shape-example p { 
    line-height: 1.8; 
  }
  #circle-shape-example .curve { 
    width: 200px; height: auto;
    min-width: 150px;
    float: left;
    margin-right:2rem; 
    border-radius: 50%;
    -webkit-shape-outside:circle();
    shape-outside:circle();
  }
  
  

  
  
  @-webkit-keyframes scroll {
	0% {
	  transform: translateX(0);
	}
	100% {
	  transform: translateX(calc(-250px * 7));
	}
  }
  
  @keyframes scroll {
	0% {
	  transform: translateX(0);
	}
	100% {
	  transform: translateX(calc(-250px * 7));
	}
  }
  .slider {
	background: white;
	box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
	height: 50px;
	margin: auto;
	overflow: hidden;
	position: relative;
	width: 960px;
  }
  .slider::before, .slider::after {
	background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
	content: "";
	height: 100px;
	position: absolute;
	width: 200px;
	z-index: 2;
  }
  .slider::after {
	right: 0;
	top: 0;
	transform: rotateZ(180deg);
  }
  .slider::before {
	left: 0;
	top: 0;
  }
  .slider .slide-track {
	-webkit-animation: scroll 20s linear infinite;
			animation: scroll 20s linear infinite;
	display: flex;
	width: calc(250px * 14);
  }
  .slider .slide {
	height: 100px;
	width: 250px;
  }

 

  .blog-card {
    display: flex;
    flex-direction: column;
    margin: 1rem auto;
    box-shadow: 0 3px 7px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.6%;
    background: #fff;
    line-height: 1.4;
/*     font-family: sans-serif; */
    border-radius: 5px;
    overflow: hidden;
    z-index: 0;
  }
  .blog-card a {
    color: inherit;
  }
  .blog-card a:hover {
    color: #5ad67d;
  }
  .blog-card:hover .photo {
    transform: scale(1.3) rotate(3deg);
  }
  .blog-card .meta {
    position: relative;
    z-index: 0;
    height: 200px;
  }
  .blog-card .photo {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.2s;
  }
  .blog-card .details,
  .blog-card .details ul {
    margin: auto;
    padding: 0;
    list-style: none;
  }
  .blog-card .details {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100%;
    margin: auto;
    transition: left 0.2s;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px;
    width: 100%;
    font-size: 0.9rem;
  }
  .blog-card .details a {
    -webkit-text-decoration: dotted underline;
            text-decoration: dotted underline;
  }
  .blog-card .details ul li {
    display: inline-block;
  }
  .blog-card .details .author:before {
    /* font-family: FontAwesome; */
    margin-right: 10px;
    content: "";
  }
  .blog-card .details .date:before {
    /* font-family: FontAwesome; */
    margin-right: 10px;
    content: "";
  }
  .blog-card .details .tags ul:before {
    /* font-family: FontAwesome; */
    content: "";
    margin-right: 10px;
  }
  .blog-card .details .tags li {
    margin-right: 2px;
  }
  .blog-card .details .tags li:first-child {
    margin-left: -4px;
  }
  .blog-card .description {
    padding: 1rem;
    background: #fff;
    position: relative;
    z-index: 1;
  }
  /* .blog-card .description h1,
  .blog-card .description h2 {
    /* font-family: Poppins, sans-serif; 
  } */
  .blog-card .description h1 {
    line-height: 1;
    margin: 0;
    font-size: 1.7rem;
  }
  .blog-card .description h2 {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #a2a2a2;
    margin-top: 5px;
  }
  .blog-card .description .read-more {
    text-align: right;
  }
  .blog-card .description .read-more a {
    color: #b35ad6;
    display: inline-block;
    position: relative;
  }
  .blog-card .description .read-more a:after {
    content: "";
    /* font-family: FontAwesome; */
    margin-left: -10px;
    opacity: 0;
    vertical-align: middle;
    transition: margin 0.3s, opacity 0.3s;
  }
  .blog-card .description .read-more a:hover:after {
    margin-left: 5px;
    opacity: 1;
  }
  .blog-card p {
    position: relative;
    margin: 1rem 0 0;
  }
  .blog-card p:first-of-type {
    margin-top: 1.25rem;
  }
  .blog-card p:first-of-type:before {
    content: "";
    position: absolute;
    height: 5px;
    background: #b35ad6;
    width: 35px;
    top: -0.75rem;
    border-radius: 3px;
  }
  .blog-card:hover .details {
    left: 0%;
  }
  @media (min-width: 640px) {
    .blog-card {
      flex-direction: row;
      max-width: 700px;
    }
    .blog-card .meta {
      flex-basis: 40%;
      height: auto;
    }
    .blog-card .description {
      flex-basis: 60%;
    }
    .blog-card .description:before {
      transform: skewX(-3deg);
      content: "";
      background: #fff;
      width: 30px;
      position: absolute;
      left: -10px;
      top: 0;
      bottom: 0;
      z-index: -1;
    }
    .blog-card.alt {
      flex-direction: row-reverse;
    }
    .blog-card.alt .description:before {
      left: inherit;
      right: -10px;
      transform: skew(3deg);
    }
    .blog-card.alt .details {
      padding-left: 25px;
    }
  }
  


  :root {
    /* --primary-color: #010712; */
    --secondary-color: #0d0d0e;
    --bg-color: #FCFDFD;
    --button-color: #000000;
    --h1-color: #3F444C;
    }


     
  /* * {
    margin: 0;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
    } */
    
    .contact-container {
      position: absolute;

      left: 25%;
    display: flex;
    width: 100vw;
    height: 100vh;
    background: var(--bg-color);
   }
    
    /* .left-col {
    width: 45vw;
    height: 100%;
    /* background-image: url("https://images.pexels.com/photos/931018/pexels-photo-931018.jpeg?auto=compress&cs=tinysrgb&dpr=2&w=500"); */
    /* background-image: url("../images/d.PNG");
    background-size: cover;
    background-repeat: no-repeat;
    } */ 
    
    .logo {
    width: 10rem;
    padding: 1.5rem;
    }
    
    .right-col {
    background: var(--bg-color);
    width: 50vw;
    height: 100vh;
    padding: 5rem 3.5rem;
    }


    form {
      width: 31.25rem;
      position: relative;
      margin-top: 2rem;
      padding: 1rem 0;
      }
      
      input, textarea, label {
      width: 40vw;
      display: block;
      }
      
      input::placeholder, textarea::placeholder {
        color: var(--primary-color);
        }
        
        input, textarea {
        color: var(--primary-color);
        font-weight: 500;
        background: var(--bg-color);
        border: none;
        border-bottom: 1px solid var(--secondary-color);
        padding: 0.5rem 0;
        margin-bottom: 1rem;
        outline: none;
        }
        
        textarea {
        resize: none;
        }
        
        button {
        text-transform: uppercase;
        font-weight: 300;
        background: var(--button-color);
        color: var(--bg-color);
        width: 10rem;
        height: 2.25rem;
        border: none;
        border-radius: 2px;
        outline: none;
        cursor: pointer;
        }
        
        input:hover, textarea:hover, button:hover {
        opacity: 0.5;
        }
        
        button:active {
        opacity: 0.8;
        }



  
        #error, #success-msg {
          width: 40vw;
          margin: 0.125rem 0;
          font-size: 0.75rem;
          text-transform: uppercase;
          font-family: 'Jost';
          color: var(--secondary-color);
          }
          
          #success-msg {
          transition-delay: 3s;
          }
          
          @media only screen and (max-width: 950px) {
          .logo {
            width: 8rem;
          }
          h1 {
            font-size: 1.75rem;
          }
          p {
            font-size: .9rem;
          }
          input, textarea, button {
            font-size: 0.65rem;
          }
          .description {
            font-size: 0.3rem;
            margin-left: 0.4rem;
          }
          button {
            width: 7rem;
          }
          .theme-switch-wrapper {
            width: 120px;
          }
          .theme-switch {
          height: 28px;
          width: 50px;
          }
        }



/* 


        .site-footer
        {
          background-color:#26272b;
          padding:45px 0 20px;
          font-size:15px;
          line-height:24px;
          color:#737373;
        }
        .site-footer hr
        {
          border-top-color:#bbb;
          opacity:0.5
        }
        .site-footer hr.small
        {
          margin:20px 0
        }
        .site-footer h6
        {
          color:#fff;
          font-size:16px;
          text-transform:uppercase;
          margin-top:5px;
          letter-spacing:2px
        }
        .site-footer a
        {
          color:#737373;
        }
        .site-footer a:hover
        {
          color:#3366cc;
          text-decoration:none;
        }
        .footer-links
        {
          padding-left:0;
          list-style:none
        }
        .footer-links li
        {
          display:block
        }
        .footer-links a
        {
          color:#737373
        }
        .footer-links a:active,.footer-links a:focus,.footer-links a:hover
        {
          color:#3366cc;
          text-decoration:none;
        }
        .footer-links.inline li
        {
          display:inline-block
        }
        .site-footer .social-icons
        {
          text-align:right
        }
        .site-footer .social-icons a
        {
          width:40px;
          height:40px;
          line-height:40px;
          margin-left:6px;
          margin-right:0;
          border-radius:100%;
          background-color:#33353d
        }
        .copyright-text
        {
          margin:0
        }
        @media (max-width:991px)
        {
          .site-footer [class^=col-]
          {
            margin-bottom:30px
          }
        }
        @media (max-width:767px)
        {
          .site-footer
          {
            padding-bottom:0
          }
          .site-footer .copyright-text,.site-footer .social-icons
          {
            text-align:center
          }
        }
        .social-icons
        {
          padding-left:0;
          margin-bottom:0;
          list-style:none
        }
        .social-icons li
        {
          display:inline-block;
          margin-bottom:4px
        }
        .social-icons li.title
        {
          margin-right:15px;
          text-transform:uppercase;
          color:#96a2b2;
          font-weight:700;
          font-size:13px
        }
        .social-icons a{
          background-color:#eceeef;
          color:#818a91;
          font-size:16px;
          display:inline-block;
          line-height:44px;
          width:44px;
          height:44px;
          text-align:center;
          margin-right:8px;
          border-radius:100%;
          -webkit-transition:all .2s linear;
          -o-transition:all .2s linear;
          transition:all .2s linear
        }
        .social-icons a:active,.social-icons a:focus,.social-icons a:hover
        {
          color:#fff;
          background-color:#29aafe
        }
        .social-icons.size-sm a
        {
          line-height:34px;
          height:34px;
          width:34px;
          font-size:14px
        }
        .social-icons a.facebook:hover
        {
          background-color:#3b5998
        }
        .social-icons a.twitter:hover
        {
          background-color:#00aced
        }
        .social-icons a.linkedin:hover
        {
          background-color:#007bb6
        }
        .social-icons a.dribbble:hover
        {
          background-color:#ea4c89
        }
        @media (max-width:767px)
        {
          .social-icons li.title
          {
            display:block;
            margin-right:0;
            font-weight:600
          }
        } */