/*--------------------------------------------------------------
>>> Global Settings
---------------------------------------------------------------*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    color: #333;
    line-height: 1.4;
    font-weight: 400;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}


ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/*--------------------------------------------------------------
>>> Utility Classes
---------------------------------------------------------------*/
.main {
    max-width: 1170px;
    margin: 0 auto;
}

.relative-div {
    position: relative;
    height: 100%;
}

.color-white {
    color: #fff;
}

.color-black {
    color: #000;
}

.color-blue {
    color: #00491f;
}

.text-center {
    text-align: center;
}

.section-heading__paragraph {
    margin: 0 280px;
    color: #868e96;
}

/*--------------------------------------------------------------
>>> Header Top
---------------------------------------------------------------*/
.header-top {
    padding: 10px 0;
    background-color: #f7f7f7;
}

.header-top__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top__left {
    display: flex;
    align-items: center;
    color: #868e96;
    font-size: 15px;
}

address {
    margin-bottom: 0;
}

.phone-number,
.email-address {
    margin-right: 25px;
}

.header-top__left i {
    margin-right: 5px;
    color: #00491f;
}

.header-top__right ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-top__right ul li {
    display: inline-block;
}

.header-top__right ul li a {
    text-decoration: none;
    color: #fff;
    display: block;
    background-color: #00491f;
    padding: 7px 8px 5px 9px;
    border-radius: 50px;
    font-size: 14px;
    text-align: center;
}

.header-top__right ul li a i {
    text-align: center;
}

.header-top__right ul li:not(:last-child) {
    margin-right: 6px;
}


/*--------------------------------------------------------------
>>> Masthead
---------------------------------------------------------------*/
#masthead {
    box-shadow: 0 10px 20px rgba(0, 0, 0, .02);
    background-color: #00491f;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding img {
    height: 80px;
    padding: 15px 0;
}

.navbar2 {
    float: right;
}

.navbar-inner2 {
    height: 100%;
}

.nav2,
.nav2 ul,
.nav2 li,
.nav2 a {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

.nav2 {
    position: relative;
    z-index: 50;
}

.nav2 li {
    position: relative;
    list-style: none;
    float: left;
    display: block;
}

.nav2 li a {
    position: relative;
    padding: 35px 0 30px 30px;
    display: block;
    font-size: 15px;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    color: #ddd;
    transition: 0.3s;
}

.nav2 li:hover>a {
    color: #fff;
    display: block;
}

/* Sub navigation */
.nav2 ul {
    position: absolute;
    z-index: 100;
    top: 85px;
    left: 0;
    border-top: none;
    padding: 7px 0 7px;
    overflow: hidden;
    opacity: 0;
    background: #00491f;
}

.nav2 li:hover ul {
    opacity: 0.9;
}

.nav2 ul li {
    height: 0;
    overflow: hidden;
    padding: 0;

    -webkit-transition: height 0.07s ease-in-out 0s;
    -moz-transition: height 0.07s ease-in-out 0s;
    -o-transition: height 0.07s ease-in-out 0s;
    -ms-transition: height 0.07s ease-in-out 0s;
    transition: height 0.07s ease-in-out 0s;
}

.nav2 li:hover>ul li {
    height: 40px;
    overflow: visible;
    padding: 0;
}

.nav2 ul li a {
    width: 255px;
    padding: 15px 0 7px 15px;
    margin: 0;
    font-weight: normal;
    border: none;
    border-bottom: 1px solid #003817;
    color: #ddd;
    text-transform: capitalize;
}

.nav2 ul li a:hover {
    color: #fff;
    background: none;
}

/*--------------------------------------------------------------
>>> Section Company Message
---------------------------------------------------------------*/
.section-company {
    padding: 100px 0;
    background-color: #f8f9fa;
}


/*--------------------------------------------------------------
>>> Section Hero
---------------------------------------------------------------*/
.section-hero {
    height: 95vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-hero__textbox {
    position: absolute;
    top: 30%;
    left: 0;
    width: 55%;
    font-size: 16px;
    color: #ddd;
}

.heading-primary {
    font-size: 40px;
    color: #fff;
}

.heading-primary--sub {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #ddd;
    text-transform: uppercase;
}

.heading-primary--main {
    display: block;
    font-size: 60px;
    font-weight: 700;
    color: #fff;
}

.section-hero__textbox p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.btn-text:link,
.btn-text:visited {
    font-size: 16px;
    color: #fff;
    display: inline-block;
    text-decoration: none;
    background-color: #00491f;
    padding: 10px 18px;
    transition: all 0.4s;
    border-radius: 3px;
}

.btn-text:hover {
    color: #fff;
    background-color: #001c0b;
}

.btn-text:active {
    transform: scale(0.7);
}

/*--------------------------------------------------------------
>>> Section About
---------------------------------------------------------------*/
.section-about {
    padding: 100px 0;
    background-color: #F2F2F2;
}

.about__box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about__img-box {
    flex: 0 0 44%;
}

.about__right {
    flex: 0 0 48%;
}

.about__img-box img {
    width: 100%;
    border-radius: 3px;
}

.about__text-box {
    font-size: 15px;
    line-height: 1.5;
}

.about__text-box p {
    color: #868e96;
}

.heading-secondary--sub {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 14px;
    text-transform: uppercase;
    color: #A6587C;
}

.heading-secondary--main {
    display: block;
    font-size: 50px;
    margin-bottom: 14px;
    line-height: 1.3;
}

.vission-mission {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 35px;
}

.vission-mission:not(:last-child) {
    border-right: 1px solid #A6587C;
}

.vission-mission h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.vission-mission ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: #868e96;
}

.vission-mission ul li {
    display: block;
}

.vission-mission ul li:not(:last-child) {
    margin-bottom: 12px;
}

.vission-mission ul li i {
    color: #00491f;
    margin-right: 10px;
}

.vission-box {
    border-right: 1px solid #dd9ab9;
    padding-right: 30px;
}

.about-btn-box {
    margin-top: 30px;
}


/*about-hero*/

.about-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
    height: 100vh;
    text-align: center;
    color: #fff;
    background: linear-gradient(rgba(51, 51, 51, 0.5), rgba(51, 51, 51, 0.5)),
        url(../images/about-hero.jpg) center;
}

.about-hero h3 {
    font-size: 55px;
}

.about-hero p {
    padding: 15px 150px;
    font-size: 27px;
}

#about-hero-bottom {
    display: flex;
    width: 100%;
    background: #eb3349;
    background: -webkit-linear-gradient(to right, #f45c43, #eb3349);
    background: linear-gradient(to right, #f45c43, #eb3349);
    padding: 50px 0;
    font-size: 30px;
    text-align: center;
    color: #fff;
}

#about-details {
    display: flex;
}

.about-details-left {
    width: 50%;
    padding: 40px 40px 40px 100px;
}

.about-details-left h3 {
    font-size: 40px;
    line-height: 55px;
    padding-bottom: 20px;
}

.about-details-left p {
    font-size: 16px;
}

.about-details-right {
    width: 50%;
    background: url(../images/about-left.jpg);
    background-size: cover;
    padding: 70px 0 0 70px;
    color: #555;
}

.about-details-right-box {
    width: 250px;
    float: left;
    border-bottom: 3px #d11820 solid;
    background-color: #fff;
    border-radius: 5px;
    margin: 0 10px 50px 0;
}

.about-details-right-box h2 {
    font-size: 18px;
    text-align: center;
    margin: 15px 0 10px;
}

.about-details-right-box img {
    width: 100%;
    height: 280px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.about-details-right-box h5 {
    text-align: center;
    padding: 0 0 10px;
    font-size: 15px;
    font-weight: 600;
}

/* CSR Section
-----------------*/
#csr {
    float: left;
    width: 100%;
    background: linear-gradient(rgba(27, 26, 26, 0.5), rgba(51, 51, 51, 0.3)),
    url(../images/csr.png) center right fixed;
    padding: 270px 0 200px;
    text-align: center;
    color: #fff;
}

.csr {
    float: left;
    width: 100%;
}

#csr-organization {
    float: left;
    width: 100%;
}

.csr-organization {
    float: left;
    width: 100%;
}

.csr-organization-img {
    float: left;
    width: 50%;
    padding: 290px 0 200px;
    background: url(../images/about-hero.jpg) no-repeat center;
}

.csr-organization-content {
    float: left;
    width: 100%;
    padding: 35px 60px 40px;
    color: #5e5b5b;
    font-size: 16px;
    line-height: 28px;
}

.csr-organization-content h2 {
    font-size: 35px;
    font-weight: 600;
    color: #000;
    line-height: 44px;
    margin-bottom: 20px;
}

.csr-border {
    float: left;
    width: 90px;
    border: 2px rgb(209, 47, 47) solid;
}

#csr-bottom-img {
    float: left;
    padding: 260px 0;
    width: 100%;
    background: url(../images/csr.png) center fixed;
}




#our-promise {
    float: left;
    width: 100%;
    padding-top: 300px;
    background-size: cover;
    background: url(../images/slider.png) no-repeat fixed;
}

.our-promise {
    float: right;
    width: 70%;
    padding: 60px;
    background: rgb(237, 59, 101);
    background: linear-gradient(18deg,
            rgba(206, 50, 87, 0.67) 0%,
            rgba(221, 17, 26, 0.8799894957983193) 100%);
    color: #fff;
}

.our-promise h3 {
    font-size: 41px;
    padding-bottom: 20px;
}

.our-promise ul {
    float: left;
    margin: 0;
    padding: 0;
}

.our-promise ul li {
    list-style: none;
    font-size: 18px;
    margin-bottom: 15px;
}

.our-promise ul li i {
    margin-right: 10px;
}

/* #management */
.managment {
    background: linear-gradient(rgba(51, 51, 51, 0.5), rgba(51, 51, 51, 0.5)),
        url(../images/slider.jpg) center;
}

.about-details-left span {
    color: #d11820;
}

.about-details-left p {
    line-height: 35px;
}

.about-details-left h4 {
    font-weight: bold;
    line-height: 40px;
}

.managment-bg {
    background-image: url(../images/slider.jpg) left;
    background-size: cover;
}

.career {
    background: linear-gradient(rgba(51, 51, 51, 0.5), rgba(51, 51, 51, 0.5)),
        url(../images/career.jpeg) center;
}

.about-counter {
    display: flex;
    justify-content: center;
    align-items: center;
}

#about-counter {
    float: left;
    width: 100%;
    padding: 50px 0;
    background: url(../images/home_print_pattern1.png);
}

.counter-box {
    width: 30%;
    text-align: center;
    border-right: 1px #bbb solid;
}

.counter-box h2 {
    text-align: left;
    font-size: 30px;
    color: #d11820;
    font-weight: bold;
}

.counter-box h3 {
    font-weight: bold;
    font-size: 30px;
    color: #212b36;
}

.different-counter {
    border: none;
}


#people-principles {
    float: left;
    width: 100%;
    padding: 60px 0 70px;
}

.people-principles {
    float: left;
    width: 100%;
}

.people-principles h2 {
    font-size: 35px;
    color: #000;
    font-weight: 600;
    margin-bottom: 15px;
}

.principles-border {
    float: left;
    width: 90px;
    border: 2px rgb(209, 47, 47) solid;
}

.priciples-content {
    float: left;
    font-size: 16px;
    color: rgb(126, 122, 122);
    line-height: 28px;
}

.priciples-content button {
    background: #d91d1d;
    color: #fff;
    border: none;
    padding: 10px 35px;
    border-radius: 5px;
    margin-top: 10px;
}

.priciples-content button:hover {
    color: #fff;
}

#apparel_experience {
    float: left;
    width: 100%;
    padding: 0 0 40px;
}

.kint {
    margin-bottom: 50px;
}

.apparel_experience {
    float: left;
    width: 100%;
}

.apparel_experience h2 {
    font-size: 35px;
    font-weight: 600;
    color: #000;
    margin: 0;
    padding: 0;
}

.apparel_list {
    margin-top: 25px;
}

.apparel_list ul {
    float: left;
    margin: 0;
    padding: 0;
}

.apparel_list ul li {
    list-style: none;
    font-size: 18px;
    margin-bottom: 15px;
}

.apparel_list ul li i {
    margin-right: 10px;
}

#buyer {
    float: left;
    width: 100%;
    padding: 140px 0;
    background: url(../images/home_print_pattern1.png);
    text-align: center;

}

#buyer h2 {
    font-size: 35px;
    font-weight: 600;
    color: #444;
    padding-bottom: 40px;
    margin: 0;
}

#buyer img {
    height: 80px;
    margin: 0 10px 10px 0;
    border: none;
    box-shadow: 1px 2px 2px #ccc;
    text-align: center;

}


#certification {
    float: left;
    width: 100%;
    padding: 140px 0;
    background: url(../images/home_print_pattern1.png);
    text-align: center;

}

#certification h2 {
    font-size: 35px;
    font-weight: 600;
    color: #444;
    padding-bottom: 40px;
    margin: 0;
}

#certification img {
    height: 150px;
    margin: 0 10px 10px 0;
    border: none;
    border-radius: 50%;
    box-shadow: 1px 2px 2px #ccc;

}




.about-counter {
    display: flex;
    justify-content: center;
    align-items: center;
}

#about-counter {
    float: left;
    width: 100%;
    padding: 50px 0 40px;
    background: url(../images/gplaypattern.png);
}

.counter-box {
    width: 30%;
    text-align: center;
    border-right: 1px #bbb solid;
}

.counter-box h2 {
    text-align: left;
    font-size: 30px;
    color: #d11820;
    font-weight: bold;
}

.counter-box h3 {
    font-weight: bold;
    font-size: 30px;
    color: #212b36;
}

.different-counter {
    border: none;
}








/*--------------------------------------------------------------
>>> Section Industry
---------------------------------------------------------------*/
.section-industry {
    height: 45vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.industry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.industry__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.industry__item:first-child {
    flex: 0 0 26%;
}

.industry__item__number {
    font-size: 40px;
}

.industry__item__number sup {
    color: #fa5252;
}

.industry__item__text {
    font-size: 20px;
}


/*--------------------------------------------------------------
>>> Section Services
---------------------------------------------------------------*/
.section-services {
    padding: 100px 0;
    background-color: #F2F2F2;
    color: #868e96;
}

.services__box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.services__box>* {
    flex: 0 0 30%;
    padding: 50px 35px;
    border: 1px solid #C190A6;
    margin-bottom: 30px;
    border-radius: 5px;
}

.services__item h4 {
    color: #00491f;
    font-size: 24px;
    margin-bottom: 5px;
}

.services__item img {
    height: 45px;
    margin-bottom: 15px;
}

.services__item p {
    margin-bottom: 15px;
}

.btn-link:link,
.btn-link:visited {
    font-size: 14px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.4s;
    font-weight: 500;
}

.btn-link:hover {
    color: #C190A6;
}

.btn-link:hover .btn-link i {
    transform: translateX(10px);
}

.services__item a {
    color: #545454;
}

.services__item a i {
    margin-left: 3px;
}


/*--------------------------------------------------------------
>>> Section Clients
---------------------------------------------------------------*/
.section-clients {
    padding: 50px 0;
    background-color: #00491f;
}

.clients {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.clients img {
    height: 60px;
    display: inline-block;
    margin-right: 50px;
}


/*--------------------------------------------------------------
>>> Section Call to Action
---------------------------------------------------------------*/
.section-call-to-action {
    height: 70vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.call-to-action {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 65%;
    color: #D9D7D3;
    line-height: 1.5;
}

.call-to-action p {
    padding: 0 90px;
    margin-bottom: 20px;
}


/*--------------------------------------------------------------
>>> Section Projects
---------------------------------------------------------------*/
.section-projects {
    padding: 100px 0;
    background-color: #F2F2F2;
}

.projects__box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 60px;
}

.project__box-item {
    flex: 0 0 31%;
    border-radius: 10px;
    height: 350px;
    border-radius: 5px;
    margin-bottom: 100px;
    position: relative;
    transition: all .4s ease-out;
}

.project__box-item img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.project__text-box {
    background-color: #00491f;
    text-align: center;
    color: #ddd;
    padding: 20px;
    border-radius: 5px;
    position: absolute;
    width: 60%;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    transform: all .5s;
}

.project__text-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
}

.project__text-box a {
    margin-top: 15px;
    color: #b35c84;
    transition: all .4s;
    text-transform: uppercase;
}

.project__text-box a:hover {
    color: #fff;
}

/*--------------------------------------------------------------
>>> Section How We Work 
---------------------------------------------------------------*/
.section-how-we-work {
    padding: 100px 0;
    background-color: #F2F2F2;
}

.how-we-work__box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.work-process {
    flex: 0 0 40%;
}

.work-process__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.work-process__item:not(:last-child) {
    margin-bottom: 25px;
}

.work-process__img-box {
    margin-right: 20px;
}

.work-process__img-box img {
    height: 90px;
    border: 1px solid #A6587C;
    padding: 20px 15px;
    border-radius: 3px;
}

.work-process__text-box {
    color: #868e96;
}

.work-process__text-box h4 {
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #00491f;
}

.work-process__text-info {
    flex: 0 0 58%;
    color: #868e96;
    line-height: 1.7;
}

.work-process__text-info p:not(:last-child) {
    margin-bottom: 10px;
}

.work-process__text-info a {
    margin-top: 20px;
}

/*--------------------------------------------------------------
>>> Page Header
---------------------------------------------------------------*/
.section-page-header {
    height: 50vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-page-header__textbox {
    position: absolute;
    left: 0;
    top: 40%;
}

/*--------------------------------------------------------------
>>> Section products
---------------------------------------------------------------*/
.section-products {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.each-items img {
    width: 100%;
    display: block;
    height: 160px;
    border: 1px #ddd solid;
    margin: 0 0 20px;
    padding: 5px;
}

.each-items {
    position: relative;
}

.each-items:hover .each-items-when-hover {
    transform: scale(1);
}

.each-items-when-hover {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgb(0, 0, 0, 0.7);
    text-align: center;
    transform: scale(0);
    transition: .4s;
}

.each-items-when-hover i {
    font-size: 30px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*--------------------------------------------------------------
>>> Section Contact
---------------------------------------------------------------*/
.section-contact {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.contact__box__text-box {
    color: #7D778D;
}

.contact__box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact__box-form {
    flex: 0 0 46%;
}

.contact__box-info {
    flex: 0 0 46%;
    display: flex;
    flex-direction: column;
}

.form {
    margin-top: 30px;
}

.form__input {
    display: block;
    width: 100%;
    padding: 12px 15px;
    border: none;
    border: 1px solid #A6587C;
    outline: none;
    background-color: transparent;
    border-radius: 3px;
    font-size: 16px;
}

.form__input:not(:last-child) {
    margin-bottom: 18px;
}

.form__input::-webkit-input-placeholder {
    color: #B0B0B0;
}

.form textarea {
    font-family: inherit;
}

.form__btn {
    margin-top: 5px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    display: inline-block;
    text-decoration: none;
    background-color: #A6587C;
    padding: 13px 18px;
    transition: all 0.4s;
    border-radius: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .4s;
}

.form__btn:hover {
    background-color: #753b56;
}

.contact__info {
    display: flex;
    flex-wrap: wrap;
}

.contact__info-item {
    flex: 0 0 49%;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact__info-icon-box {
    margin-right: 15px;
}

.contact__info-icon-box i {
    color: #A65887;
    font-size: 38px;
}

.contact__info-text-box {
    color: #7D778D;
    font-size: 14px;
}

.contact__info-text-box h4 {
    color: #00491f;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 5px;
}

.contact__map {
    margin-top: 20px;
}

.contact__map ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 25px;
}

.contact__map ul li {
    display: inline-block;
}

.contact__map ul li a {
    text-decoration: none;
    color: #fff;
    display: block;
    background-color: #A6587C;
    padding: 5px 8px;
    border-radius: 50px;
    font-size: 18px;
    text-align: center;
    font-weight: 500;
}

.contact__map ul li a i {
    text-align: center;
}

.contact__map ul li:not(:last-child) {
    margin-right: 10px;
}

/*--------------------------------------------------------------
>>> Footer
---------------------------------------------------------------*/
.footer {
    padding: 100px 0 30px;
    color: #ddd;
    background-color: #00491f;
}

.footer__box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    border-bottom: 1px solid #003a17;
    padding-bottom: 50px;
    margin-bottom: 20px;
}

.footer__left {
    flex: 0 0 30%;
}

.footer__text-box img {
    height: 80px;
    margin-bottom: 25px;
    display: inline-block;
}

.footer__text-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 25px;
}

.footer__text-box ul li {
    display: inline-block;
}

.footer__text-box ul li a {
    text-decoration: none;
    color: #fff;
    display: block;
    background-color: #A6587C;
    padding: 5px 8px;
    border-radius: 50px;
    font-size: 18px;
    text-align: center;
}

.footer__text-box ul li a i {
    text-align: center;
}

.footer__text-box ul li:not(:last-child) {
    margin-right: 10px;
}

.footer__right {
    flex: 0 0 65%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: #ddd;
}

.footer__right ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__right h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer__right ul li:not(:last-child) {
    margin-bottom: 12px;
}

.footer__right ul li {
    display: flex;
    align-items: center;
}

.footer__right ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 16px;
    transition: all .4s;
}

.footer__right ul li a:hover {
    color: #9D537A;
}

.footer__right ul li a:not(:last-child) {
    margin-bottom: 20px;
}

.footer__right ul li a i {
    color: #e2e2e2;
    transition: all .4s;
    margin-right: 15px;
}

.footer__address ul li i {
    color: #e2e2e2;
    font-size: 19px;
    margin-right: 10px;
}

.footer__copyright {
    text-align: center;
    font-size: 15px;
}

.footer__copyright a {
    text-decoration: none;
    color: #fff;
    transform: all .5s;
}

.footer__copyright a:hover {
    text-decoration: underline;
}