_contact.scss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. /*=================== contact banner start ====================*/
  2. .dropdown .dropdown-menu {
  3. -webkit-transition: all 0.3s;
  4. -moz-transition: all 0.3s;
  5. -ms-transition: all 0.3s;
  6. -o-transition: all 0.3s;
  7. transition: all 0.3s;
  8. }
  9. .contact-info{
  10. margin-bottom: 25px;
  11. &__icon{
  12. margin-right: 20px;
  13. i,span{
  14. color: #8f9195;
  15. font-size: 27px;
  16. }
  17. }
  18. .media-body{
  19. h3{
  20. font-size: 16px;
  21. margin-bottom: 0;
  22. font-size: 16px;
  23. color: #2a2a2a;
  24. a{
  25. &:hover{
  26. color: $theme-color2;
  27. }
  28. }
  29. }
  30. p{
  31. color: #8a8a8a;
  32. }
  33. }
  34. }
  35. /*=================== contact banner end ====================*/
  36. /*=================== contact form start ====================*/
  37. .contact-title{
  38. font-size: 27px;
  39. font-weight: 600;
  40. margin-bottom: 20px;
  41. }
  42. .form-contact{
  43. label{
  44. font-size: 14px;
  45. }
  46. .form-group{
  47. margin-bottom: 30px;
  48. }
  49. .form-control{
  50. border: 1px solid #e5e6e9;
  51. border-radius: 0px;
  52. height: 48px;
  53. padding-left: 18px;
  54. font-size: 13px;
  55. background: transparent;
  56. &:focus{
  57. outline: 0;
  58. box-shadow: none;
  59. }
  60. &::placeholder{
  61. font-weight: 300;
  62. color: #999999;
  63. }
  64. }
  65. textarea{
  66. border-radius: 0px;
  67. height: 100% !important;
  68. }
  69. // button{
  70. // border: 0;
  71. // }
  72. }
  73. /*=================== contact form end ====================*/
  74. /* Contact Success and error Area css
  75. ============================================================================================ */
  76. .modal-message {
  77. .modal-dialog {
  78. position: absolute;
  79. top: 36%;
  80. left: 50%;
  81. transform: translateX(-50%) translateY(-50%) !important;
  82. margin: 0px;
  83. max-width: 500px;
  84. width: 100%;
  85. .modal-content {
  86. .modal-header {
  87. text-align: center;
  88. display: block;
  89. border-bottom: none;
  90. padding-top: 50px;
  91. padding-bottom: 50px;
  92. .close {
  93. position: absolute;
  94. right: -15px;
  95. top: -15px;
  96. padding: 0px;
  97. color: #fff;
  98. opacity: 1;
  99. cursor: pointer;
  100. }
  101. h2 {
  102. display: block;
  103. text-align: center;
  104. padding-bottom: 10px;
  105. }
  106. p {
  107. display: block;
  108. }
  109. }
  110. }
  111. }
  112. }
  113. .contact-section{
  114. padding: 130px 0 100px;
  115. @media #{$tab}{
  116. padding: 70px 0 40px;
  117. }
  118. @media #{$medium_device}{
  119. padding: 80px 0 50px;
  120. }
  121. .btn_2{
  122. background-color:#191d34;
  123. padding: 18px 60px;
  124. border-radius: 50px;
  125. margin-top: 0;
  126. &:hover{
  127. background-color: $theme-color2;
  128. }
  129. }
  130. }