@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Dots&display=swap');
@import url(https://fonts.googleapis.com/css?family=Roboto);
* {
  box-sizing: border-box;
  text-decoration: none;
  padding: 0;
  margin: 0;
}
.index{
  background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url("afb/background.jpg");
  background-size: cover;
  height: 100vh;
  width: 100vw;
  background-repeat: no-repeat;
  color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
}

.navbar {
  background-color: rgba(255, 255, 255, 0.6);
}
.line-1{  
    margin-top: 30vh;
    margin-left: 37%;
    margin-bottom: 5vh;
    border-right: 2px solid rgba(255,255,255,.75);
    font-size: 180%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    color:rgba(255,255,255) ;  
    font-family: 'Sono', sans-serif; 
}
.flags{
  margin: 2vw;
}
.flag{
  width:2vw;
  margin: 0.2vw;
}
/* Animation */
.anim-typewriter{
  animation: typewriter 3s steps(22) 1s 1 normal both,
             blinkTextCursor 500ms steps(22) infinite normal;
}
.anim-typewriterFR{
  animation: typewriterFR 3s steps(22) 1s 1 normal both,
             blinkTextCursor 500ms steps(22) infinite normal;
}
@keyframes typewriter{
  from{width: 0;}
  to{width: 17em;}
}
@keyframes typewriterFR{
  from{width: 0;}
  to{width: 27em;}
}

@keyframes blinkTextCursor{
  from{border-right-color: rgba(255, 255, 255);}
  to{border-right-color: transparent;}
}
.button{
  display: flex;
  justify-content: center;  /* Align Horizontally */
  align-items: top;      /* Align Vertically */
  height: 500px;
  margin-top:0vh;
  text-decoration: underline;
}

.button_slide {
  border: 2px solid rgba(4, 0, 121,0.6);
  border-radius: 0px;
  padding: 18px 36px;
  max-height:7vh;
  display: inline-block;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: inset 0 0 0 0 rgba(4, 0, 121,0.6);
  background-color: transparent;
}
.button_slide{
  text-decoration: none;
  color: white;
}
.button_slide:hover {
  text-decoration: underline;
  background-color: rgba(4, 0, 121,0.6);
  transition: 1s;
  color: white;
 }
 



 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
 ::selection{
   background: #2413a6;
   color: #fff;
 }
.more{
  background-size: cover;
  height: auto;
  background-repeat: no-repeat;
  height: calc(100vh - 8em);
}
 .container{
   max-width: 1100px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   flex-wrap: wrap;
 }
 .container .box{
   width: calc(33% - 10px);
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
 }
 .box {
 margin-top: 100px;
 font-size: 45px;
 }
 .container .box .image{
   margin: 10px 0;
   height: 150px;
   width: 150px;
   padding: 3px;
   border-radius: 50%;
 }
 .box .image img{
   height: 100%;
   width: 100%;
   border-radius: 50%;
   object-fit: cover;
 }
 .box .name_job{
   margin: 10px 0 3px 0;
   color: #000770;
   font-size: 18px;
   font-weight: 600;
 }
 .function p{
   font-size: 18px;
   color: #000770;
   margin-bottom: 5px;
 }
 
 
 .about-me {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 80px;
}
.about-me img {
  width: 40%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;

}
.about-me-text h2 {
  font-size: 30px;
  color: #000000;
  text-transform: uppercase;
  margin: 0;
  font-family: 'Zen Dots', cursive;
}
.about-me-text p {
  font-size: 20px;
  color: #000000;
  margin: 10px 0;
  width: 60%;
}
.team-work {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 80px;
  border-top: 2px solid #eeeeee;
}
.team-work img {
  width: 40%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
 
}
.team-work-text h2 {
  font-size: 30px;
  color: #000000;
  text-transform: uppercase;
  margin: 0;
  font-family: 'Zen Dots', cursive;
}
.team-work-text p {
  font-size: 20px;
  color: #000000;
  margin: 10px 0;
  width:60%;
}
.our-team  {
  font-size: 30px;
  color: #000000;
  text-transform: uppercase;
  margin: 0;
  border-top: 2px solid #eeeeee;
  padding: 40px 80px;
  font-family: 'Zen Dots', cursive;
}
.wrapper{
  position: fixed;
  top: 0;
  right: -100%;
  height: 100%;
  width: 100%;
  background: #000;
  z-index: 10;
  transition: all 0.6s ease-in-out;
}
#active:checked ~ .wrapper{
  right:0;
}
.menu-btn{
  position: absolute;
  z-index: 11;
  right: 20px;
  top: 20px;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.menu-btn span,
.menu-btn:before,
.menu-btn:after{
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 30%;
  width: 40%;
  border-bottom: 2px solid #000;
  transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.menu-btn:before{
  transform: translateY(-8px);
}
.menu-btn:after{
  transform: translateY(8px);
}
.close {
  z-index: 100;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transition:  .6s;
}
/* closing animation */
#active:checked + .menu-btn span {
  transform: scaleX(0);
}
#active:checked + .menu-btn:before {
  transform: rotate(45deg);
  border-color: #fff;
}
#active:checked + .menu-btn:after {
  transform: rotate(-45deg);
  border-color: #fff;
}
.wrapper ul{
  position: absolute;
  top: 60%;
  left: 50%;
  height: 70%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
}
.wrapper ul li{
  height: 10%;
  
}
.wrapper ul li a{
  text-decoration: none;
  font-size: 30px;
  font-weight: 500;
  padding: 10px 30px;
  color: #fff;
  border-radius: 50px;
  margin: 5px 30px;
  opacity: 0;
  transition: all 0.3s ease;
  transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.wrapper ul li a:hover{
  text-decoration: underline;
}
input[type="checkbox"]{
  display: none;
}
.more-title{
  font-family: 'Zen Dots', cursive;
}
.content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  text-align: center;
  width: 100%;
  color: #202020;
}
.content .title{
  font-size: 40px;
  font-weight: 700;
}
.content p{
  font-size: 20px;
  font-weight: 600;
}
#active:checked ~ .wrapper ul li a{
  opacity: 1;
}
.wrapper ul li a{
  transition: opacity 1.2s, transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translateX(100px);
}
#active:checked ~ .wrapper ul li a{
  transform: none;
  transition-timing-function: ease, cubic-bezier(.1,1.3,.3,1); 
  transition-delay: .6s;
  transform: translateX(-100px);
}
.logo-contactpage{
  width: 40vw;
  padding-top: 10vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  margin-left: 30vw;
  position: relative;
  margin-bottom: 0;
}
section{
  margin-top: 200px;
}
.footer-distributed {
  background-color: #292c2f;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  font: normal 16px sans-serif;
  padding: 45px 50px;
}
.footer-distributed .footer-left p {
  color: #8f9296;
  font-size: 14px;
  margin: 0;
}
/* Footer links */

.footer-distributed p.footer-links {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  margin: 0 0 10px;
  padding: 0;
  transition: ease .25s;
}
.footer-distributed p.footer-links a {
  display: inline-block;
  line-height: 1.8;
  text-decoration: none;
  color: inherit;
  transition: ease .25s;
}
.footer-distributed .footer-links a:before {
  content: "·";
  font-size: 20px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 5px;
}
.footer-distributed .footer-links .link-1:before {
  content: none;
}
.footer-distributed .footer-right {
  float: right;
  margin-top: 6px;
  max-width: 180px;
}
.logo-footer{
  width: 30px;
}
.footer-distributed .footer-right a {
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 2px;
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  line-height: 35px;
  margin-left: 3px;
  transition:all .25s;
}
.footer-distributed p.footer-links a:hover{text-decoration:underline;}

#contact {
  width: 100%;
  height: 100%;
}
.section-header {
  text-align: center;
  margin: 0 auto;
  color: rgb(0, 0, 0);
  text-transform: uppercase;
  letter-spacing: 6px;
  font-family: 'Zen Dots', cursive;
  padding-bottom: 20px;
}
.contact-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  max-width: 840px;
}
/* Left contact page */
.form-horizontal {
  max-width: 400px;
  font-family: 'Lato';
  font-weight: 400;
}
.form-control, 
textarea {
  max-width: 400px;
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  letter-spacing: 1px;
  font-family: 'Courier New', Courier, monospace;
}
.send-button {
  margin-top: 15px;
  height: 34px;
  width: 400px;
  overflow: hidden;
  transition: all .2s ease-in-out;
}
.alt-send-button {
  width: 400px;
  height: 34px;
  transition: all .2s ease-in-out;
}
.send-text {
  display: block;
  margin-top: 10px;
  font: 700 12px 'Lato', sans-serif;
  letter-spacing: 2px;
}
.alt-send-button:hover {
  transform: translate3d(0px, -29px, 0px);
}
/* Begin Right Contact Page */
.direct-contact-container {
  max-width: 400px;
}
/* Location, Phone, Email Section */
.contact-list {
  list-style-type: none;
  margin-left: -30px;
  padding-right: 20px;
}
.list-item {
  line-height: 4;
  color: rgb(0, 0, 0);
}
.contact-text {
  font: 300 18px 'Lato', sans-serif;
  letter-spacing: 1.9px;
  color: rgb(0, 0, 0);
}
.place {
  margin-left: 62px;
}
.phone {
  margin-left: 56px;
}
.gmail {
  margin-left: 53px;
}
.contact-text a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  transition-duration: 0.2s;
}
.contact-text a:hover {
  color: rgb(0, 0, 0);
  text-decoration: none;
}
.copyright {
  font: 200 14px 'Oswald', sans-serif;
  color: #555;
  letter-spacing: 1px;
  text-align: center;
}

section {
    padding: 60px 0;
    min-height: 60vh;
}
a, a:hover, a:focus, a:active {
    text-decoration: none;
    outline: none;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-heading h2 {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.site-heading h2 span {
  color: #85C54D;
}

.site-heading h4 {
  display: inline-block;
  padding-bottom: 20px;
  position: relative;
  text-transform: capitalize;
  z-index: 1;
}
.line{
  color: white;
}
.material-icons{
  color: #000;
}

.site-heading h4::before {
  background: #85C54D none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 2px;
  left: 50%;
  margin-left: -25px;
  position: absolute;
  width: 50px;
}

.site-heading {
  margin-bottom: 10rem;
  overflow: hidden;
  margin-top: -5px;
  align-items: center;
}

.carousel-shadow .owl-stage-outer {
  margin: -15px -15px 0;
  padding: 15px;
}

.we-offer-area{
  margin-bottom: 10rem;
}

.we-offer-area .our-offer-carousel .owl-dots .owl-dot span {
  background: #ffffff ;
  border: 2px solid;
  height: 15px;
  margin: 0 5px;
  width: 15px;
}
.we-offer-area .our-offer-carousel .owl-dots .owl-dot.active span {
  background: #85C54D ;
  border-color: #85C54D;
}

.we-offer-area .item {
  background: #ffffff ;
  border-left: 2px solid #85C54D;
  -moz-box-shadow: 0 0 10px #cccccc;
  -webkit-box-shadow: 0 0 10px #cccccc;
  -o-box-shadow: 0 0 10px #cccccc;
  box-shadow: 0 0 10px #cccccc;
  overflow: hidden;
  padding: 30px;
  position: relative;
  z-index: 1;
}

.we-offer-area.text-center .item {
  background: #ffffff ;
  border: medium none;
  padding-bottom: 4rem;
}

.we-offer-area.text-center .item i {
  background: #85C54D ;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #ffffff;
  font-size: 40px;
  height: 80px;
  line-height: 80px;
  position: relative;
  text-align: center;
  width: 80px;
  z-index: 1;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  margin-bottom: 25px;
}

.we-offer-area.text-center .item i::after {
  border: 2px solid #85C54D;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: "";
  height: 90px;
  left: -5px;
  position: absolute;
  top: -5px;
  width: 90px;
  z-index: -1;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
}

.we-offer-area.item-border-less .item {
  border: medium none;
}

.we-offer-area .our-offer-items.less-carousel .equal-height {
  margin-bottom: 30px;
}

.we-offer-area.item-border-less .item .number {
  font-family: "Poppins",sans-serif;
  font-size: 50px;
  font-weight: 900;
  opacity: 0.1;
  position: absolute;
  right: 30px;
  top: 30px;
}
.we-offer-area .item i {
  color: #85C54D;
  display: flexbox;
  font-size: 60px;
  margin-bottom: 20px;
}

.we-offer-area .item h4 {
  font-weight: 600;
  text-transform: capitalize;
}

.we-offer-area .item p {
  margin: 0;
}

.we-offer-area .item i,
.we-offer-area .item h4,
.we-offer-area .item p {
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
}

.we-offer-area .item::after {
  background: #85C54D none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  width: 100%;
  z-index: -1;
}

.we-offer-area .item:hover::after {
  left: 0;
}

.we-offer-area .item:hover i,
.we-offer-area .item:hover h4,
.we-offer-area .item:hover p {
  color: #ffffff !important;
}

.we-offer-area.text-center .item:hover i::after {
  border-color: #ffffff !important;
}

.we-offer-area.text-center .item:hover i {
  background-color: #ffffff !important;
  color: #85C54D !important;
}

.we-offer-area.text-left .item i {
  background: #85C54D none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #ffffff;
  display: inline-block;
  font-size: 60px;
  height: 100px;
  line-height: 100px;
  margin-bottom: 30px;
  position: relative;
  width: 100px;
  z-index: 1;
  text-align: center;
}

.we-offer-area.text-left .item i::after {
  border: 2px solid #85C54D;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: "";
  height: 120px;
  left: -10px;
  position: absolute;
  top: -10px;
  width: 120px;
}
.more-service{
  color: #322E69;
  border-bottom: 1px solid #322E69 ;
}
.more-service:hover{
  color: #322E69;
  border-bottom: 1px solid #322E69;
}
.card-body h3{
  font-size: 1rem;
}
@import url("https://fonts.googleapis.com/css2?family=Catamaran:wght@400;700&display=swap");

:root {
  --primary-color: #333;
  --secondary-color: #444;
  --ternary-color: #555;
  --light-color: #ccc;
  --light-secondary-color: #ddd;
  --light-ternary-color: #eee;
  --overlay-color: rgba(0, 0, 0, 0.7);
}

body {
  font-family: "Catamaran", sans-serif;
  line-height: 1.6;
  color: var(--primary-color);
  font-size: 1.1rem;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
}
.container-web img {
  width: 100%;
  transition: transform .2s;
}
.container-web img:hover{
  transform: scale(1.1);
}

.container-web {
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
}

/* showcase section */

.section-showcase {
  margin: 2rem 0;
}

.section-showcase .container-web {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  justify-content: center;
}


.section-showcase h1 {
  font-size: 3rem;
  color: var(--primary-color);
  line-height: 1.3;
  font-family: 'Zen Dots', cursive;
}

.section-showcase p {
  margin: 1rem 0;
}

.btn-back span{
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  margin-left: 0.5rem;
}
.material-icons:hover{
  color: #322E69;
}

.material-icons{
  margin-top: 1rem;
  margin-left: 0.5rem;
}
.programs img {
  width: 3.5rem;
}
.programs{
  display: flex;
  justify-content: center;
  column-gap: 2rem;
  margin-top: 10rem;
  margin-bottom: 5rem;
  transition: transform .2s;
}

/* begin loading animations*/
.loading {
  width: 100%;
  height: 100%;
  background: #ffffff;
  opacity: 0.9;
  position: fixed;
}

.loading > div {
  width: 60px;
  height: 60px;
  position: absolute;
  left: 50%;
  margin-left: -30px;
  top: 50%;
  margin-top: -30px;
}


.loading > div > div {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: #85C54D ;
  top: 10px;
  left: 10px;
  transform-origin: 20px 20px;
  border-radius: 8px;
  animation: spin-a 2s infinite cubic-bezier(0.5, 0, 0.5, 1);
}

.loading > div > .c2 {
  top: 10px;
  left: auto;
  right: 10px;
  transform-origin: -4px 20px;
  animation: spin-b 2s infinite cubic-bezier(0.5, 0, 0.5, 1);
}
.loading > div > .c3 {
  top: auto;
  left: auto;
  right: 10px;
  bottom: 10px;
  transform-origin: -4px -4px;
  animation: spin-c 2s infinite cubic-bezier(0.5, 0, 0.5, 1);
}
.loading > div > .c4 {
  top: auto;
  bottom: 10px;
  transform-origin: 20px -4px;
  animation: spin-d 2s infinite cubic-bezier(0.5, 0, 0.5, 1);
}

@keyframes spin-a {
  0%   { transform: rotate(90deg); }
  0%  { transform: rotate(90deg); }
  50%  { transform: rotate(180deg); }
  75%  { transform: rotate(270deg); }
  100% { transform: rotate(360deg); }
}
@keyframes spin-b {
  0%   { transform: rotate(90deg); }
  25%  { transform: rotate(90deg); }
  25%  { transform: rotate(180deg); }
  75%  { transform: rotate(270deg); }
  100% { transform: rotate(360deg); }
}
@keyframes spin-c {
  0%   { transform: rotate(90deg); }
  25%  { transform: rotate(90deg); }
  50%  { transform: rotate(180deg); }
  50%  { transform: rotate(270deg); }
  100% { transform: rotate(360deg); }
}
@keyframes spin-d {
  0%   { transform: rotate(90deg); }
  25%  { transform: rotate(90deg); }
  50%  { transform: rotate(180deg); }
  75%  { transform: rotate(270deg); }
  75% { transform: rotate(360deg); }
  100% { transform: rotate(360deg); }
}
.loading > span {
  width: 100px;
  height: 30px;
  position: absolute;
  left: 50%;
  margin-left: -50px;
  top: 50%;
  margin-top: 30px;
  color: #85C54D ;
  font-size: 12px;
  text-align: center;
}
.content { padding: 1.5em; }
/* end loading animation*/

/* Begin Media Queries*/
@media (max-width: 768px) {
  .section-showcase .container-web {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .footer-distributed .footer-left, .footer-distributed .footer-right {
    text-align: center;
  }
  .footer-distributed .footer-right {
    float: none;
    margin: 0 auto 20px;
  }
  .footer-distributed .footer-left p.footer-links {
    line-height: 1.8;
  }
}
@media (max-width:1045px){
  .container .box{
    width: calc(50% - 10px);
    margin-bottom: 20px;
    margin-top: 10px;
  }
  .more{
   background-image: none;
  }
}
@media (max-width:710px){
  .container .box{
    width: 100%;
    margin-top: 10px;
  }
  .more{
   background-image: none;
  }
}
@media only screen and (max-width: 1000px) {
  .line-1{
    margin-left: 20%;
  }
  .flag{
    width:4vw;
  }

 }
 @media only screen and (max-width: 650px) {
  .line-1{
    margin-left: 15%;
    font-size: 4vw;
  }
  .flag{
    width:6vw;
  }

 }
 @media only screen and (max-width: 350px) {
  .flag{
    width:8vw;
  }
 }
@media screen and (max-width: 850px) {
  .contact-wrapper {
    display: flex;
    flex-direction: column;
  }
  .direct-contact-container, .form-horizontal {
    margin: 0 auto;
  }  
  
  .direct-contact-container {
    margin-top: 60px;
    max-width: 300px;
  }    
  .social-media-list li {
    height: 60px;
    width: 60px;
    line-height: 60px;
  }
  .social-media-list li:after {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}
@media screen and (max-width: 569px) {
  .direct-contact-container, .form-wrapper {
    float: none;
    margin: 0 auto;
  }  
  .form-control, textarea {
    
    margin: 0 auto;
  }
  .name, .email, textarea {
    width: 280px;
  } 
  .direct-contact-container {
    margin-top: 60px;
    max-width: 280px;
  }  
  .social-media-list {
    left: 0;
  }
  .social-media-list li {
    height: 55px;
    width: 55px;
    line-height: 55px;
    font-size: 2rem;
  }
  .social-media-list li:after {
    width: 55px;
    height: 55px;
    line-height: 55px;
  }
}
@media screen and (max-width: 410px) {
  .send-button {
    width: 99%;
  }
}
@media screen and (max-width:750px){
  .about-me{
    flex-wrap:wrap-reverse;
  }
  .about-me p{
    width:100%;
  }
  .about-me h2{
    margin-top: 2rem;
  }
  .about-me img{
    width:60%;
  }
  .team-work{
    flex-wrap: wrap-reverse;
  }
  .team-work p{
    width:100%;
  }
  .team-work h2{
    margin-top: 2rem;
  }
  .team-work img{
    width:60%;
  }
}

