@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css");
@import url("http://fonts.googleapis.com/css2?family=comfortaa:wght@300;400;500;600;700&display=swap");

:root {
  --main-color: #2980b9;
  --red: red;
  --light-color: #777;
  --light-bg: #eee;
  --black: #2c3e50;
  --white: #fff;
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  --border: 0.1rem solid rgba(0, 0, 0, 0.2);
}

* {
  font-family: "comfortaa";
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
}

*::selection {
  background-color: var(--main-color);
  color: (cadetblue);
}
::-webkit-scrollbar-track {
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 7rem;
  scroll-behavior: smooth;
}
body {
  background-color: #fff;
}

section {
  padding: 2rem;
  margin: 0 auto;
  max-width: 1200px;
}

.heading {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 3rem;
  color: var(--black);
  text-transform: capitalize;
  padding: 1rem 0;
}
.section-title {
  border-top: 1rem solid var(--main-color);
  border-bottom: 1rem solid var(--main-color);
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  padding: 3.5rem 1.5rem;
  font-size: 5rem;
  text-transform: capitalize;
}

.header {
  height: 78px;
  position: relative;
  top: 0;
  left: 0;
  right: 0px;
  background-color: whitesmoke;
  box-shadow: var(--box-shadow);
  z-index: 2000;
  display: flex;
}
.header .flex {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px;
}
.header .flex .logo {
  position: relative;
  left: 15px;
}
menu-icon {
  font-size: 2.7rem;
  color: var(--black);
  cursor: pointer;
  display: none;
}

.header span {
  margin-bottom: -5px;
  margin-right: 832px;
  display: block;
  padding: 0.1rem 1rem;
  font-size: 3.4rem;
  color: #3b5999;
  font-weight: 520;
}
.header .flex .logo i {
  margin-right: 2.5rem;
  color: dimgray;
  font-weight: 520;
}
.header ul {
  position: absolute;
  top: 50%;
  left: 80%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0px 35px;
  display: flex;
  font-size: 15px;
  border-radius: 10px;
}
.header ul li {
  list-style: none;
  text-align: center;
  display: block;
}
.header ul li:last-child {
  border-right: none;
}
.header ul li a {
  padding: 0 25px;
  right: 70px;
  text-decoration: none;
  display: block;
}
.header ul li a .icon {
  width: 40px;
  height: 40px;
  text-align: center;
  overflow: hidden;
  margin: 0 auto 7px;
}
.header ul li a .icon .fa {
  width: 100%;
  height: 100%;
  line-height: 60px;
  font-size: 20px;
  transition: 0.5s;
  color: #3b5999;
  font-weight: 600;
}
.header ul li a .icon .fa:last-child {
  color: #28a745;
}
.header ul li a:hover .icon .fa {
  transform: translateY(-100%);
}
.header ul .name {
  position: relative;
  height: 21px;
  width: 100%;
  display: block;
  opacity: 1;
  font-size: 18px;
  color: #3b5999;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.header ul li:hover a .name {
  opacity: 1;
  color: #28a745;
}
.menu-icon {
  font-size: 30px;
  color: black;
  cursor: pointer;
  display: none;
}
.menu {
  list-style: none;
  padding: 0;
  display: flex;
}

@media screen and (max-width: 992px) {
  .menu {
    display: none;
    flex-direction: column;
    background-color: whitesmoke;
    width: 100%;
    position: absolute;
    top: 650px;
    left: 0;
  }

  .menu.active {
    display: flex;
  }

  .menu-icon {
    display: block;
  }
}

@media (max-width: 1150px) {
  .header .menu {
    display: none;
  }
  .header span {
    margin-right: 490px;
    font-size: 3rem;
  }
}
@media (max-width: 992px) {
  menu-icon {
    display: block;
    position: relative;
    left: 850px;
    color: black;
    cursor: pointer;
    max-width: 1000px;
  }
  .header span {
    margin-right: 450px;
    font-size: 3rem;
  }
  .header ul {
    padding: 0;
    width: 163%;
    top: 268%;
    display: block;
    overflow: hidden;
    transition: 0.5s;
    background-color: whitesmoke;
    transform: translate(-50%, -50%) scaleY(0);
    transform-origin: top;
  }
  .header ul.active {
    transform: translate(-50%, -50%) scaleY(1);
  }
  .header ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    display: 5px 0;
    display: flex;
  }
  .header ul li a {
    padding: 0px 8px;
  }
  .header ul li a .icon {
    /*     display: inline-block; */
    float: left;
    margin: 2 auto;
  }
  .header ul .name {
    width: auto;
    display: inline-block;
    margin: 13px;
    top: 8px;
  }
}
@media (max-width: 850px) {
  .header span {
    margin-right: 340px;
  }
  .header ul {
    display: none;
  }
}
@media (max-width: 768px) {
  menu-icon {
    display: block;
    position: relative;
    left: 500px;
    color: black;
    cursor: pointer;
  }
  .header span {
    margin-right: 200px;
    font-size: 3rem;
  }
  .header ul {
    padding: 0;
    width: 163%;
    top: 268%;
    display: block;
    overflow: hidden;
    transition: 0.5s;
    background-color: whitesmoke;
    transform: translate(-50%, -50%) scaleY(0);
    transform-origin: top;
  }
  .header ul.active {
    transform: translate(-50%, -50%) scaleY(1);
  }
  .header ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    display: 5px 0;
    display: flex;
  }
  .header ul li a {
    padding: 0px 14px 0px;
  }
  .header ul li a .icon {
    /*      display: inline-block; */
    float: left;
    margin: 2 auto;
  }
  .header ul .name {
    width: auto;
    display: inline-block;
    margin: 13px;
    top: 8px;
  }
}

@media (max-width: 650px) {
  menu-icon {
    color: green;
    left: 500px;
  }
  .header span {
    margin-right: 60px;
  }
}
@media (max-width: 500px){
    .header span {
    margin-right: 40px;
  }
}
@media (max-width: 380px){
    .header span {
    margin-right: -10px;
    font-size: 2.4rem;
  }
}


.dropdown {
  position:relative;
  display: inline-block;
}

.dropdown-button{
    font-size: 18px;
    color:  #3B5999;
} 
.dropdown-button:hover{
     color:  #28a745;
} 

.dropdown-content {
  display: none;
  padding: 10px;
  position: absolute;
  top: 100%;
  margin-left:-30px;
  margin-top: 10px;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
 opacity: 1;
 transition: all 0.4s cubic-bezier(0.68,-0.55,0.265,1.55);
}

.dropdown-content a {
  color: #3B5999;
   padding: 20px 25px;
    margin-top: 10px;
  font-size: 19px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
    display: block;
    padding: 8px;
}

.show {
  display: block;
}
       

 @media screen and (max-width: 992px) {
    .dropdown {
  display: flex;
}
    .dropdown-button{
        margin-left: -5px;
        margin-bottom: -15px;
        background: none;
    }
    .dropdown-content {
        display: none;
        margin-top: -50px;
        left: 180px;
    }
    .dropdown-content a {
        padding: 10px;
    }
    .dropdown-content a:hover{
        padding: 0px;
    }
    .show {
        display:block;
}
}        
@media (max-width: 500px){
         .dropdown-button{
        margin-left: -2px;
    }
}         
        












footer {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 20px;
  background-color: whitesmoke;
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.5);
}
.footer-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 10px;
}
.footer-wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
.footer-wrapper .footer-widget {
  width: calc(20% - 30px);
  margin: 0 15px 30px;
  padding: 0 10px;
}
.footer-wrapper .footer-widget:nth-child(1) {
  width: calc(40% - 50px);
  margin-right: 10px;
}
.footer-wrapper .footer-widget .logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
  margin-right: 15px;
  vertical-align: middle;
}
.footer-wrapper .footer-widget a {
  position: relative;
  font-size: 30px;
  color: black;
  text-align: center;
  font-weight: bold;
}
.footer-wrapper .footer-widget p {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 25px;
}
.footer-wrapper .footer-widget .socials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer-wrapper .footer-widget .socials li {
  list-style: none;
}
.footer-wrapper .footer-widget .socials li a {
  width: 44px;
  height: 44px;
  margin-right: 10px;
  color: #ffffff;
  background-color: rgba(3, 127, 243, 0.5);
  border-radius: 50%;
  font-size: 17px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-out;
}
.socials li {
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.socials li h5 {
  height: 50px;
  width: 85px;
  font-size: 15px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  right: -8px;
  top: 0px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  color: rgba(3, 127, 243, 0.5);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.socials li h5:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  background-color: white;
  bottom: 42px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.socials li:hover h5 {
  top: 60px;
  opacity: 1;
  pointer-events: auto;
}
.socials li:hover a,
.socials li:hover h5 {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.4);
}
.socials favebook:hover a,
.socials facebook:hover h5,
.socials facebook:hover h5:before {
  background: #3b5999;
}

.footer-wrapper .footer-widget h6 {
  color: #585978;
  margin: 10px 0 15px;
  font-size: 20px;
  font-weight: 600;
  padding-top: 8px;
}
.footer-wrapper .footer-widget .links li {
  list-style: none;
  padding: -50px;
}
.footer-wrapper .footer-widget .links li a {
  color: #585978;
  font-size: 16px;
  left: 10px;
  text-decoration: none;
  text-transform: capitalize;
  line-height: 28px;
  transition: all 0.3s ease-out;
  font-weight: 200;
}
.footer-wrapper .footer-widget .links li a:hover {
  color: #037ef3;
}
.copyright-wrapper {
  padding: 20px 0;
  border-top: 1px solid rgba(88, 89, 120, 0.4);
}
.copyright-wrapper p {
  color: rgba(88, 89, 120, 0.6);
  font-size: 23px;
  font-weight: 500;
  text-align: center;
}
.copyright-wrapper p a {
  color: #3b5999;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.copyright-wrapper p a:hover {
  color: dimgray;
}
@media (max-width: 992px) {
  .footer-container {
    max-width: 960px;
  }
  .footer-wrapper .footer-widget,
  .footer-wrapper .footer-widget:nth-child(1) {
    width: calc(50% - 30px);
  }
}
@media (max-width: 768px) {
  .footer-container {
    max-width: 720px;
  }
  .footer-wrapper .footer-widget,
  .footer-wrapper .footer-widget:nth-child(1) {
    width: 100%;
    margin: 0 10px 50px;
  }
}

