@import url('https://fonts.googleapis.com/css2?family=Mozilla+Headline:wght@200..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Mozilla+Headline:wght@200..700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Slabo+27px&display=swap');

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    font-family: "Roboto";
}

#intro {
    /* view height */
    min-height: 100vh;
    background-image: url(../img/pexels-element-digital-1051076.jpg);
    background-position: center;
    background-size: cover;
    box-shadow: inset 100vw 0 rgba(71, 83, 118, 0.92);
    padding: 40px 0;
    
}

.content {
    max-width: 1000px;
    margin: 0 auto;
}

header {
    display: flex;
    justify-content: space-between;
} 

header div {
    display: flex;
    gap: 10px;
    align-items: center;
}

header .logo img {
    width: 32px;
}

header .logo h2 {
    color: white;
    font-size: 26px;
    font-weight: 400;
}

header .auth p {
    color: rgb(170, 170, 170);
    font-style: italic;
    font-weight: 200;
}

header .auth a {
    padding: 5px 10px;
    color: rgb(158, 167, 180);
    background-color: rgb(60, 75, 96);
    border-radius: 5px;
    transition: 0.2s linear;
}

header .auth a:hover {
    background-color: rgb(56, 70, 90);
    color: white;
}

.about-wrapper {
    margin-top: 200px;
    display: flex;
    justify-content: space-between;
}

.about {
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: flex-start;
}

.about h1 {
    color: white;
    font-size: 45px;
    font-family: "Slabo 27px", serif;
    font-weight: 200;
    
}

.about p {
    max-width: 400px;
    color: rgb(197, 210, 229);
    font-size: 21px;
    line-height: 1.8;
}

.about a {
    padding: 15px 45px;
    color: white;
    background-color: rgb(102, 191, 149);
    border: 2px solid rgb(102, 191, 149);
    border-radius: 5px;
    font-size: 30px;
    cursor: pointer;
    transition: 0.2s ease;
}

.about a:hover {
    background-color: transparent;
    color: rgb(102, 191, 149);
}

.about-wrapper img {
    width: 250px;
}

#info {
    padding: 100px 0;
}

#info .content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    
}

.info-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.info-text h2 {
    font-size: 36px;
    font-weight: 400;
    font-family: "Slabo 27px", serif;
    color: rgb(55, 65, 77);
    margin-bottom: 20px;
}

.info-text p {
    line-height: 2;
    text-align: justify;
    color: rgb(74, 89, 108);
}

.info-links {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 50px;
    margin-left: 50px;
}

.info-links a {
    width: 70px;
    height: 70px;
    display: inline-block;
    background-color: rgb(102, 191, 149);
    border-radius: 100px;
    border: 2px solid rgb(102, 191, 149);
}

.info-links a:nth-child(2) {
    background-color: white;
}

#slider {
    position: relative;
    background-color: rgb(82, 173, 129);
}

#slider .content {
    padding-top: 70px;
    color: white;
}

.slider-text {
    width: max-content;
    margin: 0 auto;
}

.slider-text * {
    width: max-content;
}

.slider-text h2 {
    font-size: 36px;
    font-weight: 500;
    font-family: "Roboto", serif;
}

.slider-text p {
    margin-top: 10px;
    font-weight: 100;
}

#slider .content img {
    width: 100%;
    max-width: 1000px;
    position: relative;
    top: 4px;
    margin-top: 50px;
}

#slider button {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(82, 173, 129);
    color: white;
    border: 2px solid white;
    border-radius: 100px;
    position: absolute;
    top: calc(50% - 25px);
    transition: 0.2s ease; 
    background-repeat: no-repeat;
}

#slider button:hover {
    background-color: rgb(93, 186, 141);
    cursor: pointer;
}

#prev-btn {
    left: 75px;
    background-image: url(../img/prev.svg);
    background-position: 65% center;
}

#next-btn {
    right: 75px;
    background-image: url(../img/next.svg);
    background-position: center;
}


#pricing {
    padding: 100px 0;
    background-color: rgb(246, 246, 248);
    text-align: center;
}


#pricing h2 {
    font-size: 30px;
    color: rgb(55, 65, 77);
    margin-bottom: 20px;
}

#pricing p {
    max-width: 500px;
    color: rgb(133, 139, 147);
    margin: 0 auto;
    line-height: 1.8;
}


.plans {
    display: flex;
    justify-content: center;
    margin-top: 70px;
    gap: 50px;
}

.plans ul {
    width: 230px;
    position: relative;
}

.plans ul li {
    list-style: none;
    padding: 15px 0;
}

.plans .title {
    color: white;
    font-size: 20px;
    font-weight: 500;
} 

.plans .price {
    font-weight: 700;
    font-size: 20px;
}

.plans .feature {
    padding: 30px 0px;
    font-size: 18px;
    color: rgb(119, 131, 118);
}

.plans .action {
    padding: 0;
    margin-top: 50px;
}

.plans .action a {
    padding: 15px 0;
    display: block;
    background-color: rgb(76, 89, 108);
    color: white;
    font-size: 20px;
    font-weight: 500;
}
.plans #first .price {
    color: rgb(76, 89, 108);
}

.plans #first li{
    background-color: rgb(233, 238, 242);
}

.plans #first .title, .plans #first .action a {
    background-color: rgb(76, 89, 108);
}

.plans #second .price {
    color: rgb(88, 173, 82);
}

.plans #second li{
    background-color: rgb(223, 235, 223);
}

.plans #second .title, .plans #second .action a {
    background-color: rgb(88, 173, 82);
}

.plans #second::after {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background-color: rgb(247, 203, 81);
    border-radius: 40px;
    position: absolute;
    top: -15px;
    right: -15px;
    background-image: url(../img/check.svg);
    background-position: center;
    background-size: 20px ;
    background-repeat: no-repeat;
}

.plans #third .price {
    color: rgb(83, 161, 173);
}

.plans #third li{
    background-color: rgb(222, 233, 235);
}

.plans #third .title, .plans #third .action a {
    background-color: rgb(83, 161, 173);
}

#test {
    padding: 100px 0;
    text-align: center;
    background-color: rgb(233, 234, 238);
}

#test h2 {
    font-size: 40px;
    font-weight: 600;
    color: rgb(82, 94, 113);
    
}

#video {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 900px;
    background-image: url(../img/desert.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-shadow: inset 100vw 0 rgba(188, 1, 1, 0.586);
    
}


#video button {
    width: 100px;
    height: 100px;
    border: 15px solid white;
    border-radius: 100px;
    background-image: url(../img/play.svg);
    background-color: rgba(222, 176, 176, 0.701);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.5;
    transition: 0.2s ease;
}

#video button:hover {
    opacity: 1;
    cursor: pointer;
}

#contacts {
    padding: 100px 0;
    background-color: rgb(45, 48, 53);
}

.contact-img {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border: 15px solid rgb(57, 57, 57);
    border-radius: 100px;
    background-image: url(../img/mail.png);
    background-position: center;
    background-size: 110%;
    margin-bottom: 100px;

}


#contacts form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.left-contacts{
    display: flex;
    flex-direction: column;
}

#contacts label {
    color: white;
    font-size: 18px;
    margin-bottom: 10px;
}

#contacts label span {
    color: rgb(189, 56, 57);
}

.left-contacts input {
    width: 100%;
    padding: 15px;
    margin-bottom: 30px;
    border: 2px solid rgb(75, 79, 84);
    border-radius: 5px;
    background-color: rgb(46, 49, 54);
}

.right-contacts {
    display: flex;
    flex-direction: column;
}

.right-contacts textarea {
    width: 100%;
    height: 156px;
    padding: 15px;
    margin-bottom: 30px;
    margin-top: 3px;
    border: 2px solid rgb(75, 79, 84);
    border-radius: 5px;
    background-color: rgb(46, 49, 54);
    resize: none;
}

.submit-wrapper {
    display: flex;
    justify-content: flex-end;
}

.submit-wrapper input {
    padding: 15px 45px;
    color: white;
    background-color: rgb(190, 57, 60);
    border: none;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.submit-wrapper input:hover {
    background-color: rgb(220, 72, 75);
}

footer {
    max-height: 100%;
    padding: 50px 0;
    background-color: rgb(42, 45, 52);

}

footer .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    width: max-content;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    color: white;
}

.footer-logo img {
    width: 40px;
}

.footer-logo h2 {
    font-size: 30px;
    font-weight: 400;
}

.footer-logo p {
    color: rgb(107, 108, 109);
    max-width: 500px;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-links button {
    width: 40px;
    height: 40px;
    gap: 30px;
    align-items: center;
    color: rgb(101, 101, 103);
    border: 2px solid rgb(101, 101, 103);
    border-radius: 100px;
    background-size: 20px;
    background-color: rgb(47, 50, 55);
    background-position: center;
    background-repeat: no-repeat;
}


.footer-links button:nth-child(1) {
    background-image: url(../img/fase.svg);
}

.footer-links button:nth-child(2) {
    background-image: url(../img/bird.svg);
}




