
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
}

body.dark {
	background-color: #111;
}

body::-webkit-scrollbar {width: 10px;}
body::-webkit-scrollbar-track {background-color: #ccc;}
body.dark::-webkit-scrollbar-track {background-color: #222;}
body::-webkit-scrollbar-thumb {background-color: #77f3fe; border-radius: 2px;}

h1.title {
    margin: 1rem auto 2rem auto;
    font-size: 4rem;
	line-height: 4.5rem;
	font-family: 'Poppins', serif;
    width: fit-content;
    position: relative;
}

body.dark h1.title {
	background-image: linear-gradient(to bottom right, #f99e9a, #cf3d3d); /**  image+color+clip = gradient  **/
	color: transparent;
	background-clip: text;
}

h1.title::after { /** is a line under title  **/
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 0px; /** was 2px **/
    border-radius: 30px;
    background-color: #43d2fe;
}

h1.title span {
    color: #43d2fe;
}

button.btn {
    font-size: 16px;
	font-weight: 500;
    font-family: "Poppins", serif;
	letter-spacing: .08em;
    width: 160px;
    height: 40px;
    border: 2px solid #c2e15e;
    border-radius: 30px;
    background-color: #c2e15e;
	color: #232323;
    cursor: pointer;
    transition: .25s;
}

button.btn:hover {
    background: transparent;
    color: #c2e15e;
}

/* __________ Start PreLoader __________ */

.preloader {
	background-color: #fff;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;	
}

.preloader.dark_preloader{
	background-color: #fff;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;	
}

body.dark .preloader.dark_preloader {
	background-color: #000;
}

.spinner {
	width: 50px;
	height: 50px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -25px 0 0 -25px;
	font-size: 10px;
	text-indent: -12345px;
	z-index: 10000;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

body.dark .double-bounce1, .double-bounce2 {
	background-color: #000;
}

.dark_preloader .double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #097ec2;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}

/* __________ End PreLoader __________ */

/* __________ Start Header __________ */

header {
    width: 100%;
    height: 10vh;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
}

.navbar {
    width: 80%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo {
    text-decoration: none;
    font-size: 1.25em; /** E47C05 original orange **/
    font-weight: 500;
    color: #097ec2; /** E47C05 original orange **/
}

.logo img {
	width: 1em;
	height: 1em;
}

.navbar .list {
    display: flex;
    align-items: center;
    list-style: none;
}

.navbar .list li {
    padding: 10px 15px;
}

.navbar .list a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    font-weight: 600;
    transition: .25s;
	text-shadow: 1px 1px 2px #333;
    position: relative;
}

body.dark .navbar .list a {
	color: #ccc;
}

.navbar .list a::before, .navbar .list a::after {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    background-color: #43d2fe; /** orig orange e47c05 **/
    transition: .25s;
}

.navbar .list a::before {
    left: 50%;
}

.navbar .list a::after {
    right: 50%;
}

.navbar .list a:hover::before, .navbar .list a.active::before {
    width: 50%;
}

.navbar .list a:hover::after, .navbar .list a.active::after {
    width: 50%;
}

.navbar .list a:hover {
    color: #43d2fe;
}

#menu-btn {
    display: none;
}

#navbar-sticky {
    position: fixed;
    top: 0;
    background-color: white;
    height: 8vh;
    animation: fadeInDown 1s both 0.2s;
}

body.dark #navbar-sticky {
	background-color: #111;
}

/* __________ End Header __________ */

/* __________ Start Hero __________ */

section.hero {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    background: url(../img/hero_light.png);
    background-size: cover;
    background-position: top;
    background-attachment: fixed;
}

body.dark section.hero {
	background: url(../img/hero_dark.png);
	background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero .container {
    width: 80%;
    margin: auto;
}

.hero .greeting {
    position: relative;
    z-index: 1;
}

.hero .greeting::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-40%, -20%);
    width: 2rem;
    height: 2rem;
    background-color: #097ec2;
    border-radius: 50%;
    z-index: -1;
}

.hero .name {
	font-family: Mulish, sans-serif;
    font-size: 4em; /** 46px 88 **/
	font-weight: 300;
	color: #fff;
	text-shadow: 1px 1px 2px  #000;
}

body.dark .hero .greeting,
body.dark .hero .profession {
	color: #ccc;
	text-shadow: 1px 1px 2px #000;
}

.hero .profession {
    font-size: 24px;
}

.hero .description {
    margin-top: 1em;
    width: 50%;
    line-height: 150%;
    letter-spacing: 0.5px;
    color: black;
}

body.dark .hero .description {
	color: #ddd;
	text-shadow: 1px 1px  #000;
}

body.dark .hero .description span {
	color: #fff;
	font-weight: 500;
	font-style: italic;
	text-shadow: 1px 1px  #000;
}

.hero button {
    margin-top: 40px;
}

#prof {
    color: #43d2fe; /** 097ec2 lt blue f69f89 bright coral **/
}

/* __________ End Hero __________ */

/* __________ Start About __________ */

section.about {
    width: 100%;
    margin-bottom: 200px;
}

.about .container {
    width: 80%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
	flex-wrap: wrap;
}

.about .container li {
	list-style-type: none;
}

.about .image {
    display: flex;
    background-color: black;
    padding: 1px;
    position: relative;
    z-index: 1;
}

body.dark .image {
	background-color: #555;
}

.about .image::after, .about .image::before {
    content: "";
    width: 12vw;
    height: 12vw;
    border-radius: 50%;
    background-color: #43d2fe;
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.about .image::before {
    top: 0;
    left: 0;
    transform: translate(-20%, -20%);
}

.about .image::after {
    bottom: 0;
    right: 0;
    transform: translate(20%, 20%);
}

.about .image img {
    width: 30vw;
}

.about .text {
    width: 45vw;
}

.about .text .heading {
	font-family: Mulish, sans-serif;
	font-weight: 400;
    font-size: 30px;
	color: #fff;
}

.about .text .description {
    margin-top: 20px;
	text-align: justify;
    line-height: 130%;
    letter-spacing: 0.5px;
    color: #333;
}

body.dark .about .text,
body.dark .about .text .description,
body.dark .about .text .detail td {
	color: #aaa;
}

.about .text .detail {
    margin-top: 20px;
    letter-spacing: 0.5px;
}

.about .text .detail td {
    padding: 8px 10px;
}

.about .text .detail .ans {
    color: #333;
}

.about .text .btn {
    margin-top: 20px;
}

/* __________ End About __________ */

/* __________ Start Service __________ */

section.service {
    width: 100%;
    margin-bottom: 200px;
}

.service .container {
	width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
	justify-content: center;
	gap: 20px;
}

.service .card {
    text-align: center;
    width: 24vw;
    padding: 30px 20px;
    border: 1px solid #bbb;
    border-radius: 5px;
    transition: .25s;
}

body.dark .service .card {
	border-color: #222;
}

.service .card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: auto;
    background-color: #ccc;
    border-radius: 20px;
    transition: .25s;
	background-color: #77f3fe; /** was #f47a5b **/
}

body.dark .service .card .icon {
	background-color: #77f3fe;
}

.service .card .icon i {
    font-size: 36px;
}

.service .card:hover {
    background-color: #43d2fe50;
}

body.dark .service .card:hover {
    background-color: #43d2fe10;
}

.service .card:hover .icon {
    background-color: #43d2fe;
	transform: scale(1.1);
}

.service .card .heading {
    margin-top: 20px;
    font-size: 22px;
    font-weight: 500;
}

body.dark .card .heading {
	color: #ccc;
}

.service .card .description {
    margin-top: 20px;
    font-size: 15px;
    font-weight: 400;
    color: #333;
    line-height: 150%;
}

body.dark .card .description {
	color: #aaa;
}

/* __________ End Service __________ */

/* __________ Start Portfolio __________ */

section.portfolio {
    width: 100%;
    margin-bottom: 0; /** was 200px **/
	padding-top: 2rem;
}

.portfolio .container {
    width: 80%;
    margin: auto;
}

.portfolio .filter-list {
    list-style: none;
    margin: auto;
    display: flex;
    justify-content: center;
}

.portfolio .filter-list li {
    padding: 5px 15px;
    margin: 5px;
    border: 2px solid #00adff;
    border-radius: 10px;
	color: black;
    cursor: pointer;
    transition: .25s;
}

.portfolio .filter-list li {
	color: #ccc;
}

.portfolio .filter-list li:hover,
.portfolio .filter-list li.active {
    background-color: #00adff;
	color: #222;
}

.portfolio .item-container {
    margin-top: 80px;
}

.portfolio .card {
    display: flex;
    margin: 0.5vw;
}

.portfolio .card img {
    width: 25vw;
}

.portfolio .card .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #0005;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s;
}

body.dark .portfolio .card .text {
	background-color: #0008;
	color: #43d2fe;
	text-shadow: 1px 1px 2px #000;
	text-align: center;
}

.portfolio .card:hover .text {
    opacity: 1;
}

/* Counter */

.counter-container {
    margin-top: 200px;
    width: 100%;
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background: linear-gradient(135deg, #77f3feca, #77f3fe90);
    background-attachment: fixed;
	flex-wrap: wrap;
}

.counter-container .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.counter-container .card h2 {
    font-size: 42px;
    font-weight: 600;
    color: #43d2fe;
}

.counter-container .card h2 span {
    color: #fff;
}

.counter-container .card h3 {
    font-weight: 500;
}

/* __________ End Portfolio __________ */

/* __________ Start Resume __________ */

section.resume {
    width: 100%;
    margin-bottom: 200px;
}

.resume .container {
    width: 80%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
	flex-wrap: wrap;
}

.resume .section {
    width: 50%;
    padding: 20px;
}

.resume .section .title {
    font-size: 30px;
}

body.dark .resume .section .title,
body.dark .resume .card .heading {
	color: #ccc;
}

.resume .card {
    padding: 30px;
    border: 1px solid #bbb;
    border-radius: 10px;
    transition: .25s;
    margin-top: 2vw;
}

body.dark .card {
	border-color: #333;
}

.resume .card:hover {
    border-color: #43d2fe;
}

.resume .card .heading {
    font-size: 20px;
}

.resume .card .year {
    margin-top: 10px;
    font-size: 16px;
}

.resume .card .description {
    margin-top: 10px;
    font-size: 16px;
    line-height: 150%;
    color: #333;
}

body.dark .resume .card .year,
body.dark .resume .card .description {
	color: #aaa;
}

body.dark .resume .card:hover {
    border-color: #77f3fe50;
}

/* __________ End Resume __________ */

/* __________ Start Testimonial __________ */

section.testimonial {
    width: 100%;
    margin-bottom: 200px;
}

.testimonial .container {
    width: 80%;
    margin: auto;
}

.testimonial .card {
    width: 24vw;
}

.testimonial .card .image {
    display: flex;
    width: 10vw;
    border-radius: 50%;
    overflow: hidden;
    background-color: #fff;
    margin: auto;
}

.testimonial .card .image img {
    display: block;
}

.testimonial .card .text {
    text-align: center;
}

.testimonial .card .text .name {
    margin-top: 20px;
    font-size: 24px;
    font-weight: 600;
}

.testimonial .card .text .prof {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 500;
}

.testimonial .card .text .stars {
    margin-top: 10px;
}

.testimonial .card .text .stars i {
    color: #097ec2;
    font-size: 16px;
}

.testimonial .card .text .description {
    margin-top: 10px;
    font-size: 16px;
    line-height: 150%;
    color: #333;

}

body.dark .testimonial .card .text .name,
body.dark .testimonial .card .text .prof {
	color: #ccc;
}

body.dark .testimonial .card .text .description {
	color: #aaa;
}

/* __________ End Testimonial __________ */

/* __________ Start Blog __________ */

section.blog {
    width: 100%;
    margin-bottom: 200px;
}

.blog .container {
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
	flex-wrap: wrap;
}

.blog .card {
    width: 25vw;
}

.blog .card .image {
    display: flex;
    overflow: hidden;
}

.blog .card .image img {
    width: 25vw;
	cursor: pointer;
	transition: .25s;
}

.blog .card:hover img {
    transform: scale(1.1);
}

.blog .card .text {
    margin-top: 10px;
}

.blog .card .text .date {
    font-size: 12px;
}

body.dark .blog .card .text .date {
	color: #ccc;
}

.blog .card .text .heading {
    margin-top: 20px;
    font-size: 22px;
    cursor: pointer;
	transition: .25s;
}

.blog .card .text .heading:hover {
    color: #c2e15e;
}

.blog .card .text .description {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 150%;
    color: #333;
    width: 90%;
}

body.dark .blog .card .text .description {
	color: #aaa;
}

.blog .card .text .read {
    font-size: 14px;
    text-decoration: none;
	color: black;
	transition: .25s;
	color: #097ec2;
}

.blog .card .text .read:hover {
	color: #54B6EF;
}


/* __________ End Blog __________ */

/* __________ Start Contact and Hire __________ */

section.contact, section.hire {
    width: 100%;
    margin-bottom: 200px;
}

section.hire {
	display: none;
}

.contact .container, .hire .container {
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}

.contact form, .hire form {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    gap: 1vw;
}

.contact input, textarea, .hire input, textarea, .hire select {
    height: 34px;
    outline: none;
    padding: 6px;
    resize: none;
    border: 1px solid #aaa;
    background-color: transparent;
    font-family: 'Poppins', sans-serif;
	transition: .25s;
}

body.dark .contact input,
body.dark .contact textarea, 
body.dark .hire input,
body.dark .hire textarea,
body.dark .hire select {
	background-color: #111;
	border-color: #222;
	color: #ccc;
}

.contact input:focus, textarea:focus {
    border-color: #77f3fe; /** little darker coral **/
}

.hire input:focus, textarea:focus {
	border-color: #77f3fe;
}

.contact form div, .hire form div {
    width: 100%;
    display: flex;
    gap: 1vw;
    align-items: center;
    justify-content: space-between;
	flex-wrap: wrap;
}

#name, #cname, #company {
    width: 50%;
}

#cphone, #phonext {
	width: 20%;
}

#email, #cemail, #csubject, #htype {
    width: 50%
}

#subject {
    width: 100%;
}

#message, #cmessage {
    width: 100%;
    height: 10vw;
}

.contact .text, .hire .text {
    margin-left: 50px;
    padding: 30px;
}

.contact .text p, .hire .text p {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 400;
	display: flex;
	align-items: center;
}

body.dark .contact .text p, body.dark .hire .text p {
	color: #ccc;
}

.contact .text p i, .hire .text p i {
	font-size: 22px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: #41c2ea; /** little darker  **/
    color: white;
}

.contact .text p span, .hire .text p span {
    margin-left: 30px;
}

/* __________ End Contact and Hire __________ */

/* __________ Start Footer __________ */

footer {
    width: 100%;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #77f3fe; /** little darker coral **/
}

footer a {
    text-decoration: none;
	color: black;
}

/* __________ End Footer __________ */