@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 .5rem 1rem rgba(0,0,0,.1);
    --border:.1rem solid rgba(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) {
    .header{
        position: fixed;
    }
  .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;
  }
}


#image h1{
    position: relative;
    color: #3B5999;
    font-weight: 900;
    text-align: left;
    font-size: 45px;
    //padding: 10px;
    text-align: center;
    top: 18px;
}
#image img{
    height: 470px;
    width: 100%;
    overflow: hidden;
    //object-fit: cover;
    display: block;
    border-radius: 40px;
    margin: 5px;
    padding: 20px;
}
#image h2{
    color: black;
    font-weight: 800;
    font-size: 26px;
    text-align: left;
     padding-left: 30px;
}
#image h3{
    color:  #28a745;
    font-weight: 800;
    text-align: left;
    font-size: 32px;
    padding: 7px;
    padding-left: 30px;
}
.form-container h2 {
    margin-bottom: 15px;
    font-size: 40px;
    text-align: center;
    font-weight: 800;
    color: #3B5999;
}
 .contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background: #f5f5f5;
  }

  .form-container {
    text-align: center;
  }

  .btn {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 12px 24px;
    font-size: 25px;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
  }

  .btn:hover {
    background-color: #45a049;
    transform: scale(1.05);
  }

#feedbackForm label {
    display: block;
    font-weight: 540;
     font-size: 20px;
    margin-top: 25px;
    padding-left: 9px;
}
 .form-container {
      position: relative;
      background-color: white;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
      padding-bottom: 25px;
      width: 100%;
      max-width: 900px;
    }
    input[type="text"],
    input[type="email"],
    textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
      box-sizing: border-box;
    margin-top: 10px;
    }
    .radio-group {
      gap: 20px;
      margin-top: 10px;
    }

    textarea {
      width: 100%;
      padding: 8px;
      border-radius: 5px;
      border: 1px solid #ccc;
      resize: vertical;
      margin-top: 20px;
      min-height: 100px;
      font-size: 20px;
    }
            .input-box{
                position: relative;
            }
.input-box input{
     width: 100%;
      padding: 8px;
      border-radius: 5px;
      border: 1px solid #ccc;
      resize: vertical;
      font-size: 20px;
            }
            .input-box input::placeholder{
                display: block;
               font-weight: 540;
               font-size: 18px;
            }
#feedbackForm button {
    background: #3B5999;
    font-weight: 500;
    color: white;
    font-size: 20px;
    border: none;
    padding:10px;
    cursor: pointer;
    width: 110px;
    border-radius: 5px;
    margin-left: 10px;
    text-align: center;
    justify-content: center;
    margin-top: 15px;
}

#feedbackForm button:hover {
    background-color: #005bb5;
}
.message{
    font-size: 23px;
    color: #28a745;
    font-weight: bold;
    margin-top: 20px;
}

#interaction {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0; /* Adjust as needed */
    background: white; /* Optional background */
}
.buttons button{
    position: relative;
    background: transparent;
    font-weight: 500;;
    color: black;
    font-size: 20px;
    border: none;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
    padding:20px;
    cursor: pointer;
    width: 438px;
    border-radius: 5px;
    margin-left: 10px;
    text-align: center;
    justify-content: center;
    margin-top: 15px; 
}
.buttons .btn i{
    padding-right: 10px;
    font-size: 23px;
     align-items: center;

}
.buttons button:hover {
    background-color: #3B5999;
    color: white;
}

/* Chatbot Styles */
.chatbot-container {
  width: 100%;
  max-width: 800px; /* Increased from 600px to 720px */
  margin: 40px auto;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
}

.chat-header {
  background: #4CAF50;
  color: white;
  padding: 10px;
  font-size: 2rem;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  text-align: center;
}

.chat-body {
  padding: 20px;
  height: 400px;
  overflow-y: auto;
  font-size: 1.2rem;
}

.bot-message,
.user-message {
  margin-bottom: 12px;
  line-height: 1.5;
  padding: 10px;
  border-radius: 10px;
  max-width: 85%;
}

.bot-message {
  background: #e0f7fa;
  align-self: flex-start;
  font-size: 1.5rem;
}

.user-message {
  background: #c8e6c9;
  align-self: flex-end;
  text-align: right;
}

.chat-footer {
  display: flex;
  padding: 20px;
  gap: 10px;
  justify-content: center;
  font-size: 1.5rem; /* Increased footer font size */
}

#chat-input {
  flex: 1;
  padding: 14px;          /* Increased padding for better appearance */
  font-size: 1.6rem;       /* Increased font size for input text */
  border: 1px solid #ccc;
  border-radius: 6px;
}


#send-btn {
  font-size: 1.8rem;
  background-color: #4CAF50;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 10px auto;
  display: block;
  width: 20%;
  text-align: center;
}

#send-btn:hover {
  background-color: #007BFF;
  transform: translateY(-2px);
}

/* Trigger send on Enter key */
#chat-input {
  flex: 1;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

#chat-input:focus {
  outline: none;
}

.bot-message, .user-message {
    margin: 10px 0;
    padding: 15px;
    border-radius: 5px;
    max-width: 80%;
}
.bot-message {
    background-color: white;
    font-size: 1.5rem; /* Increased font size */
    line-height: 1.6;
    padding: 12px;
    border-radius: 5px;
}
.user-message {
    background-color: white;
    align-self: flex-end;
    text-align: right;
}



.contact .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,35rem);
    column-gap:1.5rem;
    align-items: flex-start;
    justify-content: center; 
}
.contact .box-container .box{
    background-color: var(--white);
    border:var(--border);
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    padding: 3rem 2rem;
    text-align: center;   
}
.contact .box-container .box:hover{
    background-color:azure;
}
.contact .box-container .box i{
    height: 4.5rem;
    width: 5rem;
    line-height: 4.5rem;
    font-size: 2rem;
    color: var(--white);
    background-color: var(--black);
    border-radius: .5rem;
    margin-bottom: 2rem;
}
.contact .box-container .box a{
    display: block;
    padding-top: .5rem;
    font-size: 1.6rem;
    color: var(--light-color);
    line-height: 1.6;
}
.contact-container {
    display:inherit;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 900px;
    margin: auto;
    gap: 20px;
}

@media (max-width: 992px) {
  #image h1{
    top: 88px;
    
}
   #image h2{
    bottom: -100px;
     padding-top: 100px;
}




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;
    font-weight: 300;
  text-align: center;
  font-weight: bold;
}
}
.footer-wrapper .footer-widget p{
    margin-bottom: 30px;
    font-size: 20px;
    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 {
    //display: flex;
    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);
    //background-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;
        }
}   
    
            .flex .logo{
                display: flex;
                column-gap: 10px;
                align-items: center;
                text-decoration: none;
            }
            .flex .logo img{
                width: 60px;
                border-radius: 50%;
            }
            #search-btn{
                font-size: 17px;
                 margin-bottom: 4px;
                cursor: pointer;
                position: relative;
                
            }
            .searchBox{
                position: absolute;
                right: -100%;
                width: 100%;
                height: 100%;
                display: flex;
                background: #fff;
                align-items: center;
                padding: 0 30px;
                transition: 0.5s ease-in-out;
            }
            .searchBox input{
                width: 100%;
                border: none;
                outline: none;
                height: 50px;
                color: #333;
                font-size: 1.25rem;
                background: #fff;
                border-bottom: 1px solid rgba(0,0,0,0.5)
            }
            .searchBox.active{
                right: 0;
            }
            #close-btn{
                opacity: 0;
                visibility: hidden;
            }
            #login-btn{
                 font-size: 17px;
                 margin-bottom: 4px;
               padding-right: 40px;
            }



@media (max-width:768px){
    
    #menu-btn{
        display: inline-block;
        cursor: pointer;
    }
    
    .header .flex .navbar{
        position: absolute;
        top:99%; left: 0; right: 0;
        border-top: var(--border);
        background-color: var(--white);
        padding: 1rem .5rem;
        clip-path:polygon(0 0, 100% 0, 100% 0,0 0);
        transition: .2s linear;
    }
    .header .flex .navbar .active{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    .header .flex .navbar a{
        display: block;
        padding: 1.5rem 2rem;
    }
    .category .box-container{
        grid-template-columns: repeat(auto-fit, 16rem);
    }
    .category .box-container .box{
        flex-flow: column;
        text-align: center;
        
    }
    .section-title{
    font-size: 4rem;
  }
}
@media (max-width:450px){
    
    html{
        font-size: 50%;
    }
    .section-title{
    font-size: 3.5rem;
  }
}




/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-form, .chatbot-container {
        width: 100%;
    }
}




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:dimgrey;
    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;
        }
}   
    