@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}

section {

    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;

}

header {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

header .logo {

    position: relative;
    max-width: 150px;

}

header ul {

    position: relative;
    display: flex;

}

header ul li {

    list-style: none;

}

header ul li a {

    display: inline-block;
    color: #333;
    font-weight: 400;
    margin-left: 40px;
    text-decoration: none;

}

header ul li a:hover {

    color: #017143;

}

.content {

    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.content .textBox {

    margin-top: -40px;
    position: relative;
    max-width: 600px;

}

.content .textBox h2 {

    text-transform: uppercase;
    color: #333;
    font-size: 3.1em;
    line-height: 1.2em;
    font-weight: 500;

}

.content .textBox h2 span {

    color: #017143;
    font-size: 1.6em;
    font-weight: 900;

}

.content .textBox p {

   font-size: 1.1rem;

}

.content .textBox a {

    display: inline-block;
    margin-top: 20px;
    padding: 8px 20px;
    background: #017143;
    color: #fff;
    border-radius: 40px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;

}

.content .imgBox {

    width: 600px;
    display: flex;
    justify-content: flex-end;
    padding-right: 50px;
    margin-top: 50px;

}

.content .imgBox img {

    max-width: 340px;
    max-height: 500px;

}

.thumb {

    max-width: 340px;
    max-height: 500px;
    position: absolute;
    left: 50%;
    bottom: 10px;
    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: 60px;

}

.sci {

    position: relative;
    top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #111;
    transition: 0.5s ease;

}

.sci a {

    list-style: none;
    color: #111;
    font-size: 1.6em;
    transition: 0.3s ease;

    
}

.sci a:not(:last-child) {

    margin-bottom: 15px;

}

.sci a:hover {

    transform: scale(1.3);

}

.circle {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #017143;
    clip-path: circle(600px at right 700px);

}


@media (max-width: 991px) {
   
section {

    padding: 40px;
    padding-bottom: 150px; 

}
   
header {

    padding: 20px 40px;

}
  
header .logo {

    position: relative;
    max-width: 50px;

}
  
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: 1.7em;
    margin: 10px 0;

}
  
header ul li a:hover {

    color: #017143;

}
  
.toggleMenu {

    position: relative;
    width: 40px;
    height: 40px;
    background: url(./assets/images/Menu.png);
    background-position: center;
    background-size: 30px;
    background-repeat: no-repeat;
    z-index: 2;
    cursor: pointer;

}
   
.toggleMenu.active {

    background: url(./assets/images/Close.png);
    background-position: center;
    background-size: 25px;
    background-repeat: no-repeat;
      
}

.content {

    flex-direction: column;
    margin-top: 70px;

}
   
.content .textBox {

    margin-top: 10px;
    position: relative;
    max-width: 600px;
      
}
   
.content .textBox h2 {

    font-size: 4em;
    border-top: 10px;
    font-size: 1.5em;

}

.content .textBox h2 span {

    line-height: 0.9em;
    font-size: 1.5em;

}
   
.content .textBox a {

    font-size: 16px;
    padding: 8px 15px;

}

.content .textBox p {

    margin-top: 10px;
    font-size: 13px;

}
    
.content .imgBox {

    width: 100%;
    display: flex;
    padding-right: 0;
    margin-top: 0.2px;
    justify-content: center;

}
   
.content .imgBox img {

    margin-top: 30px;
    max-width: 150px;

}
   
.thumb li img {

    max-width: 50px; 

}
   
.sci {

    margin-top: -60px;
    right: 0;
    width: 50px;
       
}

.circle {

    clip-path: circle(300px at right 700px);

}

}