@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* below is my main or index page css code */
section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2F4F4F;
    transition: 0.5s;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #800000;
}

header .logo {
    position: relative;
    max-width: 100px;
}

header ul {
    position: relative;
    display: flex;
}

header ul li {
    list-style: none;
}

header ul li a {
    display: inline-block;
    color: #fff;
    font-weight: 300;
    margin-left: 60px;
    text-decoration: none;
    font-size: 2em;
}

header ul li a:hover {
    color: #F4A460;
    background: #4e167b;
    border-radius: 5px;
    border-style: solid;
    border-width: 1px;
	border-color: #fff;
}


footer {
    background-color: #800000;
    padding: 10px;
    text-align: center;
    color: white;
    font-family: "Allerta Stencil", Sans-serif;
    letter-spacing: 3px;
	width: 100%;
	height: auto;
}

.content {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content .textBox {
    position: relative;
    max-width: 600px;
}

.content .textBox h2 {
    color: #F4A460;
    font.size: 4em;
    line-height: 1.5em;
    font-weight: 900;
    text-transform: uppercase;
}

.content .textBox h2 span {
    font-size: 2em;
	text-shadow: 2px 2px 5px #000;
}

.content .textBox p {
    color: #fff;
    font-size: 18px;
	text-align: justify;
}

.content .textBox a {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 20px;
    background: #F4A460;
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    text-transform: uppercase;
}

.content .textBox a:hover{
	background: #fff;
	color: #000;
}


.content .imgBox {
    width: 600px;
    display: flex;
    padding-right: 50px;
    margin-top: 50px;
    justify-content: flex-end;
}

.content .imgBox img {
    max-width: 560px;
}

.thumb {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    display: flex;
}

.thumb li {
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    cursor: pointer;
    transition: 0.5s;
}

.thumb li:hover {
    transform: translateY(-15px);
}

.thumb li img {
    max-width: 40px;
}

.sci {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sci li {
    list-style: none;
}

.sci li a {
    display: inline-block;
    filter: invert(1);
    margin: 5px 0;
    transform: scale(0.6);
}


/* below is Mobile 0r other devices responsive code of the home page */

@media (max-width: 991px) {

    section {
        padding: 40px;
        padding-bottom: 140px;
    }

    header ul {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 1;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.2s;
        visibility: hidden;
        opacity: 0;
    }

    header ul .active {
        visibility: visible;
        opacity: 1;
    }

    header ul li a {
        display: inline-block;
        color: #111;
        font-weight: 400;
        margin-left: 0;
        text-decoration: none;
        font-size: 2em;
        margin: 10px 0;
    }


    toggleMenu {
        position: relative;
        width: 40px;
        height: 40px;
        background: url(menu.png);
        background-position: center;
        background-size: 30px;
        background-repeat: no-repeat;
        z-index: 2;
        cursor: pointer;
    }

    .toggleMenu.active {
        background: url(close.png);
        background-position: center;
        background-size: 25px;
        background-repeat: no-repeat;
        filter: invert(1);
    }

    .content {
        flex-direction: column;
        margin-top: 80px;
    }

    .content .textBox {
        position: rerlative;
        max-width: 100%;
        padding-right: 20px;
    }

    .content .textBox h2 {
        font-size: 3em;
    }

    .content .textBox a {
        font-size: 14px;
        padding: 8px 15px;
    }

    .content .textBox {
        width: 100%;
        display: flex;
        padding-right: 0;
        margin-top: 50px;
        justify-content: center;
    }

    .content .imgBox img {
        max-width: 150px;
    }

    .thumb li img {
        max-width: 30px;
    }

    .sci {
        position: absolute;
        top: 50%;
        right: 0px;
        width: 50px;
        background: rgba(0, 0, 0, 0.2);
        transform: translateY(-50%);
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* Contact form css code */

article {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #927119;
    margin-top: 140px;
}

article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #4e167b;
}

article .container {
    position: relative;
    min-width: 1100px;
    min-height: 560px;
    display: flex;
    z-index: 1000;
}

article .container .contactinfo {
    position: absolute;
    top: 50px;
    width: 400px;
    height: calc(100% - 80px);
    background: #4e167b;
    z-index: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);
}

article .container .contactinfo h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
    text-align: left;
    margin-top: 5px;
}

article .container .contactinfo info {
    position: relative;
    margin: 30px 0;
}

article .container .contactinfo li {
    position: relative;
    list-style: none;
    display: flex;
    margin: 10px 0;
    cursor: pointer;
    align-items: flex-start;
}


article .container .contactinfo li span:nth-child(1) {
    width: 30px;
    min-width: 30px;
}


article .container .contactinfo li span:nth-child(1) img {
    max-width: 100%;
    filter: ionvert(1);
    opacity: 0.5;
}


article .container .contactinfo li span:nth-child(2) {
    color: #fff;
    margin-left: 10px;
    font-weight: 200;
    opacity: 0.5;
}


article .container .contactinfo li:hover span:nth-child(1) img,
article .container .contactinfo li:hover span:nth-child(2) {
opacity: 1;
}


article .container .contactinfo .sci1 {
    position: relative;
    display: flex;
}


article .container .contactinfo .sci1 li {
    list-style: none;
    margin-right: 15px;
}


article .container .contactinfo .sci1 li a {
    text-decoration: none;
}

article .container .contactinfo .sci1 li a img {
    filter: invert(1);
    opacity: 0.5;
    width: 50px;
    height: 50px;
}

article .container .contactinfo .sci li:hover a img {
opacity: 1;
}

article .container .contactForm {
    position: absolute;
    padding: 10px 70px;
    background: #fff;
    width: calc(100%-150px);
    height: 100%;
    box-shadow: 0 50px 50px rgba(0, 0, 0, 0.5);
}

article .container .contactForm h2 {
    color: #0f3959;
    font-size: 24px;
    margin-left: 380px;
}

article .container .contactForm .formBox {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 10px;
    margin-left: 380px;
}

article .container .contactForm .formBox .inputBox {
    position: relative;
    margin: 0 0 25px 0;
}

article .container .contactForm .formBox .inputBox.w50 {
    width: 47%;
}

article .container .contactForm .formBox .inputBox.w100 {
    width: 100%;
}

article .container .contactForm .formBox .inputBox input,
article .container .contactForm .formBox .inputBox textarea {
    width: 100%;
    padding: 5px 0;
    resize: none;
    font-size: 18px;
    font-weight: 300;
    color: #333;
    border: none;
    border-bottom: 1px solid #777;
    outline: none;
}

article .container .contactForm .formBox .inputBox textarea {
    min-height: 120px;
	
}

article .container .contactForm .formBox .inputBox span {
    position: absolute;
    left: 0;
    font-size: 18px;
    font-weight: 300;
    color: #333;
    transition: 0.5s;
    pointer-events: none;
}

/* the focus and validation of text in the inputs and text area when click */
article .container .contactForm .formBox .inputBox input:focus ~ span,
article .container .contactForm .formBox .inputBox textarea:focus ~ span,
article .container .contactForm .formBox .inputBox input:valid ~ span,
article .container .contactForm .formBox .inputBox textarea:valid ~ span {

    transform: translateY(-20px);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #ff568c;
}

article .container .contactForm .formBox .inputBox input[type="submit"] {
    position: relative;
    cursor: pointer;
    background: #0f3959;
    color: #fff;
    max-width: 150px;
    padding: 12px;
}

article .container .contactForm .formBox .inputBox input[type="submit"]:hover {
    background: #4e167b;
	color: orange;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 22px;
}

/* About page css code */

body {
	background: #004285;
    background-image: url('about.png');
	width: 100%;
	
	background-repeat: no-repeat;
 }

.container {
    max-width: 1100px;
     margin-top: 3rem;
    align-items: center;
	}

.image1 {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

h2 {
    color: #F4A460;
    font-size: 4rem;
    font-weight: 400;
    margin-top: 9rem;
}

h3 {
   font-family: 'Playball', cursive;
    color: #F4A460;
    text-transform: capitalize;
	font-size: 60px;
	text-align: center;
	letter-spacing: 2px;
	text-shadow: 2px 2px 5px #000;
}


p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 2rem;
	text-align: justify;
	margin: 0 80px;
}

.btn {
   
    padding: 1rem 2rem;
    background: #F4A460;
    font-size: 2rem;
    text-decoration: none;
    color: #000;
    border-radius: 10px;
    transition: background 0.5s;
    margin-bottom: 3rem;
}

.btn:hover {
    background: #927119;
    color: #fff;
}

/* Our team page css code */

.container {
    margin: 0 10px 0 10px;
    
}

.container.heading span {
    color: #111;
    display: flex;
}

.profiles {
    display: flex;
    justify-content: space-around;
    margin: 20px 20px;
}
 
.profile {
    flex-basis: 460px;
    background: #4e167b;
    border-radius: 50% 50% 0 0;
	
}

.profile p {
    margin: 20px;
	font-size: 16px;
	text-align: left;
	text-align: justify;
}

.profile .profile-img {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    filter: grayscale(100%);
    cursor: pointer;
    transition: 400ms;
}

.profile:hover .profile-img {
    filter: grayscale(0);
}

.user-name{
    margin-top: 40px;
    font-size: 25px;
    text-align: center;
}

.profile h5{
    font-size: 18px;
    color: #ccc;
    text-align: center;
    letter-spacing: 6px;
}


@media only screen and (max-width:1150px){
    .profiles {
        flex-direction: column;
    }

    .profile {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .profile p {
        text-align: center;
        margin: 20px 40px 40px 20px;
        font-size: 20px;
		text-align: justify;
    }
}

@media only screen and (max-width:9000px) {
    .heading {
        font-size: 40px;
        color: #fff;
        text-align: center;
    }

    .heading span {
        font-size: 15px;
        letter-spacing: 6px;
    }

    .profiles {
        margin: 60px 0;
    }
}

/* Vue js css */

.experiment-block {
    padding: 40px 50px 50px 50px;
    color: bisque;
    border-radius: 20px;
    border-style: solid;
	margin: 0 50px;
	font-size: 40px;
	}

#app-model {
    padding: 56px;
    background-color: #4e167b;
    text-align: center;
    border-radius: 20px;
	font-size: 40px;
	color: #fff;
	}

button {
    text-align: center;
    background-color: #4e167b;
    font-size: 30px;
    color: #F4A460;
    cursor: pointer;
    border-radius: 20px;
	display: flex;
	
 }

button:hover{
    background-color: #4e167b;
    color: rgb(34, 32, 2);
}









