@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC&display=swap');

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

*{
    font-family: 'Noto Sans TC', sans-serif;
}
body {
    color: #444444;
}

html::-webkit-scrollbar{
    width:5px;
}
html::-webkit-scrollbar-thumb{
    background: linear-gradient(145deg, rgb(123,3,13),rgb(27,22,98));
}

a:hover{
    text-decoration: none;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #1acc8d;
    border-top-color: #d2f9eb;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: rgb(123,3,13);
    color: #fff;
    transition: all 0.4s;
}

.back-to-top i:hover {
    background: linear-gradient(135deg, rgb(123,3,13),rgb(27,22,98));
    color: #fff;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 80px;
    transition: all 0.5s;
    z-index: 997;
}

#header.header-scrolled {
    background: rgba(1, 4, 136, 0.9);
    background: linear-gradient(135deg, rgb(123,3,13),rgb(27,22,98));
    height: 60px;
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
}

#header .logo h1 a, #header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 40px;
}

@media (max-width: 992px) {
    #header {
        height: 64px;
    }
    #header .logo h1 {
        font-size: 28px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    float: left;
}

.nav-menu a {
    display: block;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 0 10px 25px;
    transition: 0.3s;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-menu > ul > li > a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 3px;
    left: 25px;
    background-color: white;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
    visibility: visible;
    width: 25px;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
    color: #fff;
    text-decoration: none;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 25px;
    top: calc(100% - 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
    border-radius: 5px;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: rgb(27,22,98);
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
    color: rgb(123,3,13);
}

.nav-menu .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }
    .nav-menu .drop-down .drop-down:hover > ul {
        left: -100%;
    }
    .nav-menu .drop-down .drop-down > a:after {
        content: "\ea9d";
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: #fff;
}

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #01036f;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
    color: rgb(123,3,13);
    text-decoration: none;
}

.mobile-nav .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down > a:after {
    content: "\eaa1";
}

.mobile-nav .drop-down > a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: linear-gradient(135deg,rgb(123,3,13),rgb(27,22,98));
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    position: relative;
    padding: 120px 0 0 0;
    user-select: none;
}

#hero:before {
    content: "";
    background: linear-gradient(135deg, rgb(123,3,13),rgb(27,22,98));
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero h1 {
    margin: 0 0 20px 0;
    font-size: 40px;
    font-weight: 700;
    line-height: 56px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

#hero h2 {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0.5px;
}

#hero h2 span {
    color: white;
    font-size: 34px;
}

#hero .btn-get-started {
    font-family: Cambria;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    border: 1px solid whitesmoke;
}

#hero .btn-get-started:hover {
    transform: translateX(8px);
}

#hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 991px) {
    #hero {
        padding-top: 80px;
    }
    #hero .animated {
        -webkit-animation: none;
        animation: none;
    }
    #hero .hero-img {
        text-align: center;
    }
    #hero .hero-img img {
        max-width: 50%;
    }
    #hero h1 {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 10px;
    }
    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    #hero h2 span{
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 80%;
    }
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

.hero-waves {
    display: block;
    margin-top: 60px;
    width: 100%;
    height: 60px;
    z-index: 5;
    position: relative;
}

.wave1 use {
    -webkit-animation: move-forever1 10s linear infinite;
    animation: move-forever1 10s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

.wave2 use {
    -webkit-animation: move-forever2 8s linear infinite;
    animation: move-forever2 8s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

.wave3 use {
    -webkit-animation: move-forever3 6s linear infinite;
    animation: move-forever3 6s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }
    100% {
        transform: translate(-90px, 0%);
    }
}

@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }
    100% {
        transform: translate(-90px, 0%);
    }
}

@-webkit-keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}

@-webkit-keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.section-title {
    font-family: Cambria;
    font-size: 32px;
    color: rgb(123,3,13);
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
}

.section-description {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 30px;
}

.section-title-divider {
    width: 50px;
    height: 3px;
    background: rgb(27,22,98);
    margin: 0 auto;
    margin-bottom: 20px;
}


/* About Section
--------------------------------*/
#about {
    background: #fff;
    padding: 80px 0;
    user-select: none;
}

#about .about-img {
    overflow: hidden;
}

#about .about-img img {
    max-width: 100%;
}

@media (max-width: 768px) {
    #about .about-img {
        height: auto;
    }
    #about .about-img img {
        margin-left: 0;
        padding-bottom: 30px;
    }
}

#about .about-content {
    background: #fff;
}

#about .about-title {
    color: rgb(123,3,13);
    font-weight: 700;
    font-size: 28px;
}

#about .about-text {
    line-height: 26px;
    margin-bottom: 15px;
    text-align: justify;
}

#about .about-text:last-child {
    margin-bottom: 0;
}



/* Services Section
--------------------------------*/
#services {
    background: #f6f6f6;
    padding: 80px 0;
    user-select: none;
}

#services .mar1 {
    margin-top: 10px;
}

@media (max-width: 991px) {
#services .mar1 {
    margin-top: -20px;
}
}
@media (max-width: 767px) {
#services .mar1 {
    margin-top: 45px;
}
}

#services .icon-box {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  width: 100%;
}

#services .icon-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 2px 35px 0 rgba(68, 88, 144, 0.2);
}

#services .icon {
    width: 100%;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#services .icon img {
  width: 50%;
  transition: 0.5s;
}

#services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(123,3,13);
}

#services .description {
  font-size: 14px;
  line-height: 24px;
  text-align: justify;
  margin: 0 30px;
  margin-bottom: 12px;
}

#services .sub_ser {
  margin: 5px 30px;
  height: 25px;
  display: flex;
}

#services .sub_ser i{
    font-size: 18px;    
    color: yellowgreen;
    margin-right: 8px;
}
#services .sub_ser a{
    font-size: 15px;    
    color: inherit;
    font-weight: bold;
}
#services .sub_ser a:hover{
    color: rgb(123,3,13);
}

#services .icon-box .apply_button{
    width: 100%;
    margin: 25px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#services .icon-box .apply_button .inner{
    display: flex;
    padding: 2px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg , rgb(123,3,13),rgb(27,22,98));
    transition: all 0.5s ease-in-out;
}
#services .icon-box .apply_button .inner1{
    margin-left: 10px;
}
#services .icon-box .apply_button .inner:hover{
    transform: translateX(5px);
}

#services .icon-box .apply_button .inner a{
    padding: 0 18px;
    height: 34px;
    line-height: 34px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    background: transparent;
    transition: all 0.5s ease-in-out;
}

#services .icon-box .apply_button .inner a:hover{
    color: rgb(123,3,13);
    background: #fff;
}


/* DSC Section
--------------------------------*/
#dsc {
    background: #fff;
    padding: 80px 0 60px 0;
    user-select: none;
}

#dsc .dsc-img {
    overflow: hidden;
}

#dsc .dsc-img img {
    max-width: 100%;
}

@media (max-width: 768px) {
    #dsc .dsc-img {
        height: auto;
    }
    #dsc .dsc-img img {
        margin-left: 0;
        padding-bottom: 30px;
    }
}

#dsc .dsc-content {
    background: #fff;
}

#dsc .dsc-text {
    line-height: 26px;
    margin-bottom: 15px;
    text-align: justify;
    font-size: 15px;
}

#dsc .sub_det{
    margin: 5px 0;
    display: flex;
}
#dsc .sub_det .det_icon{
    margin-right: 5px;
    font-size: 20px;
    line-height: 28px;  
    color: rgb(123,3,13);
}
#dsc .sub_det .det_text{
    font-size: 15px;
    font-weight: 500;
}

.row1
{
    margin: 50px 0;
}

#dsc .back{
    padding: 3px;
    border-radius: 40px 0;
    background: linear-gradient(135deg, rgb(123,3,13), rgb(27,22,98));
    transition: 1s;
}

#dsc .back:hover {
    transform: translateY(-10px);
}

#dsc .icon-box {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  width: 100%;
  border-radius: 38px 0;
  padding: 20px 0;
  background: #fff;
}


#dsc .title {
  font-weight: 700;
  margin: 15px 0;
  font-size: 18px;
  padding: 0 8px;
  text-align: center;
  color: rgb(123,3,13);
}

#dsc .outer{
  margin: 0 30px;
  margin-bottom: 15px;
  margin-top: 30px;
}

#dsc .haddings{
  margin-bottom: 10px;  
  display: flex;
  justify-content: space-between;
  color: rgb(27,22,98);
  font-weight: 600;
  text-align: center;
}
#dsc .data{
  display: flex;
  justify-content: space-between;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
}
#dsc .outer span{
  width: 45%;
  margin: 3px 0;
}

#dsc .applying
{
    margin: 0;
    margin-top: 40px;
}
#dsc .applying .det_text
{
    font-weight: bold;
}
#dsc .dsc_but
{
    width: 100%;
    display: flex;
    margin-top: 30px;
}
#dsc .dsc_but div
{
    padding: 3px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg , rgb(123,3,13),rgb(27,22,98));
    transition: all 0.5s ease-in-out;
}
#dsc .dsc_but .but2{
    margin-left: 20px;
}
#dsc .dsc_but .but1:hover{
    transform: translateX(5px);
}
#dsc .dsc_but .but2:hover{
    transform: translateX(5px);
}
#dsc .dsc_but div a
{
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    background: transparent;
    transition: all 0.5s ease-in-out;
}
#dsc .dsc_but .but2 a
{
    background: #fff;
    color: rgb(123,3,13);
}
#dsc .dsc_but .but1 a:hover
{
    color: rgb(123,3,13);
    background: #fff;
}
#dsc .dsc_but .but2 a:hover
{
    background: transparent;
    color: #fff;
}

/* Client Section
--------------------------------*/
#client {
    background: #f6f6f6;
    padding: 50px 0;
    user-select: none;
}

#client .clients-slider .swiper-slide{
    display: flex;
    justify-content: center;
    align-items: center;
}



/* downloads Section
--------------------------------*/
#downloads {
    background: #fff;
    padding: 80px 0 60px 0;
    user-select: none;
}
#downloads table th{
    color: rgb(123,3,13);
}
#downloads table td{
    font-size: 15px;
}
#downloads table .sno{
    font-size: 16px;
    font-weight: bold;
    color: rgb(123,3,13);
}
#downloads table .last{
    padding-right: 0px;
}
#downloads table span{
    padding: 8px 2px;
    background: linear-gradient(135deg, rgb(123,3,13), rgb(27,22,98));
    border-radius: 20px;
}
#downloads table span a{
    padding: 6px 25px;
    text-decoration: none;
    color: rgb(123,3,13);
    background: white;
    border-radius: 20px;
    transition: 0.4s ease-in-out;
}
#downloads table span a:hover{
    color: #fff;
    background: none;
}
#downloads table span a .bx{
    font-size: 24px;
    transform: translateY(5px);
}

@media (max-width: 390px) {
   #downloads table .dis , #downloads table .sno{
       display: none;
}
#downloads table .last{
       padding-left: 0px;
}
}


/* Tracking Section
--------------------------------*/
#track {
    background: #f6f6f6;
    padding: 80px 0;
    user-select: none;
}

#track .icon-box {
  position: relative;
  box-shadow: 0 2px 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  width: 100%;
  display: flex;
}
#track .icon-box::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, rgb(123,3,13),rgb(27,22,98));
    transition: 0.5s;
}
#track .icon-box a{
  width: 100%;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  padding: 15px 0;
  background: white;
  color: rgb(123,3,13);
  transition: 0.5s;
}

#track .icon-box:hover::after{
width: 100%;
color: white;
}
#track .icon-box:hover a{
    background: transparent;
    color: #fff;
    z-index: 10;
}

/* Contact Section
--------------------------------*/
#contact {
    background: #fff;
    padding: 80px 0 10px 0;
    user-select: none;
}

#contact .form-row{
    margin-bottom: 50px;
}

#contact .form {
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px silver;
    margin: 0;
}

#contact h5 {
    color: rgb(123,3,13);
    font-weight: 600;
    padding-bottom: 20px;
    letter-spacing: 1px;
    font-size: 22px;
}

#contact .validate {
    color: rgb(123,3,13);
    margin: 5px 0 20px 0;
    padding: 0 5px;
    font-weight: 500;
    font-size: 13px;
}

#contact input, #contact textarea, #contact select {
    border: none;
    outline: none;
    border-radius: 8px;
    background: none;
    box-shadow: 0 0 3px #c0c0c0;    
    color: #808080;
    letter-spacing: 0.5px;
}

#contact input:hover, #contact input:focus, #contact textarea:hover, #contact textarea:focus, #contact select:hover, #contact select:focus {
    box-shadow: 0 0 5px rgb(123,3,13);    
}

.text-center {
    display: flex;
    justify-content: center;
}
button[type="submit"] {
    position: relative;
    display: flex;
    border: none;
    outline: none;
    padding: 2px;
    border-radius: 20px;
    transition: 1s;
    margin-top: 20px;
    letter-spacing: 1px;
    overflow: hidden;
    box-shadow: 3px 3px 8px silver;
}
button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg,rgb(123,3,13),rgb(27,22,98));
    transition: 1s;
}
button[type="submit"] span {
    background: white;
    padding: 10px 30px;
    border-radius: 18px;
    color: rgb(123,3,13);
    font-weight: 600;
    transition: 1s;
}
button[type="submit"]:hover::before{
    width: 100%;
}
button[type="submit"]:hover span{
    background: none;
    color: white;
    font-weight: 500;
    z-index: 1;
}


#contact .info-data
{
    padding: 0 20px;
}
#contact .top-div
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#contact .top-div img
{
    width: 160px;
}
#contact .top-div h2
{
    margin: 20px 0;
    font-size: 28px;
    font-weight: 600;
    color: rgb(27,22,98);
}
#contact .top-div h2 font
{
    color: rgb(123,3,13);
}

#contact .info {
    color: #333333;
}

#contact .info .info-inner {
    padding: 2px;
    margin: 15px 0;
}
#contact .info .info-inner i {
    font-size: 30px;
    color: rgb(123,3,13);
    float: left;
}

#contact .info .info-inner p{
    font-size: 15px;
    text-align: justify;
    padding: 0 0 10px 50px;
    line-height: 22px;
    margin: 0;
}
#contact .info .social {
    width: 100%;
    display: flex;
    height: 40px;
    line-height: 40px;
    margin-top: 40px;
}
#contact .info .social a{
    background: silver;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgb(123,3,13),rgb(27,22,98));
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right:10px;
    box-shadow: 0 0 5px silver;
    border-radius: 8px;
    transition: .5s;
}
#contact .info .social a:hover i{
    animation: anii 2s infinite ease-in-out;
}
#contact .info .social a:hover{
    transform: translateY(-5px);
}
@keyframes anii{
    100%,0%{
        transform: translateY(-3px);
    }
    50%{
        transform: translateY(3px);
    }
}
#contact .info .social a i{
    color: white;
    color: rgb(123,3,13);
    font-size: 22px;
}

@media (max-width: 991px) {
    #contact .info-data
    {
        padding-right: 2px;
        padding-left: 15px;
    }
    #contact .top-div img
    {
        width: 140px;
    }
    #contact .top-div h2
    {
        margin: 15px 0;
        font-size: 26px;
    }
    #contact .info .info-inner i {
        font-size: 32px;
    }

    #contact .info .info-inner p{
        font-size: 15px;
        padding: 0 0 5px 45px;
    }
    #contact .info .social {
        height: 35px;
        line-height: 35px;
    }
    #contact .info .social a{
        width: 35px;
        height: 35px;
        border-radius: 5px;
    }
    #contact .info .social a i{
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    #contact .info-data
    {
        padding: 0;
    }
    #contact .info .social {
        margin-top: 30px;
    }
}
@media (max-width: 345px) {
    #contact .form {
        padding: 25px;
    }
    #contact .top-div img
    {
        width: 120px;
    }
    #contact .top-div h2
    {
        margin: 10px 0;
        font-size: 19px;
    }
    #contact .info .info-inner i {
        font-size: 28px;
    }
    #contact .info .info-inner p{
        font-size: 14px;
        padding: 0 0 5px 37px;
    }
    #contact .info .social {
        height: 32px;
        line-height: 32px;
        margin-top: 30px;
    }
    #contact .info .social a{
        width: 32px;
        height: 32px;
    }
    #contact .info .social a i{
        font-size: 18px;
    }
}

/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/

#successE .modal-content
{
    margin-top: 50px;
}
#successE .modal-header
{
    border: none;
}
#successE .modal-header button
{
    outline: none;
    color: rgb(123,3,13);
}
#successE .modal-body
{
    padding: 30px 30px;
    color: rgb(123,3,13);
}
#successE .modal-footer
{
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 30px; 
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: linear-gradient(135deg,rgb(123,3,13),rgb(27,22,98));
    padding: 20px 0;
    color: #fff;
}

#footer .st{
    color: rgb(236,129,4);
}

#footer .copyright {
    text-align: center;
}
