/*================================================
Fonts
================================================*/

@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Nunito+Sans:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");

/* Start Variables */
:root {
  --primary-color: #fd4a18;
  --dark-color: #151515;
  --footer-background-color: #1a1a1a;
  --secondary-color: #616161;
  --grey-color: #f7f8f9;
  --white-color: #ffffff;
  --body-fonts: "Nunito Sans", sans-serif;
  --title-fonts: "Jost", sans-serif;
  --transparent-color: rgb(253 74 24 / 72%);
  --section-padding: 80px;
}

::-moz-selection {
  text-shadow: none;
  background: var(--primary-color);
  color: #fff;
}
::selection {
  text-shadow: none;
  background: var(--primary-color);
  color: #fff;
}

/* End Variables */
/* Start Global Rules */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--white-color);
  font-family: var(--body-fonts), sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: normal;
  line-height: 2;
  color: var(--secondary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-fonts);
  color: var(--dark-color);
  font-style: normal;
  text-transform: capitalize;
  font-weight: 600;
  margin: 0;
  word-wrap: break-word;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  text-decoration: none !important;
}

h1 {
  font-size: 40px;
  font-style: normal;
  line-height: 48px;
}

h2 {
  font-size: 36px;
  font-style: normal;
  line-height: 44px;
}

h3 {
  font-size: 32px;
  font-style: normal;
  line-height: 40px;
}

h4 {
  font-size: 28px;
  font-style: normal;
  line-height: 36px;
}

h5 {
  font-size: 24px;
  font-style: normal;
  line-height: 32px;
}

h6 {
  font-size: 20px;
  font-style: normal;
  line-height: 28px;
}

/*===== HTML Tags =====*/
a,
.button {
  color: var(--primary-color);
  outline: none !important;
  transition: all 0.5s ease-in-out;
  text-decoration: none !important;
}

a:focus,
a:hover {
  color: var(--primary-color);
  outline: none;
}

textarea {
  resize: vertical;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

pre {
  background: var(--white-color);
  padding: 15px;
  border: 1px solid var(--grey-color);
}

hr {
  margin: 0;
  padding: 0px;
  border-bottom: 1px solid #e0e0e0;
  border-top: 0px;
}

b,
strong {
  font-weight: 600;
}

ul {
  list-style: none;
}
/* End Global Rules */

/* start loading icon */
#loading-screen {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  animation: loader-animation 3s forwards;
  top: 0px;
  z-index: 99999999999; /* 3 seconds for the fade out */
}
#loading-screen img {
  max-width: 200px;
}
@keyframes loader-animation {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none; /* Ensures the element is removed after fade out */
  }
}
/* end loading icon */

/* Start Components */
.main-heading {
  text-align: center;
  margin-bottom: 50px;
}

.main-heading .special-heading {
  color: #ebeced;
  font-size: 100px;
  text-align: center;
  font-weight: 800;
  letter-spacing: -3px;
  margin: 0;
}

.main-heading p {
  margin: 5px 0 0;
  font-size: 20px;
  text-align: center;
  color: #797979;
}
/* End Components */

/* Start theming buttons */

.theming-btn {
  font-family: var(--title-fonts);
  font-size: 16px;
  padding: 12px 45px;
  line-height: 2;
  position: relative;
  width: auto;
  vertical-align: middle;
  display: inline-block;
  overflow: hidden;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}

.primary-button {
  background: var(--primary-color);
  color: var(--white-color);
}
.primary-button:hover,
.primary-button:focus {
  background: var(--dark-color);
  color: var(--white-color);
}

.secondary-button {
  background: var(--dark-color);
  color: var(--white-color);
}
.secondary-button:hover,
.secondary-button:focus {
  background: var(--primary-color);
  color: var(--white-color);
}
/* End theming buttons */

/* Start Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
  -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
  box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
  background: var(--white-color);
  z-index: 99;
}

header .main-nav {
  position: relative;
  padding: 25px 0px;
}

 

header .top-header {
  background: var(--dark-color);
  padding: 0;
  font-size: 14px;
}

header .top-header .container  .header-social ul {
  margin: 0;
  padding: 0;
}

header .top-header .container  .header-social ul li {
  list-style: none;
  display: inline-flex;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

header .top-header .container .header-social ul li a {
  color: var(--white-color);
  padding: 10px 20px;
  display: inline-flex;
}

header .top-header .container .top-header ul li a:hover {
  color: var(--white-color);
  background: var(--primary-color);
}

header .top-header .container .header-social ul li:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

header .top-header .container .header-contact ul {
  margin: 0;
  padding: 0;
}

header .top-header .container .header-contact ul li {
  list-style: none;
  display: inline-block;
  color: var(--white-color);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
}
header .top-header .container  .header-contact ul li:last-child {
  margin-right: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

header .top-header .container  .header-contact ul li i {
  margin-right: 10px;
}

header .top-header .container  .header-contact ul li a {
  color: var(--white-color);
}

header .top-header .container  .header-contact ul li a:hover {
  color: var(--white-color);
  background: transparent;
}

header .logo img {
  height: 40px;
}
header nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header nav .toggle-menu {
  color: #333;
  font-size: 22px;
}
@media (min-width: 768px) {
  header nav .toggle-menu {
    display: none;
  }
}
header nav ul {
  display: flex;
}
@media (max-width: 767px) {
  header nav ul {
    display: none;
  }
  header nav .toggle-menu:hover + ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
  }
  header nav ul li a {
    padding: 15px !important;
    display: block;
  }
}
header nav ul li a {
  padding: 40px 10px;
  font-family: var(--title-fonts);
  position: relative;
  margin-right: 20px;
  color: var(--dark-color);
  line-height: 27px;
  font-weight: 400;
  z-index: 2;
}
header nav ul li a {
  padding: 40px 10px;
  font-family: var(--title-fonts);
  position: relative;
  margin-right: 20px;
  color: var(--dark-color);
  line-height: 27px;
  font-weight: 400;
  z-index: 2;
}
header nav ul li a.active,
header nav ul li a:hover {
  color: var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
}
header nav .form {
  position: relative;
  margin-left: 30px;
}

/* End Header */

/* Start Components */
.main-heading {
  text-align: center;
  margin-bottom: 50px;
}

.main-heading .special-heading {
  color: #ebeced;
  font-size: 100px;
  text-align: center;
  font-weight: 800;
  letter-spacing: -3px;
  margin: 0;
}

.main-heading p {
  margin: 5px 0 0;
  font-size: 20px;
  text-align: center;
  color: #797979;
}
/* End Components */

/* Start hero-section */
.hero-section {
  min-height: 100vh;
  background-color: #1f2021;
  background-image: url("../images/banner.jpg");
  background-size: cover;
  position: relative;
}
.hero-section .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(253 74 24 / 22%);
}
.hero-section .text {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  padding: 50px;
  background-color: var(--transparent-color);
  color: white;
  display: flex;
  justify-content: flex-end;
}
.hero-section .text .content {
  max-width: 500px;
}
@media (max-width: 767px) {
  .hero-section .text {
    width: 100%;
  }
  .hero-section .text .content {
    max-width: 100%;
  }
}
.hero-section .text .content h2 {
  font-weight: 900;
}
.hero-section .text .content p {
  font-size: 14px;
  line-height: 2;
}
.hero-section .change-background {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #ddd;
}
@media (max-width: 767px) {
  .hero-section .change-background {
    display: none;
  }
}

/* End Landing */

/* Start About */
.about-us {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background: #fff;
  position: relative;
}

.about-us .about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-us .about-image {
  position: relative;
  max-width: 100%;
}

.about-us .about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-us .experience-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: white;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-width: 120px;
}

.about-us .experience-badge .years {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--title-fonts);
  line-height: 1;
}

.about-us .experience-badge .text {
  display: block;
  font-size: 12px;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.about-us .about-info .about-subtitle {
  display: inline-block;
  background: rgba(253, 74, 24, 0.1);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.about-us .about-info h3 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 25px;
  color: var(--dark-color);
}

.about-us .about-info p {
  color: var(--secondary-color);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}

.about-us .about-features {
  margin: 30px 0;
}

.about-us .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 15px;
}

.about-us .feature-item i {
  color: var(--primary-color);
  font-size: 16px;
}

.about-us .feature-item span {
  color: var(--secondary-color);
  font-size: 15px;
  font-weight: 500;
}

.about-us .about-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.about-us .about-video-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--dark-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-us .about-video-btn i {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
}

.about-us .about-video-btn:hover i {
  transform: scale(1.1);
  background: var(--dark-color);
}

.about-us .about-video-btn:hover {
  color: var(--primary-color);
}

.about-us .about-stats {
  margin-top: 65px;
  gap: 40px;
  padding: 50px 0px;
  border-radius: 40px;
  background: linear-gradient(135deg, #fff6f3 0%, #f8f9fa 100%);
}

.about-us .about-stats .stat-box {
  text-align: center;
  padding: 30px 20px;
  transition: all 0.3s ease;
}

.about-us .about-stats .stat-box:hover {
  transform: translateY(-5px);
}
.about-us .about-stats .stat-box i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-us .about-stats .stat-box h4 {
  font-size: 35px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 10px;
  font-family: var(--title-fonts);
}
.about-us .about-stats .stat-box p {
  color: var(--secondary-color);
  font-size: 14px;
  margin: 0;
  text-transform: uppercase;
}

/* End About */


/* start portfolio */
.portfolio{
    margin-top: 50px;
}
.portfolio .container .shuffle .active{
    background: #fd4a18;
    color: white;
    margin: 10px;
    padding: 6px 30px;
    border-radius: 21px;
}
.portfolio .container .shuffle .web , .app , .design , .branding{
    padding: 6px 30px;
    border: #e3d8d8 1px solid;
    margin: 10px;
    border-radius: 21px;
    transition: all 0.5s ease;
    cursor: default;
}
.portfolio .container .shuffle .web:hover , .app:hover , .design:hover , .branding:hover{
    background: #fd4a18;
    color: white;
    border:#fd4a18 1px solid ;
}
.large-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 62px 3px;
}
.large-container .box{
  position: relative;
  height: auto;
  margin: 20px 0 0 0;
  transition: all 0.5s ease;
}
.large-container .box .overlay{
    display: none;
    align-items: center;
    border-radius: 5px;
    padding: 0 10px;
    background-color: hsl(13, 98%, 54%);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    transition: all 1s ease;
}
.large-container .box:hover{
  transform: translateY(-8px);
}
.large-container .box:hover .overlay{
  display:flex;
  background-color:lab(57.76% 66.04 63.56 / 0.8);
}
.large-container .box .overlay a{
  color: white;
}
.large-container .box:hover img{
  opacity: 0.5;
}
.portfolio .semi-container{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 40px;
  margin-bottom: 82px;
  align-items: center;
  padding: 60px;
  background-color: #fdeeee;
}
.portfolio .semi-container a{
      color: white;
    background-color: #fd4a18;
    font-size: 15px;
    padding: 10px 34px;
    border-radius: 76px;
    transition: all 0.5s ease;
}
.portfolio .semi-container a:hover{
  background-color: #000;
}
/* End portfolio */




/* start services */

.services{
  background-color: #fff5f5;
    padding: 40px;
    height: auto;
}
.top-services{
      padding: 0 0 40px 0;
}
.services .top-services h1{
    font-size: 100px;
    font-weight: 800;
    color: #ebeced;
    padding: 10px;
}
.services .top-services p{
      font-size: 20px;
    text-align: center;
    color: #797979;
}
.services .bottom-services .content{
  background-color: white;
  padding: 30px;
  border-radius: 20px;
  height: 100%;
  transition: all 1s ease;
   margin: 20px 0;
}
.services .bottom-services .ele{
  margin: 20px 0;
}
.services .bottom-services .content:hover{
  transform: translateY(-8px);
}
.services .bottom-services .content h1{
  margin-top: 22px;
    font-size: 30px;
}
.services .bottom-services .content > i{
  width: 60px;
    height: 60px;
    box-sizing: content-box;
    border: 7px solid pink;
    border-radius: 20px;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: #fd4a18;
}
.services .bottom-services .content p i{
  color:#fd4a18;
  padding:0 10px 0 0;
}
.services .bottom-services .content p{
  padding: 10px 0;
}
.services .bottom-services .content a:hover{
  color: #000;
}
.services .final-services{
  background-color: white;
  margin-top: 50px;
  padding: 30px 0;
  border-radius: 25px;
}
.services .final-services h1{
    font-size: 30px;
    margin-top: 26px;
}
.services .final-services a{
  color: white;
  background-color: #fd4a18 ;
      font-size: 15px;
    padding: 10px 30px;
    border-radius: 30px;
}
.services .final-services a:hover{
  background-color: #000;
}

/* end services */

/* start story */

.story{
  position: relative;
  background-color: rgba(255, 0, 0, 0.178);
  margin: 110px 0;
}
.story .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; 
}
.story .content{
  position: relative;
  z-index: 1;
  padding: 120px 0;
  color: white;
}
.story .content .col1 p:first-child{
   color: var(--primary-color);
   background-color: #fd4a1842;
   font-weight: 600;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 20px;
   outline: 1px solid #fd4a188c;
   height: 40px;
   width: 190px;
}
.story .content .col1{
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story .content .col1 h1{
  color: white;
  font-weight: 700;
  margin: 20px 0;
  font-size: 43px;
}
.story .content .col1 .btn{
  color:white;
  outline: none;
  position: relative;
  border-style: none;
  height: 53px;
  margin: 0 50px;
}
.story .content .col1 .btn::after{
  position: absolute;
  content: '';
  top: 0;
  outline: 2px solid #fd4a1867;
  right: 100px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 38px;
  transition: all 0.5s ease;
  box-sizing: border-box;
}
.story .content .col1 .btn:hover{
  color: var(--primary-color);
}
.story .content .col1 .btn:hover::after{
  background-color: #000;
  outline: 2px solid #0000005d;
  width: 55px;
  height: 55px;
  border-radius: 50px;
}
.story .content .col1 a{
  background-color: #000;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 151px;
  height: 55px;
  border-radius: 40px;
  transition:all 1s ease;
}
.story .content .col1 a:hover{
  color: #000;
  background-color: white;
}
.story .content .col1 .box{
  display: flex;
  margin-bottom: 10px;
}
.story .content .col2{
  display: flex;
   flex-direction: column;
   align-items: center;
   gap: 20px;
}
.story .content .col2 .ele{
   background-color:#5e2d1fc5;
   width: 270px;
    padding: 20px 0;
    border-radius:12px;
}
.story .content .col2 .ele h3{
  color: var(--primary-color);
  font-weight: 700;
}
/* end story */

/* start blog */

.blog .container .row:first-child h1{
   color: #d9dbde;
    font-size: 90px;
    font-weight: 800;
}
.blog .container .row:first-child p{
    font-size: 20px;
}
.blog .container .row:nth-child(2){
  margin: 75px 0;
}
.blog .container .row:nth-child(2) .ele .letter{
    position: absolute;
    top: 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 20px;
}
.blog .container .row:nth-child(2) .ele{
  margin: 10px 0;
}
.blog .container .row:nth-child(2) .ele .letter > p{
  background-color: var(--primary-color);
  color: white;
      width: 100px;
    border-radius: 50px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.blog .container .row:nth-child(2) .ele .letter div{
  background-color: white;
  display: flex;
  flex-direction: column;
  width: 50px;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  height: 65px;
}
.blog .container .row:nth-child(2) .ele .letter div p{
  margin-bottom: 0;
  position: relative;
  bottom: 6px;
}
.blog .container .row:nth-child(2) .ele .letter div p:first-child{
  color: var(--primary-color);
  box-sizing: border-box;
  font-weight: 800;
      position: relative;
    font-size: 23px;
    top: 7px;
}
.blog .container .row:nth-child(2) .ele:first-child .letter > p{
  width: 150px;
}
.blog .container .row:nth-child(2) .ele .content{
  padding: 30px;
}
.blog .container .row:nth-child(2) .ele .base{
  box-shadow: 0 0px 12px -1px #d1c8c8;
  height: 100%;
  border-radius: 10px;
    transition: all 1s ease;
    position: relative;
}
.blog .container .row:nth-child(2) .ele .base:hover{
  transform: translateY(-5px);
}
.blog .container .row:nth-child(2) .ele .base img{
  border-top-left-radius: 10px;
  border-top-right-radius:10px ;
  border-bottom-left-radius:0 ;
  border-bottom-right-radius: 0;
}
.blog .container .row:nth-child(2) .ele .content h3{
  padding: 20px 0;
  font-size: 33px;
}
.blog .container .row:nth-child(2) .ele .content .head{
  display: flex;
  justify-content: space-between;
}
.blog .container .row:nth-child(2) .ele .content a{
  transition: all 0.5s ease;
}
.blog .container .row:nth-child(2) .ele .content a:hover{
  color: #000;
}
.blog .container .row:nth-child(2) .ele .content .head i{
  display: flex;
  align-items: center;
  color: var(--primary-color);
   margin-right: 5px;
}
.blog .container .row:nth-child(2) .ele .content .head p{
  margin-bottom: 0;
}
.blog .container .row:nth-child(2) .ele .content .head div{
  display: flex;
}
.blog .container .last{
   display: flex;
   justify-content: center;
   margin: 70px 0;
}
.blog .container .last a{
  color: white;
     background-color: var(--primary-color);
  width: 166px;
   height: 54px;
   border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
}
.blog .container .last a:hover{
  background-color: #000;
}

/* end blog */

/* start pricing */

.pricing{
  background-color: #fff5f5;
  padding: 70px 0;
}
.pricing .head{
  text-align: center;
  margin-bottom:55px;
}
.pricing .head h1{
  color: #d9dbde;
      font-size: 90px;
    font-weight: 800;
}
.pricing .head p{
   font-size: 19px;
}
.pricing .container .ele .content{
  box-shadow:0 0 11px #bfb7b7;
  border-radius: 15px;
  width: 100%;
  text-align: center;
}
.pricing .container .ele .content .btn{
  margin: 30px 0;
  outline: none;
  border-style: none;
  background-color: var(--primary-color);
  color: white;
      font-family: var(--title-fonts);
    font-size: 16px;
    padding: 12px 45px;
    line-height: 2;
    position: relative;
    width: auto;
    vertical-align: middle;
    display: inline-block;
    overflow: hidden;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    transition: all 0.5s ease;
}
.pricing .container .ele .content .btn:hover{
  background-color: #000;
}
.pricing .container .ele .content .top{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 0;
  background-color:#e3e5e9 ;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.pricing .container .ele .content .top .top-in{
  display: flex;
  align-items: center;
  gap: 5px;
}
.pricing .container .ele .content .top .top-in i{
  color: var(--primary-color);
      font-size: 20px;
    height: 10px;
    font-weight: 400;
}
.pricing .container .ele .content .top .top-in p{
  height: 0;
}
.pricing .container .ele .content .bottom{
  padding: 30px;
}
.pricing .container .ele .content .bottom .element{
  display: flex;
  gap: 10px;
  padding: 20px 0;
  align-items: center;
}
.pricing .container .ele .content .bottom .element i{
  color: var(--primary-color);
  display: flex;
}
.pricing .container .ele .content .bottom .element p{
  margin-bottom: 0;
}
.pricing .container .ele:first-child .content .bottom .element:last-child {
   color:#c5c6ca ;
}
.pricing .container .ele:first-child .content .bottom .element:last-child i{
   color:#c5c6ca ;
}
.pricing .container .elee{
  margin: 20px 0;
}
.pricing .container .elee .content{
  outline: 2px solid var(--primary-color);
  border-radius: 15px;
  height: 800px;
  text-align: center;
}
.pricing .container .elee .content .btn{
  margin-top:50px;
  outline: none;
  border-style: none;
  color: var(--primary-color);
  font-weight: 700;
  transition: all 0.5s ease;
}
.pricing .container .elee .content .btn:hover{
  color: #000;
}
.pricing .container .elee .top{
  position: relative;
  overflow: hidden;
  background-color: #EF441D;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 0;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.pricing .container .elee .top p:first-child{
  position: absolute;
    right: -31px;
    top: 32px;
    width: 180px;
    text-align: center;
    color: white;
    background-color:var(--primary-color);
    transform: rotate(45deg);
}
.pricing .container .elee .top p:last-child{
  color: white;
}
.pricing .container .elee .content .top .top-in{
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
}
.pricing .container .elee .content .top .top-in i{
  color:white;
      font-size: 20px;
    height: 10px;
    font-weight: 400;
}
.pricing .container .elee .content .top .top-in p{
  height: 0;
}
.pricing .container .elee .content .top .top-in h1{
  color: white;
}
.pricing .container .elee .content .bottom{
  padding: 20px;
}
.pricing .container .elee .content .bottom .element{
  display: flex;
  gap: 10px;
  padding: 20px 0;
  align-items: center;
}
.pricing .container .elee .content .bottom .element i{
  color: var(--primary-color);
  display: flex;
}
.pricing .container .elee .content .bottom .element p{
  margin-bottom: 0;
}
.pricing .last{
  margin: 100px 0 50px 0 ;
  text-align: center;
}
.pricing .last a{
  background-color: var(--primary-color);
  color: white;
      font-family: var(--title-fonts);
    font-size: 16px;
    padding: 12px 45px;
    line-height: 2;
    position: relative;
    width: auto;
    vertical-align: middle;
    display: inline-block;
    overflow: hidden;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    transition: all 0.5s ease;
}
.pricing .last a:hover{
  background-color: #000;
}
/* end pricing */


/* start contact */
 .contact{
  padding: 70px 0;
  background-color: #fff5f5;
 }
 .contact .head{
  text-align: center;
  margin-bottom: 55px;
 }
 .contact .head h1{
  color: #d9dbde;
      font-size: 90px;
    font-weight: 800;
}
.contact .head p{
   font-size: 19px;
}
.contact .container .ele1 .ele .content{
   text-align: center;
   padding: 40px;
   padding-bottom: 30px;
   height: 100%;
  background-color: white;
  box-shadow: 0 0 20px rgb(230, 227, 227);
  border-radius: 15px;
  cursor: default;
}
.contact .container .ele1 .ele:h{
  transform: translateY(-5px);
}
.contact .container .ele1 .ele{
  margin: 20px 0;
  transition: all 1s ease;
}
.contact .container .ele1 .ele .content p{
  margin: 0;
}
.contact .container .ele1 .ele .content h3{
  font-size: 23px;
  margin: 15px 0;
}
.contact .container .ele1 .ele .content i{
  color: white;
  background-color: var(--primary-color);
      padding: 25px;
    font-size: 30px;
  border-radius: 40px;
}
.contact .container .ele1 .ele:first-child .content i{
  padding: 25px 29px;
}
.contact .container .ele1{
  margin-bottom: 55px;
}
.contact .container .ele1 .ele:last-child .content p{
  font-size: 15px;
}
.contact .container .ele2 .ele .content{
  padding: 30px;
  background-color: white;
  box-shadow: 0 0 20px rgb(230, 227, 227);
  border-radius: 15px;
  margin: 20px 0;
}
.contact .container .ele2 .ele .content p{
  margin: 20px 0;
}
.contact .container .ele2 .ele .content .input .field{
  outline: none;
  border-style: none;
  background-color: rgb(241, 238, 238);
  width: 100%;
  margin-left: 20px;
}
.contact .container .ele2 .ele .content .input i{
  display: flex;
  align-items: center;
}
.contact .container .ele2 .ele .content .input{
  padding:10px 20px;
  display: flex;
  border: 1px solid rgb(228, 223, 223);
  background-color: rgb(241, 238, 238);
  border-radius: 10px;
}
.contact .container .ele2 .ele .content .comment{
   padding:10px 20px;
  display: flex;
  border: 1px solid rgb(228, 223, 223);
  background-color: rgb(241, 238, 238);
  border-radius: 10px;
}
.contact .container .ele2 .ele .content .comment .message{
  outline: none;
  border-style: none;
  background-color: rgb(241, 238, 238);
  width: 100%;
  margin-left: 20px;
}
.contact .container .ele2 .ele .content .comment i{
  height: 158px;
  display: flex;
  align-items: center;
}
.contact .container .ele2 .ele .content .btn{
  width: 100%;
    background-color: var(--primary-color);
    color: white;
    font-family: var(--title-fonts);
    font-size: 16px;
    padding: 12px 45px;
    border-radius: 50px;
    transition: all 0.5s ease;
}
.contact .container .ele2 .ele .content .btn:hover{
  background-color: #000;
}
.contact .container .ele2 .ele:last-child .content {
    padding: 0;
    height:572px;
}
.contact .container .ele2 .ele .content .top{
  padding: 30px;
}
.contact .container .ele2 .ele .content iframe{
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
/* end contact */

/* start Footer */
footer {
  background: var(--footer-background-color);
  color: var(--white-color);
  position: relative;
}
footer .footer-content .footer-top {
  padding: 45px 0 45px;
}
footer .footer-logo {
  margin-bottom: 20px;
}
footer .footer-logo img {
  max-width: 200px;
}
footer .footer-description {
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 15px;
}
footer .footer-social h5 {
  color: white;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}
footer .footer-social .social-links {
  display: flex;
  gap: 12px;
}
footer .footer-social .social-links .social-link {
  width: 45px;
  height: 45px;
  background-color: #2c2c2c;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d7d7d7;
}

footer .social-link:hover {
  color: white;
  transform: translateY(-3px);
}
footer .social-link.facebook:hover {
  background: #3b5998;
}

footer .social-link.twitter:hover {
  background: #1da1f2;
}

footer .social-link.linkedin:hover {
  background: #0077b5;
}

footer .social-link.instagram:hover {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

footer .social-link.github:hover {
  background: #333;
}

footer .footer-column .footer-widget .widget-title {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

footer .footer-column .footer-widget .widget-title::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
  left: 0px;
  bottom: 0px;
}
footer .footer-column .footer-widget .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-column .footer-widget .footer-links li {
  margin-bottom: 12px;
}
footer .footer-column .footer-widget .footer-links li a {
  color: #cccccc;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}
footer .footer-column .footer-widget .footer-links li a::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}
footer .footer-column .footer-widget .footer-links li a:hover::before {
  opacity: 1;
}
footer .footer-column .footer-widget .contact-info .contact-item {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 20px;
}
footer .footer-column .footer-widget .contact-info .contact-item i {
  color: var(--primary-color);
  font-size: 16px;
  margin-top: 3px;
  min-width: 16px;  
}

footer .newsletter h5 {
  color: white;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

footer .newsletter p {
  color: #cccccc;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

footer .newsletter-form {
  position: relative;
}


footer .newsletter-input {
  position: relative;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

footer .newsletter-input input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  background: transparent;
  color: white;
  font-size: 14px;
  outline: none;
}

footer .newsletter-input button {
  padding: 12px 15px;
  background: var(--primary-color);
  border: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}


.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  margin-top: 30px;
}
.footer-bottom .footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom .footer-bottom-content .copyright p {
  color: #cccccc;
  font-size: 14px;
  margin: 0;
}

footer .footer-bottom-links {
  display: flex;
  gap: 30px;
}

footer .footer-bottom-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

footer .footer-bottom-links a:hover {
  color: var(--primary-color);
}


/* End Footer */
