/*------------------------------------------------------------------
Kastal- parallax one page Template
Version: 1.0
Author: bestwp-club
Author URI: https://themeforest.net/user/bestwp-club/portfolio
* ---------------------------------------------------------------------------------------- */

/*----------------------------------------------------
01. General
02. Start Section Loading
03. Start Section header
04. Home Section
05. About Section
06. Features Section
07. Why Section
08. Video Section
09. Description Section
10. Numbers Section
11. Screenshots Section
12. Team Section
13. Clients Section
14. Price Section
15. Download Section
16. Blog Section
17. Partners Section
18. Contact-me Section
19. Social-icon-div
20. scroll-top div

------------------------------------------------------*/

/*-------------------------------------------------------*/

/* 01. General */

/*-------------------------------------------------------*/

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 1em;
  font-weight: 300;
  height: 100%;
  font-family: 'Raleway', sans-serif;
}

p {
  font-family: 'Hind', sans-serif;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #737171;
}

h1,h2,h3,h4,h5 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 30px;
  color: #111;
  line-height: 1.2;
  font-weight: 700;
  margin-top: 0;
}

h1 span,h2 span,h3 span,h4 span,h5 span {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
}

a:focus,a:hover {
  outline: none;
  text-decoration: none;
}

.fa {
  font-family: 'FontAwesome';
  font-style: normal;
}

.heading {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 3.125em;
  color: #000;
  text-align: center;
  margin-top: 0;
  margin-bottom: 30px;
}

.heading span {
  font-weight: 700;
}

.para {
  font-size: 1.063em;
  text-align: center;
  font-weight: 300;
  color: #6f6e6e;
  margin-bottom: 60px;
}

.a-btn {
  text-decoration: none;
  padding: 10px 20px;
  color: #fff;
  background-color: #F27849;
  border: 1px solid transparent;
  font-weight: 400;
}

.page-section {
  padding: 100px 0;
}

.white {
  color: #fff;
}


.vcenter {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.gray-bg {
  background-color: #f4f4f4;
}

.dark-overlay {
  position: relative;
  overflow: hidden;
}

.dark-overlay:before {
  content: '';
  background-color: rgba(0,0,0,0.8);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}


/*-------------------------------------------------------*/

/* 02. Start Section Loading */

/*-------------------------------------------------------*/

.loading-overlay {
  background: #222;
  color: #222;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
}

.spinner {
  width: 60px;
  height: 60px;
  position: relative;
  margin: 300px auto;
}

#loading-text {
  display: block;
  position: absolute;
  top: 180%;
  left: 50%;
  color: #fff;
  font-weight: 400;
  width: 100px;
  height: 30px;
  margin: -7px 0 0 -45px;
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-size: 1.250em;
}

#loading-content {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 170px;
  height: 170px;
  margin: -85px 0 0 -85px;
  border: 3px solid #F27849;
}

#loading-content:after {
  content: "";
  position: absolute;
  border: 3px solid #F27849;
  left: 15px;
  right: 15px;
  top: 15px;
  bottom: 15px;
}

#loading-content:before {
  content: "";
  position: absolute;
  border: 3px solid #F27849;
  left: 5px;
  right: 5px;
  top: 5px;
  bottom: 5px;
}

#loading-content {
  border: 3px solid transparent;
  border-top-color: #F27849;
  border-bottom-color: #F27849;
  border-radius: 50%;
  -webkit-animation: loader 2s linear infinite;
  -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
  animation: loader 2s linear infinite;
}

#loading-content:before {
  border: 3px solid transparent;
  border-top-color: #F27849;
  border-bottom-color: #F27849;
  border-radius: 50%;
  -webkit-animation: loader 3s linear infinite;
  -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
  animation: loader 3s linear infinite;
}

#loading-content:after {
  border: 3px solid transparent;
  border-top-color: #F27849;
  border-bottom-color: #F27849;
  border-radius: 50%;
  -webkit-animation: loader 1.5s linear infinite;
  animation: loader 1.5s linear infinite;
  -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
}

@-webkit-keyframes loaders {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*-------------------------------------------------------*/

/* 03. Start Section header */

/*-------------------------------------------------------*/

.header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  border-radius: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background-color: transparent;
}

.navbar-brand {
  height: auto;
  display: block;
  font-size: 2.188em;
  line-height: 30px;
  color: #fff;
  font-weight: 700;
  padding-top: 25px;
  padding-bottom: 25px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar-brand:hover,.navbar-brand:focus {
  color: #F27849;
}

.navbar-collapse {
  padding-left: 0;
  padding-right: 0;
}

.header .navbar-nav {
  margin: 0;
  float: right;
}

.header .navbar-nav li a {
  color: #fff;
  font-size: 0.750em;
  font-weight: 600;
  padding: 30px 15px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.header .navbar-nav li a:hover,.header .navbar-nav li a:focus {
  background: none;
}

.header .navbar-toggle {
  margin-top: 20px;
  padding: 10px;
}

.header .navbar-toggle .icon-bar {
  background: #fff;
  height: 3px;
}

.header.shrink {
  position: fixed;
  top: 0;
  background: #fff;
  box-shadow: 0 10px 25px -15px #999;
}

.header.shrink .navbar-brand {
  padding-top: 15px;
  padding-bottom: 15px;
  color: #333;
}

.header.shrink .navbar-nav li a {
  padding-top: 20px;
  padding-bottom: 20px;
  color: #333;
}

.header.shrink .navbar-nav li a:hover {
  color: #F27849;
}

.header.shrink .navbar-nav li.active a {
  color: #F27849;
}

.header.shrink .navbar-toggle {
  margin-top: 10px;
  padding: 10px;
}

.header.shrink .navbar-toggle .icon-bar {
  background: #555;
  height: 3px;
}

/*-------------------------------------------------------*/

/* 04. Home Section */

/*-------------------------------------------------------*/
.home {
  height: 100vh;
  overflow: hidden;
  background-image: url(../images/pexels-photo.jpg);
  background-attachment: fixed;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}



.home .title span {
  color: #fff;
  font-size: 2.813em;
  font-weight: 500;
  display: block;
  margin-bottom: 0px;
  margin-top: 0;
  line-height: 1.25;
}

.home .title p {
  line-height: 1.6em;
  color: #fff;
  font-size: 1.063em;
  font-weight: 400;
  margin-bottom: 0;
}

.home .title .a-btn {
  display: inline-block;
  margin-top: 30px;
  margin-right: 20px;
  background-color: #F27849;
  border: 1px solid #F27849;
  color: #fff;
}

.home .title .a-btn .fa {
  margin-right: 5px;
}

.home .title .a-btn:hover {
  border: 1px solid #fff;
  color: #F27849;
  background-color: #fff;
}

.home .image img {
  margin-top: 100px;
  width: 275px;
  margin-left: 150px;
}

/*-------------------------------------------------------*/

/* 05. About Section */

/*-------------------------------------------------------*/

.about {
  text-align: center;
}

.about .item {
  border-radius: 10px;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  background: #fff;
  padding: 60px 20px;
}

.about .item .fa {
  color: #F27849;
  font-size: 3.750em;
  text-align: center;
  margin-bottom: 10px;
}



.about .item h3 {
  color: #111;
  font-weight: 500;
  font-size: 1.563em;
  margin: 20px 0 10px 0;
}

.about .item p {
  color: #737171;
  font-weight: 400;
  font-size: 1em;
  line-height: 24px;
}

/*-------------------------------------------------------*/

/* 06. Features Section  */

/*-------------------------------------------------------*/

.features {
  background-image: url(../images/pexels-photo.jpg);
  background-attachment: fixed;
  background-size: cover;
}

.features .heading {
  color: #fff;
}

.features .para {
  color: #eee;
}

.features ul .single-feature {
  padding-top: 30px;
}

.features img {
}

.features ul .single-feature .fa {
  clear: both;
  color: #F27849;
  font-size: 1.875em;
  text-align: center;
  margin-bottom: 30px;
}

.features .left ul .single-feature .fa {
  margin-left: 20px;
}

.features .right ul .single-feature .fa {
  margin-right: 20px;
}

.features ul .single-feature .item {
  display: block;
  overflow: hidden;
}

.features .left ul .single-feature .item {
  text-align: right;
}

.features .right ul .single-feature .item {
  text-align: left;
}

.features ul .single-feature .item h2 {
  color: #fff;
  font-size: 1.375em;
  font-weight: 500;
  margin-top: 10px;
}

.features ul .single-feature .item p {
  color: #ddd;
  font-size: 1em;
  line-height: 24px;
}


/*-------------------------------------------------------*/

/* 07. Why Section  */

/*-------------------------------------------------------*/

.why {
  padding: 100px 0;
}

.why .image {
  margin-bottom: 30px;
}

/*-------------------------------------------------------*/

/* 08. Video Section   */

/*-------------------------------------------------------*/

.video {
  background-image: url(../images/parallax-bg-feature.jpg);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  text-align: center;
}

.video .overlay {
  padding: 100px 0;
  background: rgba(0,0,0,0.9);
}

.video h1 {
  color: #fff;
  font-size: 2.813em;
  margin-bottom: 30px;
}

.video .fa {
  color: #fff;
  height: 80px;
  width: 80px;
  line-height: 80px;
  font-size: 2.500em;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 50%;
  padding-left: 7px;
}

.video .fa:hover {
  background-color: #F27849;
  border: 1px solid #F27849;
}


/*-------------------------------------------------------*/

/* 09. Description Section   */

/*-------------------------------------------------------*/

.description {
  padding: 70px 0;
}

.description .image,.description .item {
  margin-bottom: 30px;
}

.description .item h2 {
  color: #333;
  font-size: 1em;
  margin-bottom: 20px;
}

.description .item p {
  margin-bottom: 20px;
  font-size: 1em;
  line-height: 24px;
  font-weight: 400;
  color: #555;
}

.description .item  .a-btn {
  margin-top: 10px;
  display: inline-block;
}

.description .item  .a-btn:hover {
  background-color: transparent;
  border: 1px solid #F27849;
  color: #F27849;
}

/*-------------------------------------------------------*/

/* 10. Numbers Section    */

/*-------------------------------------------------------*/

.numbers {
  background-image: url(../images/parallax-bg-feature-2.jpg);
  background-attachment: fixed;
  background-size: cover;
}

.numbers .overlay {
  padding: 70px 0;
  background: rgba(0, 0, 0, 0.9);
}

.numbers .item {
  margin-bottom: 30px;
}

.numbers .item .desk {
  overflow: hidden;
  float: left;
}

.numbers .item .fa {
  color: #fff;
  font-size: 2.813em;
  float: left;
  margin-right: 30px;
  margin-top: 5px;
}

.numbers .item p {
  color: #eee;
  font-size: 1.250em;
  font-weight: 300;
}

.numbers .item h1 {
  color: #fff;
  font-weight: 800;
  font-size: 2.813em;
  margin-top: 0;
}


/*-------------------------------------------------------*/

/* 11. Screenshots Section   */

/*-------------------------------------------------------*/

.screenshots {
  padding: 100px 0;
}

.screenshots .item .image {
  position: relative;
}

.screenshots .item .image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0,0,0,0.7);
  opacity: 0;
}

.screenshots .item .image:hover .overlay {
  opacity: 1;
}

.screenshots .item .image .overlay .fa {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  margin-left: -25px;
  margin-top: -25px;
  background-color: #555;
  border-radius: 50%;
}

.screenshots .item .image .overlay .fa:hover {
  background-color: #F27849;
}


/*-------------------------------------------------------*/

/* 12. Team Section   */

/*-------------------------------------------------------*/

.team {
  padding: 100px 0;
  text-align: center;
}

.team .item {
  margin-bottom: 30px;
  background: #fff;
  padding-bottom: 40px;
}

.team .item img {
  margin: 0 auto;
  width: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.team .item .image {
  overflow: hidden;
}

.team .item .image:hover img {
  transform: scale(1.05);
}

.team .item h5 {
  color: #111;
  font-size: 1.563em;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 5px;
}

.team .item span {
  color: #737171;
  font-weight: 400;
  font-size: 1em;
  display: inline-block;
}

.team .item p {
  color: #666;
  font-weight: 400;
  font-size: 1em;
  margin-top: 5px;
}

.team .item .image {
  position: relative;
}

.team .item .social {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.9);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.team .item .image:hover .social {
  opacity: 1;
}

.team .item a .fa {
  display: inline-block;
  margin: 5px;
  font-size: 0.875em;
  height: 35px;
  width: 35px;
  line-height: 35px;
  border: 2px solid #eee;
  color: #F27849;
  background-color: #fff;
  text-align: center;
  border-radius: 50%;
  transition: transform 0.5s ease-in-out;
}

.team .item a .fa-facebook {
  transform: translateX(30px);
  transition: transform 0.5s ease-in-out;
}

.team .item a .fa-twitter {
  transform: translateX(15px);
  transition: transform 0.5s ease-in-out;
}

.team .item a .fa-rss {
  transform: translateX(-30px);
  transition: transform 0.5s ease-in-out;
}

.team .item a .fa-google-plus {
  transform: translateX(-15px);
  transition: transform 0.5s ease-in-out;
}

.team .item:hover a .fa {
  transform: translateX(0);
}

.team .item a .fa:hover {
  color: #fff;
  background-color: #F27849;
  border: 1px solid #F27849;
}

.team .item .image:hover a {
  transform: translateY(0);
}

/*-------------------------------------------------------*/

/* 13. Clients Section   */

/*-------------------------------------------------------*/

.clients {
  text-align: center;
  background-image: url(../images/parallax-bg-feature-2.jpg);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.clients .overlay {
  background: rgba(0, 0, 0, 0.9);
  padding: 100px 0;
}

.clients .item img {
  margin: auto;
  border-radius: 50%;
  margin-bottom: 10px;
  width: 100px;
}

.clients .item h2 {
  color: #fff;
  font-size: 1.375em;
  font-weight: 400;
  line-height: 1.8;
}

.testimonail-info {
  text-align: center;
}





.clients .item .fa {
  color: #aaa;
  font-size: 1.250em;
}

.clients .item h4 {
  text-align: center;
  font-weight: 600;
  font-size: 1.125em;
  color: #fff;
  margin-bottom: 0px;
}

.clients .item span {
  font-size: 0.875em;
  margin-bottom: 10px;
  display: block;
  color: #fff;
}

.owl-theme .owl-dots .owl-dot span {
  background-color: transparent;
  border: 1px solid #aaa;
}

.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span {
  border: 1px solid #F27849;
  background-color: #F27849;
}
/*-------------------------------------------------------*/

/* 14. Price Section    */

/*-------------------------------------------------------*/

.price {
  padding: 100px 0;
  text-align: center;
}

.price .item {
  margin-bottom: 30px;
  padding: 50px 0;
  background: #fff;
}



.price .item .price-box {
  margin: 0 10%;
  margin-bottom: 20px;
}

.price .item .price-box p {
  font-size: 1.875em;
  font-weight: 700;
  color: #1b1818;
  margin-bottom: 10px;
}

.price .item .price-box span {
  color: #fff;
  background: #F27849;
  display: inline-block;
  height: 150px;
  width: 150px;
  line-height: 150px;
  border-radius: 50%;
}

.price .item .price-box strong {
  font-weight: 500;
  font-size: 2.813em;
}

.price .item p {
  font-size: 1.063em;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 15px;
}

.price .item p.last {
  margin-bottom: 30px;
}

.price .item .a-btn {
  margin: 20px 10% 0 10%;
  background-color: #F27849;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.price .item .a-btn:hover {
  border-color: #F27849;
  background-color: transparent;
  color: #F27849;
}

/*-------------------------------------------------------*/

/* 15. Download Section    */

/*-------------------------------------------------------*/

.download {
  background-image: url(../images/parallax-bg-feature.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  text-align: center;
}

.download .overlay {
  padding: 70px 0;
  background: rgba(0, 0, 0, 0.9);
}

.download .heading {
  color: #fff;
  text-align: left;
}

.download p {
  color: #f3f3f3;
  margin-bottom: 30px;
  text-align: left;
}

.download .a-btn {
  margin-right: 15px;
  margin-left: 15px;
  margin-bottom: 10px;
  display: inline-block;
}

.download .a-btn .fa {
  margin-right: 5px;
}

.download .a-btn:hover {
  border: 1px solid #fff;
  color: #F27849;
  background-color: #fff;
}

.download-btn-group {
  margin-top: 50px;
}
/*-------------------------------------------------------*/

/* 16. Blog Section    */

/*-------------------------------------------------------*/

.blog {
  padding: 100px 0;
}

.blog .blog-area {
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 30px;
  padding: 20px;
  box-shadow: 0 5px 30px -5px #ccc;
}

.blog .blog-meta {
  background: #F27849;
  padding: 7px 10px;
  text-align: center;
}

.blog .blog-area .image {
  position: relative;
  overflow: hidden;
}

.blog .blog-area .image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-101%);
  transition: all 0.3s ease-in;
}

.blog .blog-area:hover .image .overlay {
  transform: translateY(0);
  opacity: 1;
}

.blog .blog-area h1 {
  font-size: 1.375em;
  margin: 15px 0 10px 0;
  color: #111;
  font-weight: 600;
}

.blog .blog-area h1:hover {
  color: #F27849;
}

.blog .blog-area span {
  font-size: 0.813em;
  margin-right: 10px;
  margin-bottom: 0;
  display: inline-block;
  color: #fff;
  font-weight: 400;
}

.blog .blog-area span .fa {
  color: #fff;
  margin-right: 5px;
}

.blog .blog-area p {
  font-size: 0.875em;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #737171;
}

.blog .blog-area .a-btn {
  font-size: 0.813em;
  padding: 10px 15px;
}

.blog .blog-area .a-btn:hover {
  background-color: transparent;
  border: 1px solid #F27849;
}

/*-------------------------------------------------------*/

/* 17. Partners Section   */

/*-------------------------------------------------------*/

.partners {
  padding: 70px 0;
}

.partners img {
  opacity: 0.4;
  max-width: 100%;
  cursor: pointer;
}

.partners img:hover {
  opacity: 1;
}

/*-------------------------------------------------------*/

/* 18. Contact-me Section   */

/*-------------------------------------------------------*/

.contact {
  text-align: center;
  background-image: url(../images/parallax-bg-feature-2.jpg);
  background-attachment: fixed;
  background-size: cover;
}

.contact .overlay {
  padding: 100px 0;
  background: rgba(0, 0, 0, 0.9);
}

.contact .heading {
  color: #fff;
}

.contact .para {
  color: #bbb;
}

.contact-form {
  border-radius: 3px;
}

.form-group {
  margin-bottom: 0;
  position: relative;
}

.form-group .fa {
  position: absolute;
  right: 30px;
  top: 10px;
  font-size: 1.250em;
  color: #555;
}

.form-group .fa-send {
  color: #fff;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.5s ease-in-out;
}

.form-group:hover .fa-send {
  color: #fff;
  opacity: 1;
  transform: translateX(0px);
}

.form-control {
  display: block;
  border: 0px;
  width: 100%;
  height: 45px;
  padding: 5px 0px;
  font-size: 1em;
  line-height: 1.42857143;
  color: #333;
  text-indent: 20px;
  background-color: rgba(255,255,255,0.95);
  background-image: none;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: none;
  margin-bottom: 30px;
  font-weight: 500;
  border-radius: 20px;
}

.form-control:focus {
  outline: 0;
  box-shadow: none;
  border: 1px solid #F27849;
}

input[type="submit"] {
  width: 100%;
  height: 100%;
  padding: 10px 20px;
  color: #fff;
  font-size: 0.875em;
  background: #F27849;
  border: none;
  -webkit-transition: all .1s ease-in-out;
  -moz-transition: all .1s ease-in-out;
  -o-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
  outline: none;
  box-shadow: none;
  font-weight: 400;
  border: 1px solid transparent;
  border-radius: 20px;
  overflow: hidden;
}

.contact-form input[type='submit']:hover {
  border: 1px solid #F27849;
  background-color: transparent;
  outline: 0;
  color: #fff;
  box-shadow: none;
}

/*-------------------------------------------------------*/

/* 19. Social-icon-div   */

/*-------------------------------------------------------*/

.social-icon-div {
  background-color: #080808;
  padding: 50px 0;
  text-align: left;
}

.social-icon-div h2 {
  font-size: 2.188em;
  font-weight: 500;
  color: #fff;
}

.social-icon-div a {
  display: inline-block;
  margin-top: 20px;
  color: #F27849;
  margin-right: 10px;
  font-size: 0.938em;
  height: 40px;
  width: 40px;
  line-height: 40px;
  background-color: #fff;
  margin-bottom: 30px;
  border-radius: 50%;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.social-icon-div a:hover {
  background-color: #F27849;
  color: #fff;
  transform: scale(1.2);
}





.social-icon-div p {
  color: #fff;
  font-weight: 400;
}

/*-------------------------------------------------------*/

/* 20. scroll-top div   */

/*-------------------------------------------------------*/

#scroll-top {
  width: 50px;
  height: 50px;
  color: #fff;
  background-color: #111;
  text-align: center;
  position: fixed;
  right: 15px;
  bottom: 10px;
  z-index: 9999;
  display: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 5px 25px -6px #aaa;
}

#scroll-top:hover {
  background-color: #F27849;
}

#scroll-top i {
  line-height: 26px;
  font-size: 1.250em;
}