@import url('https://fonts.googleapis.com/css2?family=Jost:wght@500&family=Maven+Pro&family=Rock+Salt&display=swap');
 
/*Global styles*/
*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --main-font: 'Maven Pro', sans-serif;
    --secondary-font: 'Jost', sans-serif;
}

hr
{
    color: #fff;
}

header
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 100px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.5s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

header.sticky
{
    background:#FFF;
    padding: 10px 100px;
}

header .logo, .logo a
{
    display: contents;
    color: #666;
    font-size: 2.4rem;
    font-family: var(--secondary-font);
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

header.sticky .logo
{
    color: #666;
}

header ul
{
    position: relative;
    display: flex;
    align-items: flex-end;
}

header ul li, header ul li a
{
    position: relative;
    list-style: none;
    display: inline-block;
    margin: 0 15px;
    color: #111;
    text-decoration: none;
    font-family: var(--secondary-font);
    font-weight: 600;
    letter-spacing: 1;
    font-size: 1.4rem;
    white-space: nowrap;
}

header.sticky ul li a
{
    color: #111;
}

section
{
    padding: 100px;
}

.banner
{
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--main-font);
}

.banner::after
{
  content: '';
  background-color: #FFF;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.5;
}

.textBx
{
    z-index: 1;
}
.about
{
    display: block;
}

.banner h2
{
    color: rgb(0, 0, 0);
    font-family: var(--secondary-font);
    font-weight: 200;
}

.banner h2 span
{
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.banner .action
{
    font-size: 2.5rem;
    display: inline;
    letter-spacing: 1px;
}

.banner .happy
{
    font-size: 1.4em;
    color:blue;
}
.banner .thumbs
{
    font-size: 1em;
    color:blue;
}
.btn, .btn a
{
    color: #fff;
    background-color: #0097e6;
    box-shadow: none;
    font-weight: 600;
    border: none;
    padding: 10px 20px;
    margin: 16px 0;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}
.carousel
{
    text-align: left;
    display: inline-block;
    width: 100%;
}
.banner .innerSlide
{
    overflow: hidden;
 	display: inline;
    line-height: 40px;
    white-space: nowrap;
}
.banner .innerSlide .arrow
{    
    font-family: 'Rock Salt', cursive;
    font-size:2rem;
    color:black;
    text-align: left;
}
.banner .innerSlide .item 
{
    position: absolute;
    animation: rotate 10s linear infinite 0s;
    opacity: 0;
    font-family: 'Rock Salt', cursive;
    font-size:1.7rem;
    color:blue;
    text-align: left;
    margin-left: 10px;
    margin-top: 8px;
    white-space: nowrap;
}
.innerSlide .item:nth-child(2){
	animation-delay: 3s;
}
.innerSlide .item:nth-child(3){
	animation-delay: 6s;
}
@keyframes rotate{
	0% { opacity: 0;}
	5% { opacity: 0; transform: translateY(-50px); }
	10% { opacity: 1; transform: translateY(0px); }
	25% { opacity: 1; transform: translateY(0px); }
	30% { opacity: 0; transform: translateY(50px); }
    80% { opacity: 0;}
	100% { opacity: 0; }
}

.heading
{
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: #0097e6;
    font-size: 3rem;
    font-family: var(--secondary-font);
    font-weight: 400;
}

.about-content
{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

.content-side
{
    max-width: 650px;
}

.content-side h3
{
    font-size: 1.4rem;
    font-family: var(--secondary-font);
    text-align: center;
}
.content-side p
{
    font-size: 1.2rem;
    font-family: var(--secondary-font);
    font-weight: 200;
    line-height: 1.6rem;
    text-align: left;
    color: #333;
    padding-right:15px;
}

.content-side i
{
    color: #0066FF;
    padding-left: 10px;
}

.btn-resume
{
    margin-top: 30px;
}

.my-img
{
    max-width: 330px;
    width: 100%;
    height: auto;
    border-radius: 6px;
    border-right: 6px solid #0097e6;
    border-bottom: 2px solid #0097e6;
}

/* -------------------------------- values --------------------------------------- */
.value-heading
{
    margin-bottom: 0;
}

.values p
{
    text-align: center;
    color: #111;
    font-size: 1.1rem;
    font-family: var(--secondary-font);
    /* margin-top: -20px; */
}

.value-contents
{
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.value-content
{
    max-width: 33.33%;
    width: 100%;
    padding: 30px 16px 16px 16px;
    text-align: center;
    align-items: center;
    font-family: var(--secondary-font);
}

.value-icon
{
    color: #0097e6;
    font-size: 2rem;
    border: 1px solid #0097e6;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.value-icon:hover
{
    color: #fff;
    background-color: #0097e6;
    animation: pop 0.3s linear 1;
    animation-duration: .4s;
}

.value-content h3
{
    color: #0097e6;
    font-size: 1.5rem;
    margin: 14px 0;
}

.value-content p
{
    font-weight: 500;
    font-size: 1.2rem;
}

/*------------------------------ Experience section ----------------------------*/
.experience p
{
    color: #111;
    font-family: var(--secondary-font);
}

.experience-section .experience
{
	display: flex;
    margin-top: 50px;
    width: 100%;
    justify-content: space-evenly;
}

.experience-section .image
{
	flex: 25%;
	overflow: hidden;
	cursor: pointer;
}

.experience-section .experience .expitem
{
    display: inline-block;
    position: relative;
    padding-bottom: 20px;
    font-family: var(--secondary-font);
    width: 300px;
}

.experience-section .experience .expitem h4
{
    font-size: 1.5rem;
    color:#0097e6;
    padding-top: 20px;
}

.experience-section .experience .expitem .xp p
{
    font-size: 1.2rem;
    color: #333;
}

.experience-section .experience .expitem .creds
{
    display: flex;
    flex-wrap: wrap;
    max-width: 300px;
    padding-top: 8px;
}
.experience-section .experience .expitem .cert
{
    display: inline-block;
}
.experience-section .experience .expitem ul

{
    list-style: none;
}

.experience-section .experience .expitem .tactical
{
    color: #333;
    display: block;
    padding:0;
    font-size: 1.2em;
}

.experience-section .experience .expitem.tac
{
    padding-right: 15px;
}

.experience-section .experience .expitem .education
{
    display: flex;
    width:100%;
}

.education .degree
{
    display:block;
    width: 60%;
    font-size: 1.2rem;
}

.education .school
{
    display:inline;
}

.experience-section .experience .expitem .xp 
{
    box-sizing: border-box;
}

.experience-section .experience .expitem .xp input
{
    display: none;
}

.experience-section .experience .expitem .xp label
{
    position: relative;
    cursor: pointer;
}
.experience-section .experience .expitem .xp label::after
{
    display: inline-block;
    content: "+";
    color:#0097e6;
    transition: all 0.4s;
    font-family: 'Menlo', 'Lucida Console', 'Monaco', 'Consolas', monospace;
}

.experience-section .experience .expitem .xp input:checked ~ label::after 
{
    content: "-";
}

.experience-section .experience .expitem .xp .expandable
{
    font-size: 1.2rem;
}

.experience .expitem .xp .expandablecontent
{
    max-height: 0;
    background: #FFF;
    transition: max-height 0.3s;
    overflow: hidden;
    box-shadow: 5px 5px 3px #999;
    max-width: 300px;
}

.expandablecontent span
{
    color:#0097e6;
    padding-top: 5px;
    font-size: 1.2rem;
}

.experience-section .experience .expitem .xp .expandablecontent p
{
    padding: 10px;
    font-size: 1.1rem;
    color:#111
}
.experience-section .experience .expitem .xp input:checked ~ .expandablecontent {
    max-height: 100vh;
}

/* ------------------------------ Contact ----------------------------------- */
.contact
{
    background-color: #111;
}

.contact .heading
{
    width: 100%;
    text-align: center;
    margin-bottom: 0px;
    color: #ffffff;
    font-size: 3rem;
    font-family: var(--secondary-font);
    font-weight: 800;
}

.contact .sub-heading
{
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
    font-family: var(--secondary-font);
}

.contact-info
{
    display: flex;
    justify-content: center;
    margin: 20px 0 0 0;
    min-width: 40%;
}

.contact-form-bx h3, .contact-info-bx h3
{
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--secondary-font);
    margin-bottom: 10px;
}

.contact-info-bx
{
    position: relative;
    display: flex;
    flex-direction: row;
}

.contact-info-bx a
{
    color:white;
}

.contact-info-bx .box
{
    position: relative;
    padding: 20px 0;
    display: flex;
}

.contact-info-bx .socialBox
{
    padding-left:40px;
    padding-right: 20px;
    padding-top: 20px;
    display: inline-flex;
    flex-direction:column;
}

.contact-info-bx .socialBox .text
{
    color: #fff;
    font-family: var(--secondary-font);
    display: inline-block;
}
.contact-info-bx .socialBox .text h3
{
    padding-left:40px;
}

.contact-info-bx .socialBox .socialFrame
{
    display: inline-flex;
}

.contact-info-bx .socialBox .socialFrame .text
{
    padding-left:0px;
}

.contact-info-bx .socialBox .icon
{
    min-width: 40px;
    color: #fff;
    display: inline-block;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

.contact-info-bx .box .icon
{
    min-width: 40px;
    padding-top: 20px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

.contact-info-bx .box .stack
{
    position: relative;
    display: block;
    color: #fff;
    font-size: 1.5rem;
    justify-content: left;
}

.contact-info-bx .box .text
{
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    font-size: 1.1rem;
    color: #fff;
}

.contact-info-bx .text h3
{
    font-weight: 600;
    color: #2196f3;
}

.contact-info-bx .box .text p
{
    color: #fff;
    font-size: 1rem;
    font-family: var(--secondary-font);
    line-height: 1.3rem;
}

.contact-info-bx .box .text span
{
    font-size: .8rem;
    color:#dfe4ea;
}
/* -------------------------------Copyright------------------------------- */
.copyright
{
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px;
}

.copyright p
{
    text-align: center;
    color: #fff;
    font-size: .9rem;
    font-family: var(--secondary-font);
}

/* ----------------------- Responsive ------------------------------------ */
@media (max-width: 991px)
{
    section
    {
        padding: 50px 20px;
    }

    .toggle.active .logo
    {
        color: #000;
    }
    
    header .logo, .logo a
    {
        display: inherit;
    }

    header, header.sticky
    {
        background: #fff;
        padding: 10px 50px;
        /* z-index: 1000; */
    }

    .menu
    {
        position: fixed;
        top: 0;
        left: -100%;
        display: block;
        padding: 100px 50px;
        text-align: center;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: 0.5s;
        z-index: 999;
        border-top: 1px solid #dfe4ea;
    }

    .menu.active
    {
        left: 0;
    }

    .menu li
    {
        display: block;
    }

    .header ul li, header ul li a
    {
        color: #111;
        font-size: 1.2rem;
        margin: 10px;
        text-transform: uppercase;
    }
    .toggle
    {
        width: 40px;
        height: 40px;
        cursor: pointer;
        z-index: 1000;
    }
    .toggle.active
    {
        background-position: center;
        background-repeat: no-repeat;
        background-size: 30px;
        cursor: pointer;
        z-index: 1000;
    }
 
    .banner
    {
        padding: 150px 50px 100px;
    }

    .banner h2 span
    {
        font-size: 5rem;
    }
    .banner .happy
    {
        font-size: 2rem;
    }
    .banner .thumbs
    {
        font-size: 2rem;
    }
    .banner .action
    {
        font-size: 2.5rem;
    }
    .heading, .contact .heading
    {
        font-size: 2rem;
    }
    .banner .innerSlide
    {
        display: block;
        margin-left: 150px;
        margin-top: 20px;
    }
    .banner .innerSlide .arrow
    {
        font-size:3rem;
    }
    .banner .innerSlide .item
    {
        font-size: 2rem;
        margin-top: 0px;
    }
    .banner .about
    {
        top:-50px;
        position:relative;
    }

    .btn, .btn a
    {
        font-size: 1.4rem;
        font-weight: 400;
        padding: 5px 10px;
        margin-top: 80px;
    }

    .about-content
    {
        flex-direction: column;
    }

    .content-side
    {
        order: 2;
    }
    .content-side p
    {
        padding-right: 0px;
    }

    .image-side
    {
        order: 1;
        margin-bottom: 20px;
    }

    .value-contents
    {
        flex-direction: column;
    }

    .value-content
    {
        max-width: 100%;
    }
    .experience-section .experience .expitem p:hover ~span
    {
        width:70%;
    }
    .experience-section .experience 
    {
        flex-direction: column;
    }
    .contact-info
    {
        flex-direction: column;
    }
}
@media (max-width: 700px)
{
    .banner h2 span
    {
        font-size: 4rem;
    }
    .banner .action
    {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px)
{
    header, header.sticky
    {
        padding: 10px 20px;
    }

    .banner
    {
        padding: 150px 10px 100px;
    }
    .banner h2 span
    {
        font-size: 3rem;
    }
    .banner .action
    {
        font-size: 2rem;
    }
}
@media (max-width: 560px)
{
    section
    {
        padding-left: 50px;
        padding-right: 50px;
        padding-top: 20px;
        padding-bottom: 50px;
    }
    .banner .textBx .carousel .innerSlide .item
    {
        width: 150px;
    }
    .contact-info-bx .socialBox
    {    
        padding-left: 10px;
    }
    .contact-info-bx .socialBox .text h3
    {    
        padding-left: 30px;
    }
    .contact-info-bx .socialBox .socialFrame .text
    {
        padding-left: 0px;
    }
    .contact-info-bx .box .text
    {
        margin-left: 0px;
    }
    .banner h2 span
    {
        font-size: 2.8rem;
        letter-spacing: -1.25pt;
    }
    .banner .action
    {
        font-size: 2rem;
        letter-spacing: -1pt;
    }
    .banner .happy
    {
        font-size: 1.5rem;
    }
    .banner .thumbs
    {
        font-size: 1.5rem;
    }
    .heading, .contact .heading
    {
        font-size: 2rem;
    }
    .banner .innerSlide
    {
        display: block;
        margin-left: 10px;
        margin-top: 15px;
    }
    .banner .innerSlide .arrow
    {
        font-size:1.6rem;
    }
    .banner .innerSlide .item
    {
        font-size: 1.2rem;
        margin-top: 0px;
        white-space: nowrap;
        margin-bottom: 10px;
    }
    .banner .about
    {
        top:-50px;
        position:relative;
    }
    .banner .about .btn a
    {
        font-size: 1.2rem;
    }
    .about .btn-resume a 
    {
        font-size: 1.2rem;
    }
    .copyright p
    {
        font-size: .7rem;
    }
}

@media screen and (max-width: 960px)
{
	.experience-section .image{
		flex: 33.33%;
    }
    
    .testimonial-col
    {
        flex: 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 768px)
{
	.experience-section .image{
		flex: 50%;
	}
}

@media screen and (max-width: 480px)
{
    .experience-section .experience {
        flex-direction: column;
    }

	.experience-section .image{
		flex: 100%;
	}

    .contact-info-bx{
        flex-direction: column;
    }
}
    /* for value icon */
@keyframes pop{
    50%  {transform: scale(1.2);}
}